You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by uw...@apache.org on 2017/04/06 18:36:36 UTC

arrow git commit: ARROW-776: [GLib] Fix wrong type name

Repository: arrow
Updated Branches:
  refs/heads/master 56f1e91d2 -> 58fa4c2fc


ARROW-776: [GLib] Fix wrong type name

Author: Kouhei Sutou <ko...@clear-code.com>

Closes #499 from kou/glib-fix-wrong-type-name and squashes the following commits:

105f2f2 [Kouhei Sutou] [GLib] Fix wrong type name


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/58fa4c2f
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/58fa4c2f
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/58fa4c2f

Branch: refs/heads/master
Commit: 58fa4c2fcc75f763a89b44eeedafade771d342e8
Parents: 56f1e91
Author: Kouhei Sutou <ko...@clear-code.com>
Authored: Thu Apr 6 20:36:29 2017 +0200
Committer: Uwe L. Korn <uw...@xhochy.com>
Committed: Thu Apr 6 20:36:29 2017 +0200

----------------------------------------------------------------------
 c_glib/arrow-glib/io-file.h               | 2 +-
 c_glib/arrow-glib/io-input-stream.h       | 2 +-
 c_glib/arrow-glib/io-output-stream.h      | 2 +-
 c_glib/arrow-glib/io-random-access-file.h | 2 +-
 c_glib/arrow-glib/io-readable.h           | 2 +-
 c_glib/arrow-glib/io-writeable.h          | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/58fa4c2f/c_glib/arrow-glib/io-file.h
----------------------------------------------------------------------
diff --git a/c_glib/arrow-glib/io-file.h b/c_glib/arrow-glib/io-file.h
index 9fa0ec1..7181f6d 100644
--- a/c_glib/arrow-glib/io-file.h
+++ b/c_glib/arrow-glib/io-file.h
@@ -28,7 +28,7 @@ G_BEGIN_DECLS
 #define GARROW_IO_FILE(obj)                             \
   (G_TYPE_CHECK_INSTANCE_CAST((obj),                    \
                               GARROW_IO_TYPE_FILE,      \
-                              GArrowIOFileInterface))
+                              GArrowIOFile))
 #define GARROW_IO_IS_FILE(obj)                          \
   (G_TYPE_CHECK_INSTANCE_TYPE((obj),                    \
                               GARROW_IO_TYPE_FILE))

http://git-wip-us.apache.org/repos/asf/arrow/blob/58fa4c2f/c_glib/arrow-glib/io-input-stream.h
----------------------------------------------------------------------
diff --git a/c_glib/arrow-glib/io-input-stream.h b/c_glib/arrow-glib/io-input-stream.h
index a7f0681..5790209 100644
--- a/c_glib/arrow-glib/io-input-stream.h
+++ b/c_glib/arrow-glib/io-input-stream.h
@@ -28,7 +28,7 @@ G_BEGIN_DECLS
 #define GARROW_IO_INPUT_STREAM(obj)                             \
   (G_TYPE_CHECK_INSTANCE_CAST((obj),                            \
                               GARROW_IO_TYPE_INPUT_STREAM,      \
-                              GArrowIOInputStreamInterface))
+                              GArrowIOInputStream))
 #define GARROW_IO_IS_INPUT_STREAM(obj)                          \
   (G_TYPE_CHECK_INSTANCE_TYPE((obj),                            \
                               GARROW_IO_TYPE_INPUT_STREAM))

http://git-wip-us.apache.org/repos/asf/arrow/blob/58fa4c2f/c_glib/arrow-glib/io-output-stream.h
----------------------------------------------------------------------
diff --git a/c_glib/arrow-glib/io-output-stream.h b/c_glib/arrow-glib/io-output-stream.h
index c4079d5..02478ce 100644
--- a/c_glib/arrow-glib/io-output-stream.h
+++ b/c_glib/arrow-glib/io-output-stream.h
@@ -28,7 +28,7 @@ G_BEGIN_DECLS
 #define GARROW_IO_OUTPUT_STREAM(obj)                            \
   (G_TYPE_CHECK_INSTANCE_CAST((obj),                            \
                               GARROW_IO_TYPE_OUTPUT_STREAM,     \
-                              GArrowIOOutputStreamInterface))
+                              GArrowIOOutputStream))
 #define GARROW_IO_IS_OUTPUT_STREAM(obj)                         \
   (G_TYPE_CHECK_INSTANCE_TYPE((obj),                            \
                               GARROW_IO_TYPE_OUTPUT_STREAM))

http://git-wip-us.apache.org/repos/asf/arrow/blob/58fa4c2f/c_glib/arrow-glib/io-random-access-file.h
----------------------------------------------------------------------
diff --git a/c_glib/arrow-glib/io-random-access-file.h b/c_glib/arrow-glib/io-random-access-file.h
index e980ab2..8ac63e4 100644
--- a/c_glib/arrow-glib/io-random-access-file.h
+++ b/c_glib/arrow-glib/io-random-access-file.h
@@ -28,7 +28,7 @@ G_BEGIN_DECLS
 #define GARROW_IO_RANDOM_ACCESS_FILE(obj)                            \
   (G_TYPE_CHECK_INSTANCE_CAST((obj),                                 \
                               GARROW_IO_TYPE_RANDOM_ACCESS_FILE,     \
-                              GArrowIORandomAccessFileInterface))
+                              GArrowIORandomAccessFile))
 #define GARROW_IO_IS_RANDOM_ACCESS_FILE(obj)                            \
   (G_TYPE_CHECK_INSTANCE_TYPE((obj),                                    \
                               GARROW_IO_TYPE_RANDOM_ACCESS_FILE))

http://git-wip-us.apache.org/repos/asf/arrow/blob/58fa4c2f/c_glib/arrow-glib/io-readable.h
----------------------------------------------------------------------
diff --git a/c_glib/arrow-glib/io-readable.h b/c_glib/arrow-glib/io-readable.h
index d24b46c..279984b 100644
--- a/c_glib/arrow-glib/io-readable.h
+++ b/c_glib/arrow-glib/io-readable.h
@@ -28,7 +28,7 @@ G_BEGIN_DECLS
 #define GARROW_IO_READABLE(obj)                                 \
   (G_TYPE_CHECK_INSTANCE_CAST((obj),                            \
                               GARROW_IO_TYPE_READABLE,          \
-                              GArrowIOReadableInterface))
+                              GArrowIOReadable))
 #define GARROW_IO_IS_READABLE(obj)                      \
   (G_TYPE_CHECK_INSTANCE_TYPE((obj),                    \
                               GARROW_IO_TYPE_READABLE))

http://git-wip-us.apache.org/repos/asf/arrow/blob/58fa4c2f/c_glib/arrow-glib/io-writeable.h
----------------------------------------------------------------------
diff --git a/c_glib/arrow-glib/io-writeable.h b/c_glib/arrow-glib/io-writeable.h
index f5c5e91..ce23247 100644
--- a/c_glib/arrow-glib/io-writeable.h
+++ b/c_glib/arrow-glib/io-writeable.h
@@ -28,7 +28,7 @@ G_BEGIN_DECLS
 #define GARROW_IO_WRITEABLE(obj)                                \
   (G_TYPE_CHECK_INSTANCE_CAST((obj),                            \
                               GARROW_IO_TYPE_WRITEABLE,         \
-                              GArrowIOWriteableInterface))
+                              GArrowIOWriteable))
 #define GARROW_IO_IS_WRITEABLE(obj)                             \
   (G_TYPE_CHECK_INSTANCE_TYPE((obj),                            \
                               GARROW_IO_TYPE_WRITEABLE))