Implement wxFontDialog::SetTitle() in wxMSW

Base class SetTitle() implementation didnd't work for this class as it
used the (invalid) HWND of not yet existing dialog, so add a hook
procedure for the common font dialog, similar to the existing one for
wxColourDialog, which allows us to set the dialog title when the dialog
is really created.

Closes https://github.com/wxWidgets/wxWidgets/pull/865

Closes #18177.
This commit is contained in:
Vitaly Stakhovsky
2018-07-30 15:04:36 +02:00
committed by Vadim Zeitlin
parent 4430ab8661
commit a02efd1fc7
3 changed files with 49 additions and 0 deletions

View File

@@ -124,6 +124,7 @@ wxMSW:
- Fix positioning windows at positions >= SHORT_MAX (Cătălin Răceanu).
- Honour alignment flags for multiline buttons using custom colours too.
- Support MSVC auto-linking when using monolithic build too (PB).
- Implement wxFontDialog::SetTitle() (Vitaly Stakhovsky).
- Fix build in ANSI (non-Unicode) mode.
wxOSX: