]> git.lyx.org Git - features.git/commitdiff
Some unimportant things (what an informative log message!)
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 4 Jan 2000 14:11:01 +0000 (14:11 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 4 Jan 2000 14:11:01 +0000 (14:11 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@399 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
configure.in
src/lyx_gui_misc.C
src/lyx_gui_misc.h

index 5cfb172a305762c6870bd65acbbfc82abca59b62..9c019076d9d52d2fad2553f6f90e7ccbdbcc0a37 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 900929a5dfa0da84907d2af9f4142124405cc218..1a73c4124a9a253be1e6c1bfb5f6d273422b509a 100644 (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
index 1bd09b6672771ce0196dec471cc782d2791d8648..701dbce478cde197246e47b65679dce0a6319d59 100644 (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;
index e9f44c90771a5f2172a0e8196fc6cad3886309c2..fb50a6520dc28e694e5518eee617f6adde6d1e56 100644 (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 *);