summaryrefslogtreecommitdiffstats
path: root/src/livarot/PathOutline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/livarot/PathOutline.cpp')
-rw-r--r--src/livarot/PathOutline.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/livarot/PathOutline.cpp b/src/livarot/PathOutline.cpp
index c1a48d41f..c6d050f01 100644
--- a/src/livarot/PathOutline.cpp
+++ b/src/livarot/PathOutline.cpp
@@ -32,7 +32,7 @@ void Path::Outline(Path *dest, double width, JoinType join, ButtType butt, doubl
if ( descr_cmd.size() <= 1 ) {
return;
}
- if ( dest == NULL ) {
+ if ( dest == nullptr ) {
return;
}
@@ -210,7 +210,7 @@ Path::OutsideOutline (Path * dest, double width, JoinType join, ButtType butt,
CloseSubpath();
}
if (int(descr_cmd.size()) <= 1) return;
- if (dest == NULL) return;
+ if (dest == nullptr) return;
dest->Reset ();
dest->SetBackData (false);
@@ -235,7 +235,7 @@ Path::InsideOutline (Path * dest, double width, JoinType join, ButtType butt,
CloseSubpath();
}
if (int(descr_cmd.size()) <= 1) return;
- if (dest == NULL) return;
+ if (dest == nullptr) return;
dest->Reset ();
dest->SetBackData (false);