X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3b96fc2f1b64f78bba7c755a5c14f618962f696b..c1aa5517acff9ce039adcd6502db2e88cdd886c7:/src/common/module.cpp diff --git a/src/common/module.cpp b/src/common/module.cpp index 2d5df44954..aebe228545 100644 --- a/src/common/module.cpp +++ b/src/common/module.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: module.cpp +// Name: src/common/module.cpp // Purpose: Modules initialization/destruction // Author: Wolfram Gloger/adapted by Guilhem Lavaux // Modified by: @@ -13,12 +13,16 @@ #include "wx/wxprec.h" #ifdef __BORLANDC__ -#pragma hdrstop + #pragma hdrstop #endif #include "wx/module.h" -#include "wx/hash.h" -#include "wx/intl.h" + +#ifndef WX_PRECOMP + #include "wx/hash.h" + #include "wx/intl.h" +#endif + #include "wx/log.h" #include "wx/listimpl.cpp" @@ -104,4 +108,3 @@ void wxModule::CleanUpModules() WX_CLEAR_LIST(wxModuleList, m_modules); } -