diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-01-30 19:12:27 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-01-30 19:12:27 -0500 |
commit | 585a6652d5ca2123a15290ee3138fb8c36ad14cc (patch) | |
tree | da404859ae663f70bc2822383d386ff918c52409 /tests/testvolumebutton.c | |
parent | 7a080413add02b80c4217a9fbe81467017aae2a5 (diff) | |
download | gtk+-585a6652d5ca2123a15290ee3138fb8c36ad14cc.tar.gz |
Use G_SOURCE_CONTINUE/REMOVE
Now that GLib provides these macros, we should use them
to make the code more readable.
Diffstat (limited to 'tests/testvolumebutton.c')
-rw-r--r-- | tests/testvolumebutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testvolumebutton.c b/tests/testvolumebutton.c index 29b3e33f94..85e7469bc5 100644 --- a/tests/testvolumebutton.c +++ b/tests/testvolumebutton.c @@ -70,7 +70,7 @@ show_error (gpointer data) G_CALLBACK (response_cb), NULL); gtk_widget_show (dialog); - return FALSE; + return G_SOURCE_REMOVE; } int |