]> 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 2620275fe04cad374d63605b73521bd0b6b1e4b0..a34133dd7708ca6f286b6b51162679e68dbaf561 100644 (file)
@@ -27,6 +27,8 @@
 #include "buffer.h"
 #include "gettext.h"
 
+#include "BoostFormat.h"
+
 using std::ostream;
 
 
@@ -40,12 +42,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()));
 }