diff --git a/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.cpp b/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.cpp index 5de38bd7ab3f88297f1dfffbb103066f124014e2..91ef18f932607cfaae219192a62f8dd9d2843e2c 100644 --- a/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.cpp +++ b/Source/Processors/DataThreads/RhythmNode/RHD2000Editor.cpp @@ -1440,6 +1440,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 ab18fab07484bb46e280b1c8784c546dd9e74f6d..0b7569acc43df65dbcdbd9e26eb6929d89290fd4 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__