Merge lp:~rpadovani/ubuntu-weather-app/1198544 into lp:ubuntu-weather-app/obsolete.trunk

Proposed by Riccardo Padovani
Status: Merged
Approved by: Martin Borho
Approved revision: no longer in the source branch.
Merged at revision: 59
Proposed branch: lp:~rpadovani/ubuntu-weather-app/1198544
Merge into: lp:ubuntu-weather-app/obsolete.trunk
Diff against target: 12 lines (+1/-1)
1 file modified
components/LocationTab.qml (+1/-1)
To merge this branch: bzr merge lp:~rpadovani/ubuntu-weather-app/1198544
Reviewer Review Type Date Requested Status
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Martin Borho Approve
Review via email: mp+173947@code.launchpad.net

Commit message

Fixed #1198544

Description of the change

Fixed #1198544

To post a comment you must log in.
Revision history for this message
Martin Borho (martin-borho) wrote :

Thanks a lot, Bug done!

review: Approve
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) :
review: Approve (continuous-integration)
59. By Riccardo Padovani

Fixed #1198544. Fixes: https://bugs.launchpad.net/bugs/1198544.

Approved by Ubuntu Phone Apps Jenkins Bot, Martin Borho.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'components/LocationTab.qml'
--- components/LocationTab.qml 2013-07-03 19:39:29 +0000
+++ components/LocationTab.qml 2013-07-10 13:55:40 +0000
@@ -41,7 +41,7 @@
41 // set daily forecasts41 // set daily forecasts
42 var dailyForecasts = locationData.daily.results,42 var dailyForecasts = locationData.daily.results,
43 dailyLength = dailyForecasts.length;43 dailyLength = dailyForecasts.length;
44 for(var x=0;x<dailyLength;x++) {44 for(var x=1;x<dailyLength;x++) {
45 dayForecastModel.append({45 dayForecastModel.append({
46 dateRel: "",//Tomorrow",46 dateRel: "",//Tomorrow",
47 date: formatTimestamp(dailyForecasts[x].timestamp, 'dddd, dd MMMM yyyy'),47 date: formatTimestamp(dailyForecasts[x].timestamp, 'dddd, dd MMMM yyyy'),

Subscribers

People subscribed via source and target branches