summaryrefslogtreecommitdiffstats
path: root/kpf/src/ErrorMessageConfigDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpf/src/ErrorMessageConfigDialog.cpp')
-rw-r--r--kpf/src/ErrorMessageConfigDialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kpf/src/ErrorMessageConfigDialog.cpp b/kpf/src/ErrorMessageConfigDialog.cpp
index e53941e7..04749b3e 100644
--- a/kpf/src/ErrorMessageConfigDialog.cpp
+++ b/kpf/src/ErrorMessageConfigDialog.cpp
@@ -26,7 +26,7 @@
#include <tqlabel.h>
#include <tqframe.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <kurlrequester.h>
#include <kconfig.h>
@@ -62,7 +62,7 @@ namespace KPF
TQFrame * w = makeMainWidget();
- TQVBoxLayout * tqlayout =
+ TQVBoxLayout * layout =
new TQVBoxLayout(w, KDialog::marginHint(), KDialog::spacingHint());
TQLabel * info =
@@ -84,9 +84,9 @@ namespace KPF
w
);
- tqlayout->addWidget(info);
+ layout->addWidget(info);
- TQGridLayout * grid = new TQGridLayout(tqlayout, codeList.count(), 2);
+ TQGridLayout * grid = new TQGridLayout(layout, codeList.count(), 2);
TQString pattern(i18n("%1 %2"));
@@ -107,7 +107,7 @@ namespace KPF
itemList_.append(new Item(*it, requester, responseName, originalPath));
- TQLabel * l = new TQLabel(pattern.tqarg(*it).tqarg(responseName), w);
+ TQLabel * l = new TQLabel(pattern.arg(*it).arg(responseName), w);
l->setBuddy(requester);