summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/control
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-13 16:14:08 +0200
committerNoel Grandin <noel@peralex.com>2013-11-14 08:17:30 +0200
commitd9648d3567e60f4482984a25e2b78e8a2fae52e3 (patch)
tree0edfb9386344f4745704d6d3b3763a7ebccfe0fb /dbaccess/source/ui/control
parent531c2dc791098d3d335abc0ddd055780fe3b7f2a (diff)
remove unnecessary sal_Unicode casts in DBACCESS module
Change-Id: I4c4ab5d672e994b1e8e3beac027d3f4e8f700714
Diffstat (limited to 'dbaccess/source/ui/control')
-rw-r--r--dbaccess/source/ui/control/tabletree.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/control/tabletree.cxx b/dbaccess/source/ui/control/tabletree.cxx
index e8a4bb0c097f..8b1185240403 100644
--- a/dbaccess/source/ui/control/tabletree.cxx
+++ b/dbaccess/source/ui/control/tabletree.cxx
@@ -500,7 +500,7 @@ NamedDatabaseObject OTableTreeListBox::describeObject( SvTreeListEntry* _pEntry
if ( nParentEntryType == DatabaseObjectContainer::SCHEMA )
{
buffer.append( GetEntryText( pParent ) );
- buffer.append( sal_Unicode( '.' ) );
+ buffer.append( '.' );
}
buffer.append( GetEntryText( _pEntry ) );
}
@@ -509,7 +509,7 @@ NamedDatabaseObject OTableTreeListBox::describeObject( SvTreeListEntry* _pEntry
if ( nParentEntryType == DatabaseObjectContainer::CATALOG )
{
buffer.append( GetEntryText( pParent ) );
- buffer.append( sal_Unicode( '.' ) );
+ buffer.append( '.' );
}
buffer.append( GetEntryText( _pEntry ) );
}