diff options
Diffstat (limited to 'kdecore/tests/cplusplustest.cpp')
-rw-r--r-- | kdecore/tests/cplusplustest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kdecore/tests/cplusplustest.cpp b/kdecore/tests/cplusplustest.cpp index 387dac014..1f789fea7 100644 --- a/kdecore/tests/cplusplustest.cpp +++ b/kdecore/tests/cplusplustest.cpp @@ -16,15 +16,15 @@ Boston, MA 02110-1301, USA. */ -#include <qstring.h> -#include <qdict.h> +#include <tqstring.h> +#include <tqdict.h> class A { int foo; }; class B { int bar; }; class C : public A, public B { int foobar; }; -QDict<A> dictA; -QDict<B> dictB; +TQDict<A> dictA; +TQDict<B> dictB; int main(int , char *[]) { |