Changeset 52460 in vbox
- Timestamp:
- Aug 22, 2014 11:13:54 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95674
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataDefs.h
r52459 r52460 269 269 Q_OBJECT; 270 270 Q_ENUMS(MenuHelpActionType); 271 #ifdef Q_WS_MAC271 #ifdef RT_OS_DARWIN 272 272 Q_ENUMS(MenuApplicationActionType); 273 #endif /* Q_WS_MAC*/273 #endif /* RT_OS_DARWIN */ 274 274 Q_ENUMS(RuntimeMenuType); 275 275 Q_ENUMS(RuntimeMenuMachineActionType); … … 293 293 MenuHelpActionType_CheckForUpdates = RT_BIT(4), 294 294 #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */ 295 #ifndef Q_WS_MAC295 #ifndef RT_OS_DARWIN 296 296 MenuHelpActionType_About = RT_BIT(5), 297 297 MenuHelpActionType_Preferences = RT_BIT(6), 298 #endif /* ! Q_WS_MAC*/298 #endif /* !RT_OS_DARWIN */ 299 299 MenuHelpActionType_All = 0xFFFF 300 300 }; 301 301 302 #ifdef Q_WS_MAC302 #ifdef RT_OS_DARWIN 303 303 /** Menu "Application": Action types. */ 304 304 enum MenuApplicationActionType … … 310 310 MenuApplicationActionType_All = 0xFFFF 311 311 }; 312 #endif /* Q_WS_MAC*/312 #endif /* RT_OS_DARWIN */ 313 313 314 314 /** Runtime UI: Menu types. */ … … 347 347 RuntimeMenuMachineActionType_Shutdown = RT_BIT(13), 348 348 RuntimeMenuMachineActionType_PowerOff = RT_BIT(14), 349 #ifndef Q_WS_MAC349 #ifndef RT_OS_DARWIN 350 350 RuntimeMenuMachineActionType_Close = RT_BIT(15), 351 #endif /* ! Q_WS_MAC*/351 #endif /* !RT_OS_DARWIN */ 352 352 RuntimeMenuMachineActionType_All = 0xFFFF 353 353 };
Note:
See TracChangeset
for help on using the changeset viewer.