summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfilesystemwatcher.h
diff options
context:
space:
mode:
authorStephen Kelly <stephen.kelly@kdab.com>2012-10-22 10:59:32 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-28 08:49:38 +0100
commit2e05a1578428fd8268512e12d88d90e93dcf5dff (patch)
tree327e12635d172b12d8d126197eec54d50dff5b72 /src/corelib/io/qfilesystemwatcher.h
parent5a9de4c6768e413a56f0e7b6c67ea11db761cd58 (diff)
QtCore: Make more signals private.
Change-Id: Ida190e8b9c1ff47a6f54a5bf68673ab50a2f1bfe Reviewed-by: Olivier Goffart <ogoffart@woboq.com> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Diffstat (limited to 'src/corelib/io/qfilesystemwatcher.h')
-rw-r--r--src/corelib/io/qfilesystemwatcher.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/corelib/io/qfilesystemwatcher.h b/src/corelib/io/qfilesystemwatcher.h
index 5ac02c6e1d..6fbbdae157 100644
--- a/src/corelib/io/qfilesystemwatcher.h
+++ b/src/corelib/io/qfilesystemwatcher.h
@@ -72,8 +72,16 @@ public:
QStringList directories() const;
Q_SIGNALS:
- void fileChanged(const QString &path);
- void directoryChanged(const QString &path);
+ void fileChanged(const QString &path
+#if !defined(qdoc)
+ , QPrivateSignal
+#endif
+ );
+ void directoryChanged(const QString &path
+#if !defined(qdoc)
+ , QPrivateSignal
+#endif
+ );
private:
Q_PRIVATE_SLOT(d_func(), void _q_fileChanged(const QString &path, bool removed))