Use wx-prefixed macros throughout the repository.
Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE occurrences to use the wx-prefixed version of the macros.
This commit is contained in:
@@ -64,7 +64,7 @@ protected:
|
||||
|
||||
private:
|
||||
void Init();
|
||||
DECLARE_ABSTRACT_CLASS(wxSockAddress)
|
||||
wxDECLARE_ABSTRACT_CLASS(wxSockAddress);
|
||||
};
|
||||
|
||||
// An IP address (either IPv4 or IPv6)
|
||||
@@ -113,7 +113,7 @@ private:
|
||||
virtual void DoInitImpl() = 0;
|
||||
|
||||
|
||||
DECLARE_ABSTRACT_CLASS(wxIPaddress)
|
||||
wxDECLARE_ABSTRACT_CLASS(wxIPaddress);
|
||||
};
|
||||
|
||||
// An IPv4 address
|
||||
@@ -145,7 +145,7 @@ public:
|
||||
private:
|
||||
virtual void DoInitImpl();
|
||||
|
||||
DECLARE_DYNAMIC_CLASS(wxIPV4address)
|
||||
wxDECLARE_DYNAMIC_CLASS(wxIPV4address);
|
||||
};
|
||||
|
||||
|
||||
@@ -176,7 +176,7 @@ public:
|
||||
private:
|
||||
virtual void DoInitImpl();
|
||||
|
||||
DECLARE_DYNAMIC_CLASS(wxIPV6address)
|
||||
wxDECLARE_DYNAMIC_CLASS(wxIPV6address);
|
||||
};
|
||||
|
||||
#endif // wxUSE_IPV6
|
||||
@@ -208,7 +208,7 @@ private:
|
||||
return const_cast<wxUNIXaddress *>(this)->GetUNIX();
|
||||
}
|
||||
|
||||
DECLARE_DYNAMIC_CLASS(wxUNIXaddress)
|
||||
wxDECLARE_DYNAMIC_CLASS(wxUNIXaddress);
|
||||
};
|
||||
|
||||
#endif // wxHAS_UNIX_DOMAIN_SOCKETS
|
||||
|
Reference in New Issue
Block a user