From: Richard Heck Date: Thu, 2 Dec 2010 21:04:01 +0000 (+0000) Subject: Stupid implicit conversion. X-Git-Tag: 2.0.0~1556 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=445cb9970cdd4a8ca4555968a3c98b5213c2d5d8;p=features.git Stupid implicit conversion. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36665 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/Counters.cpp b/src/Counters.cpp index c4ec31b017..d0bb56faf6 100644 --- a/src/Counters.cpp +++ b/src/Counters.cpp @@ -160,7 +160,7 @@ Counter::StringMap & Counter::flatLabelStrings(bool in_appendix) const Counters::Counters() : appendix_(false), subfloat_(false) { layout_stack_.push_back(0); - counter_stack_.push_back(0); + counter_stack_.push_back(from_ascii("")); }