Added stubs for (DeviceToLogical|LogicalToDevice)(X|Y)Rel
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22366 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -268,6 +268,16 @@ int wxDCBase::DeviceToLogicalY(int y) const
|
|||||||
return y;
|
return y;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int wxDCBase::DeviceToLogicalXRel(int x) const
|
||||||
|
{
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
int wxDCBase::DeviceToLogicalYRel(int y) const
|
||||||
|
{
|
||||||
|
return y;
|
||||||
|
}
|
||||||
|
|
||||||
int wxDCBase::LogicalToDeviceX(int x) const
|
int wxDCBase::LogicalToDeviceX(int x) const
|
||||||
{
|
{
|
||||||
return x;
|
return x;
|
||||||
@@ -278,6 +288,16 @@ int wxDCBase::LogicalToDeviceY(int y) const
|
|||||||
return y;
|
return y;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int wxDCBase::LogicalToDeviceXRel(int x) const
|
||||||
|
{
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
int wxDCBase::LogicalToDeviceYRel(int y) const
|
||||||
|
{
|
||||||
|
return y;
|
||||||
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
// cut here, the rest is stubs
|
// cut here, the rest is stubs
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
Reference in New Issue
Block a user