diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-10-16 20:08:47 +0200 |
---|---|---|
committer | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-10-18 19:16:44 +0000 |
commit | d1ea6ecda68bf65b8d90e9ea17fa0a218a92b016 (patch) | |
tree | 941e1e5650db110768d2ace19c891fec4f78fc33 /dbaccess | |
parent | 55bcb865ee09673af06652e507d08d13069eae86 (diff) |
replace <<= with assign for <<= with rhs Any
found by deleting specialization of '<<=' template
Change-Id: I253f15177ab20fd3ef9baf4158da8c662cb47e6c
Reviewed-on: https://gerrit.libreoffice.org/29956
Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Tested-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/paramdialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/dlg/paramdialog.cxx b/dbaccess/source/ui/dlg/paramdialog.cxx index e35f28615cd0..534d5176fc37 100644 --- a/dbaccess/source/ui/dlg/paramdialog.cxx +++ b/dbaccess/source/ui/dlg/paramdialog.cxx @@ -247,7 +247,7 @@ namespace dbaui OUString sValue; pValues->Value >>= sValue; - pValues->Value <<= m_aPredicateInput.getPredicateValue( sValue, xParamAsSet ); + pValues->Value = m_aPredicateInput.getPredicateValue( sValue, xParamAsSet ); } } catch(Exception&) |