Use non-deprecated Gtk::Widget::hide API in gtk2_ardour

This commit is contained in:
Tim Mayberry 2015-02-27 22:45:04 +10:00
parent 24bc99a9d8
commit cf161c2da2
9 changed files with 15 additions and 15 deletions

View File

@ -481,7 +481,7 @@ AutomationTimeAxisView::set_height (uint32_t h, TrackHeightMode m)
hide_button.show();
} else if (h >= preset_height (HeightSmall)) {
controls_table.hide_all ();
controls_table.hide();
auto_dropdown.hide();
name_label.hide();
}

View File

@ -144,7 +144,7 @@ ExportDialog::init ()
/* Done! */
show_all_children ();
progress_widget.hide_all();
progress_widget.hide ();
}
void
@ -197,7 +197,7 @@ ExportDialog::close_dialog ()
status->abort();
}
hide_all ();
hide ();
set_modal (false);
}
@ -354,7 +354,7 @@ ExportDialog::show_progress ()
export_button->set_sensitive (false);
progress_bar.set_fraction (0.0);
warning_widget.hide_all();
warning_widget.hide ();
progress_widget.show ();
progress_widget.show_all_children ();
progress_connection = Glib::signal_timeout().connect (sigc::mem_fun(*this, &ExportDialog::progress_timeout), 100);

View File

@ -1081,7 +1081,7 @@ ExportFormatDialog::fill_sample_format_lists (boost::shared_ptr<ARDOUR::HasSampl
void
ExportFormatDialog::end_dialog ()
{
hide_all ();
hide ();
}
void

View File

@ -1201,5 +1201,5 @@ void
LocationUIWindow::session_going_away ()
{
ArdourWindow::session_going_away ();
hide_all();
hide ();
}

View File

@ -112,7 +112,7 @@ void
LuaScriptManager::session_going_away ()
{
ArdourWindow::session_going_away ();
hide_all();
hide();
}
void

View File

@ -673,7 +673,7 @@ MixerStrip::set_route (boost::shared_ptr<Route> rt)
if (has_audio_outputs ()) {
panners.show_all ();
} else {
panners.hide_all ();
panners.hide ();
}
update_diskstream_display ();
@ -1124,7 +1124,7 @@ void
MixerStrip::update_diskstream_display ()
{
if (is_track() && input_selector) {
input_selector->hide_all ();
input_selector->hide ();
}
route_color_changed ();
@ -1483,7 +1483,7 @@ MixerStrip::update_input_display ()
if (has_audio_outputs ()) {
panners.show_all ();
} else {
panners.hide_all ();
panners.hide ();
}
}
@ -1498,7 +1498,7 @@ MixerStrip::update_output_display ()
if (has_audio_outputs ()) {
panners.show_all ();
} else {
panners.hide_all ();
panners.hide ();
}
}
@ -2196,7 +2196,7 @@ MixerStrip::revert_to_default_display ()
if (has_audio_outputs ()) {
panners.show_all ();
} else {
panners.hide_all ();
panners.hide ();
}
reset_strip_style ();

View File

@ -549,7 +549,7 @@ void
RegionView::hide_region_editor()
{
if (editor) {
editor->hide_all ();
editor->hide ();
}
}

View File

@ -273,7 +273,7 @@ SessionImportDialog::show_info(const TreeModel::Path& path, TreeViewColumn*)
void
SessionImportDialog::end_dialog ()
{
hide_all();
hide ();
set_modal (false);
ok_button->set_sensitive(true);

View File

@ -605,7 +605,7 @@ template <typename DataSet>
void
SessionMetadataDialog<DataSet>::end_dialog ()
{
hide_all();
hide ();
}
template <typename DataSet>