From: Angus Leeming Date: Wed, 16 Jan 2002 16:00:14 +0000 (+0000) Subject: #include "LString.h" in the right places. Must be doing something right X-Git-Tag: 1.6.10~20001 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2fa5fefbfd20912d35b7358bbdcb2615422d2c13;p=features.git #include "LString.h" in the right places. Must be doing something right because Qt2 compiles, almost out of the box. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3392 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 0c21e29c5e..99158c9536 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-01-16 Angus Leeming + + * sp_base.h: #include LString.h + 2002-01-16 Allan Rae * text2.C (removeRow): refresh_row needs a valid row. Or does it? diff --git a/src/frontends/controllers/ChangeLog b/src/frontends/controllers/ChangeLog index d06aacefd9..56469cafa5 100644 --- a/src/frontends/controllers/ChangeLog +++ b/src/frontends/controllers/ChangeLog @@ -1,3 +1,8 @@ +2002-01-16 Angus Leeming + + * ControlInset.h: + * ControlSearch.h: #include LString.h + 2002-01-16 Angus Leeming * ButtonController.h: split into two. The definition remains in diff --git a/src/frontends/controllers/ControlInset.h b/src/frontends/controllers/ControlInset.h index 18441a6fed..e7a21d7be1 100644 --- a/src/frontends/controllers/ControlInset.h +++ b/src/frontends/controllers/ControlInset.h @@ -20,6 +20,7 @@ #define CONTROLINSET_H #include "ControlConnections.h" +#include "LString.h" class Inset; diff --git a/src/frontends/controllers/ControlSearch.h b/src/frontends/controllers/ControlSearch.h index e62b688819..3027f411f0 100644 --- a/src/frontends/controllers/ControlSearch.h +++ b/src/frontends/controllers/ControlSearch.h @@ -20,6 +20,7 @@ #endif #include "ControlDialog_impl.h" +#include "LString.h" /** A controller for Search dialogs. */ diff --git a/src/sp_base.h b/src/sp_base.h index 05acee5453..5be1069047 100644 --- a/src/sp_base.h +++ b/src/sp_base.h @@ -3,6 +3,7 @@ // needed for pid_t typedef #include +#include "LString.h" // can't forward declare... class BufferParams;