From kde-commits Mon Aug 31 22:02:22 2015 From: Jasem Mutlaq Date: Mon, 31 Aug 2015 22:02:22 +0000 To: kde-commits Subject: [kstars/gsoc2015-ekos] kstars/tools: Use UTC for DetailDialog Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=144105855705007 Git commit 63261c2d4d9f521b3d9807bb88a372d14f52999b by Jasem Mutlaq. Committed on 31/08/2015 at 22:00. Pushed by mutlaqja into branch 'gsoc2015-ekos'. Use UTC for DetailDialog M +1 -1 kstars/tools/observinglist.cpp http://commits.kde.org/kstars/63261c2d4d9f521b3d9807bb88a372d14f52999b diff --git a/kstars/tools/observinglist.cpp b/kstars/tools/observinglist.cpp index dfe3ef6..5b0a703 100644 --- a/kstars/tools/observinglist.cpp +++ b/kstars/tools/observinglist.cpp @@ -596,7 +596,7 @@ void ObservingList::slotSlewToObject() //Should have one window whose target object changes with selection void ObservingList::slotDetails() { if ( currentObject() ) { - QPointer dd =3D new DetailDialog( currentObject(), K= StarsData::Instance()->lt(), geo, KStars::Instance() ); + QPointer dd =3D new DetailDialog( currentObject(), K= StarsData::Instance()->ut(), geo, KStars::Instance() ); dd->exec(); delete dd; }