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:
Robbert van der Helm
2022-01-01 21:07:17 +01:00
parent e0ab24e645
commit 0b9a16cf40
169 changed files with 2448 additions and 2405 deletions
@@ -123,18 +123,18 @@ class Vst3ContextMenuProxy : public YaContextMenu {
* Get the instance ID of the owner of this object.
*/
inline size_t owner_instance_id() const noexcept {
return arguments.owner_instance_id;
return arguments_.owner_instance_id;
}
/**
* Get the unique ID for this context menu.
*/
inline size_t context_menu_id() const noexcept {
return arguments.context_menu_id;
return arguments_.context_menu_id;
}
private:
ConstructArgs arguments;
ConstructArgs arguments_;
};
#pragma GCC diagnostic pop