changed structs to classes. there should be no more structs now.
This commit is contained in:
parent
6697bd900e
commit
6611ea871e
|
@ -38,7 +38,8 @@ public:
|
||||||
typedef struct sockaddr Address;
|
typedef struct sockaddr Address;
|
||||||
typedef int AddressLength;
|
typedef int AddressLength;
|
||||||
typedef BOOL TCPNoDelayType;
|
typedef BOOL TCPNoDelayType;
|
||||||
struct PollEntry {
|
class PollEntry {
|
||||||
|
public:
|
||||||
Socket fd;
|
Socket fd;
|
||||||
short events;
|
short events;
|
||||||
short revents;
|
short revents;
|
||||||
|
|
|
@ -105,12 +105,12 @@ protected:
|
||||||
virtual long getEventMask(Window) const = 0;
|
virtual long getEventMask(Window) const = 0;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
struct CPropertyNotifyInfo {
|
class CPropertyNotifyInfo {
|
||||||
public:
|
public:
|
||||||
Window m_window;
|
Window m_window;
|
||||||
Atom m_property;
|
Atom m_property;
|
||||||
};
|
};
|
||||||
struct CClipboardRequest {
|
class CClipboardRequest {
|
||||||
public:
|
public:
|
||||||
CString m_data;
|
CString m_data;
|
||||||
UInt32 m_sent;
|
UInt32 m_sent;
|
||||||
|
|
Loading…
Reference in New Issue