diff options
author | Xisco Fauli <anistenis@gmail.com> | 2012-11-13 20:00:21 +0100 |
---|---|---|
committer | Xisco Fauli <anistenis@gmail.com> | 2012-11-13 23:17:06 +0100 |
commit | 66ec3084378db0cfcc5de76945e0c29e9018dd79 (patch) | |
tree | a54d78ded571b9be1554a3e41c22e63d1aa70c64 /wizards | |
parent | 4aeeebfeb97d1d813fd3c2c11d26db492943bec5 (diff) |
pyagenda: forgot a method
Change-Id: I0e6f1239ead11845b0fbad98354022c9ee021ea3
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py index f845a236a493..08d4bd6373ee 100644 --- a/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py +++ b/wizards/com/sun/star/wizards/agenda/AgendaWizardDialogImpl.py @@ -37,7 +37,6 @@ from com.sun.star.awt.VclWindowPeerAttribute import OK class AgendaWizardDialogImpl(AgendaWizardDialog): - fileAccess1 = None pageDesign = None def __init__(self, xmsf): @@ -314,23 +313,6 @@ class AgendaWizardDialogImpl(AgendaWizardDialog): def chkUseResourcePersonsItemChanged(self): AgendaTemplate.redraw(self.templateConsts.FILLIN_RESOURCE_PERSONS) - ''' - convenience method. - instead of creating a FileAccess object every time - it is needed, I have a FileAccess object memeber. - the first time it is needed it will be created, and - then be reused... - @return the FileAccess memeber object. - ''' - - def getFileAccess(self): - if AgendaWizardDialogImpl.fileAccess1 is None: - try: - AgendaWizardDialogImpl.fileAccess1 = FileAccess(self.xMSF) - except Exception, e: - traceback.print_exc() - return AgendaWizardDialogImpl.fileAccess1 - def insertRow(self): self.topicsControl.insertRow() |