diff --git a/CHANGELOG b/CHANGELOG index 050b386..1113e8c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -33,4 +33,4 @@ - Fixes to run on Mac OsX - Added Makefile - Able to create .app MacOsX files using "make app" -- Able to create tar.gz file containing Mac OsX application and samples using "make mac" \ No newline at end of file +- Able to create tar.gz file containing Mac OsX application and samples using "make mac" diff --git a/relational.py b/relational.py index 0db54eb..082a94d 100755 --- a/relational.py +++ b/relational.py @@ -23,17 +23,10 @@ from PyQt4 import QtCore, QtGui import parser import relation import maingui -import signal version="0.6" -def term(signal,frame): - print "Interrupt----\n" - #sys.exit(0) - if __name__ == "__main__": - signal.signal(signal.SIGTERM,term) - signal.signal(signal.SIGINT,term) app = QtGui.QApplication(sys.argv) Form = QtGui.QWidget() @@ -42,6 +35,3 @@ if __name__ == "__main__": Form.show() sys.exit(app.exec_()) - - -