summaryrefslogtreecommitdiffstats
path: root/krusader/ActionMan/addplaceholderpopup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krusader/ActionMan/addplaceholderpopup.cpp')
-rw-r--r--krusader/ActionMan/addplaceholderpopup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/krusader/ActionMan/addplaceholderpopup.cpp b/krusader/ActionMan/addplaceholderpopup.cpp
index ef58895..b0db5b7 100644
--- a/krusader/ActionMan/addplaceholderpopup.cpp
+++ b/krusader/ActionMan/addplaceholderpopup.cpp
@@ -346,7 +346,7 @@ ParameterFile::ParameterFile( const exp_parameter& parameter, TQWidget* parent )
_lineEdit = new KLineEdit( hbox );
_button = new TQToolButton( hbox);
TDEIconLoader *iconLoader = new TDEIconLoader();
- _button->setPixmap( iconLoader->loadIcon( "fileopen", TDEIcon::Toolbar, 16 ) );
+ _button->setPixmap( iconLoader->loadIcon( "document-open", TDEIcon::Toolbar, 16 ) );
connect( _button, TQT_SIGNAL(clicked()), this, TQT_SLOT(addFile()) );
}
@@ -439,7 +439,7 @@ ParameterGoto::ParameterGoto( const exp_parameter& parameter, TQWidget* parent )
_lineEdit->setCompletionObject( new KURLCompletion( KURLCompletion::DirCompletion ) );
_dirButton = new TQToolButton( hbox );
TDEIconLoader *iconLoader = new TDEIconLoader();
- _dirButton->setPixmap( iconLoader->loadIcon( "fileopen", TDEIcon::Toolbar, 16 ) );
+ _dirButton->setPixmap( iconLoader->loadIcon( "document-open", TDEIcon::Toolbar, 16 ) );
connect( _dirButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(setDir()) );
_placeholderButton = new TQToolButton( hbox);
_placeholderButton->setText( i18n("add") );