refactoring

This commit is contained in:
Anika Raemer 2021-08-28 14:17:35 +02:00
parent 3fb5be5a74
commit eddcbf620a
2 changed files with 2 additions and 3 deletions

View file

@ -68,7 +68,6 @@ Item{
stepSize: 1
value: musicModel.pAudioVolume
onValueChanged: {
console.log(musicModel.pAudioVolume, value);
musicModel.pAudioVolume = value;
}
}

View file

@ -13,7 +13,7 @@ class NavigationController : public QObject
{
Q_OBJECT
public:
NavigationController(QObject *parent = Q_NULLPTR);
explicit NavigationController(QObject *parent = nullptr);
void init(const QString & rootPath);
@ -32,7 +32,7 @@ private:
QString mRootPath = ".";
QQmlContext* mContext = Q_NULLPTR;
QQmlContext* mContext = nullptr;
private slots:
void onNavigationRequest();