]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
The markDirty() and fitCursor() changes
[lyx.git] / src / insets / insetparent.C
index 79608fffee23d8bca7d16d10f2d5e1e3fd3fab3e..f0edc618fa5b4b72119c6bf13d34fbed9e9fccba 100644 (file)
@@ -1,11 +1,12 @@
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetparent.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Alejandro Aguilar Sierra
  *
- *           Copyright 1997-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 
 // Created by asierra 970813
@@ -13,9 +14,6 @@
 #include <config.h>
 
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "insetparent.h"
 #include "support/filetools.h"
@@ -26,6 +24,8 @@
 #include "buffer.h"
 #include "gettext.h"
 
+#include "BoostFormat.h"
+
 using std::ostream;
 
 
@@ -39,12 +39,16 @@ InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf, bool)
 
 string const InsetParent::getScreenLabel(Buffer const *) const
 {
-       return string(_("Parent:")) + getContents();
+#if USE_BOOST_FORMAT
+       return boost::io::str(boost::format(_("Parent: %s")) % getContents());
+#else
+       return _("Parent: ") + getContents();
+#endif
 }
 
 
 void InsetParent::edit(BufferView * bv, int, int, mouse_button::state)
-{    
+{
        bv->owner()->dispatch(FuncRequest(LFUN_CHILDOPEN, getContents()));
 }