removed extra commas which are erros for some compilers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22502 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2003-08-02 22:42:52 +00:00
parent 9e00598cad
commit 13e51f3a55

View File

@ -81,13 +81,13 @@ enum wxDLFlags
enum wxDynamicLibraryCategory
{
wxDL_LIBRARY, // standard library
wxDL_MODULE, // loadable module/plugin
wxDL_MODULE // loadable module/plugin
};
enum wxPluginCategory
{
wxDL_PLUGIN_GUI, // plugin that uses GUI classes
wxDL_PLUGIN_BASE, // wxBase-only plugin
wxDL_PLUGIN_BASE // wxBase-only plugin
};
// ----------------------------------------------------------------------------