Changes between Version 19 and Version 20 of SandBox


Ignore:
Timestamp:
May 21, 2010, 9:47:13 PM (15 years ago)
Author:
/O=GRID-FR/C=FR/O=CNRS/OU=LAL/CN=Michel Jouvin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SandBox

    v19 v20  
    77[[Color(red,essai en rouge)]]
    88
     9{{{
     10#!CodeExample
     11#!python
     12    def apply_timer(self):
     13        timer = QTimer(self)
     14        self.connect(timer, SIGNAL('timeout()'), self.update_statusbar)
     15        timer.start(settings.HINTS_UPDATE_PERIOD)
     16}}}
     17