forked from openlp/openlp
remove print for log
This commit is contained in:
parent
5b154b5941
commit
f18ba14fc9
@ -26,11 +26,13 @@
|
|||||||
The :mod:`lib` module contains most of the components and libraries that make
|
The :mod:`lib` module contains most of the components and libraries that make
|
||||||
OpenLP work.
|
OpenLP work.
|
||||||
"""
|
"""
|
||||||
|
import logging
|
||||||
import types
|
import types
|
||||||
|
|
||||||
from PyQt4 import QtCore, QtGui
|
from PyQt4 import QtCore, QtGui
|
||||||
|
|
||||||
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
def translate(context, text):
|
def translate(context, text):
|
||||||
"""
|
"""
|
||||||
A special shortcut method to wrap around the Qt4 translation functions.
|
A special shortcut method to wrap around the Qt4 translation functions.
|
||||||
@ -60,7 +62,9 @@ def file_to_xml(xmlfile):
|
|||||||
file = open(xmlfile, u'r')
|
file = open(xmlfile, u'r')
|
||||||
xml = file.read()
|
xml = file.read()
|
||||||
except IOError:
|
except IOError:
|
||||||
print(u'Failed to open XML file')
|
#This may not be an error as this is also used to check
|
||||||
|
#that a file exist
|
||||||
|
log.error(u'Failed to open XML file %s' % xmlfile)
|
||||||
finally:
|
finally:
|
||||||
if file:
|
if file:
|
||||||
file.close()
|
file.close()
|
||||||
|
@ -300,8 +300,14 @@ class Ui_MainWindow(object):
|
|||||||
# Connect up some signals and slots
|
# Connect up some signals and slots
|
||||||
QtCore.QObject.connect(self.FileExitItem,
|
QtCore.QObject.connect(self.FileExitItem,
|
||||||
QtCore.SIGNAL(u'triggered()'), MainWindow.close)
|
QtCore.SIGNAL(u'triggered()'), MainWindow.close)
|
||||||
|
QtCore.QObject.connect(self.ControlSplitter,
|
||||||
|
QtCore.SIGNAL(u'splitterMoved(int, int)'), self.trackSplitter)
|
||||||
QtCore.QMetaObject.connectSlotsByName(MainWindow)
|
QtCore.QMetaObject.connectSlotsByName(MainWindow)
|
||||||
|
|
||||||
|
def trackSplitter(self, tab, pos):
|
||||||
|
#print tab, pos
|
||||||
|
pass
|
||||||
|
|
||||||
def retranslateUi(self, MainWindow):
|
def retranslateUi(self, MainWindow):
|
||||||
"""
|
"""
|
||||||
Set up the translation system
|
Set up the translation system
|
||||||
|
Loading…
Reference in New Issue
Block a user