summaryrefslogtreecommitdiffstats
path: root/examples3/richtext.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples3/richtext.py')
-rwxr-xr-xexamples3/richtext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples3/richtext.py b/examples3/richtext.py
index 78c0db7..2e6abac 100755
--- a/examples3/richtext.py
+++ b/examples3/richtext.py
@@ -99,7 +99,7 @@ class MyRichText( TQVBox ):
self.connect( self.bClose, SIGNAL("clicked()"), tqApp, SLOT("quit()") )
self.connect( self.bPrev, SIGNAL("clicked()"), self.prev )
- self.connect( self.bNext, SIGNAL("clicked()"), self.next )
+ self.connect( self.bNext, SIGNAL("clicked()"), self.__next__ )
self.num = 0
@@ -112,7 +112,7 @@ class MyRichText( TQVBox ):
self.bPrev.setEnabled( False )
self.bNext.setEnabled( True )
- def next( self ):
+ def __next__( self ):
self.num += 1
if not sayings[self.num]:
return