summaryrefslogtreecommitdiff
path: root/sc/source/ui/sidebar
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-13 15:03:52 +0200
committerNoel Grandin <noel@peralex.com>2013-11-14 08:17:29 +0200
commit15113ea855baab1f8319a7125cec90d203904cb7 (patch)
tree73d86eab424567cc5faa21dbb69d7937466c65f7 /sc/source/ui/sidebar
parent39c8da8c86decbe3443a786ad445a18b0078daa3 (diff)
remove unnecessary sal_Unicode casts in SC module
Change-Id: Iee7688ea60b4d45d3e6725afd46e9cbb5ebe26c5
Diffstat (limited to 'sc/source/ui/sidebar')
-rw-r--r--sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx b/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
index fdeceabb08dc..b4ce5e4b06a4 100644
--- a/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
+++ b/sc/source/ui/sidebar/NumberFormatPropertyPanel.cxx
@@ -308,7 +308,7 @@ void NumberFormatPropertyPanel::NotifyItemUpdate(
while( nCount < aLen )
{
sal_Unicode cChar = aCode[nCount];
- if(cChar == sal_Unicode(','))
+ if(cChar == ',')
{
sFormat[nStrCount] = sTmpStr;
sTmpStr = "";