about summary refs log tree commit diff stats
path: root/src/report_popup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/report_popup.h')
-rw-r--r--src/report_popup.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/report_popup.h b/src/report_popup.h index 2da9b73..bbb0bef 100644 --- a/src/report_popup.h +++ b/src/report_popup.h
@@ -15,6 +15,7 @@ class ReportPopup : public wxScrolledCanvas {
15 15
16 void Reset(); 16 void Reset();
17 17
18 void ResetIndicators();
18 void UpdateIndicators(); 19 void UpdateIndicators();
19 20
20 private: 21 private:
@@ -28,6 +29,9 @@ class ReportPopup : public wxScrolledCanvas {
28 const wxBitmap* unchecked_eye_; 29 const wxBitmap* unchecked_eye_;
29 const wxBitmap* checked_eye_; 30 const wxBitmap* checked_eye_;
30 31
32 int full_width_ = 0;
33 int full_height_ = 0;
34
31 wxBitmap rendered_; 35 wxBitmap rendered_;
32}; 36};
33 37