From 41d9940d5d959d94b16a56f1aea5d73d6ae310db Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Thu, 13 May 2004 17:22:30 +0000 Subject: [PATCH] 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 --- src/common/wxchar.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/wxchar.cpp b/src/common/wxchar.cpp index d1e12530da..ce74d2bd61 100644 --- a/src/common/wxchar.cpp +++ b/src/common/wxchar.cpp @@ -774,10 +774,10 @@ private: ch == _T('0') || ch == _T(' ') || ch == _T('#'); } - void SkipDigits(const wxChar **ppc) + void SkipDigits(const wxChar **ptpc) { - while ( **ppc >= _T('0') && **ppc <= _T('9') ) - CopyFmtChar(*(*ppc)++); + while ( **ptpc >= _T('0') && **ptpc <= _T('9') ) + CopyFmtChar(*(*ptpc)++); } // the translated format -- 2.47.2