]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbranch.h
hopefully fix tex2lyx linking.
[lyx.git] / src / insets / insetbranch.h
index ca708e177c4c03fbd64df59404a80d693596cf16..2a8721860b68951a67eb1e65e42369c2d2dae844 100644 (file)
@@ -22,14 +22,14 @@ class Buffer;
 
 class InsetBranchParams {
 public:
-       explicit InsetBranchParams(std::string const & b = std::string())
+       explicit InsetBranchParams(docstring const & b = docstring())
                : branch(b) {}
        ///
        void write(std::ostream & os) const;
        ///
        void read(LyXLex & lex);
        ///
-       std::string branch;
+       docstring branch;
 };