mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
kparts: move members initialization, fix build
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
7bf9d931ee
commit
aca5093ce8
1 changed files with 12 additions and 13 deletions
|
@ -364,20 +364,19 @@ class ReadOnlyPartPrivate: public PartPrivate
|
||||||
public:
|
public:
|
||||||
Q_DECLARE_PUBLIC(ReadOnlyPart)
|
Q_DECLARE_PUBLIC(ReadOnlyPart)
|
||||||
|
|
||||||
ReadOnlyPartPrivate(ReadOnlyPart *q): PartPrivate(q)
|
ReadOnlyPartPrivate(ReadOnlyPart *q): PartPrivate(q),
|
||||||
|
m_job(0),
|
||||||
|
m_statJob(0),
|
||||||
|
m_uploadJob(0),
|
||||||
|
m_showProgressInfo(true),
|
||||||
|
m_saveOk(false),
|
||||||
|
m_waitForSave(false),
|
||||||
|
m_duringSaveAs(false),
|
||||||
|
m_bTemp(false),
|
||||||
|
m_bAutoDetectedMime(false),
|
||||||
|
m_url(0),
|
||||||
|
m_file("")
|
||||||
{
|
{
|
||||||
m_job = 0;
|
|
||||||
m_statJob = 0;
|
|
||||||
m_uploadJob = 0;
|
|
||||||
m_showProgressInfo = true;
|
|
||||||
m_saveOk = false;
|
|
||||||
m_waitForSave = false;
|
|
||||||
m_duringSaveAs = false;
|
|
||||||
m_bTemp = false;
|
|
||||||
m_bAutoDetectedMime = false;
|
|
||||||
m_url = 0;
|
|
||||||
m_file = 0;
|
|
||||||
m_arguments = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
~ReadOnlyPartPrivate()
|
~ReadOnlyPartPrivate()
|
||||||
|
|
Loading…
Add table
Reference in a new issue