spelling: message

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2022-05-05 21:33:28 -04:00
parent 915d2f8f4b
commit 57a9a87a86
2 changed files with 10 additions and 10 deletions

View File

@ -290,39 +290,39 @@ void
FileLogOutputter::show(bool showIfEmpty) {} FileLogOutputter::show(bool showIfEmpty) {}
// //
// MesssageBoxLogOutputter // MessageBoxLogOutputter
// //
MesssageBoxLogOutputter::MesssageBoxLogOutputter() MessageBoxLogOutputter::MessageBoxLogOutputter()
{ {
// do nothing // do nothing
} }
MesssageBoxLogOutputter::~MesssageBoxLogOutputter() MessageBoxLogOutputter::~MessageBoxLogOutputter()
{ {
// do nothing // do nothing
} }
void void
MesssageBoxLogOutputter::open(const char* title) MessageBoxLogOutputter::open(const char* title)
{ {
// do nothing // do nothing
} }
void void
MesssageBoxLogOutputter::close() MessageBoxLogOutputter::close()
{ {
// do nothing // do nothing
} }
void void
MesssageBoxLogOutputter::show(bool showIfEmpty) MessageBoxLogOutputter::show(bool showIfEmpty)
{ {
// do nothing // do nothing
} }
bool bool
MesssageBoxLogOutputter::write(ELevel level, const char* msg) MessageBoxLogOutputter::write(ELevel level, const char* msg)
{ {
// don't spam user with messages. // don't spam user with messages.
if (level > kERROR) { if (level > kERROR) {

View File

@ -159,10 +159,10 @@ private:
/*! /*!
The level for each message is ignored. The level for each message is ignored.
*/ */
class MesssageBoxLogOutputter : public ILogOutputter { class MessageBoxLogOutputter : public ILogOutputter {
public: public:
MesssageBoxLogOutputter(); MessageBoxLogOutputter();
virtual ~MesssageBoxLogOutputter(); virtual ~MessageBoxLogOutputter();
// ILogOutputter overrides // ILogOutputter overrides
virtual void open(const char* title); virtual void open(const char* title);