diff options
author | Arno <arno@disconnect.de> | 2017-03-24 18:18:49 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2017-03-24 18:18:49 +0100 |
commit | a55b7eb7a765f09f0e83e9d3ce5696f540b6bd9b (patch) | |
tree | 2f331faf9fb16130494482c212df76bb5180e8d7 /playerwidget.h | |
parent | c4388dcc1830d5df4f04ec2df42d1359b68cbda3 (diff) | |
download | BeetPlayer-a55b7eb7a765f09f0e83e9d3ce5696f540b6bd9b.tar.gz BeetPlayer-a55b7eb7a765f09f0e83e9d3ce5696f540b6bd9b.tar.bz2 BeetPlayer-a55b7eb7a765f09f0e83e9d3ce5696f540b6bd9b.zip |
Change to new style connect syntax
Quite some code churn, but I like the idea that wrong connections are
compile time errors.
Since I had to get rid of default arguments in Slots, this simplified
things in doPopulateByFolder...
Diffstat (limited to 'playerwidget.h')
-rw-r--r-- | playerwidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playerwidget.h b/playerwidget.h index 0a1a9c2..04e023a 100644 --- a/playerwidget.h +++ b/playerwidget.h @@ -32,7 +32,7 @@ class PlayerWidget : public QWidget { void doPopulateByAlbum(); void doPopulateByGenre(); void doPopulateBySong(); - void doPopulateByFolder(QString dir = QString()); + void doPopulateByFolder(); void doModelChanged(); void viewDoubleClicked(const QModelIndex &idx); void doPlay(); |