From fd26d8b8ab6b1cd2d1b04dff1241b34402cdc45c Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Wed, 16 Jan 2013 12:33:32 +0100 Subject: [PATCH] replaced by enumeration --- openlp/plugins/presentations/presentationplugin.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py index 4a8beb73c..085abf804 100644 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -43,11 +43,11 @@ from openlp.plugins.presentations.lib import PresentationController, \ log = logging.getLogger(__name__) __default_settings__ = { - u'presentations/Impress': 2, u'presentations/override app': QtCore.Qt.Unchecked, - u'presentations/presentations count': 0, - u'presentations/Powerpoint': 2, - u'presentations/Powerpoint Viewer': 2 + u'presentations/Impress': QtCore.Qt.Checked, + u'presentations/Powerpoint': QtCore.Qt.Checked, + u'presentations/Powerpoint Viewer': QtCore.Qt.Checked, + u'presentations/presentations count': 0 }