Kaydet (Commit) 289cd4d7 authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS qadev0xa (1.1.20); FILE MERGED

2003/07/04 13:56:39 cn 1.1.20.1: CHG: #110380# remark functions depending on 'aAddon'
üst 82abca23
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
'* '*
'* $RCSfile: text_XText.xba,v $ '* $RCSfile: text_XText.xba,v $
'* '*
'* $Revision: 1.1 $ '* $Revision: 1.2 $
'* '*
'* last change:$Date: 2003-01-27 17:54:35 $ '* last change:$Date: 2003-08-07 15:05:36 $
'* '*
'* The Contents of this file are made available subject to the terms of '* The Contents of this file are made available subject to the terms of
'* either of the following licenses '* either of the following licenses
...@@ -110,17 +110,17 @@ On Error Goto ErrHndl ...@@ -110,17 +110,17 @@ On Error Goto ErrHndl
i1 = count(oCollection) i1 = count(oCollection)
Out.Log("Before inserting we have " + i1 + " elements.") Out.Log("Before inserting we have " + i1 + " elements.")
if isArray(aAddons) then ' if isArray(aAddons) then
Out.Log("Calling beforeInsertTextContent() ...") ' Out.Log("Calling beforeInsertTextContent() ...")
beforeInsertTextContent() ' beforeInsertTextContent()
endif ' endif
oObj.insertTextContent(oCursor, oInstance, false) oObj.insertTextContent(oCursor, oInstance, false)
if isArray(aAddons) then ' if isArray(aAddons) then
Out.Log("Calling afterInsertTextContent() ...") ' Out.Log("Calling afterInsertTextContent() ...")
afterInsertTextContent() ' afterInsertTextContent()
endif ' endif
i2 = count(oCollection) i2 = count(oCollection)
Out.Log("After inserting we have " + i2 + " elements.") Out.Log("After inserting we have " + i2 + " elements.")
...@@ -132,17 +132,17 @@ On Error Goto ErrHndl ...@@ -132,17 +132,17 @@ On Error Goto ErrHndl
i1 = count(oCollection) i1 = count(oCollection)
Out.Log("Before removing we have " + i1 + " elements.") Out.Log("Before removing we have " + i1 + " elements.")
if (isArray(aAddons)) then ' if (isArray(aAddons)) then
Out.Log("Calling beforeRemoveTextContent() ...") ' Out.Log("Calling beforeRemoveTextContent() ...")
beforeRemoveTextContent() ' beforeRemoveTextContent()
endif ' endif
oObj.removeTextContent(oInstance) oObj.removeTextContent(oInstance)
if (isArray(aAddons)) then ' if (isArray(aAddons)) then
Out.Log("Calling afterRemoveTextContent() ...") ' Out.Log("Calling afterRemoveTextContent() ...")
afterRemoveTextContent() ' afterRemoveTextContent()
endif ' endif
i2 = count(oCollection) i2 = count(oCollection)
Out.Log("After removing we have " + i2 + " elements.") Out.Log("After removing we have " + i2 + " elements.")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment