some ws and more boost.format

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5707 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-11-25 01:15:10 +00:00
parent af4fca532f
commit efd7b3eaa4
3 changed files with 31 additions and 23 deletions

View File

@ -1,5 +1,10 @@
2002-11-25 Lars Gullik Bjønnes <larsbj@gullik.net>
* lyx_cb.C (start): boost.formatify
do not include <iostream>
* lengthcommon.C: ws only
* boost-inst.C,BoostFormat.h: add more explict instantations
2002-11-24 Lars Gullik Bjønnes <larsbj@gullik.net>

View File

@ -52,4 +52,3 @@ LyXLength::UNIT unitFromString(string const & data)
++i;
return static_cast<LyXLength::UNIT>(i);
}

View File

@ -36,10 +36,11 @@
#include "support/systemcall.h"
#include "support/lstrings.h"
#include "BoostFormat.h"
#include <fstream>
#include <algorithm>
#include <utility>
#include <iostream>
using std::vector;
using std::ifstream;
@ -268,8 +269,11 @@ private:
int AutoSaveBuffer::start()
{
command_ = _("Auto-saving $$f");
command_ = subst(command_, "$$f", fname_);
#if USE_BOOST_FORMAT
command_ = boost::io::str(boost::format(_("Auto-saving %1$s")) % fname_);
#else
command_ = _("Auto-saving ") + fname_;
#endif
return runNonBlocking();
}