diff options
Diffstat (limited to 'src/modules/raweditor/raweditor.cpp')
| -rw-r--r-- | src/modules/raweditor/raweditor.cpp | 6 |
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); |
