]> git.lyx.org Git - lyx.git/commitdiff
get rid of a compiler warning
authorLars Gullik Bjønnes <larsbj@gullik.org>
Sat, 28 Jan 2006 22:15:47 +0000 (22:15 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Sat, 28 Jan 2006 22:15:47 +0000 (22:15 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10793 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/ChangeLog
src/mathed/math_hullinset.C

index 7b85a48cf0642f755a8b80b0237a953f522cc2ea..15612705486b2ffb52ee16682a4a1d1cdbefb659 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * math_hullinset.C (getStatus): get rid of a compiler warning
+
 2006-01-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
 
        * math_nestinset.C (drawSelection): do not draw anything when
index 40808872ecd3dfe39b440c8415eb2c5aed9a1e14..da192918b999b6b0467740723169a9dcd515c0e4 100644 (file)
@@ -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);
 }