Skip to content

Commit

Permalink
Changed license, changed uses of NSMenuItem protocol to class.
Browse files Browse the repository at this point in the history
  • Loading branch information
uliwitness committed Mar 7, 2010
1 parent 4c42a59 commit 54174c9
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions UKMultiSyntaxColoredTextDocument.m
Expand Up @@ -3,7 +3,26 @@
// UKSyntaxColoredDocument
//
// Created by Uli Kusterer on Mon May 17 2004.
// Copyright (c) 2004 M. Uli Kusterer. All rights reserved.
// Copyright (c) 2004 Uli Kusterer.
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source
// distribution.
//

// -----------------------------------------------------------------------------
Expand Down Expand Up @@ -79,7 +98,7 @@ -(NSArray*) syntaxDefinitionFiles

-(void) rebuildSyntaxMenu
{
id <NSMenuItem> foundItem = nil;
NSMenuItem* foundItem = nil;
NSMenu* syntaxMenu = nil;

// Find menu with menu items for syntax definitions:
Expand All @@ -95,7 +114,7 @@ -(void) rebuildSyntaxMenu
}

// Remove all old menu items from our menu:
id <NSMenuItem> currMItem = foundItem;
NSMenuItem* currMItem = foundItem;
int currItemNum = [syntaxMenu indexOfItem: currMItem];

while( [currMItem action] == @selector(takeSyntaxDefinitionFilenameFromTagOf:) )
Expand Down

0 comments on commit 54174c9

Please sign in to comment.