[gtk+/no-init-args: 3/10] Don't export gtk_get_option_group
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/no-init-args: 3/10] Don't export gtk_get_option_group
- Date: Wed, 28 Dec 2016 21:40:52 +0000 (UTC)
commit 3ea1b37affff04a1b6a60948e48a71dcba825fd3
Author: Matthias Clasen <mclasen redhat com>
Date: Tue Dec 27 18:45:53 2016 -0500
Don't export gtk_get_option_group
We want to get rid of commandline option handling in GTK+.
This is a step in that direction.
gtk/gtk-launch.c | 2 --
gtk/gtkapplication.c | 2 --
gtk/gtkmain.c | 19 +------------------
gtk/gtkmain.h | 3 ---
4 files changed, 1 insertions(+), 25 deletions(-)
---
diff --git a/gtk/gtk-launch.c b/gtk/gtk-launch.c
index 692fb94..bf84ad6 100644
--- a/gtk/gtk-launch.c
+++ b/gtk/gtk-launch.c
@@ -79,8 +79,6 @@ main (int argc, char *argv[])
"optionally passing one or more URIs as arguments.");
g_option_context_set_summary (context, summary);
g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
- g_option_context_add_group (context, gtk_get_option_group (FALSE));
-
g_option_context_parse (context, &argc, &argv, &error);
g_option_context_free (context);
diff --git a/gtk/gtkapplication.c b/gtk/gtkapplication.c
index ea3eba3..a1b2271 100644
--- a/gtk/gtkapplication.c
+++ b/gtk/gtkapplication.c
@@ -327,8 +327,6 @@ gtk_application_local_command_line (GApplication *application,
gchar ***arguments,
gint *exit_status)
{
- g_application_add_option_group (application, gtk_get_option_group (FALSE));
-
return G_APPLICATION_CLASS (gtk_application_parent_class)->local_command_line (application, arguments,
exit_status);
}
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index 616a6fe..9231b02 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -861,24 +861,7 @@ gtk_simulate_touchscreen (void)
return test_touchscreen > 0 || (gtk_get_debug_flags () & GTK_DEBUG_TOUCHSCREEN) != 0;
}
-/**
- * gtk_get_option_group:
- * @open_default_display: whether to open the default display
- * when parsing the commandline arguments
- *
- * Returns a #GOptionGroup for the commandline arguments recognized
- * by GTK+ and GDK.
- *
- * You should add this group to your #GOptionContext
- * with g_option_context_add_group(), if you are using
- * g_option_context_parse() to parse your commandline arguments.
- *
- * Returns: (transfer full): a #GOptionGroup for the commandline
- * arguments recognized by GTK+
- *
- * Since: 2.6
- */
-GOptionGroup *
+static GOptionGroup *
gtk_get_option_group (gboolean open_default_display)
{
GOptionGroup *group;
diff --git a/gtk/gtkmain.h b/gtk/gtkmain.h
index 79398b2..33635bf 100644
--- a/gtk/gtkmain.h
+++ b/gtk/gtkmain.h
@@ -80,9 +80,6 @@ GDK_AVAILABLE_IN_ALL
gboolean gtk_init_check (int *argc,
char ***argv);
-GDK_AVAILABLE_IN_ALL
-GOptionGroup *gtk_get_option_group (gboolean open_default_display);
-
#ifdef G_OS_WIN32
/* Variants that are used to check for correct struct packing
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]