diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-09-10 22:35:39 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-09-10 22:35:39 +0200 |
commit | 037d03b9facb414ba6be01fa6ee92fc7ca89f70c (patch) | |
tree | 119676e8107fada1b91ef12a72e9bbf7b393729f /fpicker | |
parent | 44ead04eb5fc61a3f56f783adb1509fab440e212 (diff) |
Typo: (N|n)ormaly->(N|n)ormally
Change-Id: I96d081f394b0b62d99ec1034bf5e99da9aedd9d9
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/win32/misc/WinImplHelper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpicker/source/win32/misc/WinImplHelper.cxx b/fpicker/source/win32/misc/WinImplHelper.cxx index da5c04198b57..84d76d708a9c 100644 --- a/fpicker/source/win32/misc/WinImplHelper.cxx +++ b/fpicker/source/win32/misc/WinImplHelper.cxx @@ -457,7 +457,7 @@ OUString SOfficeToWindowsLabel( const OUString& aSOLabel ) // in the worst case the new string is // doubled in length, maybe some waste // of memory but how long is a label - // normaly(?) + // normally(?) OUStringBuffer aBuffer( nStrLen * 2 ); Replace( aWinLabel, TILDE_SIGN, AMPERSAND_SIGN, aBuffer ); @@ -488,7 +488,7 @@ OUString WindowsToSOfficeLabel( const OUString& aWinLabel ) // in the worst case the new string is // doubled in length, maybe some waste // of memory but how long is a label - // normaly(?) + // normally(?) OUStringBuffer aBuffer( nStrLen * 2 ); Replace( aSOLabel, AMPERSAND_SIGN, TILDE_SIGN, aBuffer ); |