]> git.lyx.org Git - features.git/commitdiff
cosmetics
authorAndré Pönitz <poenitz@gmx.net>
Wed, 21 Nov 2007 22:04:50 +0000 (22:04 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Wed, 21 Nov 2007 22:04:50 +0000 (22:04 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21699 a592a061-630c-0410-9148-cb99ea01b6c8

src/graphics/LoaderQueue.cpp
src/graphics/LoaderQueue.h

index 977d0c6955a81c74fdb6f95c782fc6b6acf912d6..3faf550fa055d6124940ea84bfba9d42e7567e2c 100644 (file)
@@ -23,8 +23,8 @@ using std::list;
 namespace lyx {
 namespace graphics {
 
-int LoaderQueue::s_numimages_ = 5;
-int LoaderQueue::s_millisecs_ = 500;
+static int s_numimages_ = 5;
+static int s_millisecs_ = 500;
 
 
 LoaderQueue & LoaderQueue::get()
index 2259d74a2f0ebb239ccbdc78f395b6699d95d00b..c68e017cf9bbebf6942df3121ca40b2fe9454152 100644 (file)
@@ -44,7 +44,7 @@ public:
         *  millisecs is the time interval between calls.
         *  Higher numimages, lower millisecs means higher priority.
         */
-       static void setPriority(int numimages , int millisecs);
+       static void setPriority(int numimages, int millisecs);
 private:
        /// This class is a singleton class... use LoaderQueue::get() instead
        LoaderQueue();
@@ -58,10 +58,6 @@ private:
        Timeout timer;
        ///
        bool running_;
-       ///
-       static int s_numimages_ ;
-       ///
-       static int s_millisecs_ ;
 
        /** This is the 'threaded' method, that does the loading in the
         *  background.