mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-03 04:31:27 +00:00
16 lines
146 B
Objective-C
16 lines
146 B
Objective-C
#import "InfoWindow.h"
|
|
|
|
@implementation InfoWindow
|
|
|
|
- (BOOL)canBecomeKeyWindow
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)canBecomeMainWindow
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
@end
|