diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-01-22 10:01:57 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-01-22 10:01:57 -0600 |
commit | 039c43dc5d0bee82c69c4ef8beee246940570096 (patch) | |
tree | b61e07b33223d616118bee6181868b92cee52f1d /src | |
parent | 2db8f6e7c4b7148377800400c72bb2e59b793d3a (diff) | |
download | ayatana-indicator-datetime-039c43dc5d0bee82c69c4ef8beee246940570096.tar.gz ayatana-indicator-datetime-039c43dc5d0bee82c69c4ef8beee246940570096.tar.bz2 ayatana-indicator-datetime-039c43dc5d0bee82c69c4ef8beee246940570096.zip |
fix r325 regression found by test-menus
Diffstat (limited to 'src')
-rw-r--r-- | src/actions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions.cpp b/src/actions.cpp index 0df7d53..1d80c99 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -188,11 +188,11 @@ Actions::Actions(const std::shared_ptr<State>& state): auto v = create_default_header_state(); auto a = g_simple_action_new_stateful("desktop-header", nullptr, v); g_action_map_add_action(gam, G_ACTION(a)); - a = g_simple_action_new_stateful("desktop-greeter-header", nullptr, v); + a = g_simple_action_new_stateful("desktop_greeter-header", nullptr, v); g_action_map_add_action(gam, G_ACTION(a)); a = g_simple_action_new_stateful("phone-header", nullptr, v); g_action_map_add_action(gam, G_ACTION(a)); - a = g_simple_action_new_stateful("phone-greeter-header", nullptr, v); + a = g_simple_action_new_stateful("phone_greeter-header", nullptr, v); g_action_map_add_action(gam, G_ACTION(a)); // add the calendar action |