summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/common
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-05-21 15:04:01 +0100
committerCaolán McNamara <caolanm@redhat.com>2017-05-21 19:27:59 +0200
commit38632f933ae9361dad48b2123670876d7d602867 (patch)
tree89b864756d4591b654f7f8e0b8d67d72818fee7d /wizards/com/sun/star/wizards/common
parent7fe9be7d273e9ec56e75f8bbd532fda1f59e98b9 (diff)
expand and drop python getResArray
Change-Id: Ie81495a15376b01b0e87ee84628b8c6945897a3d Reviewed-on: https://gerrit.libreoffice.org/37877 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'wizards/com/sun/star/wizards/common')
-rw-r--r--wizards/com/sun/star/wizards/common/Resource.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/wizards/com/sun/star/wizards/common/Resource.py b/wizards/com/sun/star/wizards/common/Resource.py
index a601b9c18ee9..4d3c29e48770 100644
--- a/wizards/com/sun/star/wizards/common/Resource.py
+++ b/wizards/com/sun/star/wizards/common/Resource.py
@@ -47,16 +47,6 @@ class Resource(object):
traceback.print_exc()
raise ValueError("Resource with ID not " + str(nID) + " not found")
- def getResArray(self, nID, iCount):
- try:
- resArray = []
- for i in range(iCount):
- resArray.append(self.getResText(nID + i))
- return resArray
- except Exception:
- traceback.print_exc()
- raise ValueError("Resource with ID not" + str(nID) + " not found")
-
@classmethod
def showCommonResourceError(self, xMSF):
from .SystemDialog import SystemDialog