summaryrefslogtreecommitdiff
path: root/external/libvisio/tdf-77915-fix-import-of-default-shape-fill-color.patch
diff options
context:
space:
mode:
Diffstat (limited to 'external/libvisio/tdf-77915-fix-import-of-default-shape-fill-color.patch')
-rw-r--r--external/libvisio/tdf-77915-fix-import-of-default-shape-fill-color.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/external/libvisio/tdf-77915-fix-import-of-default-shape-fill-color.patch b/external/libvisio/tdf-77915-fix-import-of-default-shape-fill-color.patch
deleted file mode 100644
index 68c0c2c88b10..000000000000
--- a/external/libvisio/tdf-77915-fix-import-of-default-shape-fill-color.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/lib/VSDStyles.h
-+++ src/lib/VSDStyles.h
-@@ -129,7 +129,9 @@ struct VSDOptionalFillStyle
- ASSIGN_OPTIONAL(style.qsFillColour, qsFillColour);
- ASSIGN_OPTIONAL(style.qsShadowColour, qsShadowColour);
- ASSIGN_OPTIONAL(style.qsFillMatrix, qsFillMatrix);
-- ASSIGN_OPTIONAL(style.fgColour, fgColour);
-+ // Colour 'Blue, Variant 1' is special. It is the default,
-+ // and it is not saved explicitely in the VSDX file.
-+ ASSIGN_OPTIONAL(style.fgColour, fgColour);else fgColour = Colour(0x5b, 0x9b, 0xd5, 0);
- ASSIGN_OPTIONAL(style.bgColour, bgColour);
- ASSIGN_OPTIONAL(style.shadowFgColour, shadowFgColour);
- }