Skip to content
Snippets Groups Projects
Commit ca786597 authored by Matthias Melcher's avatar Matthias Melcher
Browse files

Add Fl_Valuator destructor.

This is required by Swig to generate code for wrapping
FLTK for Python and potentially other languages. It has
no impact on the API or ABI.
parent 6c7b005a
Branches
No related tags found
No related merge requests found
...@@ -69,6 +69,8 @@ protected: ...@@ -69,6 +69,8 @@ protected:
public: public:
/** Destructor is accessible despite protected constructor. */
~Fl_Valuator() FL_OVERRIDE { }
/** Sets the minimum (a) and maximum (b) values for the valuator widget. */ /** Sets the minimum (a) and maximum (b) values for the valuator widget. */
void bounds(double a, double b) {min=a; max=b;} void bounds(double a, double b) {min=a; max=b;}
/** Gets the minimum value for the valuator. */ /** Gets the minimum value for the valuator. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment