Changeset 17377 in vbox
- Timestamp:
- Mar 5, 2009 9:23:48 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43778
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxAboutDlg.h
r12590 r17377 25 25 26 26 #include "QIWithRetranslateUI.h" 27 #include "QIDialog.h" 27 28 28 29 /* Qt includes */ 29 #include <QDialog>30 30 #include <QPixmap> 31 31 32 32 class QEvent; 33 33 34 class VBoxAboutDlg: public QIWithRetranslateUI2<Q Dialog>34 class VBoxAboutDlg: public QIWithRetranslateUI2<QIDialog> 35 35 { 36 36 Q_OBJECT; -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxAboutDlg.cpp
r16072 r17377 28 28 29 29 VBoxAboutDlg::VBoxAboutDlg (QWidget* aParent, const QString &aVersion) 30 : QIWithRetranslateUI2 <Q Dialog> (aParent, Qt::CustomizeWindowHint |31 Qt::WindowTitleHint | Qt::WindowSystemMenuHint),30 : QIWithRetranslateUI2 <QIDialog> (aParent, Qt::CustomizeWindowHint | 31 Qt::WindowTitleHint | Qt::WindowSystemMenuHint), 32 32 mVersion (aVersion), 33 33 mBgImage (":/about.png") … … 40 40 if (aEvent->type() == QEvent::Polish) 41 41 setFixedSize (mBgImage.size()); 42 return Q Dialog::event (aEvent);42 return QIDialog::event (aEvent); 43 43 } 44 44 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r17347 r17377 707 707 708 708 #ifdef Q_WS_MAC 709 /* For the status bar on Cocoa */ 710 setUnifiedTitleAndToolBarOnMac (true); 711 709 712 # ifdef VBOX_WITH_ICHAT_THEATER 710 713 // int setAttr[] = { kHIWindowBitDoesNotShowBadgeInDock, 0 };
Note:
See TracChangeset
for help on using the changeset viewer.