summaryrefslogtreecommitdiff
path: root/core/pim
Unidiff
Diffstat (limited to 'core/pim') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
index d74df51..7346cae 100644
--- a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
@@ -115,13 +115,13 @@ void AddressBookPluginWidget::getAddress() {
115 output = "<font color=" + m_headlineColor + ">" 115 output = "<font color=" + m_headlineColor + ">"
116 + QObject::tr( "Next birthdays in <b> %1 </b> days:" ) 116 + QObject::tr( "Next birthdays in <b> %1 </b> days:" )
117 .arg( m_daysLookAhead ) 117 .arg( m_daysLookAhead )
118 + "</font> <br>"; 118 + "</font> <br>";
119 119
120 // Sort filtered results 120 // Sort filtered results
121 m_list = m_contactdb->sorted( m_list, true, Opie::OPimContactAccess::SortBirthday, 121 m_list = m_contactdb->sorted( m_list, true, Opie::OPimContactAccess::SortBirthdayWithoutYear,
122 Opie::OPimContactAccess::FilterOff, 0 ); 122 Opie::OPimContactAccess::FilterOff, 0 );
123 123
124 for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) { 124 for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) {
125 if ( ammount++ < m_maxLinesTask ){ 125 if ( ammount++ < m_maxLinesTask ){
126 // Now we want to calculate how many days 126 // Now we want to calculate how many days
127 //until birthday. We have to set 127 //until birthday. We have to set
@@ -172,13 +172,13 @@ void AddressBookPluginWidget::getAddress() {
172 output += "<font color=" + m_headlineColor + ">" 172 output += "<font color=" + m_headlineColor + ">"
173 + QObject::tr( "Next anniversaries in <b> %1 </b> days:" ) 173 + QObject::tr( "Next anniversaries in <b> %1 </b> days:" )
174 .arg( m_daysLookAhead ) 174 .arg( m_daysLookAhead )
175 + "</font> <br>"; 175 + "</font> <br>";
176 176
177 // Sort filtered results 177 // Sort filtered results
178 m_list = m_contactdb->sorted( m_list, true, Opie::OPimContactAccess::SortAnniversary, 178 m_list = m_contactdb->sorted( m_list, true, Opie::OPimContactAccess::SortAnniversaryWithoutYear,
179 Opie::OPimContactAccess::FilterOff, 0 ); 179 Opie::OPimContactAccess::FilterOff, 0 );
180 180
181 for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) { 181 for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) {
182 if ( ammount++ < m_maxLinesTask ){ 182 if ( ammount++ < m_maxLinesTask ){
183 // Now we want to calculate how many days until anniversary. 183 // Now we want to calculate how many days until anniversary.
184 // We have to set the correct year to calculate the day diff... 184 // We have to set the correct year to calculate the day diff...