start/stop modules

This commit is contained in:
Pavol Rusnak 2011-04-23 22:24:59 +02:00
parent 3aa8986d49
commit 0cce0afdc2
3 changed files with 14 additions and 4 deletions

View file

@ -151,5 +151,9 @@ class ModuleDebug():
self.title = 'Debug'
self.widget = ModuleDebugWidget()
def run(self):
print 'run Debug'
def start(self):
print 'start Debug'
def stop(self):
print 'stop Debug'
self.widget.timer.stop()