diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2016-10-24 10:31:37 +0200 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2016-10-24 10:33:51 +0200 |
commit | e528819d0076bebb9f797a56c745c3b1c23706a2 (patch) | |
tree | c98b2a317c21b97c03030d8ed5d85a8104105d4a /gdk/gdk.c | |
parent | b19fe8f4e0e186f70397c5e86e935df54cc3df46 (diff) | |
download | gtk+-e528819d0076bebb9f797a56c745c3b1c23706a2.tar.gz |
gdk: Remove deprecated gdk_add_option_entries_libgtk_only and gdk_pre_parse_libgtk_only
Diffstat (limited to 'gdk/gdk.c')
-rw-r--r-- | gdk/gdk.c | 31 |
1 files changed, 0 insertions, 31 deletions
@@ -255,22 +255,6 @@ gdk_add_option_entries (GOptionGroup *group) g_option_group_add_entries (group, gdk_args); } -/** - * gdk_add_option_entries_libgtk_only: - * @group: An option group. - * - * Appends gdk option entries to the passed in option group. This is - * not public API and must not be used by applications. - * - * Deprecated: 3.16: This symbol was never meant to be used outside - * of GTK+ - */ -void -gdk_add_option_entries_libgtk_only (GOptionGroup *group) -{ - gdk_add_option_entries (group); -} - static gpointer register_resources (gpointer dummy G_GNUC_UNUSED) { @@ -340,21 +324,6 @@ gdk_pre_parse (void) } /** - * gdk_pre_parse_libgtk_only: - * - * Prepare for parsing command line arguments for GDK. This is not - * public API and should not be used in application code. - * - * Deprecated: 3.16: This symbol was never meant to be used outside - * of GTK+ - */ -void -gdk_pre_parse_libgtk_only (void) -{ - gdk_pre_parse (); -} - -/** * gdk_parse_args: * @argc: the number of command line arguments. * @argv: (inout) (array length=argc): the array of command line arguments. |