13
0

wierd->weird misspeling fix.

git-svn-id: svn://localhost/ardour2/trunk@1469 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Taybin Rutkin 2007-02-16 20:41:22 +00:00
parent 53a0749376
commit 2571f8e4c1
2 changed files with 5 additions and 5 deletions

View File

@ -398,16 +398,16 @@ RedirectBox::insert_plugin_chosen (boost::shared_ptr<Plugin> plugin)
uint32_t err_streams;
if (_route->add_redirect (redirect, this, &err_streams)) {
wierd_plugin_dialog (*plugin, err_streams, _route);
weird_plugin_dialog (*plugin, err_streams, _route);
// XXX SHAREDPTR delete plugin here .. do we even need to care?
}
}
}
void
RedirectBox::wierd_plugin_dialog (Plugin& p, uint32_t streams, boost::shared_ptr<IO> io)
RedirectBox::weird_plugin_dialog (Plugin& p, uint32_t streams, boost::shared_ptr<IO> io)
{
ArdourDialog dialog ("wierd plugin dialog");
ArdourDialog dialog (_("ardour: weird plugin dialog"));
Label label;
/* i hate this kind of code */
@ -702,7 +702,7 @@ RedirectBox::compute_redirect_sort_keys ()
/* now tell them about the problem */
ArdourDialog dialog ("wierd plugin dialog");
ArdourDialog dialog (_("ardour: weird plugin dialog"));
Label label;
label.set_text (_("\

View File

@ -195,7 +195,7 @@ class RedirectBox : public Gtk::HBox
gint idle_delete_redirect (boost::weak_ptr<ARDOUR::Redirect>);
void wierd_plugin_dialog (ARDOUR::Plugin& p, uint32_t streams, boost::shared_ptr<ARDOUR::IO> io);
void weird_plugin_dialog (ARDOUR::Plugin& p, uint32_t streams, boost::shared_ptr<ARDOUR::IO> io);
static RedirectBox* _current_redirect_box;
static bool enter_box (GdkEventCrossing*, RedirectBox*);