From: Lars Gullik Bjønnes Date: Sat, 28 Jan 2006 22:15:47 +0000 (+0000) Subject: get rid of a compiler warning X-Git-Tag: 1.6.10~13652 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=a30c5b2502dcb2ccac7850d3572b90522dec99e1;p=features.git get rid of a compiler warning git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10793 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 7b85a48cf0..1561270548 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,3 +1,7 @@ +2006-01-28 Lars Gullik Bjønnes + + * math_hullinset.C (getStatus): get rid of a compiler warning + 2006-01-27 Jean-Marc Lasgouttes * math_nestinset.C (drawSelection): do not draw anything when diff --git a/src/mathed/math_hullinset.C b/src/mathed/math_hullinset.C index 40808872ec..da192918b9 100644 --- a/src/mathed/math_hullinset.C +++ b/src/mathed/math_hullinset.C @@ -1211,6 +1211,9 @@ bool MathHullInset::getStatus(LCursor & cur, FuncRequest const & cmd, default: return MathGridInset::getStatus(cur, cmd, status); } + + // This cannot really happen, but inserted to shut-up gcc + return MathGridInset::getStatus(cur, cmd, status); }