summaryrefslogtreecommitdiffstats
path: root/kitchensync/src/groupview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kitchensync/src/groupview.cpp')
-rw-r--r--kitchensync/src/groupview.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kitchensync/src/groupview.cpp b/kitchensync/src/groupview.cpp
index b0c061e8..8e1adf87 100644
--- a/kitchensync/src/groupview.cpp
+++ b/kitchensync/src/groupview.cpp
@@ -18,7 +18,7 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-#include <qlayout.h>
+#include <tqlayout.h>
#include "aboutpage.h"
#include "groupitem.h"
@@ -26,10 +26,10 @@
#include "groupview.h"
-GroupView::GroupView( QWidget *parent )
- : QWidget( parent ), mAboutPage( 0 )
+GroupView::GroupView( TQWidget *parent )
+ : TQWidget( parent ), mAboutPage( 0 )
{
- mLayout = new QVBoxLayout( this );
+ mLayout = new TQVBoxLayout( this );
mWidgetList = new KWidgetList( this );
@@ -61,7 +61,7 @@ void GroupView::updateView()
mAboutPage = new AboutPage( this );
mLayout->addWidget( mAboutPage );
- connect( mAboutPage, SIGNAL( addGroup() ), SIGNAL( addGroup() ) );
+ connect( mAboutPage, TQT_SIGNAL( addGroup() ), TQT_SIGNAL( addGroup() ) );
}
mAboutPage->show();
@@ -76,12 +76,12 @@ void GroupView::updateView()
SyncProcess *process = SyncProcessManager::self()->at( i );
GroupItem *item = new GroupItem( mWidgetList, process );
- connect( item, SIGNAL( synchronizeGroup( SyncProcess* ) ),
- SIGNAL( synchronizeGroup( SyncProcess* ) ) );
- connect( item, SIGNAL( abortSynchronizeGroup( SyncProcess* ) ),
- SIGNAL( abortSynchronizeGroup( SyncProcess* ) ) );
- connect( item, SIGNAL( configureGroup( SyncProcess* ) ),
- SIGNAL( configureGroup( SyncProcess* ) ) );
+ connect( item, TQT_SIGNAL( synchronizeGroup( SyncProcess* ) ),
+ TQT_SIGNAL( synchronizeGroup( SyncProcess* ) ) );
+ connect( item, TQT_SIGNAL( abortSynchronizeGroup( SyncProcess* ) ),
+ TQT_SIGNAL( abortSynchronizeGroup( SyncProcess* ) ) );
+ connect( item, TQT_SIGNAL( configureGroup( SyncProcess* ) ),
+ TQT_SIGNAL( configureGroup( SyncProcess* ) ) );
mWidgetList->appendItem( item );
}