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

@ -38,23 +38,23 @@ void Win32Notification::Show(const base::string16& title, const base::string16&
if(existing)
{
existing->tag.clear();
this->notificationRef = std::move(existing->notificationRef);
this->notificationRef.Set(title, msg, image);
existing->tag_.clear();
this->notification_ref_ = std::move(existing->notification_ref_);
this->notification_ref_.Set(title, msg, image);
}
else
{
this->notificationRef = presenter->AddNotification(title, msg, image);
this->notification_ref_ = presenter->AddNotification(title, msg, image);
}
this->tag = tag;
this->tag_ = tag;
if(image) DeleteObject(image);
}
void Win32Notification::Dismiss()
{
notificationRef.Close();
notification_ref_.Close();
}
}