From d86c261d77974a14fc0178d844dcf86f37eb0707 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Wed, 21 May 2003 12:38:28 +0000 Subject: [PATCH] fix a build problem with qt2 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6993 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt2/ChangeLog | 4 ++++ src/frontends/qt2/qt_helpers.C | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index 92ac9bd463..6a2176fc84 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,7 @@ +2003-05-21 Jean-Marc Lasgouttes + + * qt_helpers.C: include for std::min. + 2003-05-20 Alfredo Braunstein * QErrorList.[Ch]: small bugs fixed. diff --git a/src/frontends/qt2/qt_helpers.C b/src/frontends/qt2/qt_helpers.C index dbd79541e8..b9831e380a 100644 --- a/src/frontends/qt2/qt_helpers.C +++ b/src/frontends/qt2/qt_helpers.C @@ -20,6 +20,8 @@ #include #include +#include + using std::pair; using std::make_pair; using std::min;