Skip to content
Snippets Groups Projects
Commit 075dabd7 authored by Aaron Cuevas Lopez's avatar Aaron Cuevas Lopez
Browse files

Merge branch 'testing' into development

parents 06f1714e ba005692
No related branches found
Tags v0.2.6
No related merge requests found
......@@ -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);
......
......@@ -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__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment