diff options
author | stuconnolly <stuart02@gmail.com> | 2009-08-07 22:40:24 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-08-07 22:40:24 +0000 |
commit | 323d1dce6647a628ad8abc69fa06b03c8d9384fc (patch) | |
tree | 7979468f33790328b56d493e64243acac1a9d6e2 /Source | |
parent | dfbd00fda00bc0cbb9cc7bf3866d98165244c0d3 (diff) | |
download | sequelpro-323d1dce6647a628ad8abc69fa06b03c8d9384fc.tar.gz sequelpro-323d1dce6647a628ad8abc69fa06b03c8d9384fc.tar.bz2 sequelpro-323d1dce6647a628ad8abc69fa06b03c8d9384fc.zip |
Rename print accessory XIB.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPPrintAccessory.m | 2 | ||||
-rw-r--r-- | Source/TableDocument.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPPrintAccessory.m b/Source/SPPrintAccessory.m index 302d7deb..cf0e7ef2 100644 --- a/Source/SPPrintAccessory.m +++ b/Source/SPPrintAccessory.m @@ -31,7 +31,7 @@ { defaultsController = [NSUserDefaultsController sharedUserDefaultsController]; printWebView = nil; - return [super initWithNibName:@"printAccessory" bundle:nibBundleOrNil]; + return [super initWithNibName:@"PrintAccessory" bundle:nibBundleOrNil]; } - (void)awakeFromNib diff --git a/Source/TableDocument.m b/Source/TableDocument.m index 1057be90..8d35f90b 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -257,7 +257,7 @@ [printPanel setOptions:[printPanel options] + NSPrintPanelShowsOrientation + NSPrintPanelShowsScaling + NSPrintPanelShowsPaperSize]; SPPrintAccessory *printAccessory = [[SPPrintAccessory alloc] init]; - [printAccessory initWithNibName:@"printAccessory" bundle:nil]; + [printAccessory initWithNibName:@"PrintAccessory" bundle:nil]; [printAccessory setPrintView:printWebView]; [printPanel addAccessoryController:printAccessory]; |