forked from Lainports/freebsd-ports
KickPIM is a panel applet for quickly editing and accessing the KDE addressbook or sending emails to your contacts. It also shows a list of upcoming birthdays and waiting emails of multiple email-accounts. PR: 60696 Submitted by: Markus Brueffer <brueffer@phoenix-systems.de>
11 lines
447 B
C++
11 lines
447 B
C++
--- src/mailing/kickpimmailmonitor.cpp.orig Sun Nov 23 14:12:12 2003
|
|
+++ src/mailing/kickpimmailmonitor.cpp Mon Dec 29 16:07:13 2003
|
|
@@ -226,7 +226,7 @@
|
|
case NewMail:
|
|
case NoMail:
|
|
case OldMail:
|
|
- text = (m_curCount<0 ? "-" : QString::number( m_curCount ) );
|
|
+ text = (m_curCount<0 ? QString("-") : QString::number( m_curCount ) );
|
|
break;
|
|
case NoConn:
|
|
text="...";
|