]> andersk Git - svn-all-fast-export.git/commitdiff
Support Qt 4.3 too
authorThiago Macieira <thiago@kde.org>
Fri, 20 Feb 2009 20:25:51 +0000 (21:25 +0100)
committerThiago Macieira <thiago@kde.org>
Fri, 20 Feb 2009 20:25:51 +0000 (21:25 +0100)
src/repository.cpp

index 9c2a9d5421964cd2261a0f75c2ebedf9ae91d369..cfe4db93425df8f54df3daa1ac62541554eac777 100644 (file)
@@ -40,7 +40,11 @@ public:
 
     inline void remove(Repository *repo)
     {
+#if QT_VERSION >= 0x040400
         removeOne(repo);
+#else
+        removeAll(repo);
+#endif
     }
 };
 static ProcessCache processCache;
This page took 0.063771 seconds and 5 git commands to generate.