Fix double call of TransfertDataToWindows in 4 dialogs. make change working on KDE.

This commit is contained in:
jean-pierre charras 2016-07-04 17:47:48 +02:00
parent ed7c57f19f
commit e6e77de4fa
4 changed files with 4 additions and 4 deletions

View File

@ -95,7 +95,7 @@ private:
void OnInitDlg( wxInitDialogEvent& event )
{
// Call the default wxDialog handler of a wxInitDialogEvent
event.Skip();
TransferDataToWindow();
// Now all widgets have the size fixed, call FinishDialogSettings
FinishDialogSettings();

View File

@ -79,7 +79,7 @@ private:
void OnInitDlg( wxInitDialogEvent& event )
{
// Call the default wxDialog handler of a wxInitDialogEvent
event.Skip();
TransferDataToWindow();
// Now all widgets have the size fixed, call FinishDialogSettings
FinishDialogSettings();

View File

@ -74,7 +74,7 @@ private:
void OnInitDlg( wxInitDialogEvent& event )
{
// Call the default wxDialog handler of a wxInitDialogEvent
event.Skip();
TransferDataToWindow();
// Now all widgets have the size fixed, call FinishDialogSettings
FinishDialogSettings();

View File

@ -97,7 +97,7 @@ private:
void OnInitDlg( wxInitDialogEvent& event )
{
// Call the default wxDialog handler of a wxInitDialogEvent
event.Skip();
TransferDataToWindow();
// Now all widgets have the size fixed, call FinishDialogSettings
FinishDialogSettings();