aboutsummaryrefslogtreecommitdiff
path: root/src/Keys.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-04-26 18:27:56 (GMT)
committerfluxgen <fluxgen>2003-04-26 18:27:56 (GMT)
commit6e460803e4429db5a230417fcbb67214217b58fb (patch)
treee4f8fd76cea2ce493fefab38f2309e4bd27dd580 /src/Keys.cc
parentae47696324e489355d19ea45c17442a3515a8845 (diff)
downloadfluxbox-6e460803e4429db5a230417fcbb67214217b58fb.zip
fluxbox-6e460803e4429db5a230417fcbb67214217b58fb.tar.bz2
moved StringUtil to FbTk
Diffstat (limited to 'src/Keys.cc')
-rw-r--r--src/Keys.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Keys.cc b/src/Keys.cc
index a818e3b..a9879b5 100644
--- a/src/Keys.cc
+++ b/src/Keys.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22//$Id: Keys.cc,v 1.26 2003/04/20 12:21:35 rathnor Exp $ 22//$Id: Keys.cc,v 1.27 2003/04/26 18:27:56 fluxgen Exp $
23 23
24 24
25#include "Keys.hh" 25#include "Keys.hh"
@@ -28,7 +28,7 @@
28#include "App.hh" 28#include "App.hh"
29 29
30#ifdef HAVE_CONFIG_H 30#ifdef HAVE_CONFIG_H
31#include "../config.h" 31#include "config.h"
32#endif // HAVE_CONFIG_H 32#endif // HAVE_CONFIG_H
33 33
34 34
@@ -213,7 +213,7 @@ bool Keys::load(const char *filename) {
213 line++; 213 line++;
214 vector<string> val; 214 vector<string> val;
215 //Parse arguments 215 //Parse arguments
216 StringUtil::stringtok(val, linebuffer.c_str()); 216 FbTk::StringUtil::stringtok(val, linebuffer.c_str());
217 217
218 //must have at least 1 argument 218 //must have at least 1 argument
219 if (val.size() <= 0) 219 if (val.size() <= 0)
@@ -297,7 +297,7 @@ bool Keys::load(const char *filename) {
297 case Keys::EXECUTE: 297 case Keys::EXECUTE:
298 last_key->execcommand = 298 last_key->execcommand =
299 const_cast<char *> 299 const_cast<char *>
300 (StringUtil::strcasestr(linebuffer.c_str(), 300 (FbTk::StringUtil::strcasestr(linebuffer.c_str(),
301 getActionStr(Keys::EXECUTE))+ 301 getActionStr(Keys::EXECUTE))+
302 strlen(getActionStr(Keys::EXECUTE))); 302 strlen(getActionStr(Keys::EXECUTE)));
303 break; 303 break;