Fix warning about getter being mismarked as slot

This commit is contained in:
Martchus 2023-01-11 19:03:35 +01:00
parent 8bf2824c2d
commit 417950ccb4
1 changed files with 1 additions and 1 deletions

View File

@ -116,6 +116,7 @@ public:
~LauncherOptionPage() override;
bool apply() override;
void reset() override;
bool isRunning() const;
private Q_SLOTS:
void handleSyncthingLaunched(bool running);
@ -123,7 +124,6 @@ private Q_SLOTS:
void handleSyncthingOutputAvailable(const QByteArray &output);
void handleSyncthingExited(int exitCode, QProcess::ExitStatus exitStatus);
void handleSyncthingError(QProcess::ProcessError error);
bool isRunning() const;
void launch();
#ifdef SYNCTHINGWIDGETS_USE_LIBSYNCTHING
void updateLibSyncthingLogLevel();