summaryrefslogtreecommitdiff
path: root/src/wx/colour_conversion_editor.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-11-02 00:18:56 +0100
committerCarl Hetherington <cth@carlh.net>2022-11-02 01:17:53 +0100
commitb39dbb7cf1b0352cf0eb3af4bf4929556355bff5 (patch)
treee679b163406b863dbbc04c4635393973b33929ec /src/wx/colour_conversion_editor.h
parent9c6d757fc6ff188521719cad9bf2cd494bb4edd8 (diff)
Cleanup: use new CheckBox::bind().
Diffstat (limited to 'src/wx/colour_conversion_editor.h')
-rw-r--r--src/wx/colour_conversion_editor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/colour_conversion_editor.h b/src/wx/colour_conversion_editor.h
index cc3c3d225..de5ffb794 100644
--- a/src/wx/colour_conversion_editor.h
+++ b/src/wx/colour_conversion_editor.h
@@ -47,7 +47,7 @@ public:
private:
void changed ();
- void changed (wxSpinCtrlDouble *);
+ void spin_ctrl_changed(wxSpinCtrlDouble *);
void chromaticity_changed ();
void adjusted_white_changed ();
void update_rgb_to_xyz ();
@@ -79,10 +79,10 @@ private:
wxTextCtrl* _blue_y;
wxTextCtrl* _white_x;
wxTextCtrl* _white_y;
- wxCheckBox* _adjust_white;
+ CheckBox* _adjust_white;
wxTextCtrl* _adjusted_white_x;
wxTextCtrl* _adjusted_white_y;
- wxCheckBox* _output;
+ CheckBox* _output;
wxStaticText* _rgb_to_xyz[3][3];
wxStaticText* _bradford[3][3];
};