Commit f8d782cb authored by Eric Petit's avatar Eric Petit

beos/: finished fixing Preferences

parent 9d3f8785
This diff is collapsed.
...@@ -55,6 +55,7 @@ class ConfigWidget : public BView ...@@ -55,6 +55,7 @@ class ConfigWidget : public BView
public: public:
ConfigWidget( intf_thread_t * p_intf, BRect rect, ConfigWidget( intf_thread_t * p_intf, BRect rect,
module_config_t * p_item ); module_config_t * p_item );
~ConfigWidget();
bool InitCheck() { return fInitOK; } bool InitCheck() { return fInitOK; }
void Apply( bool doIt ); void Apply( bool doIt );
...@@ -62,6 +63,9 @@ class ConfigWidget : public BView ...@@ -62,6 +63,9 @@ class ConfigWidget : public BView
intf_thread_t * p_intf; intf_thread_t * p_intf;
bool fInitOK; bool fInitOK;
int fType;
char * fName;
VTextControl * fTextControl; VTextControl * fTextControl;
BCheckBox * fCheckBox; BCheckBox * fCheckBox;
BPopUpMenu * fPopUpMenu; BPopUpMenu * fPopUpMenu;
...@@ -113,8 +117,7 @@ class PreferencesWindow : public BWindow ...@@ -113,8 +117,7 @@ class PreferencesWindow : public BWindow
virtual void FrameResized( float, float ); virtual void FrameResized( float, float );
void Update(); void Update();
void ApplyChanges( bool doIt ); void Apply( bool doIt );
void SaveChanges();
void ReallyQuit(); void ReallyQuit();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment