diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-04 15:37:51 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-04 15:37:51 +0200 |
commit | e32fd065075d2baccb9284d1bf55538418806865 (patch) | |
tree | aaca280bb8e7d68cada086e1ae89e94c2bd84c4a /dbaccess | |
parent | e60eca1cfcf4763571f7e87a88740e4517a7dabd (diff) |
more efficent & readable
Change-Id: If24a2a8488f1b1142b12540e4b8b00eb26bd7873
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx index dac3441a0d5e..3e85d379e06e 100644 --- a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx +++ b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx @@ -495,8 +495,7 @@ void OSelectionBrowseBox::InitController(CellControllerRef& /*rController*/, lon // replace with alias.* if (aField.trim() == "*") { - aField = aTable; - aField += ".*"; + aField = aTable + ".*"; } m_pFieldCell->SetText(aField); } break; |