[seahorse] cosmetici - vala : switch from uchar[] to uint8[]



commit 27dcf2a38ccba862fa6bd5a882cc0143aff186b1
Author: Alban Browaeys <prahal yahoo com>
Date:   Sun Apr 28 20:12:47 2013 +0200

    cosmetici - vala : switch from uchar[] to  uint8[]
    
    https://bugzilla.gnome.org/show_bug.cgi?id=699154

 common/seahorse-exportable.vala |    2 +-
 common/seahorse-exporter.vala   |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/common/seahorse-exportable.vala b/common/seahorse-exportable.vala
index 0df7d5b..c4602d5 100644
--- a/common/seahorse-exportable.vala
+++ b/common/seahorse-exportable.vala
@@ -68,7 +68,7 @@ public interface Exportable : GLib.Object {
        }
 
        public static uint export_to_text_wait(GLib.List<GLib.Object> objects,
-                                              [CCode (array_length_type = "size_t")] out uchar[] output) 
throws GLib.Error {
+                                              [CCode (array_length_type = "size_t")] out uint8[] output) 
throws GLib.Error {
                GLib.List<Exporter> exporters = null;
 
                foreach (var object in objects) {
diff --git a/common/seahorse-exporter.vala b/common/seahorse-exporter.vala
index cac7220..cde6a0b 100644
--- a/common/seahorse-exporter.vala
+++ b/common/seahorse-exporter.vala
@@ -43,7 +43,7 @@ public interface Exporter : GLib.Object {
        public abstract bool add_object(GLib.Object obj);
 
        [CCode (array_length_type = "size_t")]
-       public abstract async uchar[] export(GLib.Cancellable? cancellable) throws GLib.Error;
+       public abstract async uint8[] export(GLib.Cancellable? cancellable) throws GLib.Error;
 
        static GLib.File file_increment_unique(GLib.File file,
                                               ref uint state) {
@@ -76,7 +76,7 @@ public interface Exporter : GLib.Object {
                                         bool overwrite,
                                         GLib.Cancellable? cancellable) throws GLib.Error {
 
-               uchar[] bytes;
+               uint8[] bytes;
                GLib.File outfile = file;
 
                bytes = yield this.export(cancellable);


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