spelling: message
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
parent
915d2f8f4b
commit
57a9a87a86
|
@ -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) {
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue