Changeset 56929 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
- Timestamp:
- Jul 14, 2015 2:18:11 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
r55678 r56929 35 35 #include "UIMediumDefs.h" 36 36 #include "VBoxGlobalSettings.h" 37 #ifdef Q_WS_X11 38 # include "VBoxX11Helper.h" 39 #endif /* Q_WS_X11 */ 37 40 38 41 /* COM includes: */ … … 149 152 QList<QUrl> &argUrlList() { return m_ArgUrlList; } 150 153 151 bool isKWinManaged() const { return mIsKWinManaged; } 154 #ifdef Q_WS_X11 155 /** X11: Returns the type of the Window Manager we are running under. */ 156 X11WMType typeOfWindowManager() const { return m_enmWindowManagerType; } 157 #endif /* Q_WS_X11 */ 152 158 153 159 /** Returns whether we should restore current snapshot before VM started. */ … … 480 486 mutable QReadWriteLock m_mediumEnumeratorDtorRwLock; 481 487 482 bool mIsKWinManaged; 488 #ifdef Q_WS_X11 489 /** X11: Holds the type of the Window Manager we are running under. */ 490 X11WMType m_enmWindowManagerType; 491 #endif /* Q_WS_X11 */ 483 492 484 493 /** The --aggressive-caching / --no-aggressive-caching option. */
Note:
See TracChangeset
for help on using the changeset viewer.