Changed default backing store type to "Buffered".

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@23256 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2006-08-11 15:14:35 +00:00
parent 91a2a62ea0
commit 92933fd3a5
2 changed files with 12 additions and 6 deletions

View file

@ -1,3 +1,9 @@
2006-08-11 11:13-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormDocumentController.m: Default backing store changed
in newDocument: to NSBackingStoreBuffered instead of
NSBackingStoreRetained.
2006-08-11 01:53-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormCustomView.m: Corrected encoding issues with custom

View file

@ -85,7 +85,7 @@
aWindow = [[NSWindow allocSubstitute]
initWithContentRect: NSMakeRect(0,0,600, 400)
styleMask: style
backing: NSBackingStoreRetained
backing: NSBackingStoreBuffered
defer: NO];
}
else
@ -93,7 +93,7 @@
aWindow = [[NSWindow alloc]
initWithContentRect: NSMakeRect(0,0,600, 400)
styleMask: style
backing: NSBackingStoreRetained
backing: NSBackingStoreBuffered
defer: NO];
}
[aWindow setFrameTopLeftPoint:
@ -126,7 +126,7 @@
aWindow = [[NSPanel allocSubstitute]
initWithContentRect: NSMakeRect(0,0, IVW, IVH)
styleMask: style
backing: NSBackingStoreRetained
backing: NSBackingStoreBuffered
defer: NO];
}
else
@ -134,7 +134,7 @@
aWindow = [[NSPanel alloc]
initWithContentRect: NSMakeRect(0,0, IVW, IVH)
styleMask: style
backing: NSBackingStoreRetained
backing: NSBackingStoreBuffered
defer: NO];
}
@ -156,7 +156,7 @@
aWindow = [[NSPanel allocSubstitute]
initWithContentRect: NSMakeRect(0,0,272,160)
styleMask: style
backing: NSBackingStoreRetained
backing: NSBackingStoreBuffered
defer: NO];
}
else
@ -164,7 +164,7 @@
aWindow = [[NSPanel alloc]
initWithContentRect: NSMakeRect(0,0,272,160)
styleMask: style
backing: NSBackingStoreRetained
backing: NSBackingStoreBuffered
defer: NO];
}