diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:43 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:43 -0500 |
commit | f9de4723c8975d13c4219ef9a5fa8c90b8a2cd42 (patch) | |
tree | ebf12dc42b5862f2c68602b1f6e50e5d58330813 /src/settingsediting.cpp | |
parent | 53f16f741a1fcffd3f2b6bfbef9bb492993a9bb4 (diff) | |
download | kbibtex-f9de4723c8975d13c4219ef9a5fa8c90b8a2cd42.tar.gz kbibtex-f9de4723c8975d13c4219ef9a5fa8c90b8a2cd42.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 'src/settingsediting.cpp')
-rw-r--r-- | src/settingsediting.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settingsediting.cpp b/src/settingsediting.cpp index a51b3c7..78619f6 100644 --- a/src/settingsediting.cpp +++ b/src/settingsediting.cpp @@ -78,7 +78,7 @@ namespace KBibTeX m_pushButtonDelDir = new KPushButton( i18n( "Delete" ), this ); layout->addWidget( m_pushButtonDelDir, 3, 2 ); m_pushButtonDelDir->setEnabled( FALSE ); - m_pushButtonDelDir->setIconSet( TQIconSet( SmallIcon( "editdelete" ) ) ); + m_pushButtonDelDir->setIconSet( TQIconSet( SmallIcon( "edit-delete" ) ) ); TQToolTip::add( m_pushButtonDelDir, i18n( "Remove selected path from list" ) ); layout->setRowStretch( 4, 1 ); @@ -211,7 +211,7 @@ namespace KBibTeX group = new TQGroupBox( 1, TQt::Vertical, i18n( "Document Search Paths" ), this ); layout->addWidget( group ); - KPushButton *btnSelectDocumentSearchPath = new KPushButton( SmallIcon( "fileopen" ), i18n( "Edit Search Paths" ), group ); + KPushButton *btnSelectDocumentSearchPath = new KPushButton( SmallIcon( "document-open" ), i18n( "Edit Search Paths" ), group ); group = new TQGroupBox( 1, TQt::Vertical, i18n( "Find Duplicates" ), this ); layout->addWidget( group ); |