Actually implement the new procedure code and adapt all of its clients
[pspp-builds.git] / src / data / scratch-handle.c
index 2a08dbb051fc33cbd8eb378a55bf92a7df206763..0ac56433812d83040e7d507bb8e98f29f82d5611 100644 (file)
@@ -18,9 +18,9 @@
 
 #include <config.h>
 #include <stdlib.h>
-#include "scratch-handle.h"
-#include "casefile.h"
-#include "dictionary.h"
+#include <data/casereader.h>
+#include <data/scratch-handle.h>
+#include <data/dictionary.h>
 
 /* Destroys HANDLE. */
 void
@@ -29,7 +29,7 @@ scratch_handle_destroy (struct scratch_handle *handle)
   if (handle != NULL) 
     {
       dict_destroy (handle->dictionary);
-      casefile_destroy (handle->casefile);
+      casereader_destroy (handle->casereader);
       free (handle);
     }
 }