summaryrefslogtreecommitdiff
path: root/src/wx/server_dialog.h
diff options
context:
space:
mode:
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;
};