diff options
Diffstat (limited to 'pics/ksvgtopng.cpp')
-rw-r--r-- | pics/ksvgtopng.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pics/ksvgtopng.cpp b/pics/ksvgtopng.cpp index 27f2545da..53a1a826c 100644 --- a/pics/ksvgtopng.cpp +++ b/pics/ksvgtopng.cpp @@ -1,5 +1,5 @@ -#include <qimage.h> -#include <qstring.h> +#include <tqimage.h> +#include <tqstring.h> #include <kimageeffect.h> @@ -23,7 +23,7 @@ int main(int argc, char **argv) int width = atoi(argv[1]); int height = atoi(argv[2]); - QImage *img = 0; + TQImage *img = 0; KSVGIconEngine *svgEngine = new KSVGIconEngine(); @@ -47,7 +47,7 @@ int main(int argc, char **argv) */ } else - img = new QImage(); + img = new TQImage(); delete svgEngine; |