Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-05-14 01:11:19 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-05-14 01:11:19 (GMT)
commitde1796605f42db360a4f420e4701e8c563ec4187 (patch)
tree7d7dab2224359b035f83a90db242aca000e8ac39 /services
parent077b3e3391267215d7c9669bf093418b4b1585d4 (diff)
Fix member name collision with dbus object superclass
Diffstat (limited to 'services')
-rw-r--r--services/presence/activity.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/services/presence/activity.py b/services/presence/activity.py
index d955c71..b93f4cd 100644
--- a/services/presence/activity.py
+++ b/services/presence/activity.py
@@ -128,7 +128,7 @@ class Activity(ExportedGObject):
if pspec.name == _PROP_ID:
return self._id
elif pspec.name == _PROP_NAME:
- return self._name
+ return self._actname
elif pspec.name == _PROP_COLOR:
return self._color
elif pspec.name == _PROP_TYPE:
@@ -155,7 +155,7 @@ class Activity(ExportedGObject):
raise RuntimeError("activity ID is already set")
self._id = value
elif pspec.name == _PROP_NAME:
- self._name = value
+ self._actname = value
elif pspec.name == _PROP_COLOR:
self._color = value
elif pspec.name == _PROP_TYPE:
@@ -188,7 +188,7 @@ class Activity(ExportedGObject):
"""
try:
old_valid = self._valid
- if self._color and self._name and self._id and self._type:
+ if self._color and self._actname and self._id and self._type:
self._valid = True
else:
self._valid = False
@@ -465,7 +465,7 @@ class Activity(ExportedGObject):
"""
props = {}
- props['name'] = self._name
+ props['name'] = self._actname
props['color'] = self._color
props['type'] = self._type
@@ -490,8 +490,8 @@ class Activity(ExportedGObject):
(rprops, cprops) = self._split_properties(properties)
if _PROP_NAME in rprops.keys():
name = rprops[_PROP_NAME]
- if name != self._name:
- self._name = name
+ if name != self._actname:
+ self._actname = name
changed = True
if _PROP_COLOR in rprops.keys():