bugfixing
This commit is contained in:
@@ -17,8 +17,8 @@ cBook::cBook(const QString &szTitle, QObject *parent) :
|
||||
QObject(parent),
|
||||
m_szTitle(szTitle),
|
||||
m_szSubtitle(""),
|
||||
m_lpShortDescription(0),
|
||||
m_lpDescription(0),
|
||||
m_lpShortDescription(new cTextDocument(parent)),
|
||||
m_lpDescription(new cTextDocument(parent)),
|
||||
m_szAuthor(""),
|
||||
m_startedAt(QDateTime(QDate(1, 1, 1))),
|
||||
m_finishedAt(QDateTime(QDate(1, 1, 1))),
|
||||
|
||||
+2
-2
@@ -17,8 +17,8 @@ cChapter::cChapter(qint32 iID, QObject *parent) :
|
||||
m_lpPart(0),
|
||||
m_szName(""),
|
||||
m_iSortOrder(-1),
|
||||
m_lpDescription(0),
|
||||
m_lpText(0),
|
||||
m_lpDescription(new cTextDocument(parent)),
|
||||
m_lpText(new cTextDocument(parent)),
|
||||
m_lpItem(0),
|
||||
m_bDeleted(false)
|
||||
{
|
||||
|
||||
+1
-1
@@ -38,7 +38,7 @@ cCharacter::cCharacter(qint32 iID, QObject *parent) :
|
||||
m_szSkin(QString("")),
|
||||
m_szSchool(QString("")),
|
||||
m_szJob(QString("")),
|
||||
m_lpDescription(0),
|
||||
m_lpDescription(new cTextDocument(parent)),
|
||||
m_bDeleted(false)
|
||||
{
|
||||
}
|
||||
|
||||
+3
-1
@@ -13,7 +13,9 @@
|
||||
|
||||
|
||||
cImage::cImage(QObject *parent) :
|
||||
QObject(parent)
|
||||
QObject(parent),
|
||||
m_szName(""),
|
||||
m_lpDescription(new cTextDocument(parent))
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -16,7 +16,7 @@ cObject::cObject(qint32 iID, QObject *parent) :
|
||||
m_iID(iID),
|
||||
m_szName(""),
|
||||
m_szType(""),
|
||||
m_lpDescription(0),
|
||||
m_lpDescription(new cTextDocument(parent)),
|
||||
m_bDeleted(false)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -16,8 +16,8 @@ cPart::cPart(qint32 iID, QObject *parent) :
|
||||
m_iID(iID),
|
||||
m_szName(""),
|
||||
m_iSortOrder(-1),
|
||||
m_lpDescription(0),
|
||||
m_lpText(0),
|
||||
m_lpDescription(new cTextDocument(parent)),
|
||||
m_lpText(new cTextDocument(parent)),
|
||||
m_lpItem(0),
|
||||
m_bDeleted(false)
|
||||
{
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ cPlace::cPlace(qint32 iID, QObject *parent) :
|
||||
m_szName(""),
|
||||
m_szLocation(""),
|
||||
m_szType(""),
|
||||
m_lpDescription(0),
|
||||
m_lpDescription(new cTextDocument(parent)),
|
||||
m_bDeleted(false)
|
||||
{
|
||||
}
|
||||
|
||||
+1
-1
@@ -16,7 +16,7 @@ cRecherche::cRecherche(qint32 iID, QObject *parent) :
|
||||
m_iID(iID),
|
||||
m_szName(""),
|
||||
m_szLink(""),
|
||||
m_lpDescription(0),
|
||||
m_lpDescription(new cTextDocument(parent)),
|
||||
m_bDeleted(false)
|
||||
{
|
||||
}
|
||||
|
||||
+2
-2
@@ -19,9 +19,9 @@ cScene::cScene(qint32 iID, QObject *parent) :
|
||||
m_lpChapter(0),
|
||||
m_szName(""),
|
||||
m_iSortOrder(-1),
|
||||
m_lpDescription(0),
|
||||
m_lpDescription(new cTextDocument(parent)),
|
||||
m_state(STATE::STATE_unknown),
|
||||
m_lpText(0),
|
||||
m_lpText(new cTextDocument(parent)),
|
||||
m_lpItem(0),
|
||||
m_lpStateItem(0),
|
||||
m_bDeleted(false)
|
||||
|
||||
Reference in New Issue
Block a user