Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorDan Williams <dcbw@localhost.localdomain>2006-07-24 15:57:21 (GMT)
committer Dan Williams <dcbw@localhost.localdomain>2006-07-24 15:57:21 (GMT)
commitba6c75725d633605195515b84b8056d2fb27d735 (patch)
tree44d228d5f03da12d851a9497e2865e570ffcb48f /shell
parenta216a19f3f62eba01de33db81143c2d6e54f568e (diff)
Fix occurances of get_nick_name() -> get_name()
Diffstat (limited to 'shell')
-rw-r--r--shell/PresenceView.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/PresenceView.py b/shell/PresenceView.py
index 4b471bc..4662e65 100644
--- a/shell/PresenceView.py
+++ b/shell/PresenceView.py
@@ -136,7 +136,7 @@ class PresenceView(gtk.VBox):
aniter = self._buddy_store.append(None)
self._buddy_store.set(aniter,
- self._MODEL_COL_NICK, buddy.get_nick_name(),
+ self._MODEL_COL_NICK, buddy.get_name(),
self._MODEL_COL_BUDDY, buddy,
self._MODEL_COL_VISIBLE, self._is_buddy_visible(buddy))
buddy.connect('icon-changed', self.__buddy_icon_changed_cb)