mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
3499732aae
commit
7f3b99126a
@ -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>
|
1999-12-30 Allan Rae <rae@lyx.org>
|
||||||
|
|
||||||
* lib/templates/IEEEtran.lyx: minor change
|
* lib/templates/IEEEtran.lyx: minor change
|
||||||
|
@ -59,8 +59,7 @@ AC_DISABLE_SHARED
|
|||||||
AC_LIBTOOL_WIN32_DLL
|
AC_LIBTOOL_WIN32_DLL
|
||||||
AM_PROG_LIBTOOL
|
AM_PROG_LIBTOOL
|
||||||
|
|
||||||
### check the size of pointers and ints
|
### Some checks on what the C++ compiler can(not) do
|
||||||
# the defaults are given for cross compilation.
|
|
||||||
LYX_CXX_MUTABLE
|
LYX_CXX_MUTABLE
|
||||||
LYX_CXX_PARTIAL
|
LYX_CXX_PARTIAL
|
||||||
LYX_CXX_EXPLICIT
|
LYX_CXX_EXPLICIT
|
||||||
@ -75,6 +74,8 @@ dnl we disable rtti for now
|
|||||||
dnl LYX_CXX_RTTI
|
dnl LYX_CXX_RTTI
|
||||||
AC_CHECK_HEADERS(ostream istream)
|
AC_CHECK_HEADERS(ostream istream)
|
||||||
LYX_CXX_STL_MODERN_STREAMS
|
LYX_CXX_STL_MODERN_STREAMS
|
||||||
|
|
||||||
|
### We need a regex implementation, so we provide our own if none is found.
|
||||||
LYX_REGEX
|
LYX_REGEX
|
||||||
|
|
||||||
### Library Files
|
### Library Files
|
||||||
|
@ -32,6 +32,8 @@
|
|||||||
#include "insets/insetindex.h"
|
#include "insets/insetindex.h"
|
||||||
#include "LyXView.h"
|
#include "LyXView.h"
|
||||||
|
|
||||||
|
using std::make_pair;
|
||||||
|
|
||||||
extern BufferView * current_view;
|
extern BufferView * current_view;
|
||||||
|
|
||||||
extern FD_form_paragraph * fd_form_paragraph;
|
extern FD_form_paragraph * fd_form_paragraph;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include FORMS_H_LOCATION
|
#include FORMS_H_LOCATION
|
||||||
#include "LString.h"
|
#include "LString.h"
|
||||||
#include <utility> /* needed for pair<> definition */
|
#include <utility> /* needed for pair<> definition */
|
||||||
|
using std::pair;
|
||||||
|
|
||||||
/// Prevents LyX from being killed when the close box is pressed in a popup.
|
/// Prevents LyX from being killed when the close box is pressed in a popup.
|
||||||
extern "C" int CancelCloseBoxCB(FL_FORM *, void *);
|
extern "C" int CancelCloseBoxCB(FL_FORM *, void *);
|
||||||
|
Loading…
Reference in New Issue
Block a user