mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 14:15:32 +00:00
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:
parent
fe154c1d62
commit
2e36b1b652
@ -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
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
#include "insets/inseterror.h"
|
||||
|
||||
#include <boost/format.hpp>
|
||||
#include "BoostFormat.h"
|
||||
|
||||
using std::pair;
|
||||
using lyx::pos_type;
|
||||
|
@ -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
|
||||
|
@ -35,7 +35,7 @@
|
||||
#include "support/lstrings.h"
|
||||
#include "support/filetools.h"
|
||||
|
||||
#include <boost/format.hpp>
|
||||
#include "BoostFormat.h"
|
||||
|
||||
using std::endl;
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user