]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetquotes.C
hopefully fix tex2lyx linking.
[lyx.git] / src / insets / insetquotes.C
index 8e7b76c1c41de125fa8766990d2287575318048c..46b9a99e05d0e4688ab60ca9fb7bbccc0bfacf16 100644 (file)
@@ -85,14 +85,14 @@ char const * const latex_quote_babel[2][5] =
 InsetQuotes::InsetQuotes(string const & str)
 {
        parseString(str);
-       setInsetName("InsetQuotes");
+       setInsetName(from_utf8("InsetQuotes"));
 }
 
 
 InsetQuotes::InsetQuotes(quote_language l, quote_side s, quote_times t)
        : language_(l), side_(s), times_(t)
 {
-       setInsetName("InsetQuotes");
+       setInsetName(from_utf8("InsetQuotes"));
 }
 
 
@@ -100,7 +100,7 @@ InsetQuotes::InsetQuotes(char_type c, BufferParams const & params)
        : language_(params.quotes_language), times_(params.quotes_times)
 {
        getPosition(c);
-       setInsetName("InsetQuotes");
+       setInsetName(from_utf8("InsetQuotes"));
 }
 
 
@@ -108,7 +108,7 @@ InsetQuotes::InsetQuotes(char_type c, quote_language l, quote_times t)
        : language_(l), times_(t)
 {
        getPosition(c);
-       setInsetName("InsetQuotes");
+       setInsetName(from_utf8("InsetQuotes"));
 }