Update of /cvsroot/mahogany/M/src/gui
In directory usw-pr-cvs1:/tmp/cvs-serv19107/src/gui

Modified Files:
        wxMDialogs.cpp 
Log Message:
fixed a compilation warning from gcc 2.95.2

Index: wxMDialogs.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/gui/wxMDialogs.cpp,v
retrieving revision 1.365
retrieving revision 1.366
diff -b -u -2 -r1.365 -r1.366
--- wxMDialogs.cpp      16 Apr 2002 22:48:23 -0000      1.365
+++ wxMDialogs.cpp      22 Apr 2002 16:10:51 -0000      1.366
@@ -784,6 +784,10 @@
 
       case wxCANCEL:
-         return MDlg_Cancel;
+         ;
    }
+
+   // have to put it outside the switch to avoid compilation warnings from some
+   // brain-dead compilers
+   return MDlg_Cancel;
 }
 


_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to