]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
pos=string::npos for regex not found, use handcoded transform in lstring.C, fix the...
[lyx.git] / src / insets / insetref.h
index 5bc8b0437bb0d30ced6be95a1da451e54bc9c69a..10a742c1ce0895dc97f657609ef17f9d954833c9 100644 (file)
@@ -38,8 +38,6 @@ public:
        InsetRef(string const &, Buffer *);
        ///
        InsetRef(InsetCommand const &, Buffer *);
-       ///
-       ~InsetRef();
         ///
         Inset * Clone() const {
                return new InsetRef (getCommand(), master);
@@ -63,7 +61,7 @@ public:
         ///
         void gotoLabel();
        ///
-       int Latex(FILE * file, signed char fragile);
+       int Latex(ostream &, signed char fragile);
        ///
        int Latex(string & file, signed char fragile);
        ///
@@ -84,7 +82,7 @@ inline
 void InsetRef::gotoLabel()
 {
     if (master) {
-       master->gotoLabel(getContents());
+       master->getUser()->gotoLabel(getContents());
     }
 }
 #endif