diff --git a/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.cpp b/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.cpp index ccf6b80ac99b70457042170d23d7041bf3754c58..f2e842cda2573d009c5b8cfcfcd152a089126f4e 100644 --- a/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.cpp +++ b/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.cpp @@ -1439,6 +1439,9 @@ ClockDivideInterface::ClockDivideInterface(RHD2000Thread* board_, RHD2000Editor* editor_) : board(board_) , editor(editor_) + , name("Clock Divider") + , lastDivideRatioString("1") + , actualDivideRatio(1) { divideRatioSelection = new Label("Clock Divide", lastDivideRatioString); diff --git a/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.h b/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.h index 2d784906dd7d0e3cb11a801b009b17d2f72fdfd1..74a4d9354a08a486cf09e7476a016b3b58510673 100644 --- a/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.h +++ b/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.h @@ -387,14 +387,14 @@ public: private: - String name {"Clock Divider"}; - String lastDivideRatioString {"1"}; + String name; + String lastDivideRatioString; RHD2000Thread * board; RHD2000Editor * editor; ScopedPointer<Label> divideRatioSelection; - int actualDivideRatio {1}; + int actualDivideRatio; }; #endif // __RHD2000EDITOR_H_2AD3C591__