Changed member variable naming style to snake case

This commit is contained in:
Ales Pergl 2017-03-17 14:41:22 +01:00
parent 0fa6c82b3f
commit 392d606848
7 changed files with 251 additions and 251 deletions

View file

@ -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_;
};
}