diff options
| author | 2008-05-04 18:15:37 +0000 | |
|---|---|---|
| committer | 2008-05-04 18:15:37 +0000 | |
| commit | 556fce6e981ae22a47ffe7e5e1b6700ce359254d (patch) | |
| tree | 3dde93d00dc90d28d54c2bdaf9fd1855568a428c /src/modules/popupeditor/popupeditor.cpp | |
| parent | code cleanup (diff) | |
| download | KVIrc-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/popupeditor/popupeditor.cpp')
| -rw-r--r-- | src/modules/popupeditor/popupeditor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/popupeditor/popupeditor.cpp b/src/modules/popupeditor/popupeditor.cpp index 89e160d3c..c92674c1c 100644 --- a/src/modules/popupeditor/popupeditor.cpp +++ b/src/modules/popupeditor/popupeditor.cpp @@ -1280,17 +1280,17 @@ KviPopupEditorWindow::KviPopupEditorWindow(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); |
