rm not needed newlines
This commit is contained in:
parent
6e8bf37cc8
commit
05d860eda7
1 changed files with 0 additions and 3 deletions
|
@ -112,7 +112,6 @@ FbRun::~FbRun() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void FbRun::run(const std::string &command) {
|
void FbRun::run(const std::string &command) {
|
||||||
|
|
||||||
FbTk::App::instance()->end(); // end application
|
FbTk::App::instance()->end(); // end application
|
||||||
m_end = true; // mark end of processing
|
m_end = true; // mark end of processing
|
||||||
|
|
||||||
|
@ -446,7 +445,6 @@ void FbRun::tabComplete(const std::vector<std::string> &list, int ¤tItem,
|
||||||
|
|
||||||
|
|
||||||
void FbRun::tabCompleteApps() {
|
void FbRun::tabCompleteApps() {
|
||||||
|
|
||||||
if (m_completion_pos == std::string::npos)
|
if (m_completion_pos == std::string::npos)
|
||||||
m_completion_pos = textStartPos() + cursorPosition();
|
m_completion_pos = textStartPos() + cursorPosition();
|
||||||
size_t split = text().find_last_of(' ', m_completion_pos);
|
size_t split = text().find_last_of(' ', m_completion_pos);
|
||||||
|
@ -532,4 +530,3 @@ void FbRun::insertCharacter(char keychar) {
|
||||||
char val[2] = {keychar, 0};
|
char val[2] = {keychar, 0};
|
||||||
insertText(val);
|
insertText(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue