We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e7ede7 commit 11c71e4Copy full SHA for 11c71e4
calculator_simple/src/app_window.hpp
@@ -34,9 +34,15 @@ class AppWindow :
34
public:
35
AppWindow();
36
virtual ~AppWindow();
37
-
+
38
+ protected:
39
void handle_display_update();
- 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
46
void handle_btn_0();
47
void handle_btn_1();
48
void handle_btn_2();
@@ -54,8 +60,6 @@ class AppWindow :
54
60
void handle_btn_e();
55
61
void handle_btn_f();
56
62
57
- protected:
58
59
63
private:
64
double value_x;
65
double value_y;
0 commit comments