Gustavo Pichorim Boiko has proposed merging lp:~boiko/libindicate-qt/libindicate-qt-fix_count_property into lp:libindicate-qt.
Requested reviews: Charles Kerr (charlesk) For more details, see: https://code.launchpad.net/~boiko/libindicate-qt/libindicate-qt-fix_count_property/+merge/121913 The count property expects a string, not an int value, so wrap it in a QString (fix created by Renato Araujo Oliveira Filho). -- https://code.launchpad.net/~boiko/libindicate-qt/libindicate-qt-fix_count_property/+merge/121913 Your team ayatana-commits is subscribed to branch lp:libindicate-qt.
=== modified file 'src/qindicateindicator.cpp' --- src/qindicateindicator.cpp 2010-02-10 16:40:27 +0000 +++ src/qindicateindicator.cpp 2012-08-29 17:49:19 +0000 @@ -210,7 +210,7 @@ void Indicator::setCountProperty(int value) { - setIndicatorProperty(INDICATE_INDICATOR_MESSAGES_PROP_COUNT, value); + setIndicatorProperty(INDICATE_INDICATOR_MESSAGES_PROP_COUNT, (value == 0 ? "" : QString::number(value))); } void Indicator::setDrawAttentionProperty(bool value)
_______________________________________________ Mailing list: https://launchpad.net/~ayatana-commits Post to : ayatana-commits@lists.launchpad.net Unsubscribe : https://launchpad.net/~ayatana-commits More help : https://help.launchpad.net/ListHelp