]> git.sesse.net Git - kdenlive/blobdiff - src/clipmanager.h
const'ify
[kdenlive] / src / clipmanager.h
index ca85ab05894691660a039c815358e1302188f054..5165bbd4f8c6ec24fd7768c776330cc764212f79 100644 (file)
@@ -71,7 +71,7 @@ public:
 namespace Mlt
 {
 class Producer;
-};
+}
 
 class ClipManager: public QObject
 {
@@ -123,8 +123,6 @@ Q_OBJECT public:
     void removeGroup(AbstractGroupItem *group);
     QDomElement groupsXml() const;
     int clipsCount() const;
-    /** @brief Request creation of a clip thumbnail for specified frames. */
-    void requestThumbs(const QString id, QList <int> frames);
     /** @brief remove a clip id from the queue list. */
     void stopThumbs(const QString &id);
     void projectTreeThumbReady(const QString &id, int frame, QImage img, int type);
@@ -133,6 +131,10 @@ Q_OBJECT public:
     KImageCache* pixmapCache;
 #endif
 
+public slots:
+    /** @brief Request creation of a clip thumbnail for specified frames. */
+    void slotRequestThumbs(const QString id, QList <int> frames);
+    
 private slots:
     /** A clip was externally modified, monitor for more changes and prepare for reload */
     void slotClipModified(const QString &path);