summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-20 10:17:08 +0000
committerDana Jansens <danakj@orodu.net>2002-07-20 10:17:08 +0000
commite8fcc69d4b63f6d8531d93f61ead8eda8f45577d (patch)
treef4ed8c84b47337058d9e0055b428793966190a19 /util
parent6a8f5f44e123c9ade7964e2051dd0d6a9858961c (diff)
rename the sendTo action to sendToWorkspace
Diffstat (limited to 'util')
-rw-r--r--util/epist/actions.hh2
-rw-r--r--util/epist/epist.cc8
-rw-r--r--util/epist/screen.cc2
3 files changed, 6 insertions, 6 deletions
diff --git a/util/epist/actions.hh b/util/epist/actions.hh
index f95f007b..6ae4e7ff 100644
--- a/util/epist/actions.hh
+++ b/util/epist/actions.hh
@@ -46,7 +46,7 @@ public:
moveWindowLeft,
moveWindowRight,
- sendTo, //done
+ sendToWorkspace, //done
nextWindow, //done for now
prevWindow, //done for now
diff --git a/util/epist/epist.cc b/util/epist/epist.cc
index 4d557ab5..32d79d2f 100644
--- a/util/epist/epist.cc
+++ b/util/epist/epist.cc
@@ -124,19 +124,19 @@ epist::epist(char **argv, char *dpy_name, char *rc_file)
XKeysymToKeycode(getXDisplay(),
XStringToKeysym("O")),
Mod1Mask | ControlMask));
- _actions.push_back(Action(Action::sendTo,
+ _actions.push_back(Action(Action::sendToWorkspace,
XKeysymToKeycode(getXDisplay(),
XStringToKeysym("1")),
Mod1Mask | ControlMask, 0));
- _actions.push_back(Action(Action::sendTo,
+ _actions.push_back(Action(Action::sendToWorkspace,
XKeysymToKeycode(getXDisplay(),
XStringToKeysym("2")),
Mod1Mask | ControlMask, 1));
- _actions.push_back(Action(Action::sendTo,
+ _actions.push_back(Action(Action::sendToWorkspace,
XKeysymToKeycode(getXDisplay(),
XStringToKeysym("3")),
Mod1Mask | ControlMask, 2));
- _actions.push_back(Action(Action::sendTo,
+ _actions.push_back(Action(Action::sendToWorkspace,
XKeysymToKeycode(getXDisplay(),
XStringToKeysym("4")),
Mod1Mask | ControlMask, 3));
diff --git a/util/epist/screen.cc b/util/epist/screen.cc
index 8597e595..db100889 100644
--- a/util/epist/screen.cc
+++ b/util/epist/screen.cc
@@ -221,7 +221,7 @@ void screen::handleKeypress(const XEvent &e) {
window->lower();
return;
- case Action::sendTo:
+ case Action::sendToWorkspace:
window->sendTo(it->number());
return;