Skip to content

Commit 11c71e4

Browse files
committed
RVW: Changing method access from to
1 parent 4e7ede7 commit 11c71e4

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

calculator_simple/src/app_window.hpp

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,15 @@ class AppWindow :
3434
public:
3535
AppWindow();
3636
virtual ~AppWindow();
37-
37+
38+
protected:
3839
void handle_display_update();
39-
bool handle_radix_change(Gtk::ScrollType const & scroll_type, double const & radix_new);
40+
41+
bool handle_radix_change(
42+
Gtk::ScrollType const & scroll_type
43+
, double const & radix_new
44+
);
45+
4046
void handle_btn_0();
4147
void handle_btn_1();
4248
void handle_btn_2();
@@ -54,8 +60,6 @@ class AppWindow :
5460
void handle_btn_e();
5561
void handle_btn_f();
5662

57-
protected:
58-
5963
private:
6064
double value_x;
6165
double value_y;

0 commit comments

Comments
 (0)