]> Dogcows Code - chaz/openbox/commitdiff
remove some unneeded std::'s
authorDana Jansens <danakj@orodu.net>
Wed, 24 Jul 2002 09:03:05 +0000 (09:03 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 24 Jul 2002 09:03:05 +0000 (09:03 +0000)
util/epist/epist.cc
util/epist/screen.cc

index 55e58b58d78de19d59f31de7c9fba5ab5afe035d..9db7c1bb4e3f58f32cca5e069dc6418e186ee339 100644 (file)
@@ -231,7 +231,7 @@ void epist::addAction(Action::ActionType act, unsigned int modifiers,
 
 
 void epist::addAction(Action::ActionType act, unsigned int modifiers,
-                      string key, std::string str) {
+                      string key, string str) {
   _actions.push_back(Action(act, XKeysymToKeycode(getXDisplay(),
                                                   XStringToKeysym(key.c_str())),
                             modifiers, str));
index 56f64f0cee662665269a9a5bde374525eee56397..2a4d5a7078fc06a19da7cdb50d1c8c1a2fb9c240 100644 (file)
@@ -453,7 +453,7 @@ void screen::updateActiveWindow() {
 }
 
 
-void screen::execCommand(const std::string &cmd) const {
+void screen::execCommand(const string &cmd) const {
   pid_t pid;
   if ((pid = fork()) == 0) {
     extern char **environ;
This page took 0.024177 seconds and 4 git commands to generate.