diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:43 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:43 -0500 |
commit | f9de4723c8975d13c4219ef9a5fa8c90b8a2cd42 (patch) | |
tree | ebf12dc42b5862f2c68602b1f6e50e5d58330813 /src/entrywidgetother.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/entrywidgetother.cpp')
-rw-r--r-- | src/entrywidgetother.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entrywidgetother.cpp b/src/entrywidgetother.cpp index 1201a60..85b2038 100644 --- a/src/entrywidgetother.cpp +++ b/src/entrywidgetother.cpp @@ -167,7 +167,7 @@ namespace KBibTeX m_pushButtonOpen = new KPushButton( i18n( "Op&en" ), this, "m_pushButtonOpen" ); gridLayout->addWidget( m_pushButtonOpen, 4, 2 ); - m_pushButtonOpen->setIconSet( TQIconSet( SmallIcon( "fileopen" ) ) ); + m_pushButtonOpen->setIconSet( TQIconSet( SmallIcon( "document-open" ) ) ); spacer = new TQSpacerItem( 20, 110, TQSizePolicy::Minimum, TQSizePolicy::Expanding ); gridLayout->addItem( spacer, 5, 2 ); @@ -199,7 +199,7 @@ namespace KBibTeX m_pushButtonDelete->setEnabled( !m_isReadOnly && contains ); m_pushButtonAdd->setEnabled( !m_isReadOnly && !text.isEmpty() && !m_fieldLineEditValue->isEmpty() && isUnknown ); m_pushButtonAdd->setText( contains ? i18n( "&Apply" ) : i18n( "&Add" ) ); - m_pushButtonAdd->setIconSet( TQIconSet( SmallIcon( contains ? "apply" : "fileopen" ) ) ); + m_pushButtonAdd->setIconSet( TQIconSet( SmallIcon( contains ? "apply" : "document-open" ) ) ); bool validURL = FALSE; if ( contains ) |