summaryrefslogtreecommitdiff
path: root/gtk2_ardour/plugin_selector.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-09-18 12:39:17 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-18 12:39:17 -0400
commit30b087ab3d28f1585987fa3f6ae006562ae192e3 (patch)
tree620ae0250b5d77f90a18f8c2b83be61e4fe7b0b5 /gtk2_ardour/plugin_selector.cc
parentcb956e3e480716a3efd280a5287bdd7bee1cedc5 (diff)
globally change all use of "frame" to refer to audio into "sample".
Generated by tools/f2s. Some hand-editing will be required in a few places to fix up comments related to timecode and video in order to keep the legible
Diffstat (limited to 'gtk2_ardour/plugin_selector.cc')
-rw-r--r--gtk2_ardour/plugin_selector.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/plugin_selector.cc b/gtk2_ardour/plugin_selector.cc
index 0a609eb9cd..fc16aa3751 100644
--- a/gtk2_ardour/plugin_selector.cc
+++ b/gtk2_ardour/plugin_selector.cc
@@ -205,18 +205,18 @@ PluginSelector::PluginSelector (PluginManager& mgr)
filter_table->set_col_spacings (2);
filter_table->set_row_spacings (4);
- Frame* filter_frame = manage (new Frame);
- filter_frame->set_name ("BaseFrame");
- filter_frame->set_label (_("Filter"));
- filter_frame->add (*filter_table);
+ Frame* filter_sample = manage (new Frame);
+ filter_sample->set_name ("BaseFrame");
+ filter_sample->set_label (_("Filter"));
+ filter_sample->add (*filter_table);
- filter_frame->show_all ();
+ filter_sample->show_all ();
HBox* side_by_side = manage (new HBox);
VBox* right_side = manage (new VBox);
table->attach (scroller, 0, 7, 0, 5);
- table->attach (*filter_frame, 0, 7, 6, 7, FILL|EXPAND, FILL, 5, 5);
+ table->attach (*filter_sample, 0, 7, 6, 7, FILL|EXPAND, FILL, 5, 5);
right_side->pack_start (ascroller);