forked from AuroraMiddleware/gtk
Add some missing deprecation annotations
These were reported missing in bug https://bugzilla.gnome.org/show_bug.cgi?id=705672
This commit is contained in:
parent
9463c78bac
commit
1398f8ea4c
@ -96,15 +96,15 @@ GDK_AVAILABLE_IN_ALL
|
||||
void gtk_combo_box_set_column_span_column (GtkComboBox *combo_box,
|
||||
gint column_span);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_DEPRECATED_IN_3_10
|
||||
gboolean gtk_combo_box_get_add_tearoffs (GtkComboBox *combo_box);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_DEPRECATED_IN_3_10
|
||||
void gtk_combo_box_set_add_tearoffs (GtkComboBox *combo_box,
|
||||
gboolean add_tearoffs);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_DEPRECATED_IN_3_10
|
||||
const gchar * gtk_combo_box_get_title (GtkComboBox *combo_box);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_DEPRECATED_IN_3_10
|
||||
void gtk_combo_box_set_title (GtkComboBox *combo_box,
|
||||
const gchar *title);
|
||||
|
||||
|
@ -620,7 +620,7 @@ gtk_menu_class_init (GtkMenuClass *class)
|
||||
P_("Tearoff Title"),
|
||||
P_("A title that may be displayed by the window manager when this menu is torn-off"),
|
||||
NULL,
|
||||
GTK_PARAM_READWRITE));
|
||||
GTK_PARAM_READWRITE | G_PARAM_DEPRECATED));
|
||||
|
||||
/**
|
||||
* GtkMenu:tearoff-state:
|
||||
@ -637,7 +637,7 @@ gtk_menu_class_init (GtkMenuClass *class)
|
||||
P_("Tearoff State"),
|
||||
P_("A boolean that indicates whether the menu is torn-off"),
|
||||
FALSE,
|
||||
GTK_PARAM_READWRITE));
|
||||
GTK_PARAM_READWRITE | G_PARAM_DEPRECATED));
|
||||
|
||||
/**
|
||||
* GtkMenu:monitor:
|
||||
|
@ -190,19 +190,19 @@ void gtk_menu_detach (GtkMenu *menu);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GtkWidget* gtk_menu_get_attach_widget (GtkMenu *menu);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_DEPRECATED_IN_3_10
|
||||
void gtk_menu_set_tearoff_state (GtkMenu *menu,
|
||||
gboolean torn_off);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_DEPRECATED_IN_3_10
|
||||
gboolean gtk_menu_get_tearoff_state (GtkMenu *menu);
|
||||
|
||||
/* This sets the window manager title for the window that
|
||||
* appears when a menu is torn off
|
||||
*/
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_DEPRECATED_IN_3_10
|
||||
void gtk_menu_set_title (GtkMenu *menu,
|
||||
const gchar *title);
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
GDK_DEPRECATED_IN_3_10
|
||||
const gchar * gtk_menu_get_title (GtkMenu *menu);
|
||||
|
||||
GDK_AVAILABLE_IN_ALL
|
||||
|
Loading…
Reference in New Issue
Block a user