forked from openlp/openlp
Fix Unicode error on database write
Try to add TextItemData again bzr-revno: 414
This commit is contained in:
parent
6224795661
commit
b525734702
@ -67,9 +67,9 @@ class EditCustomForm(QtGui.QDialog, Ui_customEditDialog):
|
|||||||
count += 1
|
count += 1
|
||||||
sxml.dump_xml()
|
sxml.dump_xml()
|
||||||
customSlide = CustomSlide()
|
customSlide = CustomSlide()
|
||||||
customSlide.title = str(self.TitleEdit.displayText())
|
customSlide.title = unicode(self.TitleEdit.displayText())
|
||||||
customSlide.text = str(sxml.extract_xml())
|
customSlide.text = unicode(sxml.extract_xml())
|
||||||
customSlide.credits = str(self.CreditEdit.displayText())
|
customSlide.credits = unicode(self.CreditEdit.displayText())
|
||||||
self.custommanager.save_slide(customSlide)
|
self.custommanager.save_slide(customSlide)
|
||||||
self.close()
|
self.close()
|
||||||
|
|
||||||
|
@ -24,7 +24,8 @@ from PyQt4 import QtCore, QtGui
|
|||||||
from openlp.core.lib import MediaManagerItem
|
from openlp.core.lib import MediaManagerItem
|
||||||
from openlp.core.resources import *
|
from openlp.core.resources import *
|
||||||
|
|
||||||
#from openlp.plugins.custom.lib import TextListData
|
#from openlp.plugins.custom.lib import TextItemData
|
||||||
|
|
||||||
|
|
||||||
class CustomMediaItem(MediaManagerItem):
|
class CustomMediaItem(MediaManagerItem):
|
||||||
"""
|
"""
|
||||||
@ -129,7 +130,7 @@ class CustomMediaItem(MediaManagerItem):
|
|||||||
for CustomSlide in list:
|
for CustomSlide in list:
|
||||||
print CustomSlide.title
|
print CustomSlide.title
|
||||||
# for CustomSlide in list:
|
# for CustomSlide in list:
|
||||||
# self.TextListData.addRow(CustomSlide.id,CustomSlide.title)
|
# self.CustomListData.addRow(CustomSlide.id,CustomSlide.title)
|
||||||
|
|
||||||
def onClearTextButtonClick(self):
|
def onClearTextButtonClick(self):
|
||||||
"""
|
"""
|
||||||
|
@ -9,7 +9,7 @@ class TextListData(QAbstractListModel):
|
|||||||
An abstract list of strings
|
An abstract list of strings
|
||||||
"""
|
"""
|
||||||
global log
|
global log
|
||||||
log=logging.getLogger("ListData")
|
log=logging.getLogger("TextListData")
|
||||||
log.info("started")
|
log.info("started")
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user