summaryrefslogtreecommitdiffstats
path: root/src/livarot/int-line.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/livarot/int-line.cpp')
-rw-r--r--src/livarot/int-line.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/livarot/int-line.cpp b/src/livarot/int-line.cpp
index 998f638e7..ff9e26790 100644
--- a/src/livarot/int-line.cpp
+++ b/src/livarot/int-line.cpp
@@ -22,10 +22,10 @@
IntLigne::IntLigne()
{
nbBord = maxBord = 0;
- bords = NULL;
+ bords = nullptr;
nbRun = maxRun = 0;
- runs = NULL;
+ runs = nullptr;
firstAc = lastAc = -1;
}
@@ -36,12 +36,12 @@ IntLigne::~IntLigne()
if ( maxBord > 0 ) {
g_free(bords);
nbBord = maxBord = 0;
- bords = NULL;
+ bords = nullptr;
}
if ( maxRun > 0 ) {
g_free(runs);
nbRun = maxRun = 0;
- runs = NULL;
+ runs = nullptr;
}
}