Merge lp:~voluntatefaber/beat-box/default-export-names into lp:beat-box/1.x

Proposed by Andrea Basso
Status: Merged
Merged at revision: 551
Proposed branch: lp:~voluntatefaber/beat-box/default-export-names
Merge into: lp:beat-box/1.x
Diff against target: 15 lines (+2/-2)
1 file modified
src/Widgets/SideTreeView.vala (+2/-2)
To merge this branch: bzr merge lp:~voluntatefaber/beat-box/default-export-names
Reviewer Review Type Date Requested Status
Victor Martinez (community) Approve
Review via email: mp+93492@code.launchpad.net

Commit message

Fixed default names of history and queue playlists when exporting.

Description of the change

Fixed default names of history and queue playlists when exporting.

To post a comment you must log in.
Revision history for this message
Victor Martinez (victored) wrote :

Thanks for your fix.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/Widgets/SideTreeView.vala'
2--- src/Widgets/SideTreeView.vala 2012-02-04 23:26:24 +0000
3+++ src/Widgets/SideTreeView.vala 2012-02-16 21:20:26 +0000
4@@ -847,9 +847,9 @@
5 if(iter == playlists_similar_iter)
6 p.name = (lm.media_info.media != null) ? ("Similar to " + lm.media_info.media.title) : "Similar list";
7 else if(iter == playlists_queue_iter)
8- p.name = Time.local(time_t()).format("%m/%e/%Y %l:%M %p") + " play queue";
9+ p.name = Time.local(time_t()).format("%Y-%b-%e %l:%M %p") + " play queue";
10 else if(iter == playlists_history_iter)
11- p.name = Time.local(time_t()).format("%m/%e/%Y %l:%M %p") + " play history";
12+ p.name = Time.local(time_t()).format("%Y-%b-%e %l:%M %p") + " play history";
13 else
14 p.name = "Unkown playlist";
15 }

Subscribers

People subscribed via source and target branches

to all changes: