Changed member variable naming style to snake case
This commit is contained in:
parent
0fa6c82b3f
commit
392d606848
7 changed files with 251 additions and 251 deletions
|
@ -13,18 +13,18 @@ public:
|
|||
|
||||
const DesktopNotificationController::Notification& GetRef() const
|
||||
{
|
||||
return notificationRef;
|
||||
return notification_ref_;
|
||||
}
|
||||
|
||||
const std::string& GetTag() const
|
||||
{
|
||||
return tag;
|
||||
return tag_;
|
||||
}
|
||||
|
||||
private:
|
||||
DISALLOW_COPY_AND_ASSIGN(Win32Notification);
|
||||
DesktopNotificationController::Notification notificationRef;
|
||||
std::string tag;
|
||||
DesktopNotificationController::Notification notification_ref_;
|
||||
std::string tag_;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue