Missing things from previous commit

This commit is contained in:
Arnaud Bienner 2014-10-05 01:22:19 +02:00
parent f6e6d3b937
commit c35e573637
2 changed files with 6 additions and 0 deletions

View File

@ -89,6 +89,9 @@ const QRgb Playlist::kDynamicHistoryColor = qRgb(0x80, 0x80, 0x80);
const char* Playlist::kSettingsGroup = "Playlist";
const char* Playlist::kPathType = "path_type";
const char* Playlist::kWriteMetadata = "write_metadata";
const int Playlist::kUndoStackSize = 20;
const int Playlist::kUndoItemLimit = 500;

View File

@ -152,6 +152,9 @@ class Playlist : public QAbstractListModel {
static const char* kSettingsGroup;
static const char* kPathType;
static const char* kWriteMetadata;
static const int kUndoStackSize;
static const int kUndoItemLimit;