diff --git a/ui/findbar.cpp b/ui/findbar.cpp index 5fb543fb1..6db12c785 100644 --- a/ui/findbar.cpp +++ b/ui/findbar.cpp @@ -29,7 +29,7 @@ FindBar::FindBar( Okular::Document * document, QWidget * parent ) lay->setMargin( 2 ); QToolButton * closeBtn = new QToolButton( this ); - closeBtn->setIcon( KIcon( "process-stop" ) ); + closeBtn->setIcon( KIcon( "dialog-close" ) ); closeBtn->setIconSize( QSize( 24, 24 ) ); closeBtn->setToolTip( i18n( "Close" ) ); closeBtn->setAutoRaise( true ); @@ -49,7 +49,7 @@ FindBar::FindBar( Okular::Document * document, QWidget * parent ) label->setBuddy( m_text ); lay->addWidget( m_text ); - QPushButton * findNextBtn = new QPushButton( KIcon( "edit-find-next" ), i18nc( "Find and go to the next search match", "Next" ), this ); + QPushButton * findNextBtn = new QPushButton( KIcon( "go-down-search" ), i18nc( "Find and go to the next search match", "Next" ), this ); findNextBtn->setToolTip( i18n( "Jump to next match" ) ); lay->addWidget( findNextBtn ); diff --git a/ui/presentationsearchbar.cpp b/ui/presentationsearchbar.cpp index 5c62195b4..5e7180038 100644 --- a/ui/presentationsearchbar.cpp +++ b/ui/presentationsearchbar.cpp @@ -59,7 +59,7 @@ PresentationSearchBar::PresentationSearchBar( Okular::Document *document, QWidge lay->addWidget( m_handle ); QToolButton * closeBtn = new QToolButton( this ); - closeBtn->setIcon( KIcon( "fileclose" ) ); + closeBtn->setIcon( KIcon( "dialog-close" ) ); closeBtn->setIconSize( QSize( 24, 24 ) ); closeBtn->setToolTip( i18n( "Close" ) ); closeBtn->setAutoRaise( true ); @@ -75,7 +75,7 @@ PresentationSearchBar::PresentationSearchBar( Okular::Document *document, QWidge m_search->setSearchMoveViewport( true ); lay->addWidget( m_search ); - KPushButton * findNextBtn = new KPushButton( KIcon( "edit-find-next" ), i18n( "Find Next" ), this ); + KPushButton * findNextBtn = new KPushButton( KIcon( "go-down-search" ), i18n( "Find Next" ), this ); lay->addWidget( findNextBtn ); m_anchor->installEventFilter( this );