layout fix in exceptionform

bug fix triggerd by searching for nonexistend book numbers
This commit is contained in:
M2j 2011-11-26 20:13:51 +01:00
parent 5825caa404
commit 047477c236
2 changed files with 6 additions and 4 deletions

View File

@ -39,6 +39,8 @@ class Ui_ExceptionDialog(object):
self.messageLayout.addSpacing(12)
self.bugLabel = QtGui.QLabel(exceptionDialog)
self.bugLabel.setPixmap(QtGui.QPixmap(u':/graphics/exception.png'))
self.bugLabel.setSizePolicy(QtGui.QSizePolicy.Fixed,
QtGui.QSizePolicy.Fixed)
self.bugLabel.setObjectName(u'bugLabel')
self.messageLayout.addWidget(self.bugLabel)
self.messageLayout.addSpacing(12)

View File

@ -638,14 +638,14 @@ class BiblesResourcesDB(QtCore.QObject, Manager):
chapters = BiblesResourcesDB.run_sql(u'SELECT id, book_reference_id, '
u'chapter, verse_count FROM chapters WHERE book_reference_id = ?',
(book_id,))
if chapters:
try:
return {
u'id': chapters[chapter-1][0],
u'book_reference_id': chapters[chapter-1][1],
u'chapter': chapters[chapter-1][2],
u'verse_count': chapters[chapter-1][3]
}
else:
except (IndexError, TypeError):
return None
@staticmethod
@ -753,7 +753,7 @@ class BiblesResourcesDB(QtCore.QObject, Manager):
u'language_id, download_source_id FROM webbibles WHERE '
u'download_source_id = ? AND abbreviation = ?', (source[u'id'],
abbreviation))
if bible:
try:
return {
u'id': bible[0][0],
u'name': bible[0][1],
@ -761,7 +761,7 @@ class BiblesResourcesDB(QtCore.QObject, Manager):
u'language_id': bible[0][3],
u'download_source_id': bible[0][4]
}
else:
except (IndexError, TypeError):
return None
@staticmethod