X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetIPAMacro.h;h=c29fc49c91e06b8eb560a8fd844a27516cdf0361;hb=239b9919ffe28338d789e6dc9122228f77ab77a7;hp=ff07b4009c03f0461fd3896c7dfcdbdc4bbbbb53;hpb=8b00b355ca7012ca703c78a8be89193ac6435fcb;p=lyx.git diff --git a/src/insets/InsetIPAMacro.h b/src/insets/InsetIPAMacro.h index ff07b4009c..c29fc49c91 100644 --- a/src/insets/InsetIPAMacro.h +++ b/src/insets/InsetIPAMacro.h @@ -131,7 +131,7 @@ public: }; /// - InsetIPAChar() : Inset(0) {} + InsetIPAChar() : Inset(0), kind_(TONE_FALLING) {} /// explicit InsetIPAChar(Kind k); /// @@ -156,7 +156,7 @@ public: /// void toString(odocstream &) const; /// - void forOutliner(docstring &, size_t) const; + void forOutliner(docstring &, size_t const, bool const) const; /// InsetCode lyxCode() const { return IPACHAR_CODE; } /// We don't need \begin_inset and \end_inset @@ -167,9 +167,7 @@ public: /// should this inset be handled like a normal character? bool isChar() const { return true; } /// is this equivalent to a letter? - bool isLetter() const; - /// should we break lines after this inset? - bool isLineSeparator() const; + bool isLetter() const { return true; } private: Inset * clone() const { return new InsetIPAChar(*this); }