pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/src/ui/gui ChangeLog psppire-case-file.c


From: John Darrington
Subject: [Pspp-cvs] pspp/src/ui/gui ChangeLog psppire-case-file.c
Date: Sun, 12 Aug 2007 23:18:03 +0000

CVSROOT:        /sources/pspp
Module name:    pspp
Changes by:     John Darrington <jmd>   07/08/12 23:18:03

Modified files:
        src/ui/gui     : ChangeLog psppire-case-file.c 

Log message:
        Deleted unused function.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/ui/gui/ChangeLog?cvsroot=pspp&r1=1.76&r2=1.77
http://cvs.savannah.gnu.org/viewcvs/pspp/src/ui/gui/psppire-case-file.c?cvsroot=pspp&r1=1.29&r2=1.30

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/pspp/pspp/src/ui/gui/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -b -r1.76 -r1.77
--- ChangeLog   7 Aug 2007 00:56:59 -0000       1.76
+++ ChangeLog   12 Aug 2007 23:18:03 -0000      1.77
@@ -1,3 +1,8 @@
+2007-08-13  John Darrington <address@hidden>
+
+        * psppire-case-file.c (psppire_case_file_append_case):  
+       Deleted unused function.
+
 2007-08-07  John Darrington <address@hidden>
 
        * helper.c (execute_syntax): Set the active file data to NULL at the 

Index: psppire-case-file.c
===================================================================
RCS file: /sources/pspp/pspp/src/ui/gui/psppire-case-file.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -r1.29 -r1.30
--- psppire-case-file.c 7 Aug 2007 00:56:59 -0000       1.29
+++ psppire-case-file.c 12 Aug 2007 23:18:03 -0000      1.30
@@ -205,30 +205,6 @@
 }
 
 
-/* Append a case to the case file */
-static gboolean
-psppire_case_file_append_case (PsppireCaseFile *cf,
-                             struct ccase *c)
-{
-  struct ccase tmp;
-  bool result ;
-  gint posn ;
-
-  g_return_val_if_fail (cf, FALSE);
-  g_return_val_if_fail (cf->datasheet, FALSE);
-  g_return_val_if_fail (cf->accessible, FALSE);
-
-  posn = datasheet_get_row_cnt (cf->datasheet);
-
-  case_clone (&tmp, c);
-  result = datasheet_insert_rows (cf->datasheet, posn, &tmp, 1);
-
-  g_signal_emit (cf, signals [CASE_INSERTED], 0, posn);
-
-  return result;
-}
-
-
 inline casenumber
 psppire_case_file_get_case_count (const PsppireCaseFile *cf)
 {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]