globally renamed uint to size_t. This has _not_ been checked under Windows,

although I changed msw files also, so please wait until this evening if you
want to be sure that it compiles. This change should fix 64 bit compilation
problems, but it would be nice to test it...


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@591 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1998-08-18 15:36:12 +00:00
parent 77ff2d2639
commit c86f1403c3
41 changed files with 244 additions and 262 deletions

View File

@@ -97,7 +97,7 @@ void wxIniConfig::SetPath(const wxString& strPath)
wxSplitPath(aParts, strFullPath);
}
uint nPartsCount = aParts.Count();
size_t nPartsCount = aParts.Count();
m_strPath.Empty();
if ( nPartsCount == 0 ) {
// go to the root
@@ -106,7 +106,7 @@ void wxIniConfig::SetPath(const wxString& strPath)
else {
// translate
m_strGroup = aParts[0u];
for ( uint nPart = 1; nPart < nPartsCount; nPart++ ) {
for ( size_t nPart = 1; nPart < nPartsCount; nPart++ ) {
if ( nPart > 1 )
m_strPath << PATH_SEP_REPLACE;
m_strPath << aParts[nPart];
@@ -206,18 +206,18 @@ bool wxIniConfig::GetNextEntry (wxString& str, long& lIndex) const
// ----------------------------------------------------------------------------
// not implemented
uint wxIniConfig::GetNumberOfEntries(bool bRecursive) const
size_t wxIniConfig::GetNumberOfEntries(bool bRecursive) const
{
wxFAIL_MSG("not implemented");
return (uint)-1;
return (size_t)-1;
}
uint wxIniConfig::GetNumberOfGroups(bool bRecursive) const
size_t wxIniConfig::GetNumberOfGroups(bool bRecursive) const
{
wxFAIL_MSG("not implemented");
return (uint)-1;
return (size_t)-1;
}
bool wxIniConfig::HasGroup(const wxString& strName) const
@@ -408,7 +408,7 @@ bool wxIniConfig::DeleteAll()
// then delete our own ini file
char szBuf[MAX_PATH];
uint nRc = GetWindowsDirectory(szBuf, WXSIZEOF(szBuf));
size_t nRc = GetWindowsDirectory(szBuf, WXSIZEOF(szBuf));
if ( nRc == 0 )
wxLogLastError("GetWindowsDirectory");
else if ( nRc > WXSIZEOF(szBuf) )