]> Dogcows Code - chaz/openbox/commitdiff
rename the sendTo action to sendToWorkspace
authorDana Jansens <danakj@orodu.net>
Sat, 20 Jul 2002 10:17:08 +0000 (10:17 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 20 Jul 2002 10:17:08 +0000 (10:17 +0000)
util/epist/actions.hh
util/epist/epist.cc
util/epist/screen.cc

index f95f007b3c65cb77ee71d56e9fec49c75ca1b31c..6ae4e7ff264d9c5e49b30996495c172edb050c38 100644 (file)
@@ -46,7 +46,7 @@ public:
     moveWindowLeft,
     moveWindowRight,
 
-    sendTo, //done
+    sendToWorkspace, //done
 
     nextWindow, //done for now
     prevWindow, //done for now
index 4d557ab54c3b7130106f59ee5284aa16ebac42cc..32d79d2fdb0091cde9f6185737941d736d8ac0c5 100644 (file)
@@ -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));
index 8597e5953d2df2392a7c4aaea8f510cf866b6835..db100889fb64e97b1182300f6d424494a16893c2 100644 (file)
@@ -221,7 +221,7 @@ void screen::handleKeypress(const XEvent &e) {
           window->lower();
           return;
 
-        case Action::sendTo:
+        case Action::sendToWorkspace:
           window->sendTo(it->number());
           return;
 
This page took 0.024713 seconds and 4 git commands to generate.