removed unnecessary files

This commit is contained in:
Jeena 2012-11-04 22:28:48 +01:00
parent a35d296648
commit f9b138f66b
2 changed files with 1 additions and 15 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
build/ build/
Tentia.xcodeproj/project.xcworkspace/xcuserdata/jeena.xcuserdatad/UserInterfaceState.xcuserstate Tentia.xcodeproj/project.xcworkspace/xcuserdata/jeena.xcuserdatad/UserInterfaceState.xcuserstate
dsa_priv.pem dsa_priv.pem
*.pyc

View file

@ -1,15 +0,0 @@
from gi.repository import Gtk
class PreferencesWindow(Gtk.Window):
def __init__(self, app):
self.app = app
Gtk.Window.__init__(self, title="Preferences")
self.login_button = Gtk.Button(label="Login")
self.login_button.connect("clicked", self.on_login_button_clicked)
self.add(self.login_button)
def on_login_button_clicked(self, widget):
print "Login"