summaryrefslogtreecommitdiff
authortux_mike <tux_mike>2002-03-28 23:35:14 (UTC)
committer tux_mike <tux_mike>2002-03-28 23:35:14 (UTC)
commit092eafd03031a770819a42a3dd31f7e197ce1974 (patch) (unidiff)
tree3a94e822f767ba780cbbf3b3d554342e8f6e0a10
parent6c6f578fa5ef1f83cf1ba4978015663360ac2e7e (diff)
downloadopie-092eafd03031a770819a42a3dd31f7e197ce1974.zip
opie-092eafd03031a770819a42a3dd31f7e197ce1974.tar.gz
opie-092eafd03031a770819a42a3dd31f7e197ce1974.tar.bz2
Made a minor spacing change, makes editing a little more comfortable
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/contacteditor.cpp8
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
@@ -265,5 +265,5 @@ void ContactEditor::init() {
265 svGeneral->addChild( container ); 265 svGeneral->addChild( container );
266 266
267 QGridLayout *gl = new QGridLayout( container ); 267 QGridLayout *gl = new QGridLayout( container, 1, 1, 2, 3 );
268 gl->setResizeMode( QLayout::FreeResize ); 268 gl->setResizeMode( QLayout::FreeResize );
269 269
@@ -328,5 +328,5 @@ void ContactEditor::init() {
328 svAddress->addChild( container ); 328 svAddress->addChild( container );
329 329
330 gl = new QGridLayout( container, 5, 3, 0, 1 ); 330 gl = new QGridLayout( container, 5, 3, 2, 3 );
331 331
332 cmbAddress = new QComboBox( FALSE, container ); 332 cmbAddress = new QComboBox( FALSE, container );
@@ -393,5 +393,5 @@ void ContactEditor::init() {
393 svDetails->addChild( container ); 393 svDetails->addChild( container );
394 394
395 gl = new QGridLayout( container, 1, 2, 0, 1 ); 395 gl = new QGridLayout( container, 1, 2, 2, 3 );
396 396
397 QStringList::ConstIterator it = slDynamicEntries->begin(); 397 QStringList::ConstIterator it = slDynamicEntries->begin();
@@ -424,5 +424,5 @@ void ContactEditor::init() {
424 dlgName = new QDialog( this, "Name Dialog", TRUE ); 424 dlgName = new QDialog( this, "Name Dialog", TRUE );
425 dlgName->setCaption( tr("Edit Name") ); 425 dlgName->setCaption( tr("Edit Name") );
426 gl = new QGridLayout( dlgName, 4, 2, 0, 1 ); 426 gl = new QGridLayout( dlgName, 4, 2, 2, 3 );
427 427
428 l = new QLabel( tr("First Name"), dlgName ); 428 l = new QLabel( tr("First Name"), dlgName );