summaryrefslogtreecommitdiff
path: root/basic/source/runtime/methods.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-03-29 10:52:02 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-03-29 10:52:02 +0000
commitb7f2dd041467355f6e19d263f5605b8f4e1f3761 (patch)
tree335ffed5ff6e4131c5904b29476501c997c73f80 /basic/source/runtime/methods.cxx
parent1cdbf0f56e6800440e93df781c32f4a19c2e012b (diff)
INTEGRATION: CWS ab14fixes (1.59.18); FILE MERGED
2005/02/22 09:13:34 ab 1.59.18.1: #115829# Removed usage of TypeHolderObject
Diffstat (limited to 'basic/source/runtime/methods.cxx')
-rw-r--r--basic/source/runtime/methods.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index c7c960c497bb..e5fd09bb6252 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: methods.cxx,v $
*
- * $Revision: 1.59 $
+ * $Revision: 1.60 $
*
- * last change: $Author: rt $ $Date: 2004-11-15 16:36:55 $
+ * last change: $Author: rt $ $Date: 2005-03-29 11:52:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -2154,7 +2154,7 @@ RTLFUNC(IsNull)
if( !bNull && pArg->GetType() == SbxOBJECT )
{
SbxBase* pObj = pArg->GetObject();
- if( !pObj || pObj->ISA(TypeHolderObject) )
+ if( !pObj )
bNull = TRUE;
}
rPar.Get( 0 )->PutBool( bNull );