X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/f65b0899c3666561cafac14f67ab0bb8a5bfa00a..697d58e9727e229abb81956d27a05d1f02d8c775:/src/statusbar/mountpointobservercache.h diff --git a/src/statusbar/mountpointobservercache.h b/src/statusbar/mountpointobservercache.h index ab16fa760..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 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; };