projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
don't close UDP socket if it receives an empty datagram (patch 1885472)
[wxWidgets.git]
/
src
/
generic
/
regiong.cpp
diff --git
a/src/generic/regiong.cpp
b/src/generic/regiong.cpp
index 845df56ce07041a924712cbe9f8a97a8a38fba28..9511c83df2fb8c8dca41a8c52895676503dbc76e 100644
(file)
--- a/
src/generic/regiong.cpp
+++ b/
src/generic/regiong.cpp
@@
-176,12
+176,12
@@
protected:
// wxRegionRefData
// ========================================================================
// wxRegionRefData
// ========================================================================
-class wxRegionRefData : public wx
Object
RefData,
+class wxRegionRefData : public wx
GDI
RefData,
public REGION
{
public:
wxRegionRefData()
public REGION
{
public:
wxRegionRefData()
- : wx
Object
RefData(),
+ : wx
GDI
RefData(),
REGION()
{
size = 1;
REGION()
{
size = 1;
@@
-194,7
+194,7
@@
public:
}
wxRegionRefData(const wxPoint& topLeft, const wxPoint& bottomRight)
}
wxRegionRefData(const wxPoint& topLeft, const wxPoint& bottomRight)
- : wx
Object
RefData(),
+ : wx
GDI
RefData(),
REGION()
{
rects = (BOX*)malloc(sizeof(BOX));
REGION()
{
rects = (BOX*)malloc(sizeof(BOX));
@@
-208,7
+208,7
@@
public:
}
wxRegionRefData(const wxRect& rect)
}
wxRegionRefData(const wxRect& rect)
- : wx
Object
RefData(),
+ : wx
GDI
RefData(),
REGION(rect)
{
rects = (BOX*)malloc(sizeof(BOX));
REGION(rect)
{
rects = (BOX*)malloc(sizeof(BOX));
@@
-216,7
+216,7
@@
public:
}
wxRegionRefData(const wxRegionRefData& refData)
}
wxRegionRefData(const wxRegionRefData& refData)
- : wx
Object
RefData(),
+ : wx
GDI
RefData(),
REGION()
{
size = refData.size;
REGION()
{
size = refData.size;
@@
-276,12
+276,12
@@
void wxRegionGeneric::Clear()
UnRef();
}
UnRef();
}
-wx
ObjectRefData *wxRegionGeneric::Create
RefData() const
+wx
GDIRefData *wxRegionGeneric::CreateGDI
RefData() const
{
return new wxRegionRefData;
}
{
return new wxRegionRefData;
}
-wx
ObjectRefData *wxRegionGeneric::CloneRefData(const wxObject
RefData *data) const
+wx
GDIRefData *wxRegionGeneric::CloneGDIRefData(const wxGDI
RefData *data) const
{
return new wxRegionRefData(*(wxRegionRefData *)data);
}
{
return new wxRegionRefData(*(wxRegionRefData *)data);
}