From 4b5966d7202b6f646916d63e3b664e34f0ee8bd8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 16 Aug 2004 13:55:49 +0000 Subject: [PATCH] more warnings fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/stockitem.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/common/stockitem.cpp b/src/common/stockitem.cpp index 303b338c44..c6325d7a2e 100644 --- a/src/common/stockitem.cpp +++ b/src/common/stockitem.cpp @@ -110,13 +110,11 @@ const char *wxStockItemToGTK(wxStockItemID item) { #define STOCKITEM(stockid) \ case wx##stockid: \ - return GTK_##stockid; \ - break; + return GTK_##stockid; #define STOCKITEM_MISSING(stockid) \ case wx##stockid: \ - return NULL; \ - break; + return NULL; #if GTK_CHECK_VERSION(2,4,0) #define STOCKITEM_24(stockid) STOCKITEM(stockid) -- 2.50.0