summaryrefslogtreecommitdiffstats
path: root/arts/gui/kde/kframe_impl.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
commite654398e46e37abf457b2b1122ab898d2c51c49f (patch)
treed39ee6440f3c3663c3ead84a2d4cc2d034667e96 /arts/gui/kde/kframe_impl.cpp
parente4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff)
downloadtdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz
tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'arts/gui/kde/kframe_impl.cpp')
-rw-r--r--arts/gui/kde/kframe_impl.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/arts/gui/kde/kframe_impl.cpp b/arts/gui/kde/kframe_impl.cpp
index 472484e2..d95da549 100644
--- a/arts/gui/kde/kframe_impl.cpp
+++ b/arts/gui/kde/kframe_impl.cpp
@@ -19,17 +19,17 @@
// $Id$
#include "kframe_impl.h"
-#include <qframe.h>
+#include <tqframe.h>
#include <debug.h>
#include <stdio.h>
using namespace Arts;
using namespace std;
-KFrame_impl::KFrame_impl( QFrame * widget )
- : KWidget_impl( widget ? widget : new QFrame )
+KFrame_impl::KFrame_impl( TQFrame * widget )
+ : KWidget_impl( widget ? widget : new TQFrame )
{
- _qframe = static_cast<QFrame*>( _qwidget );
+ _qframe = static_cast<TQFrame*>( _qwidget );
assert( _qframe );
}
@@ -80,7 +80,7 @@ Shape KFrame_impl::frameshape()
void KFrame_impl::frameshape( Shape fs )
{
- _qframe->setFrameShape( ( QFrame::Shape )fs );
+ _qframe->setFrameShape( ( TQFrame::Shape )fs );
}
Shadow KFrame_impl::frameshadow()
@@ -90,7 +90,7 @@ Shadow KFrame_impl::frameshadow()
void KFrame_impl::frameshadow( Shadow fs )
{
- _qframe->setFrameShadow( ( QFrame::Shadow )fs );
+ _qframe->setFrameShadow( ( TQFrame::Shadow )fs );
}
REGISTER_IMPLEMENTATION(KFrame_impl);