Changeset 92398 in vbox
- Timestamp:
- Nov 12, 2021 1:57:19 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/extradata
- Files:
-
- 3 edited
-
UIExtraDataDefs.cpp (modified) (1 diff)
-
UIExtraDataDefs.h (modified) (1 diff)
-
UIExtraDataManager.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataDefs.cpp
r91713 r92398 28 28 const char *UIExtraDataDefs::GUI_SuppressMessages = "GUI/SuppressMessages"; 29 29 const char *UIExtraDataDefs::GUI_InvertMessageOption = "GUI/InvertMessageOption"; 30 const char *UIExtraDataDefs::GUI_ KeepSuccessfullNotificationProgresses = "GUI/KeepSuccessfullNotificationProgresses";30 const char *UIExtraDataDefs::GUI_NotificationCenter_KeepSuccessfullProgresses = "GUI/NotificationCenter/KeepSuccessfullProgresses"; 31 31 #if !defined(VBOX_BLEEDING_EDGE) && !defined(DEBUG) 32 32 const char *UIExtraDataDefs::GUI_PreventBetaWarning = "GUI/PreventBetaWarning"; -
trunk/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataDefs.h
r91717 r92398 58 58 SHARED_LIBRARY_STUFF extern const char *GUI_InvertMessageOption; 59 59 /** Holds whether successfull notification-progresses should NOT close automatically. */ 60 SHARED_LIBRARY_STUFF extern const char *GUI_ KeepSuccessfullNotificationProgresses;60 SHARED_LIBRARY_STUFF extern const char *GUI_NotificationCenter_KeepSuccessfullProgresses; 61 61 #if !defined(VBOX_BLEEDING_EDGE) && !defined(DEBUG) 62 62 /** Holds version for which user wants to prevent BETA build warning. */ -
trunk/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataManager.cpp
r92027 r92398 1895 1895 << QString() 1896 1896 << GUI_RestrictedDialogs 1897 << GUI_SuppressMessages << GUI_InvertMessageOption << GUI_KeepSuccessfullNotificationProgresses 1897 << GUI_SuppressMessages << GUI_InvertMessageOption 1898 << GUI_NotificationCenter_KeepSuccessfullProgresses 1898 1899 #ifdef VBOX_GUI_WITH_NETWORK_MANAGER 1899 1900 << GUI_PreventApplicationUpdate << GUI_UpdateDate << GUI_UpdateCheckCount … … 2342 2343 { 2343 2344 /* 'False' unless feature allowed: */ 2344 return isFeatureAllowed(GUI_ KeepSuccessfullNotificationProgresses);2345 return isFeatureAllowed(GUI_NotificationCenter_KeepSuccessfullProgresses); 2345 2346 } 2346 2347 … … 2348 2349 { 2349 2350 /* 'True' if feature allowed, null-string otherwise: */ 2350 setExtraDataString(GUI_ KeepSuccessfullNotificationProgresses, toFeatureAllowed(fKeep));2351 setExtraDataString(GUI_NotificationCenter_KeepSuccessfullProgresses, toFeatureAllowed(fKeep)); 2351 2352 } 2352 2353
Note:
See TracChangeset
for help on using the changeset viewer.

