diff options
author | Stefano Karapetsas <[email protected]> | 2014-01-20 16:16:24 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-01-20 16:16:24 +0100 |
commit | 89df05d618d097c98d0586c67e9d8fb9ae402cb6 (patch) | |
tree | d9551e69ecf73ee078f25dd30d977c64ea144676 /mate-volume-control/src/gvc-mixer-dialog.c | |
parent | 6bab762efb1b6a9f609650d3934bec09527360f8 (diff) | |
download | mate-media-89df05d618d097c98d0586c67e9d8fb9ae402cb6.tar.bz2 mate-media-89df05d618d097c98d0586c67e9d8fb9ae402cb6.tar.xz |
mate-volume-control: Add GTK3 support
Diffstat (limited to 'mate-volume-control/src/gvc-mixer-dialog.c')
-rw-r--r-- | mate-volume-control/src/gvc-mixer-dialog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mate-volume-control/src/gvc-mixer-dialog.c b/mate-volume-control/src/gvc-mixer-dialog.c index 37eaaf0..8db0ebf 100644 --- a/mate-volume-control/src/gvc-mixer-dialog.c +++ b/mate-volume-control/src/gvc-mixer-dialog.c @@ -23,11 +23,15 @@ #include <stdlib.h> #include <stdio.h> #include <unistd.h> +#include <math.h> #include <glib.h> #include <glib/gi18n.h> #include <gdk/gdkkeysyms.h> #include <gtk/gtk.h> +#if GTK_CHECK_VERSION (3, 0, 0) +#include <gdk/gdkkeysyms-compat.h> +#endif #include "gvc-channel-bar.h" #include "gvc-balance-bar.h" @@ -2099,7 +2103,9 @@ gvc_mixer_dialog_new (GvcMixerControl *control) dialog = g_object_new (GVC_TYPE_MIXER_DIALOG, "icon-name", "multimedia-volume-control", "title", _("Sound Preferences"), +#if !GTK_CHECK_VERSION (3, 0, 0) "has-separator", FALSE, +#endif "mixer-control", control, NULL); return GVC_MIXER_DIALOG (dialog); |