mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 20:11:20 +00:00
19 lines
318 B
C
19 lines
318 B
C
|
#include <AppKit/AppKit.h>
|
||
|
|
||
|
#ifndef INCLUDED_GormNSPopUpButton_h
|
||
|
#define INCLUDED_GormNSPopUpButton_h
|
||
|
|
||
|
@interface GormNSPopUpButton : NSPopUpButton
|
||
|
@end
|
||
|
|
||
|
@interface GormNSPopUpButtonCell : NSPopUpButtonCell
|
||
|
{
|
||
|
}
|
||
|
@end
|
||
|
|
||
|
@interface NSPopUpButtonCell (DirtyHack)
|
||
|
- (id) _gormInitTextCell: (NSString *) string;
|
||
|
@end
|
||
|
|
||
|
#endif
|