aboutsummaryrefslogtreecommitdiff
path: root/util/fbrun/FbRun.cc
diff options
context:
space:
mode:
Diffstat (limited to 'util/fbrun/FbRun.cc')
-rw-r--r--util/fbrun/FbRun.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/util/fbrun/FbRun.cc b/util/fbrun/FbRun.cc
index 780d22a..b5effd6 100644
--- a/util/fbrun/FbRun.cc
+++ b/util/fbrun/FbRun.cc
@@ -112,7 +112,6 @@ FbRun::~FbRun() {
112} 112}
113 113
114void FbRun::run(const std::string &command) { 114void FbRun::run(const std::string &command) {
115
116 FbTk::App::instance()->end(); // end application 115 FbTk::App::instance()->end(); // end application
117 m_end = true; // mark end of processing 116 m_end = true; // mark end of processing
118 117
@@ -446,7 +445,6 @@ void FbRun::tabComplete(const std::vector<std::string> &list, int &currentItem,
446 445
447 446
448void FbRun::tabCompleteApps() { 447void FbRun::tabCompleteApps() {
449
450 if (m_completion_pos == std::string::npos) 448 if (m_completion_pos == std::string::npos)
451 m_completion_pos = textStartPos() + cursorPosition(); 449 m_completion_pos = textStartPos() + cursorPosition();
452 size_t split = text().find_last_of(' ', m_completion_pos); 450 size_t split = text().find_last_of(' ', m_completion_pos);
@@ -532,4 +530,3 @@ void FbRun::insertCharacter(char keychar) {
532 char val[2] = {keychar, 0}; 530 char val[2] = {keychar, 0};
533 insertText(val); 531 insertText(val);
534} 532}
535