Changeset 647 for trunk/tools
- Timestamp:
- Mar 7, 2010, 9:20:03 PM (15 years ago)
- Location:
- trunk/tools/assistant/tools/assistant
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/assistant/tools/assistant/assistant.pro
r631 r647 39 39 qtdocinstaller.h 40 40 41 win32 {41 win32 { 42 42 HEADERS += remotecontrol_win.h 43 43 } -
trunk/tools/assistant/tools/assistant/remotecontrol.cpp
r561 r647 55 55 #include <QtHelp/QHelpIndexWidget> 56 56 57 #if def Q_OS_WIN57 #if 58 58 # include "remotecontrol_win.h" 59 59 #endif … … 61 61 QT_BEGIN_NAMESPACE 62 62 63 #if def Q_OS_WIN63 #if 64 64 65 65 StdInListenerWin::StdInListenerWin(QObject *parent) … … 73 73 wait(); 74 74 } 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 75 97 76 98 void StdInListenerWin::run() … … 103 125 } 104 126 } 105 #endif 127 128 #endif // defined(Q_OS_OS2) 129 130 #endif // defined(Q_OS_WIN) || defined(Q_OS_OS2) 106 131 107 132 RemoteControl::RemoteControl(MainWindow *mainWindow, QHelpEngine *helpEngine) … … 116 141 { 117 142 connect(m_mainWindow, SIGNAL(initDone()), this, SLOT(applyCache())); 118 #if def Q_OS_WIN143 #if 119 144 StdInListenerWin *l = new StdInListenerWin(this); 120 145 connect(l, SIGNAL(receivedCommand(QString)), -
trunk/tools/assistant/tools/assistant/remotecontrol_win.h
r561 r647 43 43 #define REMOTECONTROL_WIN_H 44 44 45 #include <windows.h> 45 #if defined(Q_OS_WIN) 46 # include <windows.h> 47 #elif defined(Q_OS_OS2) 48 # include <qt_os2.h> 49 #endif 46 50 #include <QtCore/QThread> 47 51 … … 55 59 StdInListenerWin(QObject *parent); 56 60 ~StdInListenerWin(); 57 61 58 62 signals: 59 63 void receivedCommand(const QString &cmd); … … 61 65 private: 62 66 void run(); 63 bool ok;64 67 }; 65 68
Note:
See TracChangeset
for help on using the changeset viewer.