summaryrefslogtreecommitdiff
path: root/src/wx/server_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/server_dialog.h')
-rw-r--r--src/wx/server_dialog.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/wx/server_dialog.h b/src/wx/server_dialog.h
index 0912fd60f..a6f48fe7b 100644
--- a/src/wx/server_dialog.h
+++ b/src/wx/server_dialog.h
@@ -25,15 +25,12 @@ class ServerDescription;
class ServerDialog : public wxDialog
{
public:
- ServerDialog (wxWindow *, ServerDescription *);
+ ServerDialog (wxWindow *);
- ServerDescription* server () const;
+ void set (ServerDescription);
+ ServerDescription get () const;
private:
- void host_changed (wxCommandEvent &);
- void threads_changed (wxCommandEvent &);
-
- ServerDescription* _server;
wxTextCtrl* _host;
wxSpinCtrl* _threads;
};