summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
326f965)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2524
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
protected:
off_t FindDelims(const wxString& str, const wxString& delims);
protected:
off_t FindDelims(const wxString& str, const wxString& delims);
+ void EatLeadingDelims(); // AVS - added to fix leading whitespace /
+ // mult. delims bugs
protected:
wxString m_string, m_delims;
bool m_retdelims;
protected:
wxString m_string, m_delims;
bool m_retdelims;
return (m_string.Length() != 0);
}
return (m_string.Length() != 0);
}
+// AVS - added to fix leading whitespace / mult. delims bugs
+void wxStringTokenizer::EatLeadingDelims()
+{
+ int pos;
+
+ while ((pos=FindDelims(m_string, m_delims))==0) { // while leading delims
+ m_string = m_string.Mid((size_t)1); // trim 'em from the left
+ }
+}
+
wxString wxStringTokenizer::NextToken()
{
register off_t pos, pos2;
wxString wxStringTokenizer::NextToken()
{
register off_t pos, pos2;
if (m_string.IsNull())
return m_string;
if (m_string.IsNull())
return m_string;
+ if (!m_retdelims)
+ EatLeadingDelims(); // AVS - added to fix leading whitespace /
+ // mult. delims bugs
+
pos = FindDelims(m_string, m_delims);
if (pos == -1) {
r_string = m_string;
pos = FindDelims(m_string, m_delims);
if (pos == -1) {
r_string = m_string;