mirror of
https://github.com/Marat-Tanalin/bsnes-mt.git
synced 2025-04-02 10:21:42 -04:00
20 lines
327 B
C++
20 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
|