diff options
Diffstat (limited to 'src/Keys.cc')
-rw-r--r-- | src/Keys.cc | 8 |
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; |