summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
Unidiff
Diffstat (limited to 'core/pim/today/plugins/addressbook/addresspluginwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginwidget.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
index 0d4cec8..c81beee 100644
--- a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
@@ -68,12 +68,13 @@ void AddressBookPluginWidget::refresh( const OContactAccess* )
68void AddressBookPluginWidget::readConfig() { 68void AddressBookPluginWidget::readConfig() {
69 Config cfg( "todayaddressplugin" ); 69 Config cfg( "todayaddressplugin" );
70 cfg.setGroup( "config" ); 70 cfg.setGroup( "config" );
71 m_maxLinesTask = cfg.readNumEntry( "maxlinestask", 5 ); 71 m_maxLinesTask = cfg.readNumEntry( "maxlinestask", 5 );
72 m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 ); 72 m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 );
73 m_daysLookAhead = cfg.readNumEntry( "dayslookahead", 14 ); 73 m_daysLookAhead = cfg.readNumEntry( "dayslookahead", 14 );
74 m_entryColor = cfg.readEntry("entrycolor", Qt::red.name() );
74} 75}
75 76
76 77
77/** 78/**
78 * Get the addresss 79 * Get the addresss
79 */ 80 */
@@ -112,13 +113,13 @@ void AddressBookPluginWidget::getAddress() {
112 // the correct year to calculate the day diff... 113 // the correct year to calculate the day diff...
113 QDate destdate = (*m_it).birthday(); 114 QDate destdate = (*m_it).birthday();
114 destdate.setYMD( QDate::currentDate().year(), destdate.month(), destdate.day() ); 115 destdate.setYMD( QDate::currentDate().year(), destdate.month(), destdate.day() );
115 if ( QDate::currentDate().daysTo(destdate) < 0 ) 116 if ( QDate::currentDate().daysTo(destdate) < 0 )
116 destdate.setYMD( QDate::currentDate().year()+1, destdate.month(), destdate.day() ); 117 destdate.setYMD( QDate::currentDate().year()+1, destdate.month(), destdate.day() );
117 118
118 output += "<font color=#e00000><b>-" + (*m_it).fullName() 119 output += "<font color=" + m_entryColor + "><b>-" + (*m_it).fullName()
119 + " (" 120 + " ("
120 + QString::number(QDate::currentDate().daysTo(destdate)) 121 + QString::number(QDate::currentDate().daysTo(destdate))
121 + " Days) </b></font><br>"; 122 + " Days) </b></font><br>";
122 } 123 }
123 } 124 }
124 } else { 125 } else {