changed names

This commit is contained in:
Jeena 2012-11-04 22:28:03 +01:00
parent 5a6c5093a3
commit a35d296648
3 changed files with 44 additions and 3 deletions

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python
from gi.repository import Gtk
import PreferencesWindow
import TentiaWindows
class Tentia:
@ -10,10 +10,10 @@ class Tentia:
Gtk.main()
def quit(self):
Gtk.main_quit
Gtk.main_quit()
def setup_preferences_window(self):
self.preferences_window = PreferencesWindow(self)
self.preferences_window = TentiaWindows.Preferences(self)
if __name__ == "__main__":