changed ppc to ptpc as ppc is a preprocessor constant for PowerPC on Mac
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27258 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
5ecae0b748
commit
41d9940d5d
@ -774,10 +774,10 @@ private:
|
|||||||
ch == _T('0') || ch == _T(' ') || ch == _T('#');
|
ch == _T('0') || ch == _T(' ') || ch == _T('#');
|
||||||
}
|
}
|
||||||
|
|
||||||
void SkipDigits(const wxChar **ppc)
|
void SkipDigits(const wxChar **ptpc)
|
||||||
{
|
{
|
||||||
while ( **ppc >= _T('0') && **ppc <= _T('9') )
|
while ( **ptpc >= _T('0') && **ptpc <= _T('9') )
|
||||||
CopyFmtChar(*(*ppc)++);
|
CopyFmtChar(*(*ptpc)++);
|
||||||
}
|
}
|
||||||
|
|
||||||
// the translated format
|
// the translated format
|
||||||
|
Loading…
Reference in New Issue
Block a user