]> git.saurik.com Git - wxWidgets.git/commitdiff
don't check if the file exists if we don't use it
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 18 Mar 2007 21:08:17 +0000 (21:08 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 18 Mar 2007 21:08:17 +0000 (21:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/fileconf.cpp

index 1503ece182d4b439820cd78570c3c5576298dbe7..f70b974c3c407e048982aadcd7fa6512e61b3c97 100644 (file)
@@ -344,7 +344,7 @@ void wxFileConfig::Init()
     // 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());
 
@@ -360,7 +360,7 @@ void wxFileConfig::Init()
     }
 
     // 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*/) )