mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Linux build fix, code cleanup, and compiler warning removal.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5840 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -16,7 +16,6 @@
|
||||
// http://code.google.com/p/dolphin-emu/
|
||||
|
||||
#include "ConfigDiag.h"
|
||||
#include "UDPWrapper.h"
|
||||
|
||||
#define _connect_macro_(b, f, c, s) (b)->Connect(wxID_ANY, (c), wxCommandEventHandler( f ), (wxObject*)0, (wxEvtHandler*)s)
|
||||
#define WXSTR_FROM_STR(s) (wxString::From8BitData((s).c_str()))
|
||||
|
@ -43,8 +43,7 @@
|
||||
#include "ControllerEmu.h"
|
||||
#include "InputConfig.h"
|
||||
#include "FileSearch.h"
|
||||
|
||||
class UDPWrapper;
|
||||
#include "UDPWrapper.h"
|
||||
|
||||
class PadSetting
|
||||
{
|
||||
@ -152,8 +151,9 @@ class UDPConfigButton : public wxButton
|
||||
{
|
||||
public:
|
||||
UDPWrapper * wrapper;
|
||||
UDPConfigButton( wxWindow* const parent, UDPWrapper * udp) : wrapper(udp),
|
||||
wxButton( parent, -1, wxT("Configure"), wxDefaultPosition )
|
||||
UDPConfigButton( wxWindow* const parent, UDPWrapper * udp) :
|
||||
wxButton( parent, -1, wxT("Configure"), wxDefaultPosition ),
|
||||
wrapper(udp)
|
||||
{}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user