Changeset 11787 in vbox
- Timestamp:
- Aug 28, 2008 7:42:37 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35571
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleWnd.cpp
r11774 r11787 1151 1151 * See http://trolltech.com/developer/task-tracker/index_html?id=206165&method=entry 1152 1152 * for details. */ 1153 #if defined (Q_WS_X11) && (QT_VERSION >= 0x040309) && (QT_VERSION < 0x040401) 1153 #if defined (Q_WS_X11) && (QT_VERSION >= 0x040309) && (QT_VERSION < 0x040401) 1154 1154 qApp->setOverrideCursor(Qt::ArrowCursor); 1155 1155 #endif … … 2046 2046 if (aOn) 2047 2047 { 2048 /* Take the toggle hot key from the menu item. */ 2049 QString hotKey = VBoxGlobal::extractKeyFromActionText (aSeamless ? vmSeamlessAction->text() : 2050 vmFullscreenAction->text()); 2048 /* Take the toggle hot key from the menu item. Since 2049 * VBoxGlobal::extractKeyFromActionText gets exactly the 2050 * linked key without the 'Host+' part we are adding it here. */ 2051 QString hotKey = QString ("Host+%1") 2052 .arg (VBoxGlobal::extractKeyFromActionText (aSeamless ? 2053 vmSeamlessAction->text() : vmFullscreenAction->text())); 2051 2054 2052 2055 Assert (!hotKey.isEmpty());
Note:
See TracChangeset
for help on using the changeset viewer.