From 4d470410c132a648050812a36e193d9a1a88b1f0 Mon Sep 17 00:00:00 2001 From: David Edmundson Date: Thu, 22 Apr 2010 23:48:42 +0100 Subject: [PATCH] Fix icon of "Reload Source" toolbar button. In KDE4, a usable button is available under the name "view-refresh". --- kdbg/dbgmainwnd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdbg/dbgmainwnd.cpp b/kdbg/dbgmainwnd.cpp index 83c36fe..8223a4d 100644 --- a/kdbg/dbgmainwnd.cpp +++ b/kdbg/dbgmainwnd.cpp @@ -247,7 +247,7 @@ void DebuggerMainWnd::initKAction() actionCollection()); open->setText(i18n("&Open Source...")); m_closeAction = KStandardAction::close(m_filesWindow, SLOT(slotClose()), actionCollection()); - m_reloadAction = createAction(i18n("&Reload Source"), "reload", 0, + m_reloadAction = createAction(i18n("&Reload Source"), "view-refresh", 0, m_filesWindow, SLOT(slotFileReload()), "file_reload"); m_fileExecAction = createAction(i18n("&Executable..."), "execopen", 0, this, SLOT(slotFileExe()), "file_executable"); -- 2.11.4.GIT