diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2010-12-04 12:56:38 +0900 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-05 20:23:29 +0000 |
commit | 60a9b5172bcbd90b5764125b76279c189dd5563c (patch) | |
tree | 50360c4fc74ab388941361230dbc9a4f8d76fb8b /crashrep | |
parent | 99b6172fb2ac2f2a3ea8df11ecbf63b5406b5705 (diff) |
Replace all occured, occurance etc.
Diffstat (limited to 'crashrep')
-rw-r--r-- | crashrep/source/unx/main.cxx | 2 | ||||
-rw-r--r-- | crashrep/source/win32/soreport.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crashrep/source/unx/main.cxx b/crashrep/source/unx/main.cxx index 91bc98a96f17..b0f7512f0781 100644 --- a/crashrep/source/unx/main.cxx +++ b/crashrep/source/unx/main.cxx @@ -149,7 +149,7 @@ static string xml_encode( const string &rString ) string temp = rString; string::size_type pos = 0; - // First replace all occurences of '&' because it may occur in further + // First replace all occurrences of '&' because it may occur in further // encoded chardters too for( pos = 0; (pos = temp.find( '&', pos )) != string::npos; pos += 4 ) diff --git a/crashrep/source/win32/soreport.cpp b/crashrep/source/win32/soreport.cpp index 0efe0929b320..003055aeea47 100644 --- a/crashrep/source/win32/soreport.cpp +++ b/crashrep/source/win32/soreport.cpp @@ -570,7 +570,7 @@ static string xml_encode( const string &rString ) string temp = rString; string::size_type pos = 0; - // First replace all occurences of '&' because it may occur in further + // First replace all occurrences of '&' because it may occur in further // encoded chardters too for( pos = 0; (pos = temp.find( '&', pos )) != string::npos; pos += 4 ) |