remove some unneeded std::'s
This commit is contained in:
parent
4652af7b28
commit
8e38989ee8
2 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue