summaryrefslogtreecommitdiffstats
path: root/superkaramba/src/widget_python.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'superkaramba/src/widget_python.cpp')
-rw-r--r--superkaramba/src/widget_python.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/superkaramba/src/widget_python.cpp b/superkaramba/src/widget_python.cpp
index 8d5d8e7..0948e39 100644
--- a/superkaramba/src/widget_python.cpp
+++ b/superkaramba/src/widget_python.cpp
@@ -27,7 +27,7 @@
#endif
#include <Python.h>
-#include <qobject.h>
+#include <tqobject.h>
#include "karamba.h"
#include "meter.h"
#include "meter_python.h"
@@ -62,9 +62,9 @@ PyObject* py_get_widget_position(PyObject *, PyObject *args)
long createWidgetMask(long widget, char* path)
{
karamba* currTheme = (karamba*)widget;
- QBitmap bm;
- QString maskpath;
- QString rootPath;
+ TQBitmap bm;
+ TQString maskpath;
+ TQString rootPath;
rootPath.setAscii(currTheme->theme().path().ascii());
currTheme->clearMask();
@@ -74,7 +74,7 @@ long createWidgetMask(long widget, char* path)
if(currTheme->theme().isZipTheme())
{
- QByteArray ba = currTheme->theme().readThemeFile(path);
+ TQByteArray ba = currTheme->theme().readThemeFile(path);
bm.loadFromData(ba);
}
else