summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/document/OfficeDocument.py
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/document/OfficeDocument.py')
-rw-r--r--wizards/com/sun/star/wizards/document/OfficeDocument.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/wizards/com/sun/star/wizards/document/OfficeDocument.py b/wizards/com/sun/star/wizards/document/OfficeDocument.py
index b0bcbf91e27e..aa6c059b6e24 100644
--- a/wizards/com/sun/star/wizards/document/OfficeDocument.py
+++ b/wizards/com/sun/star/wizards/document/OfficeDocument.py
@@ -200,20 +200,6 @@ class OfficeDocument(object):
return bState
- def ArraytoCellRange(self, datalist, oTable, xpos, ypos):
- try:
- rowcount = datalist.length
- if rowcount > 0:
- colcount = datalist[0].length
- if colcount > 0:
- xNewRange = oTable.getCellRangeByPosition(
- xpos, ypos, (colcount + xpos) - 1,
- (rowcount + ypos) - 1)
- xNewRange.setDataArray(datalist)
-
- except Exception:
- traceback.print_exc()
-
def showMessageBox(
self, xMSF, windowServiceName, windowAttribute, MessageText):