┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <[email protected]>2006-12-17 14:14:52 +0000
committerSimon Hausmann <[email protected]>2006-12-17 14:14:52 +0000
commit548169f004ac274050f5858b3594e3bead692a52 (patch)
tree36c875b7b3b756e560e89b8aa7bd1ff51189d139 /src/dolphinmainwindow.cpp
parentcb4aa16629f7341e5305fbf02ab6dde513229ad9 (diff)
- don't use deprecated KAction constructors
svn path=/trunk/playground/utils/dolphin/; revision=614376
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 3ed4a5403..a04ba5521 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -1258,7 +1258,8 @@ void DolphinMainWindow::setupActions()
split->setIcon(KIcon("view_left_right"));
connect(split, SIGNAL(triggered()), this, SLOT(toggleSplitView()));
- KAction* reload = new KAction(i18n("Reload"), "F5", actionCollection(), "reload");
+ KAction* reload = new KAction(actionCollection(), "reload");
+ reload->setText(i18n("Reload"));
reload->setShortcut(Qt::Key_F5);
reload->setIcon(KIcon("reload"));
connect(reload, SIGNAL(triggered()), this, SLOT(reloadView()));