summaryrefslogtreecommitdiffstats
path: root/src/dolphiniconsview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-02-01 14:58:49 -0600
committerTimothy Pearson <[email protected]>2013-02-01 14:58:49 -0600
commit6240d69b1f11d3e6c59df5f736549b1fafc49dd0 (patch)
treeda2273cc419ec68179c86f7deccfc0f5fdfe9181 /src/dolphiniconsview.cpp
parent5f2980e30e8c46f5bc9ac8b2694e3465d02424ff (diff)
downloaddolphin-6240d69b1f11d3e6c59df5f736549b1fafc49dd0.tar.gz
dolphin-6240d69b1f11d3e6c59df5f736549b1fafc49dd0.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/dolphiniconsview.cpp')
-rw-r--r--src/dolphiniconsview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphiniconsview.cpp b/src/dolphiniconsview.cpp
index 66acb5f..98c1d3d 100644
--- a/src/dolphiniconsview.cpp
+++ b/src/dolphiniconsview.cpp
@@ -71,11 +71,11 @@ DolphinIconsView::DolphinIconsView(DolphinView* parent, LayoutMode layoutMode) :
// KFileIconView creates two actions for zooming, which are directly connected to the
// slots KFileIconView::zoomIn() and KFileIconView::zoomOut(). As this behavior is not
// wanted and the slots are not virtual, the actions are disabled here.
- KAction* zoomInAction = actionCollection()->action("zoomIn");
+ TDEAction* zoomInAction = actionCollection()->action("zoomIn");
assert(zoomInAction != 0);
zoomInAction->setEnabled(false);
- KAction* zoomOutAction = actionCollection()->action("zoomOut");
+ TDEAction* zoomOutAction = actionCollection()->action("zoomOut");
assert(zoomOutAction != 0);
zoomOutAction->setEnabled(false);