From kde-commits Sun Feb 20 18:03:42 2011 From: Alexey Khudyakov Date: Sun, 20 Feb 2011 18:03:42 +0000 To: kde-commits Subject: KDE/kdeedu/kstars/kstars Message-Id: <20110220180342.7C545AC8D4 () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=129822515122954 SVN commit 1221851 by khudyakov: Make fields in TZRule private M +5 -5 timezonerule.h --- trunk/KDE/kdeedu/kstars/kstars/timezonerule.h #1221850:1221851 @@ -110,8 +110,6 @@ */ bool equals( TimeZoneRule *r ); - int StartMonth, RevertMonth; - private: /**@return the KStarsDateTime of the moment when the next DST change will occur in local time @@ -159,11 +157,13 @@ int findRevertDay( const KStarsDateTime &d ); int StartDay, RevertDay; + int StartMonth, RevertMonth; int StartWeek, RevertWeek; QTime StartTime, RevertTime; - KStarsDateTime next_change_utc, next_change_ltime; - double dTZ, HourOffset; - + KStarsDateTime next_change_utc; + KStarsDateTime next_change_ltime; + double dTZ; + double HourOffset; }; #endif