openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #22838
[Merge] lp:~tomasgroth/openlp/pptview-fix into lp:openlp
Tomas Groth has proposed merging lp:~tomasgroth/openlp/pptview-fix into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
For more details, see:
https://code.launchpad.net/~tomasgroth/openlp/pptview-fix/+merge/213371
Fixed wrong dll load path.
--
https://code.launchpad.net/~tomasgroth/openlp/pptview-fix/+merge/213371
Your team OpenLP Core is requested to review the proposed merge of lp:~tomasgroth/openlp/pptview-fix into lp:openlp.
=== modified file 'openlp/plugins/presentations/lib/pptviewcontroller.py'
--- openlp/plugins/presentations/lib/pptviewcontroller.py 2014-03-24 16:49:50 +0000
+++ openlp/plugins/presentations/lib/pptviewcontroller.py 2014-03-29 20:09:52 +0000
@@ -87,7 +87,7 @@
return
log.debug('start PPTView')
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)
if log.isEnabledFor(logging.DEBUG):
self.process.SetDebug(1)
References