diff options
| author | Thomas Holder <thomas@thomas-holder.de> | 2019-10-28 11:32:35 +0000 |
|---|---|---|
| committer | Thomas Holder <thomas@thomas-holder.de> | 2019-10-28 11:32:35 +0000 |
| commit | 98cbf65b029df0cfb9f6b7d34538258fe4ee96c5 (patch) | |
| tree | 43153dccc9e85e8aafb9288fc08521d35161e739 /src/id-clash.cpp | |
| parent | refactor: private SPIBase::_name (diff) | |
| download | inkscape-98cbf65b029df0cfb9f6b7d34538258fe4ee96c5.tar.gz inkscape-98cbf65b029df0cfb9f6b7d34538258fe4ee96c5.zip | |
refactor: TypedSPI
Diffstat (limited to '')
| -rw-r--r-- | src/id-clash.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/id-clash.cpp b/src/id-clash.cpp index 95c43166c..7ba021985 100644 --- a/src/id-clash.cpp +++ b/src/id-clash.cpp @@ -54,8 +54,8 @@ const char *href_like_attributes[] = { const SPIPaint SPStyle::* SPIPaint_members[] = { //&SPStyle::color, - &SPStyle::fill, - &SPStyle::stroke, + reinterpret_cast<SPIPaint SPStyle::*>(&SPStyle::fill), + reinterpret_cast<SPIPaint SPStyle::*>(&SPStyle::stroke), }; const char* SPIPaint_properties[] = { //"color", |
