diff options
| -rw-r--r-- | src/themes/coco/coco-theme.c | 4 | ||||
| -rw-r--r-- | src/themes/nodoka/nodoka-theme.c | 4 | ||||
| -rw-r--r-- | src/themes/standard/theme.c | 8 | 
3 files changed, 0 insertions, 16 deletions
| diff --git a/src/themes/coco/coco-theme.c b/src/themes/coco/coco-theme.c index 3d13f14..606101c 100644 --- a/src/themes/coco/coco-theme.c +++ b/src/themes/coco/coco-theme.c @@ -643,11 +643,7 @@ clear_notification_actions(GtkWindow *nw)  	gtk_widget_hide(windata->actions_box);  	gtk_container_foreach(GTK_CONTAINER(windata->actions_box), -#if GTK_CHECK_VERSION (3, 0, 0)  						  (GtkCallback)g_object_unref, NULL); -#else -						  (GtkCallback)gtk_object_destroy, NULL); -#endif  }  /* Move notification window */ diff --git a/src/themes/nodoka/nodoka-theme.c b/src/themes/nodoka/nodoka-theme.c index 906cdd6..cf9f70d 100644 --- a/src/themes/nodoka/nodoka-theme.c +++ b/src/themes/nodoka/nodoka-theme.c @@ -1038,11 +1038,7 @@ clear_notification_actions(GtkWindow *nw)  	gtk_widget_hide(windata->actions_box);  	gtk_container_foreach(GTK_CONTAINER(windata->actions_box), -#if GTK_CHECK_VERSION(3, 0, 0)  						  (GtkCallback)g_object_unref, NULL); -#else -						  (GtkCallback)gtk_object_destroy, NULL); -#endif  }  /* Move notification window */ diff --git a/src/themes/standard/theme.c b/src/themes/standard/theme.c index 3c52a92..f68d2b9 100644 --- a/src/themes/standard/theme.c +++ b/src/themes/standard/theme.c @@ -734,11 +734,7 @@ GtkWindow* create_notification(UrlClickedCb url_clicked)  	gtk_button_set_relief(GTK_BUTTON(close_button), GTK_RELIEF_NONE);  	gtk_container_set_border_width(GTK_CONTAINER(close_button), 0);  	//gtk_widget_set_size_request(close_button, 20, 20); -#if GTK_CHECK_VERSION(3, 0, 0)  	g_signal_connect_swapped(G_OBJECT(close_button), "clicked", G_CALLBACK(g_object_unref), win); -#else -	g_signal_connect_swapped(G_OBJECT(close_button), "clicked", G_CALLBACK(gtk_widget_destroy), win); -#endif  	rcstyle = gtk_rc_style_new();  	rcstyle->xthickness = rcstyle->ythickness = 0; @@ -1051,11 +1047,7 @@ void clear_notification_actions(GtkWindow* nw)  	windata->pie_countdown = NULL;  	gtk_widget_hide(windata->actions_box); -#if GTK_CHECK_VERSION(3, 0, 0)  	gtk_container_foreach(GTK_CONTAINER(windata->actions_box), (GtkCallback) g_object_unref, NULL); -#else -	gtk_container_foreach(GTK_CONTAINER(windata->actions_box), (GtkCallback) gtk_object_destroy, NULL); -#endif  }  void move_notification(GtkWidget* nw, int x, int y) | 
