aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/classeditor/ClassEditorWindow.cpp
diff options
context:
space:
mode:
authorGravatar un1versal2016-01-08 14:27:27 +0000
committerGravatar un1versal2016-01-08 14:27:27 +0000
commit30d426306bd04407480b2521167e4d008837f2b0 (patch)
tree44403fb746b4760031bb056dd412a6bac7e7b69d /src/modules/classeditor/ClassEditorWindow.cpp
parentadd serverconfiguration matching coresmall and kvibigicon icons (diff)
downloadKVIrc-30d426306bd04407480b2521167e4d008837f2b0.tar.gz
KVIrc-30d426306bd04407480b2521167e4d008837f2b0.tar.bz2
KVIrc-30d426306bd04407480b2521167e4d008837f2b0.zip
Floppy icon rename to -> Save and fix assignments
Diffstat (limited to 'src/modules/classeditor/ClassEditorWindow.cpp')
-rw-r--r--src/modules/classeditor/ClassEditorWindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/classeditor/ClassEditorWindow.cpp b/src/modules/classeditor/ClassEditorWindow.cpp
index ea92889e3..740061c5a 100644
--- a/src/modules/classeditor/ClassEditorWindow.cpp
+++ b/src/modules/classeditor/ClassEditorWindow.cpp
@@ -919,20 +919,20 @@ void ClassEditorWidget::customContextMenuRequested(QPoint pnt)
m_pContextPopup->addSeparator();
m_pContextPopup->addAction(
- *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)),
+ *(g_pIconManager->getSmallIcon(KviIconManager::Save)),
__tr2qs_ctx("Export Selected...","editor"),
this,SLOT(exportSelected()));
pAction->setEnabled(bHasSelected);
m_pContextPopup->addAction(
- *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)),
+ *(g_pIconManager->getSmallIcon(KviIconManager::Save)),
__tr2qs_ctx("Export Selected in Single Files...","editor"),
this,SLOT(exportSelectedSepFiles()));
pAction->setEnabled(bHasSelected);
m_pContextPopup->addAction(
- *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)),
+ *(g_pIconManager->getSmallIcon(KviIconManager::Save)),
__tr2qs_ctx("Export All...","editor"),
this,SLOT(exportAll()));
pAction->setEnabled(bHasItems);