summaryrefslogtreecommitdiff
path: root/mate-volume-control/src/gvc-speaker-test.c
diff options
context:
space:
mode:
authorMichal Ratajsky <[email protected]>2014-07-05 15:16:02 +0200
committerinfirit <[email protected]>2014-10-09 16:53:00 +0200
commit1d5fb97b21f2fe6d2ed5cf912989929ba58d1afd (patch)
tree1aee5d14c32419c9d43630c41acb9ed6584ef4d0 /mate-volume-control/src/gvc-speaker-test.c
parentcf427cb4ccfc269252c1f7744b4c730ef0bb7a4e (diff)
downloadmate-media-1d5fb97b21f2fe6d2ed5cf912989929ba58d1afd.tar.bz2
mate-media-1d5fb97b21f2fe6d2ed5cf912989929ba58d1afd.tar.xz
Build without PulseAudio code, minor fixes
Diffstat (limited to 'mate-volume-control/src/gvc-speaker-test.c')
-rw-r--r--mate-volume-control/src/gvc-speaker-test.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/mate-volume-control/src/gvc-speaker-test.c b/mate-volume-control/src/gvc-speaker-test.c
index 3fcf8d7..25b836c 100644
--- a/mate-volume-control/src/gvc-speaker-test.c
+++ b/mate-volume-control/src/gvc-speaker-test.c
@@ -493,7 +493,7 @@ update_channel_map (GvcSpeakerTest *test)
static void
gvc_speaker_test_init (GvcSpeakerTest *test)
{
- GtkWidget *face;
+ GtkWidget *icon;
test->priv = GVC_SPEAKER_TEST_GET_PRIVATE (test);
@@ -521,16 +521,15 @@ gvc_speaker_test_init (GvcSpeakerTest *test)
create_channel_controls (test);
- /* FIXME: what is the purpose of the smiley face? */
- face = gtk_image_new_from_icon_name ("face-smile", GTK_ICON_SIZE_DIALOG);
+ icon = gtk_image_new_from_icon_name ("computer", GTK_ICON_SIZE_DIALOG);
- gtk_table_attach (GTK_TABLE (test), face,
+ gtk_table_attach (GTK_TABLE (test), icon,
2, 3, 1, 2,
GTK_EXPAND,
GTK_EXPAND,
0, 0);
- gtk_widget_show (face);
+ gtk_widget_show (icon);
}
static void