summaryrefslogtreecommitdiff
path: root/battstat
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-11-26 14:38:07 +0100
committerinfirit <[email protected]>2014-11-26 18:13:43 +0100
commitd2d685818a85b773c49802c494a0c386917b5ee6 (patch)
tree918603ced900c21a124c7d6de37b609beda74046 /battstat
parent1499d577a67f2dd0f99e6707f29ebd9ba8f9b940 (diff)
downloadmate-applets-d2d685818a85b773c49802c494a0c386917b5ee6.tar.bz2
mate-applets-d2d685818a85b773c49802c494a0c386917b5ee6.tar.xz
Gtk3: Silence GtkVbox and GtkHbox deprecation warnings
Diffstat (limited to 'battstat')
-rw-r--r--battstat/battstat_applet.c5
-rw-r--r--battstat/power-management.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/battstat/battstat_applet.c b/battstat/battstat_applet.c
index 0ac60ede..cd57e085 100644
--- a/battstat/battstat_applet.c
+++ b/battstat/battstat_applet.c
@@ -53,6 +53,11 @@
#define gettext_noop(String) (String)
#endif
+#if GTK_CHECK_VERSION (3, 0, 0)
+#define gtk_vbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_VERTICAL,Y)
+#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y)
+#endif
+
#define BATTSTAT_SCHEMA "org.mate.panel.applet.battstat"
static gboolean check_for_updates (gpointer data);
diff --git a/battstat/power-management.c b/battstat/power-management.c
index 682f9683..b046464c 100644
--- a/battstat/power-management.c
+++ b/battstat/power-management.c
@@ -62,6 +62,10 @@
"the ACPI subsystem. Check to make sure the " \
"ACPI subsystem is properly loaded.")
+#if GTK_CHECK_VERSION (3, 0, 0)
+#define gtk_vbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_VERTICAL,Y)
+#endif
+
static const char *apm_readinfo (BatteryStatus *status);
static int pm_initialised;
#ifdef HAVE_HAL