From a73fe7ae36e9d506d5739521dfe337ace4b2f309 Mon Sep 17 00:00:00 2001 From: LtWorf Date: Mon, 23 Feb 2009 15:17:04 +0000 Subject: [PATCH] updated changelog git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@86 014f5005-505e-4b48-8d0a-63407b615a7c --- CHANGELOG | 3 +++ maingui.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index bbc7a24..cdeae21 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -53,3 +53,6 @@ - Deb postinstall generates optimized files, this will increase loading speed - Relation module has SQL-like delete - 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 diff --git a/maingui.py b/maingui.py index 176cb5f..a6be497 100644 --- a/maingui.py +++ b/maingui.py @@ -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("itemClicked(QListWidgetItem*)"),self.showAttributes) 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.cmdExecute,self.lstRelations) Form.setTabOrder(self.lstRelations,self.cmdLoad)