]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
fix compilation pb ; update eu.po
[lyx.git] / src / insets / insetparent.C
index b6a9381a20752e1f7fcf14673d42324aa77f2683..9ad0f61bbb7985cc0e7a78ef2c7c067d94812cfd 100644 (file)
 #include "support/filetools.h"
 #include "BufferView.h"
 #include "LyXView.h"
-#include "lyxfunc.h"
 #include "commandtags.h"
 #include "buffer.h"
 #include "gettext.h"
+#include "lyxfunc.h"
 
 using std::ostream;
 
 
-InsetParent::InsetParent(InsetCommandParams const & p, Buffer * bf)
+InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf)
        : InsetCommand(p)
 {
-       string fn = p.getContents();
-       if (bf)
-               setContents(MakeAbsPath(fn, OnlyPath(bf->fileName())));
-       else
-               setContents(fn);
+       string const fn = p.getContents();
+       setContents(MakeAbsPath(fn, OnlyPath(bf.fileName())));
 }