Allow NULL width and/or height pointer parameters in wxQT, thanks @seandepagnier
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77915 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -82,14 +82,14 @@ bool wxQtDCImpl::CanGetTextExtent() const
|
||||
|
||||
void wxQtDCImpl::DoGetSize(int *width, int *height) const
|
||||
{
|
||||
*width = m_qtPainter->device()->width();
|
||||
*height = m_qtPainter->device()->height();
|
||||
if (width) *width = m_qtPainter->device()->width();
|
||||
if (height) *height = m_qtPainter->device()->height();
|
||||
}
|
||||
|
||||
void wxQtDCImpl::DoGetSizeMM(int* width, int* height) const
|
||||
{
|
||||
*width = m_qtPainter->device()->widthMM();
|
||||
*height = m_qtPainter->device()->heightMM();
|
||||
if (width) *width = m_qtPainter->device()->widthMM();
|
||||
if (height) *height = m_qtPainter->device()->heightMM();
|
||||
}
|
||||
|
||||
int wxQtDCImpl::GetDepth() const
|
||||
|
||||
Reference in New Issue
Block a user