From: Albert Astals Cid Date: Fri, 25 Apr 2008 20:18:05 +0000 (+0000) Subject: less warnings X-Git-Tag: v4.0.80~11 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=650486f2658f9e5e2f2ed40662db54747aa3901c;p=libqmvoc.git less warnings svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=801159 --- diff --git a/keduvocdocument/keduvoclesson.cpp b/keduvocdocument/keduvoclesson.cpp index f253dfd..77e2ffe 100644 --- a/keduvocdocument/keduvoclesson.cpp +++ b/keduvocdocument/keduvoclesson.cpp @@ -31,13 +31,13 @@ public: KEduVocLesson::KEduVocLesson(const QString& name, KEduVocContainer *parent) - : d( new Private ), KEduVocContainer(name, Lesson, parent) + : KEduVocContainer(name, Lesson, parent), d( new Private ) { } KEduVocLesson::KEduVocLesson( const KEduVocLesson &other ) - : d( new Private ), KEduVocContainer(other) + : KEduVocContainer(other), d( new Private ) { d->m_entries = other.d->m_entries; } diff --git a/keduvocdocument/keduvocwordtype.cpp b/keduvocdocument/keduvocwordtype.cpp index d595124..bf5d383 100644 --- a/keduvocdocument/keduvocwordtype.cpp +++ b/keduvocdocument/keduvocwordtype.cpp @@ -32,7 +32,7 @@ public: }; KEduVocWordType::KEduVocWordType(const QString& name, KEduVocWordType *parent) - : d( new Private ), KEduVocContainer(name, WordType, parent) + : KEduVocContainer(name, WordType, parent), d( new Private ) { d->m_wordType = General; }