From: Thiago Macieira Date: Fri, 20 Feb 2009 20:25:51 +0000 (+0100) Subject: Support Qt 4.3 too X-Git-Url: https://repo.or.cz/w/svn-all-fast-export.git/commitdiff_plain/7abbe81c3b2b10d144aee0be744258a352558e03 Support Qt 4.3 too --- diff --git a/src/repository.cpp b/src/repository.cpp index 9c2a9d5..cfe4db9 100644 --- a/src/repository.cpp +++ b/src/repository.cpp @@ -40,7 +40,11 @@ public: inline void remove(Repository *repo) { +#if QT_VERSION >= 0x040400 removeOne(repo); +#else + removeAll(repo); +#endif } }; static ProcessCache processCache;