diff options
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 ) |