all repos — openbox @ 8e38989ee8533c364a7f407bdafef351d9f1823e

openbox fork - make it a bit more like ryudo

remove some unneeded std::'s
Dana Jansens danakj@orodu.net
commit

8e38989ee8533c364a7f407bdafef351d9f1823e

parent

4652af7b28167a9d9f00e4cb387af93d9e246d64

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M util/epist/epist.ccutil/epist/epist.cc

@@ -231,7 +231,7 @@ }

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));
M util/epist/screen.ccutil/epist/screen.cc

@@ -453,7 +453,7 @@ */

} -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;