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:
Dimitri Schoolwerth
2015-04-23 15:49:01 +04:00
parent 2d3f617b34
commit 8f8d58d193
1697 changed files with 3543 additions and 3543 deletions

View File

@@ -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