summaryrefslogtreecommitdiffstats
path: root/kwallet/kwmapeditor.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 10:00:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 10:00:17 -0600
commit955e20356d63ed405198c8143617a8a0ca8bfc02 (patch)
tree9a9ab22c86d212a5655014ad752e96b04c0c86a9 /kwallet/kwmapeditor.cpp
parentbf280726d5d22f33d33e4f9e771220c725249407 (diff)
downloadtdeutils-955e20356d63ed405198c8143617a8a0ca8bfc02.tar.gz
tdeutils-955e20356d63ed405198c8143617a8a0ca8bfc02.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit bf280726d5d22f33d33e4f9e771220c725249407.
Diffstat (limited to 'kwallet/kwmapeditor.cpp')
-rw-r--r--kwallet/kwmapeditor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kwallet/kwmapeditor.cpp b/kwallet/kwmapeditor.cpp
index dc6d4fb..d5a9722 100644
--- a/kwallet/kwmapeditor.cpp
+++ b/kwallet/kwmapeditor.cpp
@@ -27,9 +27,9 @@
#include <twin.h>
#include <tqapplication.h>
-#include <clipboard.h>
+#include <tqclipboard.h>
#include <tqpushbutton.h>
-#include <textedit.h>
+#include <tqtextedit.h>
KWMapEditor::KWMapEditor(TQMap<TQString,TQString>& map, TQWidget *parent, const char *name)
: TQTable(0, 3, parent, name), _map(map) {
@@ -125,7 +125,7 @@ void KWMapEditor::contextMenu(int row, int col, const TQPoint& pos) {
void KWMapEditor::copy() {
- TQApplication::clipboard()->setText(text(_contextRow, 2));
+ TQApplication::tqclipboard()->setText(text(_contextRow, 2));
}
@@ -142,7 +142,7 @@ class InlineEditor : public TQTextEdit {
protected:
virtual void focusOutEvent(TQFocusEvent* fe) {
if (fe->reason() == TQFocusEvent::Popup) {
- TQWidget *focusW = tqApp->focusWidget();
+ TQWidget *focusW = tqApp->tqfocusWidget();
if (focusW && focusW == popup) {
return;
}