-rw-r--r-- | core/pim/today/plugins/addressbook/addresspluginwidget.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp index 5662af2..75bf474 100644 --- a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp +++ b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp | |||
@@ -116,6 +116,11 @@ void AddressBookPluginWidget::getAddress() { | |||
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 | |||
120 | // Sort filtered results | ||
121 | m_list = m_contactdb->sorted( m_list, true, Opie::OPimContactAccess::SortBirthday, | ||
122 | Opie::OPimContactAccess::FilterOff, NULL ); | ||
123 | |||
119 | 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 ) { |
120 | if ( ammount++ < m_maxLinesTask ){ | 125 | if ( ammount++ < m_maxLinesTask ){ |
121 | // Now we want to calculate how many days | 126 | // Now we want to calculate how many days |
@@ -168,6 +173,11 @@ void AddressBookPluginWidget::getAddress() { | |||
168 | + QObject::tr( "Next anniversaries in <b> %1 </b> days:" ) | 173 | + QObject::tr( "Next anniversaries in <b> %1 </b> days:" ) |
169 | .arg( m_daysLookAhead ) | 174 | .arg( m_daysLookAhead ) |
170 | + "</font> <br>"; | 175 | + "</font> <br>"; |
176 | |||
177 | // Sort filtered results | ||
178 | m_list = m_contactdb->sorted( m_list, true, Opie::OPimContactAccess::SortAnniversary, | ||
179 | Opie::OPimContactAccess::FilterOff, NULL ); | ||
180 | |||
171 | 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 ) { |
172 | if ( ammount++ < m_maxLinesTask ){ | 182 | if ( ammount++ < m_maxLinesTask ){ |
173 | // Now we want to calculate how many days until anniversary. | 183 | // Now we want to calculate how many days until anniversary. |