~ubuntu-branches/ubuntu/vivid/clementine/vivid-proposed

« back to all changes in this revision

Viewing changes to src/playlist/playlistsequence.h

  • Committer: Package Import Robot
  • Author(s): Thomas Pierson
  • Date: 2014-07-12 22:07:28 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140712220728-5p88h4szhjx1rfrd
Tags: 1.2.3+dfsg-1
* New upstream release. (Closes: #742163, #724615, #722471)
* Update debian/watch file.
* Bump Standards-Version to 3.9.5.
* Bump debian/copyright standard version to 1.0.
* Fix a misspelling issue in debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#ifndef PLAYLISTSEQUENCE_H
19
19
#define PLAYLISTSEQUENCE_H
20
20
 
 
21
#include <memory>
 
22
 
21
23
#include <QWidget>
22
24
 
23
25
#include "core/settingsprovider.h"
24
26
 
25
 
#include <boost/scoped_ptr.hpp>
26
 
 
27
27
class QMenu;
28
28
 
29
29
class Ui_PlaylistSequence;
79
79
 
80
80
 private:
81
81
  Ui_PlaylistSequence* ui_;
82
 
  boost::scoped_ptr<SettingsProvider> settings_;
 
82
  std::unique_ptr<SettingsProvider> settings_;
83
83
 
84
84
  QMenu* repeat_menu_;
85
85
  QMenu* shuffle_menu_;