diff options
Diffstat (limited to 'kdat/BackupProfileWidget.cpp')
-rw-r--r-- | kdat/BackupProfileWidget.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kdat/BackupProfileWidget.cpp b/kdat/BackupProfileWidget.cpp index c088cbe..773a8bd 100644 --- a/kdat/BackupProfileWidget.cpp +++ b/kdat/BackupProfileWidget.cpp @@ -19,7 +19,7 @@ #include <tqcheckbox.h> #include <tqcombobox.h> #include <tqlabel.h> -#include <layout.h> +#include <tqlayout.h> #include <tqlineedit.h> #include <tqlistbox.h> #include <tqpushbutton.h> @@ -40,19 +40,19 @@ BackupProfileWidget::BackupProfileWidget( TQWidget* parent, const char* name ) addTab( one, i18n( "Backup" ) ); TQLabel* lbl1 = new TQLabel( i18n( "Archive name:" ), one ); - lbl1->setFixedSize( lbl1->sizeHint() ); + lbl1->setFixedSize( lbl1->tqsizeHint() ); _archiveName = new TQLineEdit( one ); - _archiveName->setFixedHeight( _archiveName->sizeHint().height() ); + _archiveName->setFixedHeight( _archiveName->tqsizeHint().height() ); TQLabel* lbl2 = new TQLabel( i18n( "Working folder:" ), one ); - lbl2->setFixedSize( lbl2->sizeHint() ); + lbl2->setFixedSize( lbl2->tqsizeHint() ); _workingDir = new TQComboBox( FALSE, one ); - _workingDir->setFixedHeight( _workingDir->sizeHint().height() ); + _workingDir->setFixedHeight( _workingDir->tqsizeHint().height() ); TQLabel* lbl3 = new TQLabel( i18n( "Backup files:" ), one ); - lbl3->setFixedHeight( lbl3->sizeHint().height() ); + lbl3->setFixedHeight( lbl3->tqsizeHint().height() ); _files = new TQListBox( one ); @@ -60,20 +60,20 @@ BackupProfileWidget::BackupProfileWidget( TQWidget* parent, const char* name ) addTab( two, i18n( "Tar Options" ) ); _oneFilesystem = new TQCheckBox( i18n( "Stay on one filesystem" ), two ); - _oneFilesystem->setFixedHeight( _oneFilesystem->sizeHint().height() ); + _oneFilesystem->setFixedHeight( _oneFilesystem->tqsizeHint().height() ); _incremental = new TQCheckBox( i18n( "GNU listed incremental" ), two ); - _incremental->setFixedHeight( _incremental->sizeHint().height() ); + _incremental->setFixedHeight( _incremental->tqsizeHint().height() ); connect( _incremental, TQT_SIGNAL( toggled( bool ) ), this, TQT_SLOT( slotIncrementalToggled( bool ) ) ); _snapshotLabel = new TQLabel( i18n( "Snapshot file:" ), two ); - _snapshotLabel->setFixedSize( _snapshotLabel->sizeHint() ); + _snapshotLabel->setFixedSize( _snapshotLabel->tqsizeHint() ); _snapshotFile = new TQLineEdit( two ); - _snapshotFile->setFixedHeight( _snapshotFile->sizeHint().height() ); + _snapshotFile->setFixedHeight( _snapshotFile->tqsizeHint().height() ); _removeSnapshot = new TQCheckBox( i18n( "Remove snapshot file before backup" ), two ); - _removeSnapshot->setFixedHeight( _removeSnapshot->sizeHint().height() ); + _removeSnapshot->setFixedHeight( _removeSnapshot->tqsizeHint().height() ); slotIncrementalToggled( FALSE ); |