diff options
author | infirit <[email protected]> | 2014-11-23 11:23:52 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-23 11:38:10 +0100 |
commit | dba401f22f4aa533d74bb5429e807fbc3c42ec00 (patch) | |
tree | 908bcd70dee3dcca1086f8138333a01a5c8dee1b /applets/notification_area | |
parent | 53362cb07c5e9d68cc9ff52c9a9eaf0da3ef585e (diff) | |
download | mate-panel-dba401f22f4aa533d74bb5429e807fbc3c42ec00.tar.bz2 mate-panel-dba401f22f4aa533d74bb5429e807fbc3c42ec00.tar.xz |
Gtk3: Silence GtkBox deprecation warnings
Diffstat (limited to 'applets/notification_area')
-rw-r--r-- | applets/notification_area/na-tray.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/applets/notification_area/na-tray.c b/applets/notification_area/na-tray.c index 7df0741c..356e4d53 100644 --- a/applets/notification_area/na-tray.c +++ b/applets/notification_area/na-tray.c @@ -34,6 +34,11 @@ #define ICON_SPACING 1 #define MIN_BOX_SIZE 3 +#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 + typedef struct { NaTrayManager *tray_manager; |