summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-11-22 18:41:17 +0000
committerMatthias Clasen <mclasen@redhat.com>2022-11-22 18:41:17 +0000
commit9bda1e9e13bf638cb2e1ae7bbfd95393eb5e5739 (patch)
treee570d04980704a3558f9396070a324a8b73676cf
parent8d9d4434dc8b21a8c251b898028ef1d0f5ac913f (diff)
parent46a43461c1566ad645a62fa2fb1361b4ffe9c6fc (diff)
downloadgtk+-9bda1e9e13bf638cb2e1ae7bbfd95393eb5e5739.tar.gz
Merge branch 'ebassi/app-default-flags' into 'gtk-3-24'
Do not use new G_APPLICATION_DEFAULT_FLAGS enum value See merge request GNOME/gtk!5245
-rw-r--r--examples/drawing.c2
-rw-r--r--examples/grid-packing.c2
-rw-r--r--examples/hello-world.c2
-rw-r--r--examples/search-bar.c21
-rw-r--r--examples/window-default.c2
-rw-r--r--tests/testinfobar.c5
-rw-r--r--tests/testlist4.c1
-rw-r--r--tests/testmodelbutton.c3
8 files changed, 17 insertions, 21 deletions
diff --git a/examples/drawing.c b/examples/drawing.c
index 01ef670df6..e8658223a6 100644
--- a/examples/drawing.c
+++ b/examples/drawing.c
@@ -182,7 +182,7 @@ main (int argc,
GtkApplication *app;
int status;
- app = gtk_application_new ("org.gtk.example", G_APPLICATION_DEFAULT_FLAGS);
+ app = gtk_application_new ("org.gtk.example", 0);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
diff --git a/examples/grid-packing.c b/examples/grid-packing.c
index d651e16195..8fb12a88ad 100644
--- a/examples/grid-packing.c
+++ b/examples/grid-packing.c
@@ -66,7 +66,7 @@ main (int argc,
GtkApplication *app;
int status;
- app = gtk_application_new ("org.gtk.example", G_APPLICATION_DEFAULT_FLAGS);
+ app = gtk_application_new ("org.gtk.example", 0);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
diff --git a/examples/hello-world.c b/examples/hello-world.c
index 13ef85f24c..dfee0e89b2 100644
--- a/examples/hello-world.c
+++ b/examples/hello-world.c
@@ -37,7 +37,7 @@ main (int argc,
GtkApplication *app;
int status;
- app = gtk_application_new ("org.gtk.example", G_APPLICATION_DEFAULT_FLAGS);
+ app = gtk_application_new ("org.gtk.example", 0);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
diff --git a/examples/search-bar.c b/examples/search-bar.c
index 642ff27bb8..00990bf4f4 100644
--- a/examples/search-bar.c
+++ b/examples/search-bar.c
@@ -2,15 +2,15 @@
static gboolean
window_key_press_event_cb (GtkWidget *window,
- GdkEvent *event,
- GtkSearchBar *search_bar)
+ GdkEvent *event,
+ GtkSearchBar *search_bar)
{
return gtk_search_bar_handle_event (search_bar, event);
}
static void
activate_cb (GtkApplication *app,
- gpointer user_data)
+ gpointer user_data)
{
GtkWidget *window;
GtkWidget *search_bar;
@@ -40,19 +40,18 @@ activate_cb (GtkApplication *app,
gtk_search_bar_connect_entry (GTK_SEARCH_BAR (search_bar), GTK_ENTRY (entry));
g_signal_connect (window, "key-press-event",
- G_CALLBACK (window_key_press_event_cb), search_bar);
+ G_CALLBACK (window_key_press_event_cb),
+ search_bar);
}
-gint
-main (gint argc,
- gchar *argv[])
+int
+main (int argc,
+ char *argv[])
{
GtkApplication *app;
- app = gtk_application_new ("org.gtk.Example.GtkSearchBar",
- G_APPLICATION_DEFAULT_FLAGS);
- g_signal_connect (app, "activate",
- G_CALLBACK (activate_cb), NULL);
+ app = gtk_application_new ("org.gtk.Example.GtkSearchBar", 0);
+ g_signal_connect (app, "activate", G_CALLBACK (activate_cb), NULL);
return g_application_run (G_APPLICATION (app), argc, argv);
}
diff --git a/examples/window-default.c b/examples/window-default.c
index 4bc800a888..b11e61bfa8 100644
--- a/examples/window-default.c
+++ b/examples/window-default.c
@@ -19,7 +19,7 @@ main (int argc,
GtkApplication *app;
int status;
- app = gtk_application_new ("org.gtk.example", G_APPLICATION_DEFAULT_FLAGS);
+ app = gtk_application_new ("org.gtk.example", 0);
g_signal_connect (app, "activate", G_CALLBACK (activate), NULL);
status = g_application_run (G_APPLICATION (app), argc, argv);
g_object_unref (app);
diff --git a/tests/testinfobar.c b/tests/testinfobar.c
index 812feae62a..3762bb1401 100644
--- a/tests/testinfobar.c
+++ b/tests/testinfobar.c
@@ -99,11 +99,10 @@ main (int argc,
GtkApplication *application;
int result;
- application = gtk_application_new ("org.gtk.test.infobar",
- G_APPLICATION_DEFAULT_FLAGS);
+ application = gtk_application_new ("org.gtk.test.infobar", 0);
g_signal_connect (application, "activate", G_CALLBACK (on_activate), NULL);
-
result = g_application_run (G_APPLICATION (application), argc, argv);
g_object_unref (application);
+
return result;
}
diff --git a/tests/testlist4.c b/tests/testlist4.c
index 6c792445c9..a244e6fecc 100644
--- a/tests/testlist4.c
+++ b/tests/testlist4.c
@@ -202,7 +202,6 @@ test_app_new (void)
test_app = g_object_new (test_app_get_type (),
"application-id", "org.gtk.testlist4",
- "flags", G_APPLICATION_DEFAULT_FLAGS,
NULL);
return test_app;
diff --git a/tests/testmodelbutton.c b/tests/testmodelbutton.c
index 846226538c..296ab1c525 100644
--- a/tests/testmodelbutton.c
+++ b/tests/testmodelbutton.c
@@ -97,8 +97,7 @@ int
main (int argc,
char *argv[])
{
- GtkApplication *application = gtk_application_new ("org.gtk.test.modelbutton",
- G_APPLICATION_DEFAULT_FLAGS);
+ GtkApplication *application = gtk_application_new ("org.gtk.test.modelbutton", 0);
int result;
g_signal_connect (application, "activate",