summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOkan Demirmen <okan@cvs.openbsd.org>2013-01-04 16:30:04 +0000
committerOkan Demirmen <okan@cvs.openbsd.org>2013-01-04 16:30:04 +0000
commitd74c4945d1b4b45a68384735fc45585735cb36c0 (patch)
treec25b73a3280fd6885eb4ca34a0f81479906d9df2
parent74cf74bf66fb4b7adda88e2ac3ec53124e923cfe (diff)
rename {h,v}max functions for consistency; from Jan Stary
-rw-r--r--app/cwm/calmwm.h6
-rw-r--r--app/cwm/client.c6
-rw-r--r--app/cwm/kbfunc.c6
3 files changed, 9 insertions, 9 deletions
diff --git a/app/cwm/calmwm.h b/app/cwm/calmwm.h
index 1897351d6..94400967b 100644
--- a/app/cwm/calmwm.h
+++ b/app/cwm/calmwm.h
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: calmwm.h,v 1.184 2013/01/04 16:27:58 okan Exp $
+ * $OpenBSD: calmwm.h,v 1.185 2013/01/04 16:30:03 okan Exp $
*/
#ifndef _CALMWM_H_
@@ -320,7 +320,7 @@ struct client_ctx *client_find(Window);
void client_freeze(struct client_ctx *);
void client_getsizehints(struct client_ctx *);
void client_hide(struct client_ctx *);
-void client_horizmaximize(struct client_ctx *);
+void client_hmaximize(struct client_ctx *);
void client_leave(struct client_ctx *);
void client_lower(struct client_ctx *);
void client_map(struct client_ctx *);
@@ -337,7 +337,7 @@ void client_setname(struct client_ctx *);
int client_snapcalc(int, int, int, int, int);
void client_transient(struct client_ctx *);
void client_unhide(struct client_ctx *);
-void client_vertmaximize(struct client_ctx *);
+void client_vmaximize(struct client_ctx *);
void client_warp(struct client_ctx *);
void group_alltoggle(struct screen_ctx *);
diff --git a/app/cwm/client.c b/app/cwm/client.c
index d1718053c..3eaa68ca8 100644
--- a/app/cwm/client.c
+++ b/app/cwm/client.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: client.c,v 1.114 2013/01/04 16:23:04 okan Exp $
+ * $OpenBSD: client.c,v 1.115 2013/01/04 16:30:03 okan Exp $
*/
#include <sys/param.h>
@@ -298,7 +298,7 @@ resize:
}
void
-client_vertmaximize(struct client_ctx *cc)
+client_vmaximize(struct client_ctx *cc)
{
struct screen_ctx *sc = cc->sc;
struct geom xine;
@@ -339,7 +339,7 @@ resize:
}
void
-client_horizmaximize(struct client_ctx *cc)
+client_hmaximize(struct client_ctx *cc)
{
struct screen_ctx *sc = cc->sc;
struct geom xine;
diff --git a/app/cwm/kbfunc.c b/app/cwm/kbfunc.c
index 8f03732f1..926229c30 100644
--- a/app/cwm/kbfunc.c
+++ b/app/cwm/kbfunc.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: kbfunc.c,v 1.74 2013/01/02 21:41:14 okan Exp $
+ * $OpenBSD: kbfunc.c,v 1.75 2013/01/04 16:30:03 okan Exp $
*/
#include <sys/param.h>
@@ -452,13 +452,13 @@ kbfunc_client_maximize(struct client_ctx *cc, union arg *arg)
void
kbfunc_client_vmaximize(struct client_ctx *cc, union arg *arg)
{
- client_vertmaximize(cc);
+ client_vmaximize(cc);
}
void
kbfunc_client_hmaximize(struct client_ctx *cc, union arg *arg)
{
- client_horizmaximize(cc);
+ client_hmaximize(cc);
}
void