diff options
author | Ted Gould <ted@gould.cx> | 2013-08-21 20:50:07 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2013-08-21 20:50:07 -0500 |
commit | a8c93f9ae22d515c092bed0e4dca7873a78f2d88 (patch) | |
tree | 2152a01c63cd3c0fd37f95cabe7afde0addecd06 /test/test-gactionmuxer.cpp | |
parent | 027a06e9d59885a8f961ff83987b338c7c33755f (diff) | |
download | ayatana-indicator-messages-a8c93f9ae22d515c092bed0e4dca7873a78f2d88.tar.gz ayatana-indicator-messages-a8c93f9ae22d515c092bed0e4dca7873a78f2d88.tar.bz2 ayatana-indicator-messages-a8c93f9ae22d515c092bed0e4dca7873a78f2d88.zip |
Change g_simple_action_group_remove() to g_action_map_remove_action()
Diffstat (limited to 'test/test-gactionmuxer.cpp')
-rw-r--r-- | test/test-gactionmuxer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-gactionmuxer.cpp b/test/test-gactionmuxer.cpp index 029e997..498d3dd 100644 --- a/test/test-gactionmuxer.cpp +++ b/test/test-gactionmuxer.cpp @@ -317,7 +317,7 @@ TEST(GActionMuxerTest, Signals) { /* remove the first action */ closure.signal_ran = FALSE; closure.name = "first.one"; - g_simple_action_group_remove (group, "one"); + g_action_map_remove_action (G_ACTION_MAP(group), "one"); EXPECT_TRUE (closure.signal_ran); /* remove the whole group, should be notified about "first.two" */ |