Fix exec icon location and bring it into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent 59a995dff8
commit a3ac8edaed

@ -114,7 +114,7 @@ void DccTransferPanel::initGUI()
m_buttonAccept = new TQPushButton(icon("media-playback-start"), i18n("Accept"), buttonsBox, "start_dcc");
m_buttonAbort = new TQPushButton(icon("process-stop"), i18n("Abort"), buttonsBox, "abort_dcc");
m_buttonClear = new TQPushButton(icon("edit-delete"), i18n("Clear"), buttonsBox, "clear_dcc");
m_buttonOpen = new TQPushButton(icon("exec"), i18n("Open File"), buttonsBox, "open_dcc_file");
m_buttonOpen = new TQPushButton(icon("application-x-executable"), i18n("Open File"), buttonsBox, "open_dcc_file");
m_buttonDetail = new TQPushButton(icon("view_text"), i18n("Details"), buttonsBox, "detail_dcc");
m_buttonDetail->setToggleButton( true );
@ -145,7 +145,7 @@ void DccTransferPanel::initGUI()
m_popup->insertItem(icon("edit-redo"), i18n("Resend"), Popup::Resend);
m_popup->insertItem(icon("edit-delete"), i18n("&Clear"), Popup::Clear);
m_popup->insertSeparator(); // -----
m_popup->insertItem(icon("exec"), i18n("&Open File"), Popup::Open);
m_popup->insertItem(icon("application-x-executable"), i18n("&Open File"), Popup::Open);
m_popup->insertItem(icon("messagebox_info"), i18n("File &Information"), Popup::Info);
#undef icon

@ -115,7 +115,7 @@ KonviSettingsDialog::KonviSettingsDialog( TQWidget *parent) :
m_confGeneralBehaviorWdg = new GeneralBehavior_Config( this, "GeneralBehavior" );
pagePath.clear();
pagePath << i18n("Behavior") << i18n("General");
addPage ( m_confGeneralBehaviorWdg, pagePath, "exec", i18n("General") );
addPage ( m_confGeneralBehaviorWdg, pagePath, "application-x-executable", i18n("General") );
//Behavior/Connection
m_confConnectionBehaviorWdg = new ConnectionBehavior_Config( this, "ConnectionBehavior" );

Loading…
Cancel
Save