summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/propertyeditor.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:29:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:29:47 +0000
commit157db246622e300d8cfb4684c197ed873523e3e2 (patch)
treeeaae500286d2b11f6625063f6d7f48c45392de5d /kdevdesigner/designer/propertyeditor.cpp
parentd6f8bbb45b267065a6907e71ff9c98bb6d161241 (diff)
downloadtdevelop-157db246622e300d8cfb4684c197ed873523e3e2.tar.gz
tdevelop-157db246622e300d8cfb4684c197ed873523e3e2.zip
TQt conversion fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1158455 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdevdesigner/designer/propertyeditor.cpp')
-rw-r--r--kdevdesigner/designer/propertyeditor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdevdesigner/designer/propertyeditor.cpp b/kdevdesigner/designer/propertyeditor.cpp
index 7ec9cc9b..c7a5d3ae 100644
--- a/kdevdesigner/designer/propertyeditor.cpp
+++ b/kdevdesigner/designer/propertyeditor.cpp
@@ -100,7 +100,7 @@ static void setupStyle(TQWidget *w)
{
static TQStyle *windowsStyle = 0;
if(!windowsStyle)
- windowsStyle = new QWindowsStyle;
+ windowsStyle = new TQWindowsStyle;
w->setStyle(windowsStyle);
}
#else
@@ -116,7 +116,7 @@ static void cleanupFontDatabase()
static TQStringList getFontList()
{
if ( !fontDataBase ) {
- fontDataBase = new QFontDatabase;
+ fontDataBase = new TQFontDatabase;
qAddPostRoutine( cleanupFontDatabase );
}
return fontDataBase->families();