mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-11 15:56:17 -07:00
Fix linux compilation.
This commit is contained in:
parent
b0e8c1139f
commit
4a84b6a911
1 changed files with 5 additions and 1 deletions
|
@ -98,7 +98,11 @@ using namespace libtorrent;
|
|||
*****************************************************/
|
||||
|
||||
// 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);
|
||||
|
||||
Preferences pref;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue