Browse Source

Fix "QObject::connect: No such slot" errors

Fixup of d25467d3e6
adaptive-webui-19844
Chocobo1 7 years ago
parent
commit
ec16525164
  1. 8
      src/gui/mainwindow.h

8
src/gui/mainwindow.h

@ -187,15 +187,17 @@ private slots: @@ -187,15 +187,17 @@ private slots:
void toolbarTextBeside();
void toolbarTextUnder();
void toolbarFollowSystem();
#ifndef Q_OS_MAC
void toggleVisibility(const QSystemTrayIcon::ActivationReason reason = QSystemTrayIcon::Trigger);
void createSystrayDelayed();
void updateTrayIconMenu();
#endif
private:
#ifdef Q_OS_MAC
void setupDockClickHandler();
#else
void toggleVisibility(const QSystemTrayIcon::ActivationReason reason = QSystemTrayIcon::Trigger);
void createTrayIcon();
void createSystrayDelayed();
void updateTrayIconMenu();
QIcon getSystrayIcon() const;
#endif
#ifdef Q_OS_WIN

Loading…
Cancel
Save