summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/tablespage.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-04 12:29:35 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-04 13:15:41 +0000
commitc1805c48ae6057d370a35f2e059f3ee82396c407 (patch)
tree2da65ded84bbcfee66db65a24f71750ceb5e77f3 /dbaccess/source/ui/dlg/tablespage.cxx
parent2dfc4c0845c72b3a1cf19546a1606907f36eea42 (diff)
loplugin:oncevar in dbaccess
Change-Id: I956063bb354fbbd002e922bb06d0b3863a2750fc Reviewed-on: https://gerrit.libreoffice.org/30565 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'dbaccess/source/ui/dlg/tablespage.cxx')
-rw-r--r--dbaccess/source/ui/dlg/tablespage.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/dbaccess/source/ui/dlg/tablespage.cxx b/dbaccess/source/ui/dlg/tablespage.cxx
index 7886c4483a81..365716964d6c 100644
--- a/dbaccess/source/ui/dlg/tablespage.cxx
+++ b/dbaccess/source/ui/dlg/tablespage.cxx
@@ -440,7 +440,6 @@ namespace dbaui
Sequence< OUString > OTableSubscriptionPage::collectDetailedSelection() const
{
Sequence< OUString > aTableFilter;
- static const char sDot[] = ".";
static const char sWildcard[] = "%";
OUString sComposedName;
@@ -494,7 +493,7 @@ namespace dbaui
}
}
bSchemaWildcard = OTableTreeListBox::isWildcardChecked(pSchema);
- sComposedName += m_pTablesList->GetEntryText( pSchema ) + sDot;
+ sComposedName += m_pTablesList->GetEntryText( pSchema ) + ".";
}
if (bSchemaWildcard)