remove some unneeded std::'s

This commit is contained in:
Dana Jansens 2002-07-24 09:03:05 +00:00
parent 4652af7b28
commit 8e38989ee8
2 changed files with 2 additions and 2 deletions

View 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));

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