diff options
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; }; |
