aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/sharedfileswindow
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/sharedfileswindow
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/sharedfileswindow')
-rw-r--r--src/modules/sharedfileswindow/sharedfileswindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/sharedfileswindow/sharedfileswindow.cpp b/src/modules/sharedfileswindow/sharedfileswindow.cpp
index 66ca6b6db..f679de1ff 100644
--- a/src/modules/sharedfileswindow/sharedfileswindow.cpp
+++ b/src/modules/sharedfileswindow/sharedfileswindow.cpp
@@ -93,11 +93,11 @@ KviSharedFileEditDialog::KviSharedFileEditDialog(QWidget * par,KviSharedFile * f
pb = new QPushButton(__tr2qs_ctx("&OK","sharedfileswindow"),this);
connect(pb,SIGNAL(clicked()),this,SLOT(okClicked()));
- pb->setIconSet(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_ACCEPT)));
+ pb->setIcon(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_ACCEPT)));
g->addWidget(pb,5,2);
pb = new QPushButton(__tr2qs_ctx("Cancel","sharedfileswindow"),this);
connect(pb,SIGNAL(clicked()),this,SLOT(reject()));
- pb->setIconSet(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_DISCARD)));
+ pb->setIcon(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_DISCARD)));
g->addWidget(pb,5,3);
g->setRowStretch(4,1);