Changeset 48950 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Oct 7, 2013 9:52:10 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89647
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIThreadPool.cpp
r48911 r48950 135 135 /* Prepare the new worker: */ 136 136 UIThreadWorker *pWorker = new UIThreadWorker(this, idxFirstUnused); 137 connect(pWorker, SIGNAL(sigFinished(UIThreadWorker*)), this, 137 connect(pWorker, SIGNAL(sigFinished(UIThreadWorker*)), this, 138 138 SLOT(sltHandleWorkerFinished(UIThreadWorker*)), Qt::QueuedConnection); 139 139 m_workers[idxFirstUnused] = pWorker; -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r48495 r48950 295 295 #ifdef Q_WS_X11 296 296 /** This is a workaround for a bug on old libX11 versions, fixed in commit 297 * 297 * 941f02ede63baa46f93ed8abccebe76fb29c0789 and released in version 1.1. */ 298 298 Status VBoxXInitThreads(void) 299 299 { -
trunk/src/VBox/Frontends/VirtualBox/src/platform/darwin/UIAbstractDockIconPreview.cpp
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/Frontends/VirtualBox/src/platform/darwin/VBoxUtils-darwin.cpp
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/Frontends/VirtualBox/src/platform/os2/VBoxHlp.cpp
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r48783 r48950 687 687 .arg(VBoxGlobal::tr("VT-x/AMD-V", "details report"), virtualization) 688 688 .arg(VBoxGlobal::tr("Nested Paging"), nestedPaging) 689 .arg(VBoxGlobal::tr("Unrestricted Execution"), unrestrictExec) 689 .arg(VBoxGlobal::tr("Unrestricted Execution"), unrestrictExec) 690 690 .arg(VBoxGlobal::tr("Execution Cap", "details report"), strCPUExecCap)); 691 691 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r47729 r48950 681 681 #ifdef Q_WS_WIN 682 682 #if (WINVER < 0x0601) 683 typedef enum tagINPUT_MESSAGE_DEVICE_TYPE { 683 typedef enum tagINPUT_MESSAGE_DEVICE_TYPE { 684 684 IMDT_UNAVAILABLE = 0, // 0x0 685 685 IMDT_KEYBOARD = 1, // 0x1 … … 689 689 } INPUT_MESSAGE_DEVICE_TYPE; 690 690 691 typedef enum tagINPUT_MESSAGE_ORIGIN_ID { 691 typedef enum tagINPUT_MESSAGE_ORIGIN_ID { 692 692 IMO_UNAVAILABLE = 0x00000000, 693 693 IMO_HARDWARE = 0x00000001, -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineViewNormal.cpp
r48690 r48950 262 262 * over the maximum size we calculated above, we work out how much space 263 263 * the other parts of the window (frame, menu bar, status bar and so on) 264 * take up and subtract that space from the maximum window size. The 264 * take up and subtract that space from the maximum window size. The 265 265 * central widget shouldn't be bigger than the window, but we bound it for 266 266 * sanity (or insanity) reasons. */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineViewScale.cpp
r48644 r48950 215 215 * over the maximum size we calculated above, we work out how much space 216 216 * the other parts of the window (frame, menu bar, status bar and so on) 217 * take up and subtract that space from the maximum window size. The 217 * take up and subtract that space from the maximum window size. The 218 218 * central widget shouldn't be bigger than the window, but we bound it for 219 219 * sanity (or insanity) reasons. */ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIActionPoolSelector.cpp
r48577 r48950 1049 1049 #include "UIActionPoolSelector.moc" 1050 1050 1051 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.cpp
r48759 r48950 109 109 { QRegExp("((moonshine)|(werewolf)|(sulphur)|(cambridge)|(leonidas)|(constantine)|(goddard)|(laughlin)|(lovelock)|(verne)|(beefy)|(spherical)).*64", Qt::CaseInsensitive), "Fedora_64" }, 110 110 { QRegExp("(moonshine)|(werewolf)|(sulphur)|(cambridge)|(leonidas)|(constantine)|(goddard)|(laughlin)|(lovelock)|(verne)|(beefy)|(spherical)", Qt::CaseInsensitive), "Fedora" }, 111 111 112 112 /* Regular names of Linux distributions: */ 113 113 { QRegExp("Arc.*64", Qt::CaseInsensitive), "ArchLinux_64" },
Note:
See TracChangeset
for help on using the changeset viewer.