summaryrefslogtreecommitdiffstats
path: root/svx/source/table/accessibletableshape.cxx
diff options
context:
space:
mode:
authorJean-Noël Rouvignac <jn.rouvignac@gmail.com>2013-01-30 11:44:23 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-01-30 12:54:40 +0000
commit97eb8a6e0eb830f37dcba64a51d725aab4c5ff53 (patch)
treea1a95b8249052d846a997ad1729758168d6a3b24 /svx/source/table/accessibletableshape.cxx
parentUNO constants cannot be of CHAR type (diff)
downloadcore-97eb8a6e0eb830f37dcba64a51d725aab4c5ff53.tar.gz
core-97eb8a6e0eb830f37dcba64a51d725aab4c5ff53.zip
Removed several useless macros: A2OU, A2S, C2U, C2S, OUSTR, OUSTRING
Change-Id: Ie859cb2dfdc7103c379fce56be88eef8fe390afd Reviewed-on: https://gerrit.libreoffice.org/1924 Tested-by: Luboš Luňák <l.lunak@suse.cz> Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'svx/source/table/accessibletableshape.cxx')
-rw-r--r--svx/source/table/accessibletableshape.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/table/accessibletableshape.cxx b/svx/source/table/accessibletableshape.cxx
index b362b144664e..00ca92be5a14 100644
--- a/svx/source/table/accessibletableshape.cxx
+++ b/svx/source/table/accessibletableshape.cxx
@@ -47,7 +47,7 @@ using namespace ::com::sun::star::drawing;
using namespace ::com::sun::star::table;
using namespace ::com::sun::star::container;
-#define C2U(x) OUString(RTL_CONSTASCII_USTRINGPARAM(x))
+#define x OUString(RTL_CONSTASCII_USTRINGPARAM(x))
namespace accessibility
{
@@ -259,7 +259,7 @@ void AccessibleTableShape::Init()
{
Reference< XPropertySet > xSet( mxShape, UNO_QUERY_THROW );
- Reference< XTable > xTable( xSet->getPropertyValue(C2U("Model")), UNO_QUERY_THROW );
+ Reference< XTable > xTable( xSet->getPropertyValue("Model"), UNO_QUERY_THROW );
mxImpl->init( this, xTable );
}