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
=== modified file 'src/Widgets/SideTreeView.vala'
--- src/Widgets/SideTreeView.vala 2012-02-04 23:26:24 +0000
+++ src/Widgets/SideTreeView.vala 2012-02-16 21:20:26 +0000
@@ -847,9 +847,9 @@
847 if(iter == playlists_similar_iter)847 if(iter == playlists_similar_iter)
848 p.name = (lm.media_info.media != null) ? ("Similar to " + lm.media_info.media.title) : "Similar list";848 p.name = (lm.media_info.media != null) ? ("Similar to " + lm.media_info.media.title) : "Similar list";
849 else if(iter == playlists_queue_iter)849 else if(iter == playlists_queue_iter)
850 p.name = Time.local(time_t()).format("%m/%e/%Y %l:%M %p") + " play queue";850 p.name = Time.local(time_t()).format("%Y-%b-%e %l:%M %p") + " play queue";
851 else if(iter == playlists_history_iter)851 else if(iter == playlists_history_iter)
852 p.name = Time.local(time_t()).format("%m/%e/%Y %l:%M %p") + " play history";852 p.name = Time.local(time_t()).format("%Y-%b-%e %l:%M %p") + " play history";
853 else853 else
854 p.name = "Unkown playlist";854 p.name = "Unkown playlist";
855 }855 }

Subscribers

People subscribed via source and target branches

to all changes: