Changeset 13908 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Nov 6, 2008 11:53:47 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38915
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r13547 r13908 64 64 # Hack for installing the qt.dll when building for OS/2. 65 65 # 66 ifneq ($(strip $( VBOX_DLL_QT)),)66 ifneq ($(strip $(DLL_SDK_QT3_QT)),) 67 67 INSTALLS.os2 += qt.dll 68 68 qt.dll_INST = $(INST_BIN) 69 69 qt.dll_SOURCES += \ 70 $( VBOX_DLL_QT)=>$(not-dir $(VBOX_DLL_QT))70 $(DLL_SDK_QT3_QT)=>$(not-dir $(DLL_SDK_QT3_QT)) 71 71 endif 72 72 endif # OS/2 … … 339 339 340 340 VirtualBox_INCS = \ 341 . \ 341 342 ./include \ 342 343 $(PATH_VirtualBox)/include -
trunk/src/VBox/Frontends/VirtualBox/src/QIWidgetValidator.cpp
r8170 r13908 23 23 #include "QIWidgetValidator.h" 24 24 25 #include "VBoxGlobal.h" 26 25 27 #include <qobjectlist.h> 26 28 #include <qlineedit.h> … … 29 31 30 32 #include <iprt/assert.h> 31 32 #include "VBoxGlobal.h"33 33 34 34 /** @class QIWidgetValidator -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxMediaComboBox.cpp
r13580 r13908 107 107 QUuid VBoxMediaComboBox::id (int aIndex /*= -1*/) 108 108 { 109 #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 109 110 AssertReturn (aIndex == -1 || 110 111 (aIndex >= 0 && (size_t) aIndex < mMedia.size()), 111 112 QUuid()); 113 #else 114 static QUuid null; 115 AssertReturn (aIndex == -1 || 116 (aIndex >= 0 && (size_t) aIndex < mMedia.size()), 117 null); 118 #endif 112 119 113 120 return mMedia [aIndex == -1 ? currentItem() : aIndex].id;
Note:
See TracChangeset
for help on using the changeset viewer.