summaryrefslogtreecommitdiff
path: root/dbaccess/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-09-13 09:52:44 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-09-13 09:52:44 +0000
commita776debc79da98f1af61eda4e659af3bfe3ec3f5 (patch)
treed8e0c6ff8494ef4986edaa8c48c3d133ba553a02 /dbaccess/source
parentfa51dbf0f4d1a62ec62896c97c3d4d30431ef354 (diff)
#92075#: can't take address from temporary
Diffstat (limited to 'dbaccess/source')
-rw-r--r--dbaccess/source/core/api/querycomposer.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/dbaccess/source/core/api/querycomposer.cxx b/dbaccess/source/core/api/querycomposer.cxx
index 43f9acc02047..1c199e5d8688 100644
--- a/dbaccess/source/core/api/querycomposer.cxx
+++ b/dbaccess/source/core/api/querycomposer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: querycomposer.cxx,v $
*
- * $Revision: 1.41 $
+ * $Revision: 1.42 $
*
- * last change: $Author: fs $ $Date: 2001-08-30 08:04:40 $
+ * last change: $Author: hr $ $Date: 2001-09-13 10:52:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1190,7 +1190,8 @@ void OQueryComposer::resetIterator(const ::rtl::OUString& aSql)
if(!m_pTables->hasByName(aComposedName))
{
- ::comphelper::UStringMixEqual aComp(static_cast< ::comphelper::UStringMixLess*>(&m_aSqlIterator.getTables().key_comp())->isCaseSensitive());
+ ::comphelper::UStringMixLess aTmp(m_aSqlIterator.getTables().key_comp());
+ ::comphelper::UStringMixEqual aComp(static_cast< ::comphelper::UStringMixLess*>(&aTmp)->isCaseSensitive());
for(;pBegin != pEnd;++pBegin)
{
Reference<XPropertySet> xTableProp;