X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ddf56b4c524eb01182c5487bf7ebdd9c1584925b..852b6c3ce7baa055da25f5254f6ee2eee0cd79b7:/src/common/config.cpp diff --git a/src/common/config.cpp b/src/common/config.cpp index 62013b23e4..2e1430356e 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: config.cpp +// Name: src/common/config.cpp // Purpose: implementation of wxConfigBase class // Author: Vadim Zeitlin // Modified by: @@ -16,8 +16,8 @@ #include "wx/wxprec.h" -#ifdef __BORLANDC__ - #pragma hdrstop +#ifdef __BORLANDC__ + #pragma hdrstop #endif //__BORLANDC__ #ifndef wxUSE_CONFIG_NATIVE @@ -25,15 +25,19 @@ #endif #include "wx/config.h" -#include "wx/intl.h" -#include "wx/log.h" + +#ifndef WX_PRECOMP + #include "wx/intl.h" + #include "wx/log.h" + #include "wx/app.h" + #include "wx/utils.h" +#endif //WX_PRECOMP + #include "wx/arrstr.h" #if wxUSE_CONFIG && ((wxUSE_FILE && wxUSE_TEXTFILE) || wxUSE_CONFIG_NATIVE) -#include "wx/app.h" #include "wx/file.h" -#include "wx/utils.h" #include "wx/math.h" #include @@ -447,5 +451,3 @@ void wxSplitPath(wxArrayString& aParts, const wxChar *sz) pc++; } } - -