Warning suppressions

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26014 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2004-03-01 06:24:20 +00:00
parent 52d9d823a1
commit 9923c37dcc
40 changed files with 118 additions and 344 deletions

View File

@@ -114,7 +114,7 @@ int wxChoice::DoAppend(
)
{
int nIndex;
SHORT nIndexType = 0;
LONG nIndexType = 0;
if (m_windowStyle & wxLB_SORT)
nIndexType = LIT_SORTASCENDING;
@@ -140,7 +140,7 @@ int wxChoice::DoInsert(
return DoAppend(rsItem);
int nIndex;
SHORT nIndexType = 0;
LONG nIndexType = 0;
if (m_windowStyle & wxLB_SORT)
nIndexType = LIT_SORTASCENDING;
@@ -227,7 +227,7 @@ void wxChoice::SetString(
, const wxString& rsStr
)
{
SHORT nIndexType = 0;
LONG nIndexType = 0;
void* pData;
if ( m_clientDataItemsType != wxClientData_None )
@@ -263,7 +263,7 @@ wxString wxChoice::GetString(
int n
) const
{
size_t nLen = 0;
int nLen = 0;
wxString sStr = "";
char* zBuf;