From f8e02029bcb68ec0ac5928f07dd9baab7bb0c53cd16d8e34d43a297444c4b5c2 Mon Sep 17 00:00:00 2001 From: Dirk Stoecker Date: Thu, 27 Jul 2023 09:55:17 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/graphics/inkscape?expand=0&rev=107 --- 0001-Fix-build-with-GCC13.patch | 48 --------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 0001-Fix-build-with-GCC13.patch diff --git a/0001-Fix-build-with-GCC13.patch b/0001-Fix-build-with-GCC13.patch deleted file mode 100644 index ac6bb78..0000000 --- a/0001-Fix-build-with-GCC13.patch +++ /dev/null @@ -1,48 +0,0 @@ -From c68f5f9cade8a890efefcb4c2e0fc57762211286 Mon Sep 17 00:00:00 2001 -From: Elliott Sales de Andrade -Date: Fri, 24 Feb 2023 14:01:18 -0500 -Subject: [PATCH] Fix build with GCC13 - -GCC 13 now complains about this line: -``` -src/ui/widget/selected-style.cpp:111:6: error: statement-expressions are not allowed outside functions nor in template-argument lists - 111 | {g_strdup("application/x-oswb-color"), 0, APP_OSWB_COLOR} - | ^~~~~~~~ -``` - -However, it is not necessary to strdup the string constant as the value -just needs to exist indefinitely, and it will as a constant. While C -doesn't mind the `const` difference, a simple cast will silence C++'s -higher strictness. - -And in fact, the other use of `GtkTargetEntry` in -`src/ui/drag-and-drop.cpp` does the same cast. - -Signed-off-by: Elliott Sales de Andrade ---- - src/ui/widget/selected-style.cpp | 8 +------- - 1 file changed, 1 insertion(+), 7 deletions(-) - -diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp -index 68fe1fc426..7274f1b74c 100644 ---- a/src/ui/widget/selected-style.cpp -+++ b/src/ui/widget/selected-style.cpp -@@ -100,14 +100,8 @@ enum ui_drop_target_info { - APP_OSWB_COLOR - }; - --//TODO: warning: deprecated conversion from string constant to ‘gchar*’ --// --//Turn out to be warnings that we should probably leave in place. The --// pointers/types used need to be read-only. So until we correct the using --// code, those warnings are actually desired. They say "Hey! Fix this". We --// definitely don't want to hide/ignore them. --JonCruz - static const GtkTargetEntry ui_drop_target_entries [] = { -- {g_strdup("application/x-oswb-color"), 0, APP_OSWB_COLOR} -+ {(gchar *)"application/x-oswb-color", 0, APP_OSWB_COLOR} - }; - - static guint nui_drop_target_entries = G_N_ELEMENTS(ui_drop_target_entries); --- -2.39.2 -