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

Remove some variable initializers to avoid compiler errors on gcc 4.6 (Ubuntu 14.02LTS)

parent 87c2aada
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
......@@ -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