summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/kftpfileexistsactions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kftpgrabber/src/kftpfileexistsactions.cpp')
-rw-r--r--kftpgrabber/src/kftpfileexistsactions.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/kftpgrabber/src/kftpfileexistsactions.cpp b/kftpgrabber/src/kftpfileexistsactions.cpp
index d9e7e69..5ebf588 100644
--- a/kftpgrabber/src/kftpfileexistsactions.cpp
+++ b/kftpgrabber/src/kftpfileexistsactions.cpp
@@ -35,29 +35,29 @@
#include "kftpfileexistsactions.h"
-#include <qlayout.h>
-#include <qgroupbox.h>
-#include <qlabel.h>
+#include <ntqlayout.h>
+#include <ntqgroupbox.h>
+#include <ntqlabel.h>
#include <kdialog.h>
#include <kcombobox.h>
-#include <klocale.h>
+#include <tdelocale.h>
namespace KFTPQueue {
-QString &operator<<(QString &s, const FileExistsActions &a)
+TQString &operator<<(TQString &s, const FileExistsActions &a)
{
s.truncate(0);
ActionMap::ConstIterator end( a.m_actions.end() );
for (ActionMap::ConstIterator i( a.m_actions.begin() ); i != end; ++i) {
- s.append(QString("%1;").arg(i.data()));
+ s.append(TQString("%1;").arg(i.data()));
}
return s;
}
-QString &operator>>(QString &s, FileExistsActions &a)
+TQString &operator>>(TQString &s, FileExistsActions &a)
{
for (unsigned int i = 0; i < 9; i++) {
a.m_actions[i+1] = static_cast<FEAction>(s.section(';', i, i).toInt());
@@ -66,33 +66,33 @@ QString &operator>>(QString &s, FileExistsActions &a)
return s;
}
-QWidget *FileExistsActions::getConfigWidget(QWidget *parent)
+TQWidget *FileExistsActions::getConfigWidget(TQWidget *parent)
{
- QGroupBox *gb = new QGroupBox(0, Qt::Vertical, i18n("On File Exists Actions (%1)").arg(m_type), parent);
+ TQGroupBox *gb = new TQGroupBox(0, TQt::Vertical, i18n("On File Exists Actions (%1)").arg(m_type), parent);
gb->layout()->setSpacing(KDialog::spacingHint());
gb->layout()->setMargin(KDialog::marginHint());
- QGridLayout *gl = new QGridLayout(gb->layout(), 5, 4, 5);
+ TQGridLayout *gl = new TQGridLayout(gb->layout(), 5, 4, 5);
- QLabel *l = new QLabel(i18n("Size/Timestamp"), gb);
+ TQLabel *l = new TQLabel(i18n("Size/Timestamp"), gb);
gl->addWidget(l, 1, 0);
- l = new QLabel(i18n("Same"), gb);
+ l = new TQLabel(i18n("Same"), gb);
gl->addWidget(l, 1, 1);
- l = new QLabel(i18n("Older"), gb);
+ l = new TQLabel(i18n("Older"), gb);
gl->addWidget(l, 1, 2);
- l = new QLabel(i18n("Newer"), gb);
+ l = new TQLabel(i18n("Newer"), gb);
gl->addWidget(l, 1, 3);
- l = new QLabel(i18n("Same"), gb);
+ l = new TQLabel(i18n("Same"), gb);
gl->addWidget(l, 2, 0);
- l = new QLabel(i18n("Smaller"), gb);
+ l = new TQLabel(i18n("Smaller"), gb);
gl->addWidget(l, 3, 0);
- l = new QLabel(i18n("Bigger"), gb);
+ l = new TQLabel(i18n("Bigger"), gb);
gl->addWidget(l, 4, 0);
for (int row = 0; row < 3; row++) {