Author: reinhard
Date: 2006-11-28 13:13:42 -0600 (Tue, 28 Nov 2006)
New Revision: 9084

Modified:
   trunk/gnue-forms/src/GFForm.py
Log:
Made move_focus() private.


Modified: trunk/gnue-forms/src/GFForm.py
===================================================================
--- trunk/gnue-forms/src/GFForm.py      2006-11-28 18:30:48 UTC (rev 9083)
+++ trunk/gnue-forms/src/GFForm.py      2006-11-28 19:13:42 UTC (rev 9084)
@@ -348,7 +348,7 @@
         try:
             self.endEditing()
             try:
-                self.move_focus(target, row_offset)
+                self.__move_focus(target, row_offset)
             finally:
                 self.beginEditing()
         except:
@@ -1052,7 +1052,7 @@
         self.endEditing()
         old_page = self._currentPage
         try:
-            self.move_focus(widget, row_offset)
+            self.__move_focus(widget, row_offset)
             if self._currentPage != old_page:
                 self.uiWidget._ui_goto_page_(self._currentPage.uiWidget)
         finally:
@@ -1065,7 +1065,7 @@
     # Changes to the requested entry object requested by an event source
     # -------------------------------------------------------------------------
 
-    def move_focus(self, widget, row_offset):
+    def __move_focus(self, widget, row_offset):
         """
         Changes focus to the requested entry object on GF layer.
 



_______________________________________________
commit-gnue mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnue

Reply via email to