-rw-r--r-- | core/pim/today/plugins/datebook/datebookpluginwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/today/plugins/datebook/datebookpluginwidget.cpp b/core/pim/today/plugins/datebook/datebookpluginwidget.cpp index eb6d47a..781cfcf 100644 --- a/core/pim/today/plugins/datebook/datebookpluginwidget.cpp +++ b/core/pim/today/plugins/datebook/datebookpluginwidget.cpp | |||
@@ -111,17 +111,17 @@ void DatebookPluginWidget::getDates() { | |||
111 | && ( QTime::currentTime() < (*it).event().start().time() ) ) ) | 111 | && ( QTime::currentTime() < (*it).event().start().time() ) ) ) |
112 | // Show repeated event for next days. | 112 | // Show repeated event for next days. |
113 | || ( ( (*it).event().repeatType() != Event::NoRepeat ) | 113 | || ( ( (*it).event().repeatType() != Event::NoRepeat ) |
114 | && ( date.dayOfWeek() != (*it).date().dayOfWeek() ) ) | 114 | && ( date.dayOfWeek() != (*it).date().dayOfWeek() ) ) |
115 | ) | 115 | ) |
116 | { | 116 | { |
117 | count++; | 117 | count++; |
118 | // show only later appointments | 118 | // show only later appointments |
119 | DateBookEvent *l = new DateBookEvent( *it, this, m_show_location, m_show_notes, m_timeExtraLine ); | 119 | DateBookEvent *l = new DateBookEvent( *it, this, m_show_location, m_show_notes, m_timeExtraLine, m_maxCharClip ); |
120 | m_eventsList.append( l ); | 120 | m_eventsList.append( l ); |
121 | l->show(); | 121 | l->show(); |
122 | QObject::connect ( l, SIGNAL( editEvent(const Event&) ), l, SLOT( editEventSlot(const Event&) ) ); | 122 | QObject::connect ( l, SIGNAL( editEvent(const Event&) ), l, SLOT( editEventSlot(const Event&) ) ); |
123 | } | 123 | } |
124 | } | 124 | } |
125 | } | 125 | } |
126 | } | 126 | } |
127 | if ( m_onlyLater && count == 0 ) { | 127 | if ( m_onlyLater && count == 0 ) { |