summaryrefslogtreecommitdiff
path: root/core/pim/datebook/dateentryimpl.cpp
Unidiff
Diffstat (limited to 'core/pim/datebook/dateentryimpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/dateentryimpl.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/pim/datebook/dateentryimpl.cpp b/core/pim/datebook/dateentryimpl.cpp
index 1122f79..b2e3e3a 100644
--- a/core/pim/datebook/dateentryimpl.cpp
+++ b/core/pim/datebook/dateentryimpl.cpp
@@ -41,6 +41,8 @@
41 41
42#include <stdlib.h> 42#include <stdlib.h>
43 43
44#include <stdiostream.h>
45
44/* 46/*
45 * Constructs a DateEntry which is a child of 'parent', with the 47 * Constructs a DateEntry which is a child of 'parent', with the
46 * name 'name' and widget flags set to 'f' 48 * name 'name' and widget flags set to 'f'
@@ -58,6 +60,7 @@ DateEntry::DateEntry( bool startOnMonday, const QDateTime &start,
58{ 60{
59 init(); 61 init();
60 setDates(start,end); 62 setDates(start,end);
63 setFocusProxy(comboDescription);
61} 64}
62 65
63static void addOrPick( QComboBox* combo, const QString& t ) 66static void addOrPick( QComboBox* combo, const QString& t )
@@ -176,6 +179,7 @@ void DateEntry::init()
176DateEntry::~DateEntry() 179DateEntry::~DateEntry()
177{ 180{
178 // no need to delete child widgets, Qt does it all for us 181 // no need to delete child widgets, Qt does it all for us
182 //cout << "Del: " << comboStart->currentText() << endl;
179} 183}
180 184
181/* 185/*
@@ -270,6 +274,7 @@ void DateEntry::startTimeChanged( int index )
270{ 274{
271 startTime = parseTime(comboStart->text(index),ampm); 275 startTime = parseTime(comboStart->text(index),ampm);
272 changeEndCombo( index ); 276 changeEndCombo( index );
277 //cout << "Start: " << comboStart->currentText() << endl;
273} 278}
274/* 279/*
275 * public slot 280 * public slot
@@ -382,6 +387,9 @@ Event DateEntry::event()
382 if ( rp.type != Event::NoRepeat ) 387 if ( rp.type != Event::NoRepeat )
383 ev.setRepeat( TRUE, rp ); 388 ev.setRepeat( TRUE, rp );
384 ev.setNotes( editNote->text() ); 389 ev.setNotes( editNote->text() );
390
391 //cout << "Start: " << comboStart->currentText() << endl;
392
385 return ev; 393 return ev;
386} 394}
387 395