diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-26 12:14:33 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-04-26 16:49:48 +0200 |
commit | 1bc4a49d9ba99ff0531bafc2cf0183f726bfe14b (patch) | |
tree | b980c3c940e1d7c233e2c6d19da7cd7d55b5ad1a /dbaccess | |
parent | fae7a3d060664e6540dbdfc3babd54ac9ccb45bf (diff) |
QueryDesign: in criteria, remove column_ref when table *and* column name match
As opposed to only the column name
Change-Id: I261d13f23214f950daa55a5b63cd486e59a0e127
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx index ad29c142780b..b54b3814b85e 100644 --- a/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx +++ b/dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx @@ -1118,6 +1118,7 @@ sal_Bool OSelectionBrowseBox::SaveModified() xConnection, static_cast<OQueryController&>(getDesignView()->getController()).getNumberFormatter(), xColumn, + pEntry->GetAlias(), getDesignView()->getLocale(), static_cast<sal_Char>(getDesignView()->getDecimalSeparator().toChar()), &(static_cast<OQueryController&>(getDesignView()->getController()).getParser().getContext())); @@ -1157,6 +1158,7 @@ sal_Bool OSelectionBrowseBox::SaveModified() xConnection, static_cast<OQueryController&>(getDesignView()->getController()).getNumberFormatter(), xColumn, + pEntry->GetAlias(), getDesignView()->getLocale(), static_cast<sal_Char>(getDesignView()->getDecimalSeparator().toChar()), &(static_cast<OQueryController&>(getDesignView()->getController()).getParser().getContext())); |