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) {}
//
// MesssageBoxLogOutputter
// MessageBoxLogOutputter
//
MesssageBoxLogOutputter::MesssageBoxLogOutputter()
MessageBoxLogOutputter::MessageBoxLogOutputter()
{
// do nothing
}
MesssageBoxLogOutputter::~MesssageBoxLogOutputter()
MessageBoxLogOutputter::~MessageBoxLogOutputter()
{
// do nothing
}
void
MesssageBoxLogOutputter::open(const char* title)
MessageBoxLogOutputter::open(const char* title)
{
// do nothing
}
void
MesssageBoxLogOutputter::close()
MessageBoxLogOutputter::close()
{
// do nothing
}
void
MesssageBoxLogOutputter::show(bool showIfEmpty)
MessageBoxLogOutputter::show(bool showIfEmpty)
{
// do nothing
}
bool
MesssageBoxLogOutputter::write(ELevel level, const char* msg)
MessageBoxLogOutputter::write(ELevel level, const char* msg)
{
// don't spam user with messages.
if (level > kERROR) {

View File

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