Fix return type in KIDIALOG
It was returned as a bool for some reason...
(Cherry-picked from 1f8611f198
)
This commit is contained in:
parent
2bcb04a3b1
commit
9f17d91b32
|
@ -89,7 +89,7 @@ bool KIDIALOG::Show( bool aShow )
|
||||||
return it->second;
|
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
|
// Has the user asked not to show the dialog again and it was confirmed
|
||||||
if( IsCheckBoxChecked() && ret != wxID_CANCEL )
|
if( IsCheckBoxChecked() && ret != wxID_CANCEL )
|
||||||
|
|
Loading…
Reference in New Issue