Skip to content

Commit

Permalink
Update graph_control.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Oct 9, 2023
1 parent 371e3ce commit 22cf05a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class signal_generator_base abstract_ {
on_signal_generated({next_signal(), date_time::now()});
}
}};
iasync_result_ptr generator_result_;
async_result generator_result_;
};

class random_signal_generator : public signal_generator_base {
Expand Down Expand Up @@ -120,7 +120,7 @@ class graph_control : public user_control {
grid_horizontal_line_color_ = value;
return *this;
}
graph_control& grid_horizontal_line_color(nullptr_t) noexcept {
graph_control& grid_horizontal_line_color(std::nullptr_t) noexcept {
grid_horizontal_line_color_.reset();
return *this;
}
Expand Down Expand Up @@ -148,7 +148,7 @@ class graph_control : public user_control {
grid_vertical_line_color_ = value;
return *this;
}
graph_control& grid_vertical_line_color(nullptr_t) noexcept {
graph_control& grid_vertical_line_color(std::nullptr_t) noexcept {
grid_vertical_line_color_.reset();
return *this;
}
Expand Down Expand Up @@ -176,7 +176,7 @@ class graph_control : public user_control {
x_axis_line_color_ = value;
return *this;
}
graph_control& x_axis_line_color(nullptr_t) noexcept {
graph_control& x_axis_line_color(std::nullptr_t) noexcept {
x_axis_line_color_.reset();
return *this;
}
Expand All @@ -198,7 +198,7 @@ class graph_control : public user_control {
y_axis_line_color_ = value;
return *this;
}
graph_control& y_axis_line_color(nullptr_t) noexcept {
graph_control& y_axis_line_color(std::nullptr_t) noexcept {
y_axis_line_color_.reset();
return *this;
}
Expand Down

0 comments on commit 22cf05a

Please sign in to comment.