summaryrefslogtreecommitdiffstats
path: root/src/qml/qmldlgpreferencesproxy.cpp
blob: 113789a58bd65a3a8cc37575a542580e54f9452c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "qmldlgpreferencesproxy.h"

namespace mixxx {
namespace qml {

QmlDlgPreferencesProxy::QmlDlgPreferencesProxy(
        std::shared_ptr<DlgPreferences> pDlgPreferences, QObject* parent)
        : QObject(parent),
          m_pDlgPreferences(pDlgPreferences) {
}

void QmlDlgPreferencesProxy::show() {
    m_pDlgPreferences->show();
}

} // namespace qml
} // namespace mixxx