Skip to content

Commit

Permalink
[WinXP] Fix the build from #241
Browse files Browse the repository at this point in the history
QSharedPointer::QSharedPointer(std::nullptr_t) was introduced in Qt 5.8.
  • Loading branch information
marcusbirkin authored and Tom Steer committed Jan 30, 2022
1 parent cd5b216 commit 1c64193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widgets/monitorspinbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class monitorspinbox : public QAbstractSpinBox
QString textFromAddress(quint16 address) const;

private:
sACNManager::tListener m_listener = Q_NULLPTR;
sACNManager::tListener m_listener;
void setupListener(int universe);
quint16 m_address;
};
Expand Down

0 comments on commit 1c64193

Please sign in to comment.