mirror of https://github.com/bsnes-emu/bsnes.git
21 lines
327 B
C++
21 lines
327 B
C++
|
#if defined(Hiro_MenuSeparator)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
auto pMenuSeparator::construct() -> void {
|
||
|
@autoreleasepool {
|
||
|
cocoaAction = cocoaSeparator = [[NSMenuItem separatorItem] retain];
|
||
|
pAction::construct();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
auto pMenuSeparator::destruct() -> void {
|
||
|
@autoreleasepool {
|
||
|
[cocoaAction release];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|