aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkottroll <kot.troll@ya.ru>2016-12-24 21:20:31 (GMT)
committerMathias Gumz <akira@fluxbox.org>2018-03-11 12:35:56 (GMT)
commit05d860eda73f5461a471fdafc404c9fdf680f4a7 (patch)
tree55ca2542ad61545fe6622e8425e1221c859e3f68
parent6e8bf37cc84642815113dcc88fea9fe8c1b8aebc (diff)
downloadfluxbox-05d860eda73f5461a471fdafc404c9fdf680f4a7.zip
fluxbox-05d860eda73f5461a471fdafc404c9fdf680f4a7.tar.bz2
rm not needed newlines
-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