Changeset 59031 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Dec 7, 2015 4:17:48 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104575
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/COMWrappers.xsl
r54644 r59031 109 109 <xsl:template match="if" mode="begin"> 110 110 <xsl:if test="@target='xpidl'"> 111 <xsl:text>#if !defined(Q_WS_WIN 32)
</xsl:text>111 <xsl:text>#if !defined(Q_WS_WIN)
</xsl:text> 112 112 </xsl:if> 113 113 <xsl:if test="@target='midl'"> 114 <xsl:text>#if defined(Q_WS_WIN 32)
</xsl:text>114 <xsl:text>#if defined(Q_WS_WIN)
</xsl:text> 115 115 </xsl:if> 116 116 </xsl:template> -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r58861 r59031 2674 2674 void UIMessageCenter::sltShowUserManual(const QString &strLocation) 2675 2675 { 2676 #if defined (Q_WS_WIN 32)2676 #if defined (Q_WS_WIN) 2677 2677 HtmlHelp(GetDesktopWindow(), strLocation.utf16(), HH_DISPLAY_TOPIC, NULL); 2678 2678 #elif defined (Q_WS_X11) -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r58880 r59031 2416 2416 QString VBoxGlobal::helpFile() const 2417 2417 { 2418 #if defined (Q_WS_WIN 32)2418 #if defined (Q_WS_WIN) 2419 2419 const QString name = "VirtualBox"; 2420 2420 const QString suffix = "chm"; … … 3236 3236 bool result = true; 3237 3237 3238 #if defined (Q_WS_WIN 32)3238 #if defined (Q_WS_WIN) 3239 3239 3240 3240 if (IsIconic (aWId)) … … 4715 4715 return true; 4716 4716 4717 #if defined (Q_WS_WIN 32) || defined (Q_WS_X11)4717 #if defined (Q_WS_WIN) || defined (Q_WS_X11) 4718 4718 4719 4719 return vboxGlobal().activateWindow(id, true); … … 4746 4746 return false; 4747 4747 4748 #if defined (Q_WS_WIN 32)4748 #if defined (Q_WS_WIN) 4749 4749 4750 4750 HWND hwnd = mWinId; -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h
r58880 r59031 630 630 #endif 631 631 632 #if defined (Q_WS_WIN 32)632 #if defined (Q_WS_WIN) 633 633 DWORD dwHTMLHelpCookie; 634 634 #endif -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIVMItem.cpp
r55800 r59031 45 45 #if 0 46 46 47 #if defined (Q_WS_WIN 32)47 #if defined (Q_WS_WIN) 48 48 49 49 struct EnumWindowsProcData … … 112 112 static WId FindWindowIdFromPid(ULONG aPid) 113 113 { 114 #if defined (Q_WS_WIN 32)114 #if defined (Q_WS_WIN) 115 115 116 116 EnumWindowsProcData d = { aPid, (WId) ~0 }; … … 335 335 return true; 336 336 337 #if defined (Q_WS_WIN 32) || defined (Q_WS_X11)337 #if defined (Q_WS_WIN) || defined (Q_WS_X11) 338 338 339 339 return vboxGlobal().activateWindow(id, true); … … 366 366 return false; 367 367 368 #if defined (Q_WS_WIN 32)368 #if defined (Q_WS_WIN) 369 369 370 370 HWND hwnd = mWinId;
Note:
See TracChangeset
for help on using the changeset viewer.