rm not needed newlines

This commit is contained in:
kottroll 2016-12-25 00:20:31 +03:00 committed by Mathias Gumz
parent 6e8bf37cc8
commit 05d860eda7

View file

@ -112,7 +112,6 @@ FbRun::~FbRun() {
}
void FbRun::run(const std::string &command) {
FbTk::App::instance()->end(); // end application
m_end = true; // mark end of processing
@ -446,7 +445,6 @@ void FbRun::tabComplete(const std::vector<std::string> &list, int &currentItem,
void FbRun::tabCompleteApps() {
if (m_completion_pos == std::string::npos)
m_completion_pos = textStartPos() + cursorPosition();
size_t split = text().find_last_of(' ', m_completion_pos);
@ -532,4 +530,3 @@ void FbRun::insertCharacter(char keychar) {
char val[2] = {keychar, 0};
insertText(val);
}