diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:57 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:57 -0500 |
commit | 50e3d450c5b66e77578534f80c4e604b36c56c4d (patch) | |
tree | 937354fcd9c3c346d4c63c7edad16cf43090ccf9 /kpovmodeler/pmlibrarybrowser.cpp | |
parent | ffd6b5f8426c6f4d5ded673221f6799598d36a34 (diff) | |
download | tdegraphics-50e3d450c5b66e77578534f80c4e604b36c56c4d.tar.gz tdegraphics-50e3d450c5b66e77578534f80c4e604b36c56c4d.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'kpovmodeler/pmlibrarybrowser.cpp')
-rw-r--r-- | kpovmodeler/pmlibrarybrowser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpovmodeler/pmlibrarybrowser.cpp b/kpovmodeler/pmlibrarybrowser.cpp index 6f853f60..4df00a8d 100644 --- a/kpovmodeler/pmlibrarybrowser.cpp +++ b/kpovmodeler/pmlibrarybrowser.cpp @@ -73,11 +73,11 @@ PMLibraryBrowserViewWidget::PMLibraryBrowserViewWidget( TQWidget* parent, const m_pUpButton = new TQPushButton( this ); m_pUpButton->setPixmap( SmallIcon( "go-up" ) ); m_pNewSubLibraryButton = new TQPushButton( this ); - m_pNewSubLibraryButton->setPixmap( SmallIcon( "folder_new" ) ); + m_pNewSubLibraryButton->setPixmap( SmallIcon( "folder-new" ) ); m_pNewObjectButton = new TQPushButton( this ); - m_pNewObjectButton->setPixmap( SmallIcon( "filenew" ) ); + m_pNewObjectButton->setPixmap( SmallIcon( "document-new" ) ); m_pDeleteObjectButton = new TQPushButton( this ); - m_pDeleteObjectButton->setPixmap( SmallIcon( "editdelete" ) ); + m_pDeleteObjectButton->setPixmap( SmallIcon( "edit-delete" ) ); TQLabel* lbl = new TQLabel( i18n( "Library: " ), this ); m_pLibraryComboBox = new TQComboBox( this ); m_pLibraryComboBox->insertStringList( PMLibraryManager::theManager( )->availableLibraries( ) ); |