From 216fdb2393ba385a763cbc66b7ee27348f36d8b1 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 28 Aug 2022 02:45:56 +0200 Subject: [PATCH] FileSystemWatcherInterface: Change signal to non const --- src/core/filesystemwatcherinterface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/filesystemwatcherinterface.h b/src/core/filesystemwatcherinterface.h index d342a7417..821457968 100644 --- a/src/core/filesystemwatcherinterface.h +++ b/src/core/filesystemwatcherinterface.h @@ -40,7 +40,7 @@ class FileSystemWatcherInterface : public QObject { static FileSystemWatcherInterface *Create(QObject *parent = nullptr); signals: - void PathChanged(const QString &path); + void PathChanged(QString path); }; #endif