Fixed wrong dll load path.

This commit is contained in:
Tomas Groth 2014-03-29 20:56:20 +01:00
parent 54895af75c
commit 0f0e09a282
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class PptviewController(PresentationController):
return return
log.debug('start PPTView') log.debug('start PPTView')
dll_path = os.path.join(AppLocation.get_directory(AppLocation.AppDir), dll_path = os.path.join(AppLocation.get_directory(AppLocation.AppDir),
'presentations', 'lib', 'pptviewlib', 'pptviewlib.dll') 'plugins', 'presentations', 'lib', 'pptviewlib', 'pptviewlib.dll')
self.process = cdll.LoadLibrary(dll_path) self.process = cdll.LoadLibrary(dll_path)
if log.isEnabledFor(logging.DEBUG): if log.isEnabledFor(logging.DEBUG):
self.process.SetDebug(1) self.process.SetDebug(1)