inkscape/inkscape-poppler-c++20-2.patch
Ana Guerrero ac95fd7ab8 - Update to version 1.4+71:
* Fix building with poppler 25.02.0
  * Pass document antialias setting to make a bitmap copy
  * Fix Paste when SVG Mode is set to "new"
  * Refresh doc rsrc dialog after deleting objects
  * Fix PDF import w/ consecutive clippings
  * Batch export: swap is-file and missing-directory cases to intended use
  * Don't use std::regex for parsing page size
  * Cherry-Pick: Fix undo history dialog destruction
  * Fix file extension defaulting to WMF if unset
  * Avoid dangling window in app.preferences action
  * Fix copy+paste of cloned group
  * Fix modular grid drawing when Y axis is pointing up
  * Fix crash loading user palettes
  * Fix circle updates with unset attributes
  * Page numbers must have a range to be valid for 'all'
  * Distance to move needs to stay a double
  * Remove aggressive blind cleaning in path to stroke
  * Update the app data screenshots to 1.4
  * Add double-click hint to guide statusbar tooltip
  * Fixes inbox#11133: restored missing parameters for perspective LPE.
  * Allow changing color of Asian patterns
  * Don't block NodeTool::selection_changed
  * Modernise some Node Tool constructs
  * Don't create a new document when closing StartScreen
  * Fix snap package: printing and print-preview (backport to 1.4.x)
  * Make comments available to translators
  * Labels for modifiers can be localised.
  * Collapse additional children in Commands Toolbar
  * Updated translations.

OBS-URL: https://build.opensuse.org/package/show/graphics/inkscape?expand=0&rev=129
2025-02-20 08:11:47 +00:00

14 lines
782 B
Diff

Index: inkscape-1.3.2_2023-11-25_091e20ef0f/src/ui/dialog/filter-effects-dialog.cpp
===================================================================
--- inkscape-1.3.2_2023-11-25_091e20ef0f.orig/src/ui/dialog/filter-effects-dialog.cpp
+++ inkscape-1.3.2_2023-11-25_091e20ef0f/src/ui/dialog/filter-effects-dialog.cpp
@@ -202,7 +202,7 @@ public:
template< typename T> class ComboWithTooltip : public Gtk::EventBox
{
public:
- ComboWithTooltip<T>(T default_value, const Util::EnumDataConverter<T>& c, const SPAttr a = SPAttr::INVALID, char* tip_text = nullptr)
+ ComboWithTooltip(T const default_value, Util::EnumDataConverter<T> const &c, SPAttr const a = SPAttr::INVALID, char* tip_text = nullptr)
{
if (tip_text) {
set_tooltip_text(tip_text);