NoCamelCase method names (libs)
This commit is contained in:
@@ -90,7 +90,7 @@ void
|
||||
ArdourDisplay::add_controllable_preset (const char *txt, float val)
|
||||
{
|
||||
using namespace Menu_Helpers;
|
||||
AddMenuElem(MenuElem (txt, sigc::bind (sigc::mem_fun(*this, &ArdourDisplay::handle_controllable_preset), val)));
|
||||
add_menu_elem(MenuElem (txt, sigc::bind (sigc::mem_fun(*this, &ArdourDisplay::handle_controllable_preset), val)));
|
||||
}
|
||||
|
||||
static inline float dB_to_coefficient (float dB) {
|
||||
|
||||
@@ -169,7 +169,7 @@ ArdourDropdown::clear_items ()
|
||||
}
|
||||
|
||||
void
|
||||
ArdourDropdown::AddMenuElem (Menu_Helpers::Element e)
|
||||
ArdourDropdown::add_menu_elem (Menu_Helpers::Element e)
|
||||
{
|
||||
using namespace Menu_Helpers;
|
||||
|
||||
@@ -187,7 +187,7 @@ ArdourDropdown::disable_scrolling()
|
||||
void
|
||||
ArdourDropdown::append_text_item (std::string const& text) {
|
||||
using namespace Gtkmm2ext;
|
||||
AddMenuElem (MenuElemNoMnemonic (text, sigc::bind (sigc::mem_fun (*this, &ArdourDropdown::default_text_handler), text)));
|
||||
add_menu_elem (MenuElemNoMnemonic (text, sigc::bind (sigc::mem_fun (*this, &ArdourDropdown::default_text_handler), text)));
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
@@ -44,7 +44,7 @@ public:
|
||||
void menu_size_request(Gtk::Requisition*);
|
||||
|
||||
void clear_items ();
|
||||
void AddMenuElem (Gtk::Menu_Helpers::Element e);
|
||||
void add_menu_elem (Gtk::Menu_Helpers::Element e);
|
||||
void append (Glib::RefPtr<Gtk::Action>);
|
||||
|
||||
void disable_scrolling();
|
||||
|
||||
Reference in New Issue
Block a user