From: Robert Roebling Date: Mon, 7 Jun 1999 22:12:57 +0000 (+0000) Subject: compile fixes. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3d2afb7abec64fc601ff7ab622a865ef5ec68d10 compile fixes. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2704 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/acconfig.h b/acconfig.h index 83bad20185..ff06fcf9d3 100644 --- a/acconfig.h +++ b/acconfig.h @@ -253,6 +253,13 @@ * Use this control */ #define wxUSE_TOOLBAR 0 + +#ifdef __WXWINE__ + #if wxUSE_TOOLBAR + #define wxUSE_BUTTONBAR + #endif +#endif + /* * Use this control */ diff --git a/include/wx/dynlib.h b/include/wx/dynlib.h index ec1b270bd3..b752cc3c74 100644 --- a/include/wx/dynlib.h +++ b/include/wx/dynlib.h @@ -82,7 +82,7 @@ class wxDllLoader static void * GetSymbol(wxDllType dllHandle, const wxString &name); private: /// forbid construction of objects - wxDllLoader() + wxDllLoader(); }; // ----------------------------------------------------------------------------