summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-24 09:03:05 +0000
committerDana Jansens <danakj@orodu.net>2002-07-24 09:03:05 +0000
commit8e38989ee8533c364a7f407bdafef351d9f1823e (patch)
tree2421865f89823d5d46733efeda6c4e1a44317f03 /util
parent4652af7b28167a9d9f00e4cb387af93d9e246d64 (diff)
remove some unneeded std::'s
Diffstat (limited to 'util')
-rw-r--r--util/epist/epist.cc2
-rw-r--r--util/epist/screen.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/util/epist/epist.cc b/util/epist/epist.cc
index 55e58b58..9db7c1bb 100644
--- a/util/epist/epist.cc
+++ b/util/epist/epist.cc
@@ -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));
diff --git a/util/epist/screen.cc b/util/epist/screen.cc
index 56f64f0c..2a4d5a70 100644
--- a/util/epist/screen.cc
+++ b/util/epist/screen.cc
@@ -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;