summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.py
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2012-11-15 20:52:59 +0100
committerXisco Fauli <anistenis@gmail.com>2012-11-21 01:07:59 +0100
commit51767739403dea1511f58bf6c5cebedc1a9d823d (patch)
treeecebedc20e0a2ec2e7c4d68c34fff904c889ffde /wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.py
parent12634c14249fc3e1d09cb6688c9709818f5522de (diff)
pyfax: replace xrange
Change-Id: Id43dd5adb33e2c037c529e5af75bf920258b3fd9
Diffstat (limited to 'wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.py')
-rw-r--r--wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.py b/wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.py
index a02835a0374f..d192a86bdafc 100644
--- a/wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.py
+++ b/wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.py
@@ -164,25 +164,25 @@ class FaxWizardDialogResources(Resource):
self.loadCommunicationResources()
def loadRoadmapResources(self):
- for i in xrange(5):
+ for i in range(5):
self.RoadmapLabels.append(self.getResText(
FaxWizardDialogResources.RID_FAXWIZARDROADMAP_START + \
+ i + 1))
def loadSalutationResources(self):
- for i in xrange(4):
+ for i in range(4):
self.SalutationLabels.append(self.getResText(
FaxWizardDialogResources.RID_FAXWIZARDSALUTATION_START + \
i + 1))
def loadGreetingResources(self):
- for i in xrange(4):
+ for i in range(4):
self.GreetingLabels.append(self.getResText(
FaxWizardDialogResources.RID_FAXWIZARDGREETING_START + \
i + 1))
def loadCommunicationResources(self):
- for i in xrange(3):
+ for i in range(3):
self.CommunicationLabels.append(self.getResText(
FaxWizardDialogResources.RID_FAXWIZARDCOMMUNICATION_START + \
i + 1))