Provide a task-dialog based wxMSW wxMessageDialog implementation.
Use the task dialog instead of the legacy message box for wxMessageDialog implementation under wxMSW on recent (Vista and later) Windows versions. As part of this change, remove wxMessageDialogWithCustomLabels and integrate its functionality in wxMessageDialogBase itself as it's now used by all platforms. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65348 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -44,7 +44,7 @@ wxMessageDialog::wxMessageDialog(wxWindow *parent,
|
||||
const wxString& caption,
|
||||
long style,
|
||||
const wxPoint& WXUNUSED(pos))
|
||||
: wxMessageDialogWithCustomLabels
|
||||
: wxMessageDialogBase
|
||||
(
|
||||
GetParentForModalDialog(parent, style),
|
||||
message,
|
||||
@@ -79,7 +79,7 @@ void wxMessageDialog::DoSetCustomLabel(wxString& var, const ButtonLabel& label)
|
||||
int stockId = label.GetStockId();
|
||||
if ( stockId == wxID_NONE )
|
||||
{
|
||||
wxMessageDialogWithCustomLabels::DoSetCustomLabel(var, label);
|
||||
wxMessageDialogBase::DoSetCustomLabel(var, label);
|
||||
var = wxConvertMnemonicsToGTK(var);
|
||||
}
|
||||
else // stock label
|
||||
|
Reference in New Issue
Block a user