diff options
author | Timothy Pearson <[email protected]> | 2014-10-12 17:49:21 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-12 17:49:21 -0500 |
commit | 26f9facd3ec6a893afb733a13ced882c0efa0fe3 (patch) | |
tree | c660df549e19c7b2bc866a4b2c604a5388d717b1 /src/cuesheeteditor.cpp | |
parent | a6a941a77f38e5dcaa174a7bb302d143e38b439b (diff) | |
download | soundkonverter-26f9facd3ec6a893afb733a13ced882c0efa0fe3.tar.gz soundkonverter-26f9facd3ec6a893afb733a13ced882c0efa0fe3.zip |
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'src/cuesheeteditor.cpp')
-rwxr-xr-x | src/cuesheeteditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cuesheeteditor.cpp b/src/cuesheeteditor.cpp index e585657..70619f0 100755 --- a/src/cuesheeteditor.cpp +++ b/src/cuesheeteditor.cpp @@ -79,7 +79,7 @@ CuesheetEditor::CuesheetEditor( TQWidget *parent, const char *name, bool modal, this, TQT_SLOT(generate()) ); - pConvert = new KPushButton( iconLoader->loadIcon("run",TDEIcon::Small), i18n("Format"), this, "pConvert" ); + pConvert = new KPushButton( iconLoader->loadIcon("system-run",TDEIcon::Small), i18n("Format"), this, "pConvert" ); buttonBox->addWidget( pConvert ); connect( pConvert, TQT_SIGNAL(clicked()), this, TQT_SLOT(convert()) @@ -93,7 +93,7 @@ CuesheetEditor::CuesheetEditor( TQWidget *parent, const char *name, bool modal, buttonBox->addStretch(); - pOk = new KPushButton(iconLoader->loadIcon("exit",TDEIcon::Small), i18n("Close"), this, "pOk" ); + pOk = new KPushButton(iconLoader->loadIcon("system-log-out",TDEIcon::Small), i18n("Close"), this, "pOk" ); pOk->setFocus(); buttonBox->addWidget( pOk ); connect( pOk, TQT_SIGNAL(clicked()), |