From 94c5addfc910843de82f19f81f118d521350a324 Mon Sep 17 00:00:00 2001 From: prozacx Date: Mon, 2 May 2005 05:16:35 +0000 Subject: [PATCH] Added optional bool param to PrintMessage() to make text bold git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@226 726aef4b-f618-498e-8847-2d620e286838 --- Utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.h b/Utils.h index 69453139..02e368fa 100644 --- a/Utils.h +++ b/Utils.h @@ -31,7 +31,7 @@ public: static string ChangeDir(const string& sPath, const string& sAdd, const string& sHomeDir); static int MakeDir(const string& sPath, mode_t iMode = 0700); static void PrintError(const string& sMessage); - static void PrintMessage(const string& sMessage); + static void PrintMessage(const string& sMessage, bool bStrong = false); static void PrintPrompt(const string& sMessage); static void PrintAction(const string& sMessage); static void PrintStatus(bool bSuccess, const string& sMessage = "");