summaryrefslogtreecommitdiffstats
path: root/src/dolphiniconsview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:55:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:55:43 -0600
commitb45817ccac7985d286c754b95f40eda5e105efda (patch)
tree428da987d342b841c1b05adb50cfc12b45b40a14 /src/dolphiniconsview.cpp
parent59d9dbf810de71334e1173fa7dda59209c10032c (diff)
downloaddolphin-b45817ccac7985d286c754b95f40eda5e105efda.tar.gz
dolphin-b45817ccac7985d286c754b95f40eda5e105efda.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 59d9dbf810de71334e1173fa7dda59209c10032c.
Diffstat (limited to 'src/dolphiniconsview.cpp')
-rw-r--r--src/dolphiniconsview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dolphiniconsview.cpp b/src/dolphiniconsview.cpp
index 63b755e..6c7b9a9 100644
--- a/src/dolphiniconsview.cpp
+++ b/src/dolphiniconsview.cpp
@@ -25,7 +25,7 @@
#include <tqobjectlist.h>
#include <kglobalsettings.h>
#include <kurldrag.h>
-#include <clipboard.h>
+#include <tqclipboard.h>
#include <assert.h>
#include <kaction.h>
#include <kstdaction.h>
@@ -64,7 +64,7 @@ DolphinIconsView::DolphinIconsView(DolphinView* parent, LayoutMode layoutMode) :
connect(this, TQT_SIGNAL(dropped(TQDropEvent*, const KURL::List&, const KURL&)),
parent, TQT_SLOT(slotURLListDropped(TQDropEvent*, const KURL::List&, const KURL&)));
- TQClipboard* clipboard = TQApplication::clipboard();
+ TQClipboard* clipboard = TQApplication::tqclipboard();
connect(clipboard, TQT_SIGNAL(dataChanged()),
this, TQT_SLOT(slotUpdateDisabledItems()));
@@ -293,7 +293,7 @@ void DolphinIconsView::drawBackground(TQPainter* painter, const TQRect& rect)
KFileIconView::drawBackground(painter, rect);
}
else {
- const TQBrush brush(colorGroup().background());
+ const TQBrush brush(tqcolorGroup().background());
painter->fillRect(0, 0, width(), height(), brush);
}
}
@@ -447,7 +447,7 @@ void DolphinIconsView::slotActivationUpdate()
update();
// TODO: there must be a simpler way to say
- // "update all children"
+ // "update all tqchildren"
const TQObjectList list = childrenListObject();
if (list.isEmpty()) {
return;