summaryrefslogtreecommitdiff
path: root/navit/menu.c
diff options
context:
space:
mode:
authorJoseph Herlant <herlantj@gmail.com>2018-05-25 22:06:51 -0700
committerJoseph Herlant <aerostitch@users.noreply.github.com>2018-05-25 22:17:50 -0700
commit8a76acb966f7059caf9d72c853175bd923b1e9d7 (patch)
tree1735178f7a0718831b88d2c36ea18a9955de3224 /navit/menu.c
parent032f15287b472f1a4b5349533f3e5b468684b281 (diff)
downloadnavit-8a76acb966f7059caf9d72c853175bd923b1e9d7.tar.gz
cleanup:global:Use astyle to reformat everything
Diffstat (limited to 'navit/menu.c')
-rw-r--r--navit/menu.c32
1 files changed, 15 insertions, 17 deletions
diff --git a/navit/menu.c b/navit/menu.c
index 92afa6c73..29eb23752 100644
--- a/navit/menu.c
+++ b/navit/menu.c
@@ -22,26 +22,24 @@
#include "debug.h"
struct menu *
-menu_add(struct menu *menu, char *name, enum menu_type type, struct callback *cb)
-{
- struct menu *this;
- if (! menu || ! menu->meth.add)
- return NULL;
- this=g_new0(struct menu, 1);
- this->priv=(*menu->meth.add)(menu->priv, &this->meth, name, type, cb);
- if (! this->priv) {
- g_free(this);
- return NULL;
- }
+menu_add(struct menu *menu, char *name, enum menu_type type, struct callback *cb) {
+ struct menu *this;
+ if (! menu || ! menu->meth.add)
+ return NULL;
+ this=g_new0(struct menu, 1);
+ this->priv=(*menu->meth.add)(menu->priv, &this->meth, name, type, cb);
+ if (! this->priv) {
+ g_free(this);
+ return NULL;
+ }
- return this;
+ return this;
}
void
-menu_popup(struct menu *menu)
-{
- if (! menu || ! menu->meth.popup)
- return;
- (*menu->meth.popup)(menu->priv);
+menu_popup(struct menu *menu) {
+ if (! menu || ! menu->meth.popup)
+ return;
+ (*menu->meth.popup)(menu->priv);
}