fix some BoostFormat mistakes, cast the 0u par to string::isnert

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5760 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-12-02 09:59:43 +00:00
parent fe154c1d62
commit 2e36b1b652
6 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2002-12-02 Lars Gullik Bjønnes <larsbj@gullik.net>
* text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
2002-12-01 Lars Gullik Bjønnes <larsbj@gullik.net>
* several files: ws changes

View File

@ -29,7 +29,7 @@
#include "insets/inseterror.h"
#include <boost/format.hpp>
#include "BoostFormat.h"
using std::pair;
using lyx::pos_type;

View File

@ -1,3 +1,7 @@
2002-12-02 Lars Gullik Bjønnes <larsbj@gullik.net>
* ControlDocument.C: use BoostFormat.h instead of boost/format.hpp
2002-12-01 Lars Gullik Bjønnes <larsbj@gullik.net>
* several files: ws changes

View File

@ -35,7 +35,7 @@
#include "support/lstrings.h"
#include "support/filetools.h"
#include <boost/format.hpp>
#include "BoostFormat.h"
using std::endl;

View File

@ -178,7 +178,7 @@ string const InsetQuotes::dispString(Language const * loclang) const
if (side_ == LeftQ)
disp += ' ';
else
disp.insert(0u, 1, ' ');
disp.insert(string::size_type(0), 1, ' ');
}
return disp;

View File

@ -45,7 +45,7 @@
#include "support/textutils.h"
#include "support/lstrings.h"
#include <boost/format.hpp>
#include "BoostFormat.h"
using std::vector;
using std::copy;