summaryrefslogtreecommitdiffstats
path: root/src/exporterdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:20 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:29:20 -0600
commit882bcd26b3d60be72ea2b35921969a9850c52db9 (patch)
tree8d0a6902c5de4632c4e73e35c4d86404fa75f470 /src/exporterdialog.cpp
parentc82058b2b64334c10d7e547cb81ac64efe09f516 (diff)
downloadbasket-882bcd26b3d60be72ea2b35921969a9850c52db9.tar.gz
basket-882bcd26b3d60be72ea2b35921969a9850c52db9.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/exporterdialog.cpp')
-rw-r--r--src/exporterdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exporterdialog.cpp b/src/exporterdialog.cpp
index 7ef6585..995eb32 100644
--- a/src/exporterdialog.cpp
+++ b/src/exporterdialog.cpp
@@ -25,7 +25,7 @@
#include <tqdir.h>
#include <tqhbox.h>
#include <tqvbox.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <tqlabel.h>
#include <klocale.h>
#include <kconfig.h>
@@ -61,10 +61,10 @@ ExporterDialog::ExporterDialog(Basket *basket, TQWidget *parent, const char *nam
showTile(true);
// Add a stretch at the bottom:
// Duplicated code from AddBasketWizard::addStretch(TQWidget *parent):
- (new TQWidget(page))->tqsetSizePolicy(TQSizePolicy::Expanding, TQSizePolicy::Expanding);
+ (new TQWidget(page))->setSizePolicy(TQSizePolicy::Expanding, TQSizePolicy::Expanding);
// Double the width, because the filename should be visible
- TQSize size(tqsizeHint());
+ TQSize size(sizeHint());
resize(TQSize(size.width() * 2, size.height()));
/*
==========================