diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:48 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:48 -0500 |
commit | d504497c10d3cc9441a39245af1723e8c0ae556d (patch) | |
tree | 9fdf6ec3624b0c25e04b5bc37c96ecef0fdaca18 /kexi/widget/kexidbconnectionwidget.cpp | |
parent | c128ab57b3b5f3a57427a78cef7d5d4236cc9822 (diff) | |
download | koffice-d504497c10d3cc9441a39245af1723e8c0ae556d.tar.gz koffice-d504497c10d3cc9441a39245af1723e8c0ae556d.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 'kexi/widget/kexidbconnectionwidget.cpp')
-rw-r--r-- | kexi/widget/kexidbconnectionwidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kexi/widget/kexidbconnectionwidget.cpp b/kexi/widget/kexidbconnectionwidget.cpp index aabd7cc2..c36df02f 100644 --- a/kexi/widget/kexidbconnectionwidget.cpp +++ b/kexi/widget/kexidbconnectionwidget.cpp @@ -88,7 +88,7 @@ KexiDBConnectionWidget::KexiDBConnectionWidget( TQWidget* parent, const char* n TQHBoxLayout *hbox = new TQHBoxLayout(frmBottom); hbox->addStretch(2); - d->btnSaveChanges = new KPushButton(KGuiItem(i18n("Save Changes"), "filesave", + d->btnSaveChanges = new KPushButton(KGuiItem(i18n("Save Changes"), "document-save", i18n("Save all changes made to this connection information"), i18n("Save all changes made to this connection information. You can later reuse this information.")), frmBottom, "savechanges"); @@ -342,7 +342,7 @@ KexiDBConnectionDialog::KexiDBConnectionDialog(const KexiProjectData& data, KDialogBase::User1|KDialogBase::Cancel|KDialogBase::Help, KDialogBase::User1, false, acceptButtonGuiItem.text().isEmpty() - ? KGuiItem(i18n("&Open"), "fileopen", i18n("Open Database Connection")) + ? KGuiItem(i18n("&Open"), "document-open", i18n("Open Database Connection")) : acceptButtonGuiItem ) { @@ -357,7 +357,7 @@ KexiDBConnectionDialog::KexiDBConnectionDialog(const KexiDB::ConnectionData& dat KDialogBase::User1|KDialogBase::Cancel|KDialogBase::Help, KDialogBase::User1, false, acceptButtonGuiItem.text().isEmpty() - ? KGuiItem(i18n("&Open"), "fileopen", i18n("Open Database Connection")) + ? KGuiItem(i18n("&Open"), "document-open", i18n("Open Database Connection")) : acceptButtonGuiItem ) { |