Browse Source

Fix linux compilation.

adaptive-webui-19844
sledgehammer999 11 years ago
parent
commit
4a84b6a911
  1. 6
      src/mainwindow.cpp

6
src/mainwindow.cpp

@ -98,7 +98,11 @@ using namespace libtorrent;
*****************************************************/ *****************************************************/
// Constructor // Constructor
MainWindow::MainWindow(QWidget *parent, const QStringList& torrentCmdLine) : QMainWindow(parent), m_posInitialized(false), force_exit(false), checkingProgramUpdate(false) { MainWindow::MainWindow(QWidget *parent, const QStringList& torrentCmdLine) : QMainWindow(parent), m_posInitialized(false), force_exit(false)
#if defined(Q_WS_WIN) || defined(Q_WS_MAC)
,checkingProgramUpdate(false)
#endif
{
setupUi(this); setupUi(this);
Preferences pref; Preferences pref;

Loading…
Cancel
Save