mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
compiler warning fixes
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
d46a117a14
commit
928c7e9f50
2 changed files with 4 additions and 6 deletions
|
@ -383,8 +383,6 @@ void QCoreApplication::init()
|
|||
*/
|
||||
QCoreApplication::~QCoreApplication()
|
||||
{
|
||||
Q_D(QCoreApplication);
|
||||
|
||||
qt_call_post_routines();
|
||||
|
||||
self = 0;
|
||||
|
|
|
@ -1142,8 +1142,8 @@ QDomNodeListPrivate::QDomNodeListPrivate(QDomNodePrivate *n_impl)
|
|||
QDomNodeListPrivate::QDomNodeListPrivate(QDomNodePrivate *n_impl, const QString &name)
|
||||
: ref(1),
|
||||
node_impl(n_impl),
|
||||
timestamp(0),
|
||||
tagname(name)
|
||||
tagname(name),
|
||||
timestamp(0)
|
||||
{
|
||||
if (node_impl)
|
||||
node_impl->ref.ref();
|
||||
|
@ -1152,9 +1152,9 @@ QDomNodeListPrivate::QDomNodeListPrivate(QDomNodePrivate *n_impl, const QString
|
|||
QDomNodeListPrivate::QDomNodeListPrivate(QDomNodePrivate *n_impl, const QString &_nsURI, const QString &localName)
|
||||
: ref(1),
|
||||
node_impl(n_impl),
|
||||
timestamp(0),
|
||||
tagname(localName),
|
||||
nsURI(_nsURI)
|
||||
nsURI(_nsURI),
|
||||
timestamp(0)
|
||||
{
|
||||
if (node_impl)
|
||||
node_impl->ref.ref();
|
||||
|
|
Loading…
Add table
Reference in a new issue