Problem with setWindowFrameAutosaveName
Problem with setWindowFrameAutosaveName
- Subject: Problem with setWindowFrameAutosaveName
- From: Claudius Sailer <email@hidden>
- Date: Thu, 19 Sep 2002 11:04:14 +0200
Hi,
I have 5 NSWindowController-Classes with the following compareble code.
For every window I find in the *.plist file an entry. But the entry
doesn't change when I move the window. Is that my fault because of the
code or an other error?
Claudius
-(id)init {
//Fenster Depot anzeigen
if (self = [super initWithWindowNibName:@"Depot"]){
[self setWindowFrameAutosaveName:TEXTDepotFenster];
}
return self;
}
-(id)init {
//Fenster Ergebnisse anzeigen
if (self = [super initWithWindowNibName:@"Ergebnisse"]){
[self setWindowFrameAutosaveName:TEXTErgebnisseFenster];
}
return self;
}
This entry doesn't change :-((
"NSWindow Frame FensterBuchungen" = "4 466 680 532 0 0 1280 1002 ";
"NSWindow Frame FensterDepot" = "497 3 780 532 0 0 1280 1002 ";
"NSWindow Frame FensterErgebnisse" = "653 520 620 472 0 0 1280 1002
";
"NSWindow Frame FensterFastKurs" = "326 184 520 522 0 0 1280 1002
";
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.