From e6fc59d7d7d82159bced394283cc7554aa0d5e4d Mon Sep 17 00:00:00 2001 From: "Derek \"Turtle\" Roe" Date: Mon, 15 Mar 2021 23:59:26 -0500 Subject: [PATCH] Update NotificationClass.cpp Add some spaces after comments begin, remove some title case --- Source/Android/Bridge/NotificationClass.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/Android/Bridge/NotificationClass.cpp b/Source/Android/Bridge/NotificationClass.cpp index fbef4edf1..0b2f43ccf 100644 --- a/Source/Android/Bridge/NotificationClass.cpp +++ b/Source/Android/Bridge/NotificationClass.cpp @@ -32,7 +32,7 @@ void CNotificationImp::DisplayError(const char * Message) const #ifdef ANDROID g_JavaBridge->DisplayError(Message); #else - Message = NULL; // not used + Message = NULL; // Not used #endif } @@ -67,7 +67,7 @@ void CNotificationImp::DisplayWarning(const char * Message) const #ifdef ANDROID g_JavaBridge->DisplayError(Message); #else - Message = NULL; // not used + Message = NULL; // Not used #endif } @@ -84,14 +84,14 @@ void CNotificationImp::DisplayMessage(int DisplayTime, LanguageStringID StringID DisplayMessage(DisplayTime, g_Lang->GetString(StringID).c_str()); } -//User Feedback +// User feedback void CNotificationImp::DisplayMessage(int DisplayTime, const char * Message) const { #ifdef ANDROID if (g_JavaBridge == NULL) { return; } g_JavaBridge->DisplayMessage(Message, DisplayTime); #else - // ignore warning usage + // Ignore warning usage DisplayTime = DisplayTime; Message = Message; #endif @@ -104,12 +104,12 @@ void CNotificationImp::DisplayMessage2(const char * Message) const g_JavaBridge->DisplayMessage2(Message); #else - // ignore warning usage + // Ignore warning usage Message = Message; #endif } -// 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 CNotificationImp::AskYesNoQuestion(const char * /*Question*/) const { return false;