summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-07-11 20:02:50 +0000
committerDana Jansens <danakj@orodu.net>2007-07-11 20:02:50 +0000
commit92bf35e33029d18b5030a803aabb7ce2ca00cf52 (patch)
treea63907bfb014fe59f347a104a476ec73d6bad58d
parent2a4cd4f6bd9f6b5a43ea6a825e964fb1f4dccd80 (diff)
finished rev 7756. renaming moveto->moveresizeto
-rw-r--r--openbox/actions/all.c4
-rw-r--r--openbox/actions/all.h4
-rw-r--r--openbox/actions/moveresizeto.c4
-rw-r--r--openbox/actions/movetoedge.c2
4 files changed, 7 insertions, 7 deletions
diff --git a/openbox/actions/all.c b/openbox/actions/all.c
index 51996de8..1bf963ac 100644
--- a/openbox/actions/all.c
+++ b/openbox/actions/all.c
@@ -23,7 +23,7 @@ void action_all_startup()
action_maximize_startup();
action_maximizehorizontal_startup();
action_maximizevertical_startup();
- action_moveto_startup();
+ action_moveresizeto_startup();
action_moverelative_startup();
action_shade_startup();
action_kill_startup();
@@ -38,7 +38,7 @@ void action_all_startup()
action_addremovedesktop_startup();
action_dockautohide_startup();
action_layer_startup();
- action_movetofromedge_startup();
+ action_movetoedge_startup();
action_growtoedge_startup();
action_if_startup();
}
diff --git a/openbox/actions/all.h b/openbox/actions/all.h
index fd71e4b1..acb54dcd 100644
--- a/openbox/actions/all.h
+++ b/openbox/actions/all.h
@@ -24,7 +24,7 @@ void action_fullscreen_startup();
void action_maximize_startup();
void action_maximizehorizontal_startup();
void action_maximizevertical_startup();
-void action_moveto_startup();
+void action_moveresizeto_startup();
void action_moverelative_startup();
void action_shade_startup();
void action_kill_startup();
@@ -39,7 +39,7 @@ void action_resizerelative_startup();
void action_addremovedesktop_startup();
void action_dockautohide_startup();
void action_layer_startup();
-void action_movetofromedge_startup();
+void action_movetoedge_startup();
void action_growtoedge_startup();
void action_if_startup();
diff --git a/openbox/actions/moveresizeto.c b/openbox/actions/moveresizeto.c
index 4d23be45..c49e7c5f 100644
--- a/openbox/actions/moveresizeto.c
+++ b/openbox/actions/moveresizeto.c
@@ -20,9 +20,9 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node);
static void free_func(gpointer options);
static gboolean run_func(ObActionsData *data, gpointer options);
-void action_moveto_startup()
+void action_moveresizeto_startup()
{
- actions_register("MoveTo",
+ actions_register("MoveResizeTo",
setup_func,
free_func,
run_func,
diff --git a/openbox/actions/movetoedge.c b/openbox/actions/movetoedge.c
index 8a4044be..38559a6c 100644
--- a/openbox/actions/movetoedge.c
+++ b/openbox/actions/movetoedge.c
@@ -13,7 +13,7 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node);
static void free_func(gpointer options);
static gboolean run_func(ObActionsData *data, gpointer options);
-void action_movetofromedge_startup()
+void action_movetoedge_startup()
{
actions_register("MoveToEdge",
setup_func,