aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/raweditor/raweditor.cpp
diff options
context:
space:
mode:
authorGravatar Noldor2008-05-04 18:15:37 +0000
committerGravatar Noldor2008-05-04 18:15:37 +0000
commit556fce6e981ae22a47ffe7e5e1b6700ce359254d (patch)
tree3dde93d00dc90d28d54c2bdaf9fd1855568a428c /src/modules/raweditor/raweditor.cpp
parentcode cleanup (diff)
downloadKVIrc-556fce6e981ae22a47ffe7e5e1b6700ce359254d.tar.gz
KVIrc-556fce6e981ae22a47ffe7e5e1b6700ce359254d.tar.bz2
KVIrc-556fce6e981ae22a47ffe7e5e1b6700ce359254d.zip
replace setIconSet with QT4 seIcon
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1672 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/raweditor/raweditor.cpp')
-rw-r--r--src/modules/raweditor/raweditor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/raweditor/raweditor.cpp b/src/modules/raweditor/raweditor.cpp
index 7ae9b417c..ffdcec14d 100644
--- a/src/modules/raweditor/raweditor.cpp
+++ b/src/modules/raweditor/raweditor.cpp
@@ -449,17 +449,17 @@ KviRawEditorWindow::KviRawEditorWindow(KviFrame * lpFrm)
QPushButton * btn = new QPushButton(__tr2qs("&OK"),m_pBase);
connect(btn,SIGNAL(clicked()),this,SLOT(okClicked()));
- btn->setIconSet(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_ACCEPT)));
+ btn->setIcon(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_ACCEPT)));
g->addWidget(btn,0,1);
btn = new QPushButton(__tr2qs("&Apply"),m_pBase);
connect(btn,SIGNAL(clicked()),this,SLOT(applyClicked()));
- btn->setIconSet(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_ACCEPT)));
+ btn->setIcon(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_ACCEPT)));
g->addWidget(btn,0,2);
btn = new QPushButton(__tr2qs("Cancel"),m_pBase);
connect(btn,SIGNAL(clicked()),this,SLOT(cancelClicked()));
- btn->setIconSet(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_DISCARD)));
+ btn->setIcon(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_DISCARD)));
g->addWidget(btn,0,3);
g->setColStretch(0,1);