summaryrefslogtreecommitdiffstats
path: root/kdat/BackupOptDlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdat/BackupOptDlg.cpp')
-rw-r--r--kdat/BackupOptDlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdat/BackupOptDlg.cpp b/kdat/BackupOptDlg.cpp
index 58ae673..09ca8d8 100644
--- a/kdat/BackupOptDlg.cpp
+++ b/kdat/BackupOptDlg.cpp
@@ -18,7 +18,7 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-#include <tqlayout.h>
+#include <layout.h>
#include <kpushbutton.h>
#include <kstdguiitem.h>
@@ -42,10 +42,10 @@ BackupOptDlg::BackupOptDlg( BackupProfile* backupProfile, TQWidget* parent, cons
_profile->setBackupProfile( backupProfile );
KPushButton* ok = new KPushButton( KStdGuiItem::ok(), this );
- ok->setFixedSize( 80, ok->tqsizeHint().height() );
+ ok->setFixedSize( 80, ok->sizeHint().height() );
connect( ok, TQT_SIGNAL( clicked() ), this, TQT_SLOT( accept() ) );
KPushButton* cancel = new KPushButton( KStdGuiItem::cancel(), this );
- cancel->setFixedSize( 80, ok->tqsizeHint().height() );
+ cancel->setFixedSize( 80, ok->sizeHint().height() );
connect( cancel, TQT_SIGNAL( clicked() ), this, TQT_SLOT( reject() ) );
TQVBoxLayout* l1 = new TQVBoxLayout( this, 8, 4 );