More fixes and wxWidgets coding standards.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34314 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-05-24 09:06:21 +00:00
parent c8200b5a5e
commit 821d644dd0
7 changed files with 32 additions and 29 deletions

View File

@@ -192,7 +192,7 @@ inline void ScriptTemplate::PrintVar( TVarInfo* pInfo,
{
char buf[128];
switch ( pInfo->mType )
switch ( pInfo->m_Type )
{
case TVAR_INTEGER :
{
@@ -214,7 +214,7 @@ inline void ScriptTemplate::PrintVar( TVarInfo* pInfo,
cout << "DBG:: pInfo->mOfs value is " << (int)pInfo->mOfs << endl;
cout << "DBG:: d+pInfo->mOfs is " << (int)((char*)dataObj + pInfo->mOfs) << endl;
cout << "DBG:: pInfo->m_Name is " << pInfo->m_Name << endl;
cout << "DBG:: pInfo->mType is " << pInfo->mType << endl;
cout << "DBG:: pInfo->m_Type is " << pInfo->m_Type << endl;
cout << "DBG:: end of dump. " << endl;
cout << "DBG:: cs value is " << endl << cs << endl;