diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-04 13:33:17 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-11 11:21:24 +0200 |
commit | 3ef88d370e5b448c8c62a759ec073bb33a9f6965 (patch) | |
tree | d6f198f3ffa1573eb692f89214da685d2eb995bf /dbaccess/source/ui/dlg/CollectionView.cxx | |
parent | 3e70dda33548a5392baaf99a3c4675285de7da46 (diff) |
remove unnecessary use of OUString constructor in DBACCESS module
Change-Id: I831a6506211be30c5b743c20724904c903c5b3c0
Diffstat (limited to 'dbaccess/source/ui/dlg/CollectionView.cxx')
-rw-r--r-- | dbaccess/source/ui/dlg/CollectionView.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/dlg/CollectionView.cxx b/dbaccess/source/ui/dlg/CollectionView.cxx index 3859e32005c08..09f4f1680fa17 100644 --- a/dbaccess/source/ui/dlg/CollectionView.cxx +++ b/dbaccess/source/ui/dlg/CollectionView.cxx @@ -150,11 +150,11 @@ IMPL_LINK_NOARG(OCollectionView, Save_Click) { Sequence< Any > aValues(2); PropertyValue aValue; - aValue.Name = OUString("ResourceName"); + aValue.Name = "ResourceName"; aValue.Value <<= sSubFolder; aValues[0] <<= aValue; - aValue.Name = OUString("ResourceType"); + aValue.Name = "ResourceType"; aValue.Value <<= OUString("folder"); aValues[1] <<= aValue; |