Browse Source

Fix macro define cross over access specifiers

adaptive-webui-19844
Vladimir Golovnev (Glassez) 9 years ago
parent
commit
a6595507f0
  1. 13
      src/gui/mainwindow.h

13
src/gui/mainwindow.h

@ -155,13 +155,8 @@ protected:
void displayRSSTab(bool enable); void displayRSSTab(bool enable);
void displaySearchTab(bool enable); void displaySearchTab(bool enable);
private:
QIcon getSystrayIcon() const;
#ifdef Q_OS_WIN
bool addPythonPathToEnv();
void installPython();
private slots: private slots:
#ifdef Q_OS_WIN
void pythonDownloadSuccess(const QString &url, const QString &filePath); void pythonDownloadSuccess(const QString &url, const QString &filePath);
void pythonDownloadFailure(const QString &url, const QString &error); void pythonDownloadFailure(const QString &url, const QString &error);
#endif #endif
@ -169,6 +164,12 @@ private slots:
void manageCookies(); void manageCookies();
private: private:
QIcon getSystrayIcon() const;
#ifdef Q_OS_WIN
bool addPythonPathToEnv();
void installPython();
#endif
QFileSystemWatcher *executable_watcher; QFileSystemWatcher *executable_watcher;
// Bittorrent // Bittorrent
QList<QPair<BitTorrent::TorrentHandle*, QString>> unauthenticated_trackers; // Still needed? QList<QPair<BitTorrent::TorrentHandle*, QString>> unauthenticated_trackers; // Still needed?

Loading…
Cancel
Save