]> git.lyx.org Git - features.git/commitdiff
nullptr
authorRichard Kimberly Heck <rikiheck@lyx.org>
Thu, 12 Nov 2020 21:30:03 +0000 (16:30 -0500)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Fri, 13 Nov 2020 00:13:55 +0000 (19:13 -0500)
src/insets/InsetText.cpp

index ec223fa83a13c5350979be155ef4d1dc28ec5d29..35c1d3b99cd219e28556c372b46014dc647e5e9b 100644 (file)
@@ -1088,7 +1088,7 @@ bool InsetText::showCompletionCursor() const
 
 CompletionList const * InsetText::createCompletionList(Cursor const & cur) const
 {
-       return completionSupported(cur) ? text_.createCompletionList(cur) : 0;
+       return completionSupported(cur) ? text_.createCompletionList(cur) : nullptr;
 }