From c0d3db75028500596dc764e0b3dd22ec858511a2 Mon Sep 17 00:00:00 2001 From: Valeriy Kamyshniy Date: Tue, 27 May 2014 21:22:40 -0400 Subject: [PATCH] [P4/git history rebuild] Remove use of Stock:: item (NOTE: this is a highly questionable edit) --- gtk2_ardour/export_format_dialog.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/export_format_dialog.cc b/gtk2_ardour/export_format_dialog.cc index c5d1573d54..cf5c45b76f 100644 --- a/gtk2_ardour/export_format_dialog.cc +++ b/gtk2_ardour/export_format_dialog.cc @@ -133,9 +133,9 @@ ExportFormatDialog::ExportFormatDialog (FormatPtr format, bool new_dialog) : /* Buttons */ - revert_button = add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); + revert_button = add_button ("CANCEL", Gtk::RESPONSE_CANCEL); revert_button->signal_clicked().connect (sigc::mem_fun(*this, &ExportFormatDialog::revert)); - close_button = add_button (Gtk::Stock::SAVE, Gtk::RESPONSE_APPLY); + close_button = add_button ("SAVE", Gtk::RESPONSE_APPLY); close_button->set_sensitive (false); close_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportFormatDialog::end_dialog)); manager.CompleteChanged.connect (*this, invalidator (*this), boost::bind (&Gtk::Button::set_sensitive, close_button, _1), gui_context());