summaryrefslogtreecommitdiff
path: root/src/wx/server_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-09-17 22:50:47 +0100
committerCarl Hetherington <cth@carlh.net>2012-09-17 22:50:47 +0100
commit1e8f1be709e8a3fa58f1147db2e58a39396313d8 (patch)
tree1f86e375afbc1ec2a7e81ad48594bef7542bf71d /src/wx/server_dialog.h
parentd7135bda7b1db2ee2728c90ff4570c350834338f (diff)
Move server code into library; Server -> ServerDescription.
Diffstat (limited to 'src/wx/server_dialog.h')
-rw-r--r--src/wx/server_dialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/server_dialog.h b/src/wx/server_dialog.h
index 05630c377..0912fd60f 100644
--- a/src/wx/server_dialog.h
+++ b/src/wx/server_dialog.h
@@ -20,20 +20,20 @@
#include <wx/wx.h>
#include <wx/spinctrl.h>
-class Server;
+class ServerDescription;
class ServerDialog : public wxDialog
{
public:
- ServerDialog (wxWindow *, Server *);
+ ServerDialog (wxWindow *, ServerDescription *);
- Server* server () const;
+ ServerDescription* server () const;
private:
void host_changed (wxCommandEvent &);
void threads_changed (wxCommandEvent &);
- Server* _server;
+ ServerDescription* _server;
wxTextCtrl* _host;
wxSpinCtrl* _threads;
};