Changeset 58947 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Dec 2, 2015 12:41:53 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104457
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.cpp
r57873 r58947 262 262 CShowWindowEvent es(pEvent); 263 263 /* Has to be done in place to give an answer: */ 264 LONG64 winId = es.GetWinId();264 qint64 winId = es.GetWinId(); 265 265 if (winId != 0) 266 266 break; /* Already set by some listener. */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMainEventListener.h
r58867 r58947 112 112 void sigCanShowWindow(bool &fVeto, QString &strReason); /* use Qt::DirectConnection */ 113 113 /** Notifies about VM window with specified @a winId should be shown. */ 114 void sigShowWindow( LONG64 &winId); /* use Qt::DirectConnection */114 void sigShowWindow(qint64 &winId); /* use Qt::DirectConnection */ 115 115 116 116 public: -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIConsoleEventHandler.cpp
r57873 r58947 65 65 } 66 66 67 void UIConsoleEventHandler::sltShowWindow( LONG64 &winId)67 void UIConsoleEventHandler::sltShowWindow(qint64 &winId) 68 68 { 69 69 #ifdef Q_WS_MAC … … 192 192 /* This returns a winId, so we have to respond to the event and have to use 193 193 * a direct connection therefor. */ 194 connect(pListener->getWrapped(), SIGNAL(sigShowWindow( LONG64&)),195 this, SLOT(sltShowWindow( LONG64&)),194 connect(pListener->getWrapped(), SIGNAL(sigShowWindow(qint64&)), 195 this, SLOT(sltShowWindow(qint64&)), 196 196 Qt::DirectConnection); 197 197 } -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIConsoleEventHandler.h
r58867 r58947 92 92 void sltCanShowWindow(bool &fVeto, QString &strReason); 93 93 /** Shows VM window if possible. */ 94 void sltShowWindow( LONG64 &winId);94 void sltShowWindow(qint64 &winId); 95 95 96 96 private:
Note:
See TracChangeset
for help on using the changeset viewer.