diff options
author | Jay Freeman <saurik@saurik.com> | 2009-06-20 02:08:04 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2009-06-20 02:08:04 +0000 |
commit | 0988ef4fe9b36deb62219937cc5a90103e16b774 (patch) | |
tree | 8743cdd0e319549fa65d840b800c958a5e1f579f | |
parent | ca0c56248c3870dbca848ac169f842815c461e7d (diff) |
Fixed iphone-python for 2.x/3.x.
git-svn-id: http://svn.telesphoreo.org/trunk@628 514c082c-b64e-11dc-b46d-3d985efe055d
-rw-r--r-- | data/iphone-python/HelloPython.app/HelloPython.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/iphone-python/HelloPython.app/HelloPython.py b/data/iphone-python/HelloPython.app/HelloPython.py index 82fe5243b..54f56b04b 100644 --- a/data/iphone-python/HelloPython.app/HelloPython.py +++ b/data/iphone-python/HelloPython.app/HelloPython.py @@ -68,7 +68,7 @@ class PYApplication(UIApplication): self.window.orderFront_(self) self.window.makeKey_(self) - self.window._setHidden_(NO) + self.window.setHidden_(NO) inner = self.window.bounds() navsize = UINavigationBar.defaultSize() |