projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55baa1f
)
urilauncher: Fix finish function mismatch
author
Matthias Clasen
<mclasen@redhat.com>
Sun, 15 Jan 2023 16:58:09 +0000
(11:58 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Sun, 15 Jan 2023 16:58:09 +0000
(11:58 -0500)
We need to call the finish function that
matches the async function.
gtk/gtkurilauncher.c
patch
|
blob
|
history
diff --git
a/gtk/gtkurilauncher.c
b/gtk/gtkurilauncher.c
index b2da466fc2e83d9097baf7329cc09eea00d1aeca..cf705651ea5242640bfb4b0eeafc7bf0628566a6 100644
(file)
--- a/
gtk/gtkurilauncher.c
+++ b/
gtk/gtkurilauncher.c
@@
-221,7
+221,7
@@
open_done (GObject *source,
GTask *task = G_TASK (data);
GError *error = NULL;
- if (!g_openuri_portal_open_finish (result, &error))
+ if (!g_openuri_portal_open_
uri_
finish (result, &error))
g_task_return_error (task, error);
else
g_task_return_boolean (task, TRUE);