git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44899
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// It's not an error if (one of the) file(s) doesn't exist.
// parse the global file
- if ( m_fnGlobalFile.FileExists() )
+ if ( m_fnGlobalFile.IsOk() && m_fnGlobalFile.FileExists() )
{
wxTextFile fileGlobal(m_fnGlobalFile.GetFullPath());
}
// parse the local file
- if ( m_fnLocalFile.FileExists() )
+ if ( m_fnLocalFile.IsOk() && m_fnLocalFile.FileExists() )
{
wxTextFile fileLocal(m_fnLocalFile.GetFullPath());
if ( fileLocal.Open(*m_conv/*ignored in ANSI build*/) )