diff options
Diffstat (limited to 'starmath/inc/caret.hxx')
-rw-r--r-- | starmath/inc/caret.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/inc/caret.hxx b/starmath/inc/caret.hxx index e2c648643008..08afcce5bcc1 100644 --- a/starmath/inc/caret.hxx +++ b/starmath/inc/caret.hxx @@ -99,9 +99,9 @@ private: /** An entry in SmCaretPosGraph */ struct SmCaretPosGraphEntry{ - SmCaretPosGraphEntry(SmCaretPos pos = SmCaretPos(), - SmCaretPosGraphEntry* left = nullptr, - SmCaretPosGraphEntry* right = nullptr){ + SmCaretPosGraphEntry(SmCaretPos pos, + SmCaretPosGraphEntry* left, + SmCaretPosGraphEntry* right) { CaretPos = pos; Left = left; Right = right; |