summaryrefslogtreecommitdiff
path: root/svtools/source/table/tablecontrol.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-07-30 17:48:09 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-07-31 12:54:17 +0200
commit086ce5c2bb036ca8268f8bcb19099866f8561047 (patch)
treefc7fe096b455424bfdb63c7c4b0b47941948de7f /svtools/source/table/tablecontrol.cxx
parent06daea730e65b70f1a2c6adaeeeaa8fc2927a311 (diff)
Improved loplugin:stringconstant (now that GCC 7 supports it): svtools
Change-Id: I4d42441adf5408e0281577078b0d5537acb02513 Reviewed-on: https://gerrit.libreoffice.org/76641 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svtools/source/table/tablecontrol.cxx')
-rw-r--r--svtools/source/table/tablecontrol.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/table/tablecontrol.cxx b/svtools/source/table/tablecontrol.cxx
index 2a9a25c067d8..1a72110773fd 100644
--- a/svtools/source/table/tablecontrol.cxx
+++ b/svtools/source/table/tablecontrol.cxx
@@ -383,7 +383,7 @@ namespace svt { namespace table
OUString TableControl::GetRowDescription( sal_Int32) const
{
- return OUString( "row description" );
+ return "row description";
}
@@ -397,7 +397,7 @@ namespace svt { namespace table
OUString TableControl::GetColumnDescription( sal_uInt16) const
{
- return OUString( "col description" );
+ return "col description";
}