forked from openlp/openlp
Well at least you can open a presentation now. Can't see it yet though cos of some silly black window in the way
This commit is contained in:
parent
89e78b6528
commit
f2a0fb9f29
@ -181,7 +181,7 @@ class ImpressController(PresentationController):
|
||||
class ImpressDocument(PresentationDocument):
|
||||
def __init__(self, controller, presentation):
|
||||
log.debug(u'Init Presentation OpenOffice')
|
||||
PresentationDocument.__init__(controller, presentation)
|
||||
PresentationDocument.__init__(self, controller, presentation)
|
||||
self.document = None
|
||||
self.presentation = None
|
||||
self.control = None
|
||||
|
@ -104,7 +104,7 @@ class PowerpointController(PresentationController):
|
||||
class PowerpointDocument(PresentationDocument):
|
||||
def __init__(self, controller, presentation):
|
||||
log.debug(u'Init Presentation Powerpoint')
|
||||
PresentationDocument.__init__(controller, presentation)
|
||||
PresentationDocument.__init__(self, controller, presentation)
|
||||
self.presentation = None
|
||||
|
||||
def load_presentation(self):
|
||||
|
@ -102,7 +102,7 @@ class PptviewController(PresentationController):
|
||||
class PptviewDocument(PresentationDocument):
|
||||
def __init__(self, controller, presentation):
|
||||
log.debug(u'Init Presentation PowerPoint')
|
||||
PresentationDocument.__init__(controller, presentation)
|
||||
PresentationDocument.__init__(self, controller, presentation)
|
||||
self.presentation = None
|
||||
self.pptid = None
|
||||
self.blanked = False
|
||||
|
Loading…
Reference in New Issue
Block a user