From: Andy T. <an...@us...> - 2005-01-24 10:28:29
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11697 Modified Files: flatfileDatabase.py Log Message: Made sure that deleting a record marks the set as changed Index: flatfileDatabase.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/flatfileDatabase.py,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** flatfileDatabase.py 15 Aug 2004 17:34:55 -0000 1.25 --- flatfileDatabase.py 24 Jan 2005 10:28:20 -0000 1.26 *************** *** 423,426 **** --- 423,427 ---- if self.current != -1: del self.records[self.current] + self.documentChanged = 1 if len(self.records) == 0: self.current = -1 |