X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/67ebd66f94356b4e66005b1072919cb7b5e858bb..94e08f04f4524fc4993b921a1ae1dd8cc6f8725c:/src/statusbar/mountpointobservercache.h diff --git a/src/statusbar/mountpointobservercache.h b/src/statusbar/mountpointobservercache.h index aeb117cbb..92e1b6be3 100644 --- a/src/statusbar/mountpointobservercache.h +++ b/src/statusbar/mountpointobservercache.h @@ -21,23 +21,23 @@ class MountPointObserverCache : public QObject ~MountPointObserverCache() override; public: - static MountPointObserverCache* instance(); + static MountPointObserverCache *instance(); /** * Returns a MountPointObserver for the given \a url. A new observer is created if necessary. */ - MountPointObserver* observerForUrl(const QUrl& url); + MountPointObserver *observerForUrl(const QUrl &url); -private slots: +private Q_SLOTS: /** * Removes the given \a observer from the cache. */ - void slotObserverDestroyed(QObject* observer); + void slotObserverDestroyed(QObject *observer); private: - QHash m_observerForMountPoint; - QHash m_mountPointForObserver; - QTimer* m_updateTimer; + QHash m_observerForMountPoint; + QHash m_mountPointForObserver; + QTimer *m_updateTimer; friend class MountPointObserverCacheSingleton; };