mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
Removed NSLog which was causing compilation error on gcc < 3.0 compilers.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@13401 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1dbef9900b
commit
186be08164
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2002-04-08 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Palettes/0Menus/GormNSMenu.m
|
||||
[GormNSMenu -_createWindow]: removed NSLog statement before
|
||||
NSPanel *win declaration which was causing Gorm not to build on
|
||||
compilers gcc < 3.0.
|
||||
|
||||
2002-07-01 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
|
||||
|
||||
* ClassInformation.plist: new outlet for NSWindowController
|
||||
|
|
|
@ -68,13 +68,13 @@
|
|||
|
||||
- (NSPanel*) _createWindow
|
||||
{
|
||||
NSLog(@"called _cre");
|
||||
NSPanel *win = [[GormNSMenuWindow alloc]
|
||||
initWithContentRect: NSZeroRect
|
||||
styleMask: /*NSTitledWindowMask/*/NSBorderlessWindowMask
|
||||
backing: NSBackingStoreBuffered
|
||||
defer: YES];
|
||||
[win setLevel: NSSubmenuWindowLevel];
|
||||
|
||||
// [win setWorksWhenModal: YES];
|
||||
// [win setBecomesKeyOnlyIfNeeded: YES];
|
||||
|
||||
|
|
Loading…
Reference in a new issue