From 13281e2856a2ef43bbab78c5528470309c23aa77 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:48:49 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- krsync/krsync.h | 2 +- krsync/rsyncconfigdialog.cpp | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'krsync') diff --git a/krsync/krsync.h b/krsync/krsync.h index c9273f697..dedefa8f4 100644 --- a/krsync/krsync.h +++ b/krsync/krsync.h @@ -41,7 +41,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/krsync/rsyncconfigdialog.cpp b/krsync/rsyncconfigdialog.cpp index b51fa4756..a16871086 100644 --- a/krsync/rsyncconfigdialog.cpp +++ b/krsync/rsyncconfigdialog.cpp @@ -60,7 +60,7 @@ #include #include #include -#include +#include #include #include #include @@ -121,13 +121,13 @@ RsyncConfigDialog::RsyncConfigDialog(TQWidget* parent, const char* name, mCancelText = actionButton(KDialogBase::Cancel)->text(); TQFrame* mainWidget = plainPage(); - TQVBoxLayout* tqlayout = new TQVBoxLayout(mainWidget, 10); + TQVBoxLayout* layout = new TQVBoxLayout(mainWidget, 10); mLabel = new TQLabel(TQString("") + text + TQString("
")+i18n("Setting up synchronization for local folder")+TQString("
") + localfolder, mainWidget); - tqlayout->addWidget(mLabel); + layout->addWidget(mLabel); // Create an exclusive button group TQButtonGroup *layoutg = new TQButtonGroup( 1, Qt::Horizontal, i18n("Synchronization Method")+TQString(":"), mainWidget); - tqlayout->addWidget( layoutg ); + layout->addWidget( layoutg ); layoutg->setExclusive( TRUE ); // Insert radiobuttons @@ -147,7 +147,7 @@ RsyncConfigDialog::RsyncConfigDialog(TQWidget* parent, const char* name, // Create an exclusive button group TQButtonGroup *layoutm = new TQButtonGroup( 1, Qt::Horizontal, i18n("Remote Folder")+TQString(":"), mainWidget); - tqlayout->addWidget( layoutm ); + layout->addWidget( layoutm ); layoutg->setExclusive( TRUE ); m_rsync_txt = new TQLineEdit(layoutm); @@ -157,7 +157,7 @@ RsyncConfigDialog::RsyncConfigDialog(TQWidget* parent, const char* name, // Create an exclusive button group TQButtonGroup *layouta = new TQButtonGroup( 1, Qt::Horizontal, i18n("Automatic Synchronization")+TQString(":"), mainWidget); - tqlayout->addWidget( layouta ); + layout->addWidget( layouta ); layouta->setExclusive( FALSE ); m_sync_auto_logout_cb = new TQCheckBox(layouta); -- cgit v1.2.1