]> git.lyx.org Git - features.git/commitdiff
Fix coverity warning
authorGuillaume MM <gm@lyx.org>
Thu, 25 May 2017 14:40:41 +0000 (16:40 +0200)
committerGuillaume MM <gm@lyx.org>
Thu, 25 May 2017 14:41:10 +0000 (16:41 +0200)
src/insets/InsetRef.cpp

index 7c5442cbe9442f40a61aefcbeb42a949f4f203c2..65c9c3a071745f59adc5d39f5d17d9435d72904f 100644 (file)
@@ -39,12 +39,12 @@ namespace lyx {
 
 
 InsetRef::InsetRef(Buffer * buf, InsetCommandParams const & p)
-       : InsetCommand(buf, p)
+       : InsetCommand(buf, p), broken_(false)
 {}
 
 
 InsetRef::InsetRef(InsetRef const & ir)
-       : InsetCommand(ir)
+       : InsetCommand(ir), broken_(false)
 {}