author | mickeyl <mickeyl> | 2003-04-14 15:22:47 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-04-14 15:22:47 (UTC) |
commit | 1b4605559dfb77f2bb69903d7e6a982c764aadbe (patch) (unidiff) | |
tree | 94b09a55770648819a6c1ec23eb4b5ab69bab344 | |
parent | 67b910552a63323139d35c2b281d29b670749377 (diff) | |
download | opie-1b4605559dfb77f2bb69903d7e6a982c764aadbe.zip opie-1b4605559dfb77f2bb69903d7e6a982c764aadbe.tar.gz opie-1b4605559dfb77f2bb69903d7e6a982c764aadbe.tar.bz2 |
Sometimes I feel like a parrot... but you asked for it :-D
* Default arguments in the declaration: good
* Default arguments in the definition: bad
-rw-r--r-- | core/pim/datebook/datebookday.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/datebook/datebookday.cpp b/core/pim/datebook/datebookday.cpp index e212807..8232a51 100644 --- a/core/pim/datebook/datebookday.cpp +++ b/core/pim/datebook/datebookday.cpp | |||
@@ -195,7 +195,7 @@ void DateBookDayView::contentsMouseReleaseEvent( QMouseEvent *e ) | |||
195 | 195 | ||
196 | //=========================================================================== | 196 | //=========================================================================== |
197 | 197 | ||
198 | DateBookDayViewQuickLineEdit::DateBookDayViewQuickLineEdit(const QDateTime &start, const QDateTime &end,QWidget * parent, const char *name=0) : QLineEdit(parent,name) | 198 | DateBookDayViewQuickLineEdit::DateBookDayViewQuickLineEdit(const QDateTime &start, const QDateTime &end,QWidget * parent, const char *name) : QLineEdit(parent,name) |
199 | { | 199 | { |
200 | active=1; | 200 | active=1; |
201 | quickEvent.setStart(start); | 201 | quickEvent.setStart(start); |