[Commits] (morgen) bubleUp -> bubbleUp
commits at osafoundation.org
commits at osafoundation.org
Wed Aug 25 10:28:48 PDT 2004
Commit by: morgen
Modified files:
chandler/parcels/osaf/framework/blocks/Views.py 1.41 1.42
Log message:
bubleUp -> bubbleUp
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/chandler/parcels/osaf/framework/blocks/Views.py.diff?r1=text&tr1=1.41&r2=text&tr2=1.42
Index: chandler/parcels/osaf/framework/blocks/Views.py
diff -u chandler/parcels/osaf/framework/blocks/Views.py:1.41 chandler/parcels/osaf/framework/blocks/Views.py:1.42
--- chandler/parcels/osaf/framework/blocks/Views.py:1.41 Tue Aug 24 10:22:30 2004
+++ chandler/parcels/osaf/framework/blocks/Views.py Wed Aug 25 10:28:47 2004
@@ -1,5 +1,5 @@
-__version__ = "$Revision: 1.41 $"
-__date__ = "$Date: 2004/08/24 17:22:30 $"
+__version__ = "$Revision: 1.42 $"
+__date__ = "$Date: 2004/08/25 17:28:47 $"
__copyright__ = "Copyright (c) 2003-2004 Open Source Applications Foundation"
__license__ = "http://osafoundation.org/Chandler_0.1_license_terms.htm"
@@ -29,7 +29,7 @@
member (block, notification)
return True
- def bubleUpCallMethod (block, methodName, notification):
+ def bubbleUpCallMethod (block, methodName, notification):
"""
Call a method on a block or if it doesn't handle it try it's parents
"""
@@ -89,11 +89,11 @@
elif event.dispatchEnum == 'FocusBubbleUp':
block = self.getFocusBlock()
- bubleUpCallMethod (block, methodName, notification)
+ bubbleUpCallMethod (block, methodName, notification)
elif event.dispatchEnum == 'ActiveViewBubbleUp':
block = Globals.activeView
- bubleUpCallMethod (block, methodName, notification)
+ bubbleUpCallMethod (block, methodName, notification)
elif __debug__:
assert (False)
More information about the Commits
mailing list