From 36e0269f07bc178127b3b8d90ba651216b031857 Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Sat, 13 Mar 2021 04:16:19 -0600 Subject: [PATCH] Update NotificationClass.h Remove some title case and add newline --- Source/Android/Bridge/NotificationClass.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Android/Bridge/NotificationClass.h b/Source/Android/Bridge/NotificationClass.h index 16501bb7e..c03491bdd 100644 --- a/Source/Android/Bridge/NotificationClass.h +++ b/Source/Android/Bridge/NotificationClass.h @@ -9,14 +9,14 @@ public: CNotificationImp(void); virtual ~CNotificationImp(); - //Error Messages + // Error messages void DisplayError(const char * Message) const; void DisplayError(LanguageStringID StringID) const; void FatalError(const char * Message) const; void FatalError(LanguageStringID StringID) const; - //User Feedback + // User feedback void DisplayWarning(const char * Message) const; void DisplayWarning(LanguageStringID StringID) const; @@ -25,7 +25,7 @@ public: void DisplayMessage2(const char * Message) const; - // Ask a Yes/No Question to the user, yes = true, no = false + // Ask a yes/no question to the user, yes = true, no = false bool AskYesNoQuestion(const char * Question) const; void BreakPoint(const char * FileName, int32_t LineNumber); @@ -40,4 +40,4 @@ private: mutable time_t m_NextMsg; }; -CNotificationImp & Notify(void); \ No newline at end of file +CNotificationImp & Notify(void);