]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
Translate labels for float:algorithm, float:figure and float:table.
[lyx.git] / src / insets / insetparent.C
index cf495ec7ec44ed4a0055b7ca8892705e9037c0dd..f516755bd15eaf1550640e6ee44e7b1e0ec6203c 100644 (file)
@@ -1,10 +1,10 @@
 /* This file is part of*
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1997-2001 The LyX Team.
- * 
+ *
  * ====================================================== */
 
 
@@ -21,6 +21,7 @@
 #include "support/filetools.h"
 #include "BufferView.h"
 #include "LyXView.h"
+#include "support/LOstream.h"
 #include "commandtags.h"
 #include "buffer.h"
 #include "gettext.h"
@@ -33,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());
 }