summaryrefslogtreecommitdiffstats
path: root/superkaramba/src/widget_python.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /superkaramba/src/widget_python.cpp
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz
tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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