]> git.lyx.org Git - features.git/blobdiff - src/insets/insetparent.C
Another clean-up patch from Angus
[features.git] / src / insets / insetparent.C
index fb65bdcb225da3b1fad39e7c5de3fbad90450fbd..36721161105f8f7bd15eafa4a99eff937136a679 100644 (file)
 
 using std::ostream;
 
-InsetParent::InsetParent(string const & fn, Buffer * owner)
-       : InsetCommand("lyxparent")
+InsetParent::InsetParent(InsetCommandParams const & p, Buffer * bf)
+       : InsetCommand(p)
 {
-       if (owner)
-               setContents(MakeAbsPath(fn, OnlyPath(owner->fileName())));
+       string fn = p.getContents();
+       if (bf)
+               setContents(MakeAbsPath(fn, OnlyPath(bf->fileName())));
        else
                setContents(fn);
 }