mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
add <string> and other small fixes to make
Lars' std::string patch compile with STLport. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7864 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7519dcc6ca
commit
eb36b71ce3
@ -1,3 +1,27 @@
|
|||||||
|
<<<<<<< ChangeLog
|
||||||
|
2003-10-07 Martin Vermeer <martin.vermeer@hut.fi>
|
||||||
|
|
||||||
|
* CutAndPaste.h:
|
||||||
|
* DepTable.h:
|
||||||
|
* FloatList.h:
|
||||||
|
* LaTeXFeatures.h:
|
||||||
|
* ParagraphParameters.h:
|
||||||
|
* TextCache.h:
|
||||||
|
* Thesaurus.h:
|
||||||
|
* bufferlist.h:
|
||||||
|
* exporter.h:
|
||||||
|
* importer.h:
|
||||||
|
* lastfiles.h:
|
||||||
|
* lyxfind.h:
|
||||||
|
* lyxfont.h:
|
||||||
|
* lyxlex.h:
|
||||||
|
* lyxtextclasslist.h:
|
||||||
|
* messages.h:
|
||||||
|
* paragraph.h:
|
||||||
|
* paragraph_pimpl.C:
|
||||||
|
* textcursor.h: add <string> and other small fixes to make Lars'
|
||||||
|
std::string patch compile with STLport.
|
||||||
|
|
||||||
2003-10-06 Angus Leeming <leeming@lyx.org>
|
2003-10-06 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
* LColor.h: Add missing #include <string>.
|
* LColor.h: Add missing #include <string>.
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include "ParagraphList_fwd.h"
|
#include "ParagraphList_fwd.h"
|
||||||
#include "support/types.h"
|
#include "support/types.h"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
class Buffer;
|
class Buffer;
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#define DEP_TABLE_H
|
#define DEP_TABLE_H
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
///
|
///
|
||||||
class DepTable {
|
class DepTable {
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#define FLOATLIST_H
|
#define FLOATLIST_H
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
|
||||||
class Floating;
|
class Floating;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include <set>
|
#include <set>
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class Buffer;
|
class Buffer;
|
||||||
class BufferParams;
|
class BufferParams;
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "support/types.h"
|
#include "support/types.h"
|
||||||
|
|
||||||
#include <iosfwd>
|
#include <iosfwd>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class BufferView;
|
class BufferView;
|
||||||
class LyXLength;
|
class LyXLength;
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
#include <iosfwd>
|
#include <iosfwd>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class Buffer;
|
class Buffer;
|
||||||
class LyXText;
|
class LyXText;
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#ifdef HAVE_LIBAIKSAURUS
|
#ifdef HAVE_LIBAIKSAURUS
|
||||||
#include AIKSAURUS_H_LOCATION
|
#include AIKSAURUS_H_LOCATION
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
#include <boost/utility.hpp>
|
#include <boost/utility.hpp>
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
class Buffer;
|
class Buffer;
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#ifndef EXPORTER_H
|
#ifndef EXPORTER_H
|
||||||
#define EXPORTER_H
|
#define EXPORTER_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2003-10-07 Martin Vermeer <martin.vermeer@hut.fi>
|
||||||
|
|
||||||
|
* lyx_gui.h: add <string> and other small fixes to make Lars'
|
||||||
|
std::string patch compile with STLport.
|
||||||
|
|
||||||
2003-09-21 Lars Gullik Bjønnes <larsbj@gullik.net>
|
2003-09-21 Lars Gullik Bjønnes <larsbj@gullik.net>
|
||||||
|
|
||||||
* LyXView.C (updateToolbar): adjust
|
* LyXView.C (updateToolbar): adjust
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
#include <list>
|
#include <list>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
|
||||||
class ButtonController;
|
class ButtonController;
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
2003-10-07 Martin Vermeer <martin.vermeer@hut.fi>
|
||||||
|
|
||||||
|
* BCView.h:
|
||||||
|
* ControlCommandBuffer.h:
|
||||||
|
* biblio.h:
|
||||||
|
* frnt_lang.h:
|
||||||
|
* tex_helpers.h: add <string> and other small fixes to make Lars'
|
||||||
|
std::string patch compile with STLport.
|
||||||
|
|
||||||
2003-10-01 Angus Leeming <leeming@lyx.org>
|
2003-10-01 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
* ControlExternal.[Ch]: changes due to the introduction of
|
* ControlExternal.[Ch]: changes due to the introduction of
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#ifndef CONTROLCOMMANDBUFFER_H
|
#ifndef CONTROLCOMMANDBUFFER_H
|
||||||
#define CONTROLCOMMANDBUFFER_H
|
#define CONTROLCOMMANDBUFFER_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#define BIBLIOHELPERS_H
|
#define BIBLIOHELPERS_H
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
/** Functions of use to citation and bibtex GUI controllers and views */
|
/** Functions of use to citation and bibtex GUI controllers and views */
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#ifndef FRNT_LANG_H
|
#ifndef FRNT_LANG_H
|
||||||
#define FRNT_LANG_H
|
#define FRNT_LANG_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#ifndef TEX_HELPERS_H
|
#ifndef TEX_HELPERS_H
|
||||||
#define TEX_HELPERS_H
|
#define TEX_HELPERS_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
#include "FuncStatus.h"
|
#include "FuncStatus.h"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
class Dialogs;
|
class Dialogs;
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2003-10-07 Martin Vermeer <martin.vermeer@hut.fi>
|
||||||
|
|
||||||
|
* GraphicsCache.h:
|
||||||
|
* PreviewImage.h: add <string> and other small fixes to make
|
||||||
|
Lars' std::string patch compile with STLport.
|
||||||
|
|
||||||
2003-09-29 Angus Leeming <leeming@lyx.org>
|
2003-09-29 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
* GraphicsParams.[Ch] (asString): removed. Replaced with
|
* GraphicsParams.[Ch] (asString): removed. Replaced with
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
|
||||||
namespace lyx {
|
namespace lyx {
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#define PREVIEWIMAGE_H
|
#define PREVIEWIMAGE_H
|
||||||
|
|
||||||
#include <boost/scoped_ptr.hpp>
|
#include <boost/scoped_ptr.hpp>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class InsetOld;
|
class InsetOld;
|
||||||
|
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#ifndef IMPORTER_H
|
#ifndef IMPORTER_H
|
||||||
#define IMPORTER_H
|
#define IMPORTER_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include <boost/utility.hpp>
|
#include <boost/utility.hpp>
|
||||||
|
|
||||||
#include <deque>
|
#include <deque>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
|
||||||
/** The latest documents loaded.
|
/** The latest documents loaded.
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
|
|
||||||
#include "support/types.h"
|
#include "support/types.h"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class BufferView;
|
class BufferView;
|
||||||
class LyXText;
|
class LyXText;
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
#define LYXFONT_H
|
#define LYXFONT_H
|
||||||
|
|
||||||
#include <iosfwd>
|
#include <iosfwd>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class LColor_color;
|
class LColor_color;
|
||||||
class LyXLex;
|
class LyXLex;
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include <boost/utility.hpp>
|
#include <boost/utility.hpp>
|
||||||
|
|
||||||
#include <iosfwd>
|
#include <iosfwd>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
|
||||||
///
|
///
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#include <boost/utility.hpp>
|
#include <boost/utility.hpp>
|
||||||
|
|
||||||
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
class LyXTextClass;
|
class LyXTextClass;
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
|
||||||
|
2003-10-07 Martin Vermeer <martin.vermeer@hut.fi>
|
||||||
|
|
||||||
|
* math_macrotable.h: add <string> and other small fixes to make
|
||||||
|
Lars' std::string patch compile with STLport.
|
||||||
|
|
||||||
2003-10-06 Martin Vermeer <martin.vermeer@hut.fi>
|
2003-10-06 Martin Vermeer <martin.vermeer@hut.fi>
|
||||||
|
|
||||||
* math_cursor.C:
|
* math_cursor.C:
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include "math_atom.h"
|
#include "math_atom.h"
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
|
||||||
class MathMacroTable {
|
class MathMacroTable {
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
#define MESSAGES_H
|
#define MESSAGES_H
|
||||||
|
|
||||||
#include <boost/scoped_ptr.hpp>
|
#include <boost/scoped_ptr.hpp>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
///
|
///
|
||||||
class Messages {
|
class Messages {
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
#include "support/types.h"
|
#include "support/types.h"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class Buffer;
|
class Buffer;
|
||||||
class BufferParams;
|
class BufferParams;
|
||||||
|
@ -31,6 +31,7 @@ using lyx::pos_type;
|
|||||||
|
|
||||||
using std::endl;
|
using std::endl;
|
||||||
using std::upper_bound;
|
using std::upper_bound;
|
||||||
|
using std::lower_bound;
|
||||||
using std::string;
|
using std::string;
|
||||||
using std::ostream;
|
using std::ostream;
|
||||||
|
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
|
|
||||||
#include "lyxcursor.h"
|
#include "lyxcursor.h"
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
class Buffer;
|
class Buffer;
|
||||||
|
|
||||||
// Do not even think of forward declaring LyXText/BufferView etc here!
|
// Do not even think of forward declaring LyXText/BufferView etc here!
|
||||||
|
Loading…
Reference in New Issue
Block a user