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/logview | |
| 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/logview')
| -rw-r--r-- | src/modules/logview/LogViewWindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/logview/LogViewWindow.cpp b/src/modules/logview/LogViewWindow.cpp index 2c24bbdb3..cccbf8813 100644 --- a/src/modules/logview/LogViewWindow.cpp +++ b/src/modules/logview/LogViewWindow.cpp @@ -445,10 +445,10 @@ void LogViewWindow::rightButtonClicked(QTreeWidgetItem * pItem, const QPoint &) if(((LogListViewItem *)pItem)->childCount()) { //pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::UserList)),__tr2qs_ctx("Export all log files to","log"),m_pExportLogPopup); - pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Quit)),__tr2qs_ctx("Remove all log files within this folder","log"),this,SLOT(deleteCurrent())); + pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Discard)),__tr2qs_ctx("Remove all log files within this folder","log"),this,SLOT(deleteCurrent())); } else { - pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::UserList)),__tr2qs_ctx("Export log file to","log"))->setMenu(m_pExportLogPopup); - pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Quit)),__tr2qs_ctx("Remove log file","log"),this,SLOT(deleteCurrent())); + pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Floppy)),__tr2qs_ctx("Export log file to","log"))->setMenu(m_pExportLogPopup); + pPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Discard)),__tr2qs_ctx("Remove log file","log"),this,SLOT(deleteCurrent())); } pPopup->exec(QCursor::pos()); |
