diff options
author | Ryan Lortie <desrt@desrt.ca> | 2011-12-01 12:18:22 -0500 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2011-12-19 12:51:09 -0500 |
commit | b42308f8e3e8798ac631ccb10ba7224b2ade81c6 (patch) | |
tree | 9d96258f1c655ff9ea13dae68c6a302a084edce0 /examples | |
parent | 33aaf26dd5950dc7d5a9d0fa2535a5068c53bebb (diff) | |
download | gtk+-b42308f8e3e8798ac631ccb10ba7224b2ade81c6.tar.gz |
Adapt to changes in GLib API
g_application_get_menu() -> get_app_menu().
Diffstat (limited to 'examples')
-rw-r--r-- | examples/bloatpad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bloatpad.c b/examples/bloatpad.c index 315ec12a65..2c23ea0fa0 100644 --- a/examples/bloatpad.c +++ b/examples/bloatpad.c @@ -208,7 +208,7 @@ static void bloat_pad_init (BloatPad *app) { g_application_set_action_group (G_APPLICATION (app), get_actions ()); - g_application_set_menu (G_APPLICATION (app), get_menu ()); + g_application_set_app_menu (G_APPLICATION (app), get_menu ()); } static void |