diff options
author | kottroll <kot.troll@ya.ru> | 2016-12-24 21:20:31 (GMT) |
---|---|---|
committer | Mathias Gumz <akira@fluxbox.org> | 2018-03-11 12:35:56 (GMT) |
commit | 05d860eda73f5461a471fdafc404c9fdf680f4a7 (patch) | |
tree | 55ca2542ad61545fe6622e8425e1221c859e3f68 /util | |
parent | 6e8bf37cc84642815113dcc88fea9fe8c1b8aebc (diff) | |
download | fluxbox-05d860eda73f5461a471fdafc404c9fdf680f4a7.zip fluxbox-05d860eda73f5461a471fdafc404c9fdf680f4a7.tar.bz2 |
rm not needed newlines
Diffstat (limited to 'util')
-rw-r--r-- | util/fbrun/FbRun.cc | 3 |
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 | ||
114 | void FbRun::run(const std::string &command) { | 114 | void 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 ¤tItem, | |||
446 | 445 | ||
447 | 446 | ||
448 | void FbRun::tabCompleteApps() { | 447 | void 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 | |||