diff options
author | Michal Ratajsky <[email protected]> | 2014-11-08 14:29:47 +0100 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-11-08 14:29:47 +0100 |
commit | d71e47bc5279e1af152c9e65f589020280306a7f (patch) | |
tree | d55023acf3e63bf832b4dc04e6611f9cedf4740a /mate-volume-control/src/gvc-speaker-test.c | |
parent | 7f9a7c7fc793fb05711a972500e1054e69ffaca6 (diff) | |
download | mate-media-d71e47bc5279e1af152c9e65f589020280306a7f.tar.bz2 mate-media-d71e47bc5279e1af152c9e65f589020280306a7f.tar.xz |
Rename mvc-helpers.{c,h} -> gvc-utils.{c,h}
Diffstat (limited to 'mate-volume-control/src/gvc-speaker-test.c')
-rw-r--r-- | mate-volume-control/src/gvc-speaker-test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mate-volume-control/src/gvc-speaker-test.c b/mate-volume-control/src/gvc-speaker-test.c index e9f40b0..e638413 100644 --- a/mate-volume-control/src/gvc-speaker-test.c +++ b/mate-volume-control/src/gvc-speaker-test.c @@ -30,7 +30,7 @@ #include <libmatemixer/matemixer.h> #include "gvc-speaker-test.h" -#include "mvc-helpers.h" +#include "gvc-utils.h" #define GVC_SPEAKER_TEST_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GVC_TYPE_SPEAKER_TEST, GvcSpeakerTestPrivate)) @@ -316,10 +316,10 @@ on_test_button_clicked (GtkButton *button, GtkWidget *control) CA_PROP_MEDIA_ROLE, "test"); ca_proplist_sets (proplist, CA_PROP_MEDIA_NAME, - mvc_channel_position_to_pretty_string (position)); + gvc_channel_position_to_pretty_string (position)); ca_proplist_sets (proplist, CA_PROP_CANBERRA_FORCE_CHANNEL, - mvc_channel_position_to_pulse_string (position)); + gvc_channel_position_to_pulse_string (position)); ca_proplist_sets (proplist, CA_PROP_CANBERRA_ENABLE, "1"); @@ -374,7 +374,7 @@ create_control (ca_context *canberra, MateMixerChannelPosition position) g_object_set_data (G_OBJECT (control), "image", image); gtk_box_pack_start (GTK_BOX (control), image, FALSE, FALSE, 0); - label = gtk_label_new (mvc_channel_position_to_pretty_string (position)); + label = gtk_label_new (gvc_channel_position_to_pretty_string (position)); gtk_box_pack_start (GTK_BOX (control), label, FALSE, FALSE, 0); test_button = gtk_button_new_with_label (_("Test")); |