mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
MSVC only allows static class members to be initialised in the class declaration
This commit is contained in:
parent
2124fb72ea
commit
ea1740d65f
2 changed files with 2 additions and 1 deletions
|
|
@ -107,6 +107,7 @@ Surface::Surface (MackieControlProtocol& mcp, const std::string& device_name, ui
|
||||||
, _last_master_gain_written (-0.0f)
|
, _last_master_gain_written (-0.0f)
|
||||||
, connection_state (0)
|
, connection_state (0)
|
||||||
, input_source (0)
|
, input_source (0)
|
||||||
|
, is_qcon (false)
|
||||||
{
|
{
|
||||||
DEBUG_TRACE (DEBUG::MackieControl, "Surface::Surface init\n");
|
DEBUG_TRACE (DEBUG::MackieControl, "Surface::Surface init\n");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -209,7 +209,7 @@ public:
|
||||||
int connection_state;
|
int connection_state;
|
||||||
|
|
||||||
// QCon Flag
|
// QCon Flag
|
||||||
bool is_qcon = false;
|
bool is_qcon;
|
||||||
|
|
||||||
MidiByteArray display_line (std::string const& msg, int line_num);
|
MidiByteArray display_line (std::string const& msg, int line_num);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue