Tiny style fix in wxProgressDialog::GetHandle()

No real changes, just remove the trailing spaces and add post-#endif
comment for consistency.
This commit is contained in:
Vadim Zeitlin 2017-10-28 01:28:39 +02:00
parent 25d9faca17
commit 3f6e557f18

View File

@ -571,15 +571,16 @@ void wxProgressDialog::Resume()
#endif // wxHAS_MSW_TASKDIALOG
}
WXWidget wxProgressDialog::GetHandle() const
{
WXWidget wxProgressDialog::GetHandle() const
{
#ifdef wxHAS_MSW_TASKDIALOG
if ( HasNativeTaskDialog() )
{
wxCriticalSectionLocker locker(m_sharedData->m_cs);
return m_sharedData->m_hwnd;
}
#endif
#endif // wxHAS_MSW_TASKDIALOG
return wxGenericProgressDialog::GetHandle();
}