updated changelog

git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@86 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
LtWorf 2009-02-23 15:17:04 +00:00
parent c658041a7d
commit a73fe7ae36
2 changed files with 4 additions and 1 deletions

View File

@ -53,3 +53,6 @@
- Deb postinstall generates optimized files, this will increase loading speed - Deb postinstall generates optimized files, this will increase loading speed
- Relation module has SQL-like delete - Relation module has SQL-like delete
- Relation module has SQL-like update - Relation module has SQL-like update
- Relation module has SQL-like insert
- GUI can be used to insert and delete tuples
- Showing fields of selected relation will work with themes different than oxygen

View File

@ -405,7 +405,7 @@ class Ui_Form(object):
QtCore.QObject.connect(self.lstRelations,QtCore.SIGNAL("itemDoubleClicked(QListWidgetItem*)"),self.printRelation) QtCore.QObject.connect(self.lstRelations,QtCore.SIGNAL("itemDoubleClicked(QListWidgetItem*)"),self.printRelation)
QtCore.QObject.connect(self.lstRelations,QtCore.SIGNAL("itemClicked(QListWidgetItem*)"),self.showAttributes) QtCore.QObject.connect(self.lstRelations,QtCore.SIGNAL("itemClicked(QListWidgetItem*)"),self.showAttributes)
QtCore.QMetaObject.connectSlotsByName(Form) QtCore.QMetaObject.connectSlotsByName(Form)
Form.setTabOrder(self. txtResult,self.txtQuery) Form.setTabOrder(self.txtResult,self.txtQuery)
Form.setTabOrder(self.txtQuery,self.cmdExecute) Form.setTabOrder(self.txtQuery,self.cmdExecute)
Form.setTabOrder(self.cmdExecute,self.lstRelations) Form.setTabOrder(self.cmdExecute,self.lstRelations)
Form.setTabOrder(self.lstRelations,self.cmdLoad) Form.setTabOrder(self.lstRelations,self.cmdLoad)