]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.C
Make it compile when USE_BOOST_FORMAT is unset
[lyx.git] / src / insets / insetparent.C
index 8a5a1972859d318590c4b8bf67d7bdb28f4e7e83..a34133dd7708ca6f286b6b51162679e68dbaf561 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
@@ -25,7 +26,8 @@
 #include "funcrequest.h"
 #include "buffer.h"
 #include "gettext.h"
-#include "lyxfunc.h"
+
+#include "BoostFormat.h"
 
 using std::ostream;
 
@@ -40,14 +42,17 @@ 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()->getLyXFunc()->
-               dispatch(FuncRequest(LFUN_CHILDOPEN, getContents()));
+{
+       bv->owner()->dispatch(FuncRequest(LFUN_CHILDOPEN, getContents()));
 }