summaryrefslogtreecommitdiff
path: root/src/wx/server_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-16 20:14:33 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-16 21:51:15 +0100
commit74a8d26a8907c6e00e29f054178a3425f44e38ed (patch)
treefd700ba8471edcbd6e9e6481a3ca1397397a2d5d /src/wx/server_dialog.h
parentc2909b61d360510241ef37abd255269bd8aa9526 (diff)
Very basics of colour conversion configuration.
Diffstat (limited to 'src/wx/server_dialog.h')
-rw-r--r--src/wx/server_dialog.h6
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;
};