diff options
| author | 2015-09-11 10:33:56 +0100 | |
|---|---|---|
| committer | 2015-09-11 18:17:57 +0100 | |
| commit | 007db9260027664d26408f3bd0935e3d6ef6c1a4 (patch) | |
| tree | b236c4aba03ea7008298e14d186fa446116c6681 /src/modules/classeditor | |
| parent | Merge pull request #1568 from uNiversaI/Mary-Poppins (diff) | |
| download | KVIrc-007db9260027664d26408f3bd0935e3d6ef6c1a4.tar.gz KVIrc-007db9260027664d26408f3bd0935e3d6ef6c1a4.tar.bz2 KVIrc-007db9260027664d26408f3bd0935e3d6ef6c1a4.zip | |
Fix icon assignments in in Editor actions menus
Diffstat (limited to 'src/modules/classeditor')
| -rw-r--r-- | src/modules/classeditor/ClassEditorWindow.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/classeditor/ClassEditorWindow.cpp b/src/modules/classeditor/ClassEditorWindow.cpp index d2a7b75b5..fba557ce2 100644 --- a/src/modules/classeditor/ClassEditorWindow.cpp +++ b/src/modules/classeditor/ClassEditorWindow.cpp @@ -911,7 +911,7 @@ void ClassEditorWidget::customContextMenuRequested(QPoint pnt) m_pContextPopup->addSeparator(); pAction = m_pContextPopup->addAction( - *(g_pIconManager->getSmallIcon(KviIconManager::Quit)), + *(g_pIconManager->getSmallIcon(KviIconManager::Discard)), __tr2qs_ctx("Remove Selected","editor"), this,SLOT(removeSelectedItems())); pAction->setEnabled(bHasSelected); @@ -919,20 +919,20 @@ void ClassEditorWidget::customContextMenuRequested(QPoint pnt) m_pContextPopup->addSeparator(); m_pContextPopup->addAction( - *(g_pIconManager->getSmallIcon(KviIconManager::Folder)), + *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)), __tr2qs_ctx("Export Selected...","editor"), this,SLOT(exportSelected())); pAction->setEnabled(bHasSelected); m_pContextPopup->addAction( - *(g_pIconManager->getSmallIcon(KviIconManager::Folder)), + *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)), __tr2qs_ctx("Export Selected in singles files...","editor"), this,SLOT(exportSelectedSepFiles())); pAction->setEnabled(bHasSelected); m_pContextPopup->addAction( - *(g_pIconManager->getSmallIcon(KviIconManager::Folder)), + *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)), __tr2qs_ctx("Export All...","editor"), this,SLOT(exportAll())); pAction->setEnabled(bHasItems); |
