Fix return type in KIDIALOG

It was returned as a bool for some reason...
This commit is contained in:
Ian McInerney 2020-01-15 18:29:15 +00:00
parent a80b2b7e39
commit 415aaabc29
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ bool KIDIALOG::Show( bool aShow )
return it->second;
}
bool ret = wxRichMessageDialog::Show( aShow );
int ret = wxRichMessageDialog::Show( aShow );
// Has the user asked not to show the dialog again and it was confirmed
if( IsCheckBoxChecked() && ret != wxID_CANCEL )