reformat commandmanager

This commit is contained in:
Rasmus Karlsson 2018-01-05 02:05:38 +01:00
parent 5f784ce9dc
commit c3770707aa
2 changed files with 6 additions and 4 deletions

View file

@ -200,5 +200,6 @@ CommandManager::Command::Command(QString _text)
this->name = _text.mid(0, index); this->name = _text.mid(0, index);
this->text = _text.mid(index + 1); this->text = _text.mid(index + 1);
} }
}
} } // namespace singletons
} // namespace chatterino

View file

@ -43,5 +43,6 @@ private:
QString execCustomCommand(const QStringList &words, const Command &command); QString execCustomCommand(const QStringList &words, const Command &command);
}; };
}
} } // namespace singletons
} // namespace chatterino