diff options
author | Sorokin Alexei <[email protected]> | 2016-06-24 23:33:04 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-29 18:42:12 +0200 |
commit | 882f8f4d9959b6b27f08d2ddb525c7347df1797c (patch) | |
tree | badcf506263d22bd15f0c4a77c41b431e4e65f09 /applets/notification_area/na-tray.c | |
parent | 8acec6d1ae0e50f0eee68ce6153d04a3beb5d52a (diff) | |
download | mate-panel-882f8f4d9959b6b27f08d2ddb525c7347df1797c.tar.bz2 mate-panel-882f8f4d9959b6b27f08d2ddb525c7347df1797c.tar.xz |
use gtk_box_new instead of gtk_{h,v}box_new properly
Diffstat (limited to 'applets/notification_area/na-tray.c')
-rw-r--r-- | applets/notification_area/na-tray.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/applets/notification_area/na-tray.c b/applets/notification_area/na-tray.c index 996bd693..b07376c2 100644 --- a/applets/notification_area/na-tray.c +++ b/applets/notification_area/na-tray.c @@ -34,11 +34,6 @@ #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; |