Stefan Schuermans commited on 2013-12-12 19:51:23
Showing 1 changed files, with 3 additions and 3 deletions.
... | ... |
@@ -18,10 +18,10 @@ import time_fmt |
18 | 18 |
|
19 | 19 |
scriptdir = os.path.dirname(os.path.abspath(__file__)) |
20 | 20 |
|
21 |
-class SyncGui: |
|
21 |
+class StageDirector: |
|
22 | 22 |
|
23 | 23 |
def __init__(self): |
24 |
- """construct a SyncGui object""" |
|
24 |
+ """construct a StageDirector object""" |
|
25 | 25 |
self.builder = Gtk.Builder() |
26 | 26 |
self.builder.add_from_file(scriptdir + "/stage_director.glade") |
27 | 27 |
self.widMainWindow = self.builder.get_object("MainWindow") |
... | ... |
@@ -350,7 +350,7 @@ if __name__ == "__main__": |
350 | 350 |
except: |
351 | 351 |
pass |
352 | 352 |
# create window |
353 |
- app = SyncGui() |
|
353 |
+ app = StageDirector() |
|
354 | 354 |
# run application |
355 | 355 |
Gtk.main() |
356 | 356 |
|
357 | 357 |