From: Frederik Gladhorn Date: Fri, 21 Sep 2007 08:16:21 +0000 (+0000) Subject: add return *this to operator= X-Git-Tag: v3.94.0~27 X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=5e4551c3f7c2349a6c4a3cd3c769ef20ae1615e6;p=libqmvoc.git add return *this to operator= svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=715100 --- diff --git a/keduvocdocument/keduvocdeclination.cpp b/keduvocdocument/keduvocdeclination.cpp index d7ec962..c9c924c 100644 --- a/keduvocdocument/keduvocdeclination.cpp +++ b/keduvocdocument/keduvocdeclination.cpp @@ -44,6 +44,7 @@ KEduVocDeclination::KEduVocDeclination(const KEduVocDeclination & other) KEduVocDeclination & KEduVocDeclination::operator =(const KEduVocDeclination & other) { d->m_declinations = other.d->m_declinations; + return *this; } KEduVocDeclination::~KEduVocDeclination()