summaryrefslogtreecommitdiff
path: root/src/wx/server_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-17 21:47:08 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-17 21:47:08 +0100
commit2499c41097f8410cb3016e095a85d68979485a7b (patch)
tree331a23489d3be42ede2861311a797792ba663805 /src/wx/server_dialog.h
parent89af81886eeee57861bc23984a0583bec76d536d (diff)
Various bits mostly related to colour conversions.
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 3f1fa1f73..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 *, boost::shared_ptr<ServerDescription>);
+ ServerDialog (wxWindow *);
- boost::shared_ptr<ServerDescription> server () const;
+ void set (ServerDescription);
+ ServerDescription get () const;
private:
- void host_changed ();
- void threads_changed ();
-
- boost::shared_ptr<ServerDescription> _server;
wxTextCtrl* _host;
wxSpinCtrl* _threads;
};