Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2007-09-03 21:28:49 (GMT)
committer Simon Schampijer <simon@schampijer.de>2007-09-03 21:28:49 (GMT)
commit6c43e80c452d27947fb141477a02204c7f9bdf02 (patch)
tree81b139fd7a395d0be5fc9dfce01354b82524fd42 /shell
parent876eb3e29273b61d6ee849c8ba9023c5b2ef558e (diff)
Adopt naming to functionality changes
Diffstat (limited to 'shell')
-rw-r--r--shell/view/frame/Makefile.am2
-rw-r--r--shell/view/frame/activitiestray.py (renamed from shell/view/frame/ActivitiesBox.py)2
-rw-r--r--shell/view/frame/frame.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/shell/view/frame/Makefile.am b/shell/view/frame/Makefile.am
index 7be9986..02951b9 100644
--- a/shell/view/frame/Makefile.am
+++ b/shell/view/frame/Makefile.am
@@ -1,7 +1,7 @@
sugardir = $(pkgdatadir)/shell/view/frame
sugar_PYTHON = \
__init__.py \
- ActivitiesBox.py \
+ activitiestray.py \
activitybutton.py \
clipboardbox.py \
clipboardpanelwindow.py \
diff --git a/shell/view/frame/ActivitiesBox.py b/shell/view/frame/activitiestray.py
index ec79f86..94c4ee9 100644
--- a/shell/view/frame/ActivitiesBox.py
+++ b/shell/view/frame/activitiestray.py
@@ -46,7 +46,7 @@ class InviteButton(TrayButton):
def get_invite(self):
return self._invite
-class ActivitiesBox(hippo.CanvasBox):
+class ActivitiesTray(hippo.CanvasBox):
def __init__(self, shell):
hippo.CanvasBox.__init__(self, orientation=hippo.ORIENTATION_HORIZONTAL)
diff --git a/shell/view/frame/frame.py b/shell/view/frame/frame.py
index 2784835..91d8360 100644
--- a/shell/view/frame/frame.py
+++ b/shell/view/frame/frame.py
@@ -26,7 +26,7 @@ from sugar.graphics import palettegroup
from sugar.clipboard import clipboardservice
from view.frame.eventarea import EventArea
-from view.frame.ActivitiesBox import ActivitiesBox
+from view.frame.activitiestray import ActivitiesTray
from view.frame.zoomtoolbar import ZoomToolbar
from view.frame.overlaybox import OverlayBox
from view.frame.friendstray import FriendsTray
@@ -219,7 +219,7 @@ class Frame(object):
def _create_bottom_panel(self):
panel = self._create_panel(gtk.POS_BOTTOM)
- box = ActivitiesBox(self._shell)
+ box = ActivitiesTray(self._shell)
panel.append(box, hippo.PACK_EXPAND)
return panel