]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/iniconf.cpp
fixed more printf() warnings
[wxWidgets.git] / src / msw / iniconf.cpp
index 1c91682df33170f77f17c8405da3e8f8c3bc2d9c..7bcce6e8f2deb0b2331d92d19a488c61a2a4068e 100644 (file)
@@ -300,13 +300,11 @@ bool wxIniConfig::DoReadString(const wxString& szKey, wxString *pstr) const
     GetProfileString(m_strGroup, strKey, "", szBuf, WXSIZEOF(szBuf));
   }
 
     GetProfileString(m_strGroup, strKey, "", szBuf, WXSIZEOF(szBuf));
   }
 
-  if ( ::IsEmpty(szBuf) ) {
+  if ( ::IsEmpty(szBuf) )
     return FALSE;
     return FALSE;
-  }
-  else {
-    *pstr = szBuf ;
-    return TRUE;
-  }
+
+  *pstr = szBuf;
+  return TRUE;
 }
 
 bool wxIniConfig::DoReadLong(const wxString& szKey, long *pl) const
 }
 
 bool wxIniConfig::DoReadLong(const wxString& szKey, long *pl) const