summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/cellbindinghelper.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-30 07:46:54 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-30 07:46:54 +0000
commit80c5dd637e502ad22a80facf47755975a02db42e (patch)
tree7bdde51aa53521bf90bc50284a4b668aed3a9a94 /extensions/source/propctrlr/cellbindinghelper.cxx
parent9fdb24609d4c77ffbf36132bc5a89f4fab94dae0 (diff)
#i10000# missing cast (solaris)
Diffstat (limited to 'extensions/source/propctrlr/cellbindinghelper.cxx')
-rw-r--r--extensions/source/propctrlr/cellbindinghelper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/cellbindinghelper.cxx b/extensions/source/propctrlr/cellbindinghelper.cxx
index c8b296ebf8fa..7f42d5306e7a 100644
--- a/extensions/source/propctrlr/cellbindinghelper.cxx
+++ b/extensions/source/propctrlr/cellbindinghelper.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: cellbindinghelper.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2004-11-27 13:02:20 $
+ * last change: $Author: obo $ $Date: 2004-11-30 08:46:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -207,8 +207,8 @@ namespace pcr
while ( ( xParentAsForm.is() || xParentAsGrid.is() ) && xCheck.is() )
{
xCheck = xCheck.query( xCheck->getParent() );
- xParentAsForm = xParentAsForm.query( xCheck.is() ? xCheck->getParent() : Reference< XForm >() );
- xParentAsGrid = xParentAsGrid.query( xCheck.is() ? xCheck->getParent() : Reference< XGridColumnFactory >() );
+ xParentAsForm = xParentAsForm.query( xCheck.is() ? xCheck->getParent() : (Reference< XInterface >) Reference< XForm >() );
+ xParentAsGrid = xParentAsGrid.query( xCheck.is() ? xCheck->getParent() : (Reference< XInterface >) Reference< XGridColumnFactory >() );
}
Reference< XInterface > xFormsCollection( xCheck.is() ? xCheck->getParent() : Reference< XInterface >() );