summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2009-09-15 10:24:08 (GMT)
committerKevin Smith <git@kismith.co.uk>2009-09-15 10:24:08 (GMT)
commited5963e48eeb141c3eed51d6c4729be7e61bfa19 (patch)
treebbe87c8042150e129c02acdb5314ce9d1340b9df /Swift
parente2045ebccf86d16eeb9dbf710c64dd2b4a4d6f94 (diff)
downloadswift-ed5963e48eeb141c3eed51d6c4729be7e61bfa19.zip
swift-ed5963e48eeb141c3eed51d6c4729be7e61bfa19.tar.bz2
Immediately update the Qt roster when items change.
Diffstat (limited to 'Swift')
-rw-r--r--Swift/QtUI/Roster/QtTreeWidgetItem.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Swift/QtUI/Roster/QtTreeWidgetItem.cpp b/Swift/QtUI/Roster/QtTreeWidgetItem.cpp
index c9693eb..00a84f3 100644
--- a/Swift/QtUI/Roster/QtTreeWidgetItem.cpp
+++ b/Swift/QtUI/Roster/QtTreeWidgetItem.cpp
@@ -13,14 +13,17 @@ QtTreeWidgetItem::QtTreeWidgetItem(QtTreeWidgetItem* parentItem) : QObject(), te
void QtTreeWidgetItem::setText(const String& text) {
displayName_ = P2QSTRING(text);
+ emit changed(this);
}
void QtTreeWidgetItem::setStatusText(const String& text) {
statusText_ = P2QSTRING(text);
+ emit changed(this);
}
void QtTreeWidgetItem::setAvatarPath(const String& path) {
avatar_ = QIcon(P2QSTRING(path));
+ emit changed(this);
}
void QtTreeWidgetItem::setStatusShow(StatusShow::Type show) {
@@ -35,6 +38,7 @@ void QtTreeWidgetItem::setStatusShow(StatusShow::Type show) {
case StatusShow::None: color = 0x7F7F7F;break;
}
setTextColor(color);
+ emit changed(this);
}
void QtTreeWidgetItem::setTextColor(unsigned long color) {