Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
frmContactEditor(*): Call Layout on szrGeneral after adding priorty control
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Wed, 6 Sep 2017 21:40:50 +0000 (22:40 +0100)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Wed, 6 Sep 2017 21:40:50 +0000 (22:40 +0100)
18 files changed:
source/contacteditor/frmContactEditorCalAdr.cpp
source/contacteditor/frmContactEditorCategory.cpp
source/contacteditor/frmContactEditorEmail.cpp
source/contacteditor/frmContactEditorGeoposition.cpp
source/contacteditor/frmContactEditorIM.cpp
source/contacteditor/frmContactEditorKey.cpp
source/contacteditor/frmContactEditorLanguages.cpp
source/contacteditor/frmContactEditorNickname.cpp
source/contacteditor/frmContactEditorNotes.cpp
source/contacteditor/frmContactEditorOrganisations.cpp
source/contacteditor/frmContactEditorPicture.cpp
source/contacteditor/frmContactEditorRelated.cpp
source/contacteditor/frmContactEditorRoles.cpp
source/contacteditor/frmContactEditorSound.cpp
source/contacteditor/frmContactEditorTelephone.cpp
source/contacteditor/frmContactEditorTimezones.cpp
source/contacteditor/frmContactEditorTitles.cpp
source/contacteditor/frmContactEditorWebsites.cpp

index 176bb00..c900b7c 100644 (file)
@@ -30,6 +30,7 @@ frmContactEditorCalAdrADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
        cmbType->Append(wxT(""));
        cmbType->Append(_("Home"));
index 6df0ef3..53bcbd0 100644 (file)
@@ -30,6 +30,7 @@ frmContactEditorCategoryADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
 
        cmbType->Append(wxT(""));
        cmbType->Append(_("Home"));
index 6ee0219..fa3bb3e 100644 (file)
@@ -30,6 +30,7 @@ frmContactEditorEmailADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
 }
 
index e8c89eb..bcc3e87 100644 (file)
@@ -30,6 +30,7 @@ frmContactEditorGeopositionADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
 }
 
index 87b8cb8..cfee2d3 100644 (file)
@@ -32,6 +32,7 @@ frmContactEditorIMADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
        // Add some values to the drop down box for IM types.
        
index 78ee77a..01de318 100644 (file)
@@ -31,6 +31,7 @@ frmContactEditorKeyADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
        // Setup the control boxes and hide tabs unless they are
        // needed.
index c40c654..64305ae 100644 (file)
@@ -30,6 +30,7 @@ frmContactEditorLanguagesADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
 }
 
index 68e64ef..6af836b 100644 (file)
@@ -37,6 +37,7 @@ frmContactEditorNicknameADT( parent )
        
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
 }
 
index 1bc24fc..ee8693c 100644 (file)
@@ -28,6 +28,7 @@ frmContactEditorNotesADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabPriority);
        szrPriority->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrPriority->Layout();
        
        // Setup the language combo box.
        
index e8aeb69..2f67cb4 100644 (file)
@@ -30,6 +30,7 @@ frmContactEditorOrganisationsADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
 }
 
index e28b271..1600bb0 100644 (file)
@@ -39,6 +39,7 @@ frmContactEditorPictureADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
        cmbType->Append(wxT(""));
        cmbType->Append(_("Home"));
index 03a2e0b..17117ca 100644 (file)
@@ -31,6 +31,7 @@ frmContactEditorRelatedADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
        // Setup the list of types for the related drop down box.
        
index b36bda1..064eb79 100644 (file)
@@ -33,6 +33,7 @@ frmContactEditorRolesADT( parent )
        
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
 }
 
index 276abe7..28f3aeb 100644 (file)
@@ -28,6 +28,7 @@ frmContactEditorSoundADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
        cmbType->Append(wxT(""));
        cmbType->Append(_("Home"));
index 0b609b2..68d6562 100644 (file)
@@ -30,6 +30,7 @@ frmContactEditorTelephoneADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
 }
 
index 7de1e7e..01cc6ad 100644 (file)
@@ -31,6 +31,7 @@ frmContactEditorTimezonesADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
 }
 
index edc602f..f1e4e24 100644 (file)
@@ -32,6 +32,8 @@ frmContactEditorTitlesADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
+
 }
 
 void frmContactEditorTitles::ProcessAction( wxCommandEvent& event )
index 5ce8097..5f85776 100644 (file)
@@ -32,6 +32,7 @@ frmContactEditorWebsitesADT( parent )
        EditorMode = FALSE;
        priorityCtrl = new XABPriorityCtrl(tabGeneral);
        szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5);
+       szrGeneral->Layout();
        
 }
 
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy