Try c++11 without unique_ptr

This commit is contained in:
John Maguire 2014-01-08 11:55:22 +01:00
parent 1ef3c53629
commit ee70819f2b
1 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@ class CloudFileService : public InternetService {
LibraryModel* library_model_;
QSortFilterProxyModel* library_sort_model_;
std::unique_ptr<QMenu> context_menu_;
std::unique_ptr<AlbumCoverManager> cover_manager_;
boost::scoped_ptr<QMenu> context_menu_;
boost::scoped_ptr<AlbumCoverManager> cover_manager_;
PlaylistManager* playlist_manager_;
TaskManager* task_manager_;