-rw-r--r-- | core/pim/addressbook/contacteditor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp index 0c90510..66e94ef 100644 --- a/core/pim/addressbook/contacteditor.cpp +++ b/core/pim/addressbook/contacteditor.cpp @@ -266,3 +266,3 @@ void ContactEditor::init() { - QGridLayout *gl = new QGridLayout( container ); + QGridLayout *gl = new QGridLayout( container, 1, 1, 2, 3 ); gl->setResizeMode( QLayout::FreeResize ); @@ -329,3 +329,3 @@ void ContactEditor::init() { - gl = new QGridLayout( container, 5, 3, 0, 1 ); + gl = new QGridLayout( container, 5, 3, 2, 3 ); @@ -394,3 +394,3 @@ void ContactEditor::init() { - gl = new QGridLayout( container, 1, 2, 0, 1 ); + gl = new QGridLayout( container, 1, 2, 2, 3 ); @@ -425,3 +425,3 @@ void ContactEditor::init() { dlgName->setCaption( tr("Edit Name") ); - gl = new QGridLayout( dlgName, 4, 2, 0, 1 ); + gl = new QGridLayout( dlgName, 4, 2, 2, 3 ); |