Changeset 10149 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- Jul 3, 2008 11:59:35 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32678
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxSelectorWnd.h
r10112 r10149 43 43 class QListView; 44 44 class QEvent; 45 class QUuid;46 45 47 46 class VBoxSelectorWnd: public QIWithRetranslateUI2<QMainWindow> -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleView.cpp
r10112 r10149 2572 2572 if (ch) 2573 2573 processed = processHotKey (QKeySequence (Qt::UNICODE_ACCEL + 2574 QChar (ch). upper().unicode()),2574 QChar (ch).toUpper().unicode()), 2575 2575 mMainWnd->menuBar()->actions()); 2576 2576 } … … 3089 3089 viewport()->setCursor (QCursor (Qt::BlankCursor)); 3090 3090 /* move the mouse to the center of the visible area */ 3091 QCursor::setPos (mapToGlobal (visibleRe ct().center()));3091 QCursor::setPos (mapToGlobal (visibleRegion().boundingRect().center())); 3092 3092 mLastPos = QCursor::pos(); 3093 3093 #elif defined (Q_WS_MAC) -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxFBDDRAW.cpp
r9495 r10149 281 281 getWindowPosition(); 282 282 283 mView->setBackgroundMode (Qt::NoBackground); 283 //#warning: port me 284 // mView->setBackgroundMode (Qt::NoBackground); 284 285 } 285 286 -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r10124 r10149 3407 3407 else 3408 3408 { 3409 workDir = fi. dirPath (true);3409 workDir = fi.absolutePath(); 3410 3410 initSel = fi.fileName(); 3411 3411 } … … 3453 3453 PostMessage (msg.hwnd, msg.message, 0, msg.lParam); 3454 3454 3455 result = result.isEmpty() ? result : QFileInfo (result).abs FilePath();3455 result = result.isEmpty() ? result : QFileInfo (result).absoluteFilePath(); 3456 3456 3457 3457 QApplication::postEvent (mTarget, new GetOpenFileNameEvent (result)); -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxProblemReporter.cpp
r10112 r10149 2146 2146 QString fullHelpFilePath = qApp->applicationDirPath() + "/VirtualBox.chm"; 2147 2147 2148 HtmlHelp (GetDesktopWindow(), fullHelpFilePath.u cs2(),2148 HtmlHelp (GetDesktopWindow(), fullHelpFilePath.utf16(), 2149 2149 HH_DISPLAY_TOPIC, NULL); 2150 2150 #elif defined (Q_WS_X11)
Note:
See TracChangeset
for help on using the changeset viewer.