-rw-r--r-- | core/pim/today/plugins/datebook/datebookpluginconfig.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/pim/today/plugins/datebook/datebookpluginconfig.cpp b/core/pim/today/plugins/datebook/datebookpluginconfig.cpp index 51be40e..0f60c28 100644 --- a/core/pim/today/plugins/datebook/datebookpluginconfig.cpp +++ b/core/pim/today/plugins/datebook/datebookpluginconfig.cpp @@ -9,12 +9,13 @@ #include <qlabel.h> #include <qhbox.h> #include <qvbox.h> -DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name) +DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name) : ConfigWidget( parent, name ) { QVBoxLayout * layout = new QVBoxLayout( this ); + layout->setMargin( 20 ); QHBox *box1 = new QHBox( this ); QLabel* TextLabel4 = new QLabel( box1, "TextLabel4" ); TextLabel4->setText( tr( "Show location" ) ); @@ -26,10 +27,9 @@ DatebookPluginConfig::DatebookPluginConfig( QWidget* parent, const char* name) CheckBox2 = new QCheckBox( box2, "CheckBox2" ); QHBox *box3 = new QHBox( this ); QLabel* TextLabel6 = new QLabel( box3, "All Day"); - TextLabel6->setText( tr( "Show only later\n" - "appointments") ); + TextLabel6->setText( tr( "Show only later\n appointments") ); CheckBox3 = new QCheckBox ( box3, "CheckBox3" ); QHBox *box4 = new QHBox( this ); QLabel *TextLabel3 = new QLabel( box4, "TextLabel3" ); |