diff options
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/framelink.hxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/svx/framelink.hxx b/include/svx/framelink.hxx index 2ee2a6f556e0..ae35185a4eb6 100644 --- a/include/svx/framelink.hxx +++ b/include/svx/framelink.hxx @@ -167,6 +167,17 @@ public: inline bool operator>( const Style& rL, const Style& rR ) { return rR.operator<(rL); } +inline Style::Style() + : mfPrim(0) + , mfDist(0) + , mfSecn(0) + , mfPatternScale(1.0) + , meRefMode(RefMode::Centered) + , mnType(SvxBorderLineStyle::SOLID) + , mbWordTableCell(false) + , mbUseGapColor(false) +{} + } |