From e32fd065075d2baccb9284d1bf55538418806865 Mon Sep 17 00:00:00 2001 From: Lionel Elie Mamane Date: Thu, 4 Apr 2013 15:37:51 +0200 Subject: more efficent & readable Change-Id: If24a2a8488f1b1142b12540e4b8b00eb26bd7873 --- dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'dbaccess') 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; -- cgit