[context restoreGraphicsState];
}
+// wxDCBase functions
+int wxDCBase::DeviceToLogicalX(int x) const
+{
+ return x;
+}
+
+int wxDCBase::DeviceToLogicalY(int y) const
+{
+ return y;
+}
+
+int wxDCBase::LogicalToDeviceX(int x) const
+{
+ return x;
+}
+
+int wxDCBase::LogicalToDeviceY(int y) const
+{
+ return y;
+}
+
///////////////////////////////////////////////////////////////////////////
// cut here, the rest is stubs
///////////////////////////////////////////////////////////////////////////
}
};
-int wxDCBase::DeviceToLogicalX(int x) const
-{
- return x;
-}
-
-int wxDCBase::DeviceToLogicalY(int y) const
-{
- return y;
-}
-