diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-05 22:07:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-05 22:07:15 +0000 |
commit | 421b60af92c83b889f8903c2898f2bd07186fcd8 (patch) | |
tree | ad873a24c9438baed4942fda795430a4c3dc9a9a /src/kbfxplasmacanvasgroupview.cpp | |
parent | 39e896bddf25bf34cbf8be814d959181e2c1d1dd (diff) | |
download | kbfx-421b60af92c83b889f8903c2898f2bd07186fcd8.tar.gz kbfx-421b60af92c83b889f8903c2898f2bd07186fcd8.zip |
TQt4 port kbfx
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbfx@1230544 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kbfxplasmacanvasgroupview.cpp')
-rw-r--r-- | src/kbfxplasmacanvasgroupview.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/kbfxplasmacanvasgroupview.cpp b/src/kbfxplasmacanvasgroupview.cpp index 04c7f8e..0f84605 100644 --- a/src/kbfxplasmacanvasgroupview.cpp +++ b/src/kbfxplasmacanvasgroupview.cpp @@ -27,7 +27,7 @@ KbfxPlasmaCanvasGroupView::KbfxPlasmaCanvasGroupView () m_count = 0; m_height = 0; m_width = 0; - m_name = QString ( "Unkown" ); + m_name = TQString ( "Unkown" ); m_fullExpand = false; } @@ -62,10 +62,10 @@ KbfxPlasmaCanvasGroupView::addGroup ( KbfxPlasmaCanvasGroup * gPtr ) // gPtr->show(); // qDebug("adding Groupy"); m_count++; - connect ( gPtr, SIGNAL ( groupShade ( uint ) ), this, - SLOT ( foldGroup ( uint ) ) ); - connect ( gPtr, SIGNAL ( groupUnShade ( uint ) ), this, - SLOT ( unFoldGroup ( uint ) ) ); + connect ( gPtr, TQT_SIGNAL ( groupShade ( uint ) ), this, + TQT_SLOT ( foldGroup ( uint ) ) ); + connect ( gPtr, TQT_SIGNAL ( groupUnShade ( uint ) ), this, + TQT_SLOT ( unFoldGroup ( uint ) ) ); } @@ -74,7 +74,7 @@ KbfxPlasmaCanvasGroupView::addGroup ( KbfxPlasmaCanvasGroup * gPtr ) } KbfxPlasmaCanvasGroupView * -KbfxPlasmaCanvasGroupView::contains ( KbfxPlasmaCanvasGroup * ) +KbfxPlasmaCanvasGroupView::tqcontains ( KbfxPlasmaCanvasGroup * ) { //maybe I don't need this return 0; @@ -82,13 +82,13 @@ KbfxPlasmaCanvasGroupView::contains ( KbfxPlasmaCanvasGroup * ) } void -KbfxPlasmaCanvasGroupView::setName ( QString name ) +KbfxPlasmaCanvasGroupView::setName ( TQString name ) { m_name = name; //delete [] name; } -QString +TQString KbfxPlasmaCanvasGroupView::name() { return m_name; |