]> git.lyx.org Git - features.git/commitdiff
fix warning
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Sun, 13 Jan 2002 17:50:57 +0000 (17:50 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Sun, 13 Jan 2002 17:50:57 +0000 (17:50 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3358 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/xforms/ChangeLog
src/frontends/xforms/MathsSymbols.C

index dc2a616c6c10e08c7cbc97d88ff65a221d1b99b7..6c593ee452c77218626195bb6e1fff22fb0788fe 100644 (file)
@@ -1,5 +1,8 @@
 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
 
+       * MathsSymbols.C (get_pixmap_from_symbol): add a default statement
+       in the switch.
+
        * FormPreferences.C (Interface::input): 
        (Language::input): 
        (Paths::input): add shortcuts to file dialogs directory buttons
index 8c50a714a1d66ef03a4c1d8741456a4df16e9e29..7fb3a6f89e369a9dc010b33a114b8440c107b1ff 100644 (file)
@@ -319,6 +319,8 @@ char const ** get_pixmap_from_symbol(char const * arg, int wx, int hx)
                // function is called.
                data = pixmapFromBitmapData(arg, wx, hx);
                break;
+       default:
+               break;
        }
 
        return data;