]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
quick fix for commented out figures
[lyx.git] / src / insets / insetparent.C
index 56dcb26b51013c0f9c301f66a7d83e301c3616f3..f516755bd15eaf1550640e6ee44e7b1e0ec6203c 100644 (file)
@@ -1,10 +1,10 @@
 /* This file is part of*
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1997-2001 The LyX Team.
- * 
+ *
  * ====================================================== */
 
 
@@ -34,18 +34,18 @@ InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf, bool)
        : InsetCommand(p)
 {
        string const fn = p.getContents();
-       setContents(MakeAbsPath(fn, OnlyPath(bf.fileName())));
+       setContents(MakeAbsPath(fn, bf.filePath()));
 }
 
 
-string const InsetParent::getScreenLabel(Buffer const *) const 
+string const InsetParent::getScreenLabel(Buffer const *) const
 {
        return string(_("Parent:")) + getContents();
 }
 
 
 void InsetParent::edit(BufferView * bv, int, int, unsigned int)
-{    
+{
        bv->owner()->getLyXFunc()->
                dispatch(LFUN_CHILDOPEN, getContents());
 }