diff options
Diffstat (limited to 'src/MarginView.h')
-rw-r--r-- | src/MarginView.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/MarginView.h b/src/MarginView.h index eb136d71e..695126ad9 100644 --- a/src/MarginView.h +++ b/src/MarginView.h @@ -21,9 +21,9 @@ typedef void (*DrawWrapMarkerFn)(Surface *surface, PRectangle rcPlace, bool isEn */ class MarginView { public: - Surface *pixmapSelMargin; - Surface *pixmapSelPattern; - Surface *pixmapSelPatternOffset1; + std::unique_ptr<Surface> pixmapSelMargin; + std::unique_ptr<Surface> pixmapSelPattern; + std::unique_ptr<Surface> pixmapSelPatternOffset1; // Highlight current folding block HighlightDelimiter highlightDelimiter; |