aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/list/ListWindow.cpp
diff options
context:
space:
mode:
authorGravatar universal2015-09-14 11:37:57 +0100
committerGravatar universal2015-09-14 11:37:57 +0100
commit4f87a6f7f83d9343dd8597c16e9819325e4b723e (patch)
treec442c9892e40fc5495d8d6a9e2312d3d7f6a9c96 /src/modules/list/ListWindow.cpp
parentMerge pull request #1584 from uNiversaI/Cant-Help_Myself (diff)
downloadKVIrc-4f87a6f7f83d9343dd8597c16e9819325e4b723e.tar.gz
KVIrc-4f87a6f7f83d9343dd8597c16e9819325e4b723e.tar.bz2
KVIrc-4f87a6f7f83d9343dd8597c16e9819325e4b723e.zip
[ListWindow] use getSmallIcon() instead and fix assignments
Diffstat (limited to 'src/modules/list/ListWindow.cpp')
-rw-r--r--src/modules/list/ListWindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/list/ListWindow.cpp b/src/modules/list/ListWindow.cpp
index 305c82cfe..005dfe086 100644
--- a/src/modules/list/ListWindow.cpp
+++ b/src/modules/list/ListWindow.cpp
@@ -199,14 +199,14 @@ ListWindow::ListWindow(KviConsoleWindow * lpConsole)
m_pOpenButton = new QToolButton(pBox);
m_pOpenButton->setObjectName("import_list");
m_pOpenButton->setIconSize(QSize(16,16));
- m_pOpenButton->setIcon(QIcon(*(g_pIconManager->getBigIcon(KVI_BIGICON_OPEN))));
+ m_pOpenButton->setIcon(QIcon(*(g_pIconManager->getSmallIcon(KviIconManager::Folder))));
KviTalToolTip::add(m_pOpenButton,__tr2qs("Import List"));
connect(m_pOpenButton,SIGNAL(clicked()),this,SLOT(importList()));
m_pSaveButton = new QToolButton(pBox);
m_pSaveButton->setObjectName("export_list");
m_pSaveButton->setIconSize(QSize(16,16));
- m_pSaveButton->setIcon(QIcon(*(g_pIconManager->getBigIcon(KVI_BIGICON_SAVE))));
+ m_pSaveButton->setIcon(QIcon(*(g_pIconManager->getSmallIcon(KviIconManager::Floppy))));
KviTalToolTip::add(m_pSaveButton,__tr2qs("Export List"));
connect(m_pSaveButton,SIGNAL(clicked()),this,SLOT(exportList()));
@@ -220,7 +220,7 @@ ListWindow::ListWindow(KviConsoleWindow * lpConsole)
m_pStopListDownloadButton = new QToolButton(pBox);
m_pStopListDownloadButton->setObjectName("stoplistdownload_button");
m_pStopListDownloadButton->setIconSize(QSize(16,16));
- m_pStopListDownloadButton->setIcon(QIcon(*(g_pIconManager->getSmallIcon(KviIconManager::NickNameProblem))));
+ m_pStopListDownloadButton->setIcon(QIcon(*(g_pIconManager->getSmallIcon(KviIconManager::Discard))));
KviTalToolTip::add(m_pStopListDownloadButton,__tr2qs("Stop list download"));
connect(m_pStopListDownloadButton,SIGNAL(clicked()),this,SLOT(stoplistdownload()));