diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-08-16 20:14:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-08-16 21:51:15 +0100 |
| commit | 74a8d26a8907c6e00e29f054178a3425f44e38ed (patch) | |
| tree | fd700ba8471edcbd6e9e6481a3ca1397397a2d5d /src/wx/server_dialog.h | |
| parent | c2909b61d360510241ef37abd255269bd8aa9526 (diff) | |
Very basics of colour conversion configuration.
Diffstat (limited to 'src/wx/server_dialog.h')
| -rw-r--r-- | src/wx/server_dialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/server_dialog.h b/src/wx/server_dialog.h index f42236771..3f1fa1f73 100644 --- a/src/wx/server_dialog.h +++ b/src/wx/server_dialog.h @@ -25,15 +25,15 @@ class ServerDescription; class ServerDialog : public wxDialog { public: - ServerDialog (wxWindow *, ServerDescription *); + ServerDialog (wxWindow *, boost::shared_ptr<ServerDescription>); - ServerDescription* server () const; + boost::shared_ptr<ServerDescription> server () const; private: void host_changed (); void threads_changed (); - ServerDescription* _server; + boost::shared_ptr<ServerDescription> _server; wxTextCtrl* _host; wxSpinCtrl* _threads; }; |
