Skip to content

Commit 25b18cc

Browse files
committed
Quick Search field in document or main window toolbar now has helpful placeholder text.
All seems to pretty much work in 10.9 now. Need to clean some stuff up, then on to 10.10.
1 parent 2d63776 commit 25b18cc

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

SSYLazyView.m

-6
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,8 @@ + (NSString*)lazyNibName {
6262
- (void)load {
6363
// Only do this once
6464
if ([self isPayloaded]) {
65-
/*SSYDBL*/ NSLog(@"Whoops %@ already payloaded", self) ;
6665
return ;
6766
}
68-
/*SSYDBL*/ NSLog(@"Loading %@", self) ;
6967

7068
[[NSNotificationCenter defaultCenter] postNotificationName:SSYLazyViewWillLoadPayloadNotification
7169
object:[self window]
@@ -79,7 +77,6 @@ - (void)load {
7977
NSArray* topLevelObjects = nil ;
8078
BOOL isMacOSX10_8orLater = [bundle respondsToSelector:@selector(loadNibNamed:owner:topLevelObjects:)] ;
8179

82-
/*SSYDBL*/ NSLog(@"isMacOSX10_8orLater = %hhd", isMacOSX10_8orLater) ;
8380
Class controllerClass = [[self class] lazyViewControllerClass] ;
8481
NSString* nibName = [[self class] lazyNibName] ;
8582
BkmxDocTabViewController* viewController = [[controllerClass alloc] initWithNibName:nibName
@@ -92,11 +89,9 @@ - (void)load {
9289

9390
if (isMacOSX10_8orLater) {
9491
#pragma deploymate push "ignored-api-availability" // Skip it until next "pop"
95-
///*SSYDBL*/ NSLog(@"Will load nib name %@ with owner %@", nibName, viewController) ;
9692
ok = [bundle loadNibNamed:nibName
9793
owner:viewController
9894
topLevelObjects:&topLevelObjects] ;
99-
///*SSYDBL*/ NSLog(@"Did load nib name %@ with owner %@, got tlo:\n%@", nibName, viewController, topLevelObjects) ;
10095
#pragma deploymate pop
10196
if (ok) {
10297
// See details of doc for -loadNibNamed:owner:topLevelObjects:,
@@ -222,7 +217,6 @@ - (void)load {
222217
}
223218

224219
- (void)viewDidMoveToWindow {
225-
/*SSYDBL*/ NSLog(@"%@ did move to %@", self, [self window]) ;
226220
[self load] ;
227221
}
228222

0 commit comments

Comments
 (0)