diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-12 19:49:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-12 19:49:55 +0000 |
commit | 8bb16c159066215bb8975be57b77885014e00054 (patch) | |
tree | a67775ff2107da60ae4c231842e56d2012cfb6a5 | |
parent | 4aaf3695f55ab5bc94747c19507427a7b94d9a80 (diff) | |
download | tqtinterface-8bb16c159066215bb8975be57b77885014e00054.tar.gz tqtinterface-8bb16c159066215bb8975be57b77885014e00054.zip |
Qt3 compilation fix
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1162830 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | qtinterface/tqvariant.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qtinterface/tqvariant.cpp b/qtinterface/tqvariant.cpp index 981922e..23d24a5 100644 --- a/qtinterface/tqvariant.cpp +++ b/qtinterface/tqvariant.cpp @@ -22,10 +22,10 @@ Boston, MA 02110-1301, USA. #include <tqt.h> #include <tqvariant.h> -#include <Qt/qbitmap.h> - #ifdef USE_QT4 +#include <Qt/qbitmap.h> + // This is taken straight from <private/qvariant_p.h> #ifdef Q_CC_SUN // Sun CC picks the wrong overload, so introduce awful hack @@ -126,4 +126,4 @@ QColor QVariant::asColor() { return toColor(); } -#endif // USE_QT4
\ No newline at end of file +#endif // USE_QT4 |