]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
More fixes, patch by Matías De la Puente
authorJürg Billeter <j@bitron.ch>
Mon, 19 Jan 2009 16:18:23 +0000 (16:18 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Mon, 19 Jan 2009 16:18:23 +0000 (16:18 +0000)
2009-01-19  Jürg Billeter  <j@bitron.ch>

* vapi/gsl.vapi:

More fixes, patch by Matías De la Puente

svn path=/trunk/; revision=2394

ChangeLog
vapi/gsl.vapi

index df12f75456fb7a8344d38065cab46fa79b8ca233..9bc2e9a429ff3d8d3f1762b4801f187ab393a871 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-01-19  Jürg Billeter  <j@bitron.ch>
+
+       * vapi/gsl.vapi:
+
+       More fixes, patch by Matías De la Puente
+
 2009-01-19  Jürg Billeter  <j@bitron.ch>
 
        * gobject/valaccodedelegatemodule.vala:
index 050ac3b7ce01c056f2ad6f66ede678fca3b0ad42..3ad99798e7b3041980dd35ef4692e5b5fa3f5a05 100644 (file)
@@ -1498,7 +1498,7 @@ namespace Gsl
        [CCode (cname="gsl_vector_view", cheader_filename="gsl/gsl_vector_double.h")]
        public struct VectorView
        {
-               public Vector vector;
+               public unowned Vector vector;
                
                public static VectorView array (double[] v);
                public static VectorView array_with_stride ([CCode (array_length = false)] double[] v, size_t stride, size_t n);
@@ -1572,7 +1572,7 @@ namespace Gsl
        [CCode (cname="gsl_vector_complex_view", cheader_filename="gsl/gsl_vector_complex_double.h")]
        public struct VectorComplexView
        {
-               public VectorComplex vector;
+               public unowned VectorComplex vector;
                
                public static VectorComplexView array (double[] v);
                public static VectorComplexView array_with_stride ([CCode (array_length = false)] double[] v, size_t stride, size_t n);
@@ -1648,7 +1648,7 @@ namespace Gsl
        [CCode (cname="gsl_matrix_view", cheader_filename="gsl/gsl_matrix_double.h")]
        public struct MatrixView
        {
-               public Matrix matrix;
+               public unowned Matrix matrix;
                
                public static MatrixView array ([CCode (array_length = false)] double[] v, size_t n1, size_t n2);
                public static MatrixView array_with_tda ([CCode (array_length = false)] double[] v, size_t n1, size_t n2, size_t tda);
@@ -1743,7 +1743,7 @@ namespace Gsl
        [CCode (cname="gsl_matrix_complex_view", cheader_filename="gsl/gsl_matrix_complex_double.h")]
        public struct MatrixComplexView
        {
-               public MatrixComplex matrix;
+               public unowned MatrixComplex matrix;
                
                public static MatrixComplexView array ([CCode (array_length = false)] double[] v, size_t n1, size_t n2);
                public static MatrixComplexView array_with_tda ([CCode (array_length = false)] double[] v, size_t n1, size_t n2, size_t tda);