Some unimportant things (what an informative log message!)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@399 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2000-01-04 14:11:01 +00:00
parent 3499732aae
commit 7f3b99126a
4 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2000-01-04 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
* src/lyx_gui_misc.h: add a 'using std::pair;' statement.
1999-12-30 Allan Rae <rae@lyx.org>
* lib/templates/IEEEtran.lyx: minor change

View File

@ -59,8 +59,7 @@ AC_DISABLE_SHARED
AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL
### check the size of pointers and ints
# the defaults are given for cross compilation.
### Some checks on what the C++ compiler can(not) do
LYX_CXX_MUTABLE
LYX_CXX_PARTIAL
LYX_CXX_EXPLICIT
@ -75,6 +74,8 @@ dnl we disable rtti for now
dnl LYX_CXX_RTTI
AC_CHECK_HEADERS(ostream istream)
LYX_CXX_STL_MODERN_STREAMS
### We need a regex implementation, so we provide our own if none is found.
LYX_REGEX
### Library Files

View File

@ -32,6 +32,8 @@
#include "insets/insetindex.h"
#include "LyXView.h"
using std::make_pair;
extern BufferView * current_view;
extern FD_form_paragraph * fd_form_paragraph;

View File

@ -17,6 +17,7 @@
#include FORMS_H_LOCATION
#include "LString.h"
#include <utility> /* needed for pair<> definition */
using std::pair;
/// Prevents LyX from being killed when the close box is pressed in a popup.
extern "C" int CancelCloseBoxCB(FL_FORM *, void *);