From kde-commits Mon Jul 23 21:32:01 2007 From: =?utf-8?q?Peter=20K=C3=BCmmel?= Date: Mon, 23 Jul 2007 21:32:01 +0000 To: kde-commits Subject: KDE/kdepim/kmail Message-Id: <1185226321.165479.22737.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=118522634531163 SVN commit 691539 by kuemmel: msvc: const function calls const function calls const function calls const function ... M +2 -2 accountmanager.h --- trunk/KDE/kdepim/kmail/accountmanager.h #691538:691539 @@ -88,13 +88,13 @@ /** First account of the list. */ - const KMAccount *first() const { return first(); } + const KMAccount *first() const { return const_cast(this)->first(); } KMAccount *first(); /** Next account of the list/ */ - const KMAccount *next() const { return next(); } + const KMAccount *next() const { return const_cast(this)->next(); } KMAccount *next(); /**