Add a missing quote in a demo
Resolves: RHEL-178315
This commit is contained in:
parent
63f62d88c8
commit
3e3cbfb0ee
@ -17,7 +17,7 @@
|
||||
|
||||
Name: gtk4
|
||||
Version: 4.12.3
|
||||
Release: 2%{?dist}
|
||||
Release: 3%{?dist}
|
||||
Summary: GTK graphical user interface library
|
||||
|
||||
License: LGPL-2.0-or-later
|
||||
@ -92,6 +92,7 @@ Obsoletes: gtk4-devel-docs < 4.1.2
|
||||
|
||||
Patch00001: preserve-old-glib-pango.diff
|
||||
Patch00002: drop-objcopy-use.patch
|
||||
Patch00003: missing-quotes.patch
|
||||
|
||||
%description
|
||||
GTK is a multi-platform toolkit for creating graphical user
|
||||
@ -221,6 +222,12 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
|
||||
%{_mandir}/man1/gtk4-widget-factory.1*
|
||||
|
||||
%changelog
|
||||
* Mon Jul 06 2026 Matthias Clasen <mclasen@redhat.com> - 4.12.3-3
|
||||
- Stop using objcopy for resources
|
||||
Resolves: RHEL-186555
|
||||
- Add missing quotes
|
||||
Resolves: RHEL-178315
|
||||
|
||||
* Thu Dec 07 2023 Carlos Garnacho <cgarnach@redhat.com> - 4.12.3-2
|
||||
- Do not try to implement color glyphs without Pango help
|
||||
Resolves: RHEL-842
|
||||
|
||||
12
missing-quotes.patch
Normal file
12
missing-quotes.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -up gtk-4.12.3/demos/gtk-demo/application.c.missing-quotes gtk-4.12.3/demos/gtk-demo/application.c
|
||||
--- gtk-4.12.3/demos/gtk-demo/application.c.missing-quotes 2026-07-06 15:35:12.115674096 -0400
|
||||
+++ gtk-4.12.3/demos/gtk-demo/application.c 2026-07-06 15:35:26.094008368 -0400
|
||||
@@ -35,7 +35,7 @@ show_action_dialog (GSimpleAction *actio
|
||||
{
|
||||
GtkAlertDialog *dialog;
|
||||
|
||||
- dialog = gtk_alert_dialog_new ("You activated action: \"%s\n",
|
||||
+ dialog = gtk_alert_dialog_new ("You activated action: \"%s\"\n",
|
||||
g_action_get_name (G_ACTION (action)));
|
||||
gtk_alert_dialog_show (dialog, NULL);
|
||||
g_object_unref (dialog);
|
||||
Loading…
Reference in New Issue
Block a user