summaryrefslogtreecommitdiffstats
path: root/tdersync
diff options
context:
space:
mode:
Diffstat (limited to 'tdersync')
-rw-r--r--tdersync/rsyncconfigdialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/tdersync/rsyncconfigdialog.cpp b/tdersync/rsyncconfigdialog.cpp
index a99a245c7..a97c7b2f1 100644
--- a/tdersync/rsyncconfigdialog.cpp
+++ b/tdersync/rsyncconfigdialog.cpp
@@ -128,7 +128,7 @@ RsyncConfigDialog::RsyncConfigDialog(TQWidget* parent, const char* name,
// Create an exclusive button group
TQButtonGroup *layoutg = new TQButtonGroup( 1, TQt::Horizontal, i18n("Synchronization Method")+TQString(":"), mainWidget);
layout->addWidget( layoutg );
- layoutg->setExclusive( TRUE );
+ layoutg->setExclusive( true );
// Insert radiobuttons
rsync_rb1 = new TQRadioButton(i18n("&Utilize rsync + ssh for upload to remote server\nExample: servername:/path/to/remote/folder"), layoutg);
@@ -136,11 +136,11 @@ RsyncConfigDialog::RsyncConfigDialog(TQWidget* parent, const char* name,
rsync_rb3 = new TQRadioButton(i18n("&Utilize unison + ssh for bidirectional synchronization with remote server\nExample: ssh://servername//path/to/remote/folder"), layoutg);
if (syncmode == 1)
- rsync_rb1->setChecked( TRUE );
+ rsync_rb1->setChecked( true );
else if (syncmode == 2)
- rsync_rb2->setChecked( TRUE );
+ rsync_rb2->setChecked( true );
else if (syncmode == 3)
- rsync_rb3->setChecked( TRUE );
+ rsync_rb3->setChecked( true );
//(void)new TQRadioButton( "R&adiobutton 2", layoutg );
//(void)new TQRadioButton( "Ra&diobutton 3", layoutg );
@@ -148,7 +148,7 @@ RsyncConfigDialog::RsyncConfigDialog(TQWidget* parent, const char* name,
// Create an exclusive button group
TQButtonGroup *layoutm = new TQButtonGroup( 1, TQt::Horizontal, i18n("Remote Folder")+TQString(":"), mainWidget);
layout->addWidget( layoutm );
- layoutg->setExclusive( TRUE );
+ layoutg->setExclusive( true );
m_rsync_txt = new TQLineEdit(layoutm);
if (remotefolder.isEmpty() == false) {
@@ -158,7 +158,7 @@ RsyncConfigDialog::RsyncConfigDialog(TQWidget* parent, const char* name,
// Create an exclusive button group
TQButtonGroup *layouta = new TQButtonGroup( 1, TQt::Horizontal, i18n("Automatic Synchronization")+TQString(":"), mainWidget);
layout->addWidget( layouta );
- layouta->setExclusive( FALSE );
+ layouta->setExclusive( false );
m_sync_auto_logout_cb = new TQCheckBox(layouta);
m_sync_auto_logout_cb->setText(i18n("Synchronize on logout"));