diff options
author | infirit <[email protected]> | 2014-11-26 14:38:07 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-26 18:13:43 +0100 |
commit | d2d685818a85b773c49802c494a0c386917b5ee6 (patch) | |
tree | 918603ced900c21a124c7d6de37b609beda74046 /timerapplet/timerapplet.c | |
parent | 1499d577a67f2dd0f99e6707f29ebd9ba8f9b940 (diff) | |
download | mate-applets-d2d685818a85b773c49802c494a0c386917b5ee6.tar.bz2 mate-applets-d2d685818a85b773c49802c494a0c386917b5ee6.tar.xz |
Gtk3: Silence GtkVbox and GtkHbox deprecation warnings
Diffstat (limited to 'timerapplet/timerapplet.c')
-rw-r--r-- | timerapplet/timerapplet.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/timerapplet/timerapplet.c b/timerapplet/timerapplet.c index c5ff8a45..292ffda5 100644 --- a/timerapplet/timerapplet.c +++ b/timerapplet/timerapplet.c @@ -45,6 +45,10 @@ #define SHOW_NOTIFICATION_KEY "show-notification" #define SHOW_DIALOG_KEY "show-dialog" +#if GTK_CHECK_VERSION (3, 0, 0) +#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y) +#endif + typedef struct { MatePanelApplet *applet; |