mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-14 23:43:52 +02:00
Change the naming scheme for class field members
I'm not a fan of Hungarian notation, but C++ kind of needs it with its implicit `this`. And of all the common options for this, I find suffixing members with an underscore the least offensive one.
This commit is contained in:
@@ -57,14 +57,14 @@ class Vst3ContextMenuProxyImpl : public Vst3ContextMenuProxy {
|
||||
*/
|
||||
std::unordered_map<int32,
|
||||
Steinberg::IPtr<Steinberg::Vst::IContextMenuTarget>>
|
||||
context_menu_targets;
|
||||
context_menu_targets_;
|
||||
|
||||
private:
|
||||
Vst3Bridge& bridge;
|
||||
Vst3Bridge& bridge_;
|
||||
|
||||
/**
|
||||
* The items passed when to `addItem` calls made by the plugin. This way we
|
||||
* can call these same targets later.
|
||||
*/
|
||||
std::vector<Steinberg::Vst::IContextMenuItem> items;
|
||||
std::vector<Steinberg::Vst::IContextMenuItem> items_;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user