diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:29:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:29:36 -0600 |
commit | 59d9dbf810de71334e1173fa7dda59209c10032c (patch) | |
tree | 9091f90565a6b444b49d6624fb9a833930b818fc /src/dolphiniconsview.cpp | |
parent | 6f9ad886fd16b883bed1f6fa731bd709de0afb9c (diff) | |
download | dolphin-59d9dbf810de71334e1173fa7dda59209c10032c.tar.gz dolphin-59d9dbf810de71334e1173fa7dda59209c10032c.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/dolphiniconsview.cpp')
-rw-r--r-- | src/dolphiniconsview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dolphiniconsview.cpp b/src/dolphiniconsview.cpp index 6c7b9a9..63b755e 100644 --- a/src/dolphiniconsview.cpp +++ b/src/dolphiniconsview.cpp @@ -25,7 +25,7 @@ #include <tqobjectlist.h> #include <kglobalsettings.h> #include <kurldrag.h> -#include <tqclipboard.h> +#include <clipboard.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::tqclipboard(); + TQClipboard* clipboard = TQApplication::clipboard(); 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(tqcolorGroup().background()); + const TQBrush brush(colorGroup().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 tqchildren" + // "update all children" const TQObjectList list = childrenListObject(); if (list.isEmpty()) { return; |