FileSystemWatcherInterface: Change signal to non const

This commit is contained in:
Jonas Kvinge
2022-08-28 02:45:56 +02:00
parent c39acc6e3c
commit 216fdb2393

View File

@@ -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