summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-07-08 18:19:48 +0200
committerAlexander Larsson <alexl@redhat.com>2010-07-08 18:22:41 +0200
commit8ba49398109a9c20e4f989b6cf40ae9312b24658 (patch)
tree176c727189fc233411259e05d57f5dd0ebe4b91d
parent3bc42870d020c8dc6804f1f3c6b0da9d7d6193a9 (diff)
Fix misspellings
SpicedSubMessage -> SpiceSubMessage QXLAlphaBlnd -> QXLAlphaBlend
-rw-r--r--configure.ac2
-rw-r--r--spice/protocol.h4
-rw-r--r--spice/qxl_dev.h12
3 files changed, 9 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index 90cb583..c071dee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_PREREQ([2.57])
m4_define([SPICE_MAJOR], 0)
m4_define([SPICE_MINOR], 5)
-m4_define([SPICE_MICRO], 1)
+m4_define([SPICE_MICRO], 2)
AC_INIT(spice-protocol, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice-protocol)
diff --git a/spice/protocol.h b/spice/protocol.h
index 4df54b1..bac2610 100644
--- a/spice/protocol.h
+++ b/spice/protocol.h
@@ -79,10 +79,10 @@ typedef struct SPICE_ATTR_PACKED SpiceDataHeader {
uint32_t sub_list; //offset to SpiceSubMessageList[]
} SpiceDataHeader;
-typedef struct SPICE_ATTR_PACKED SpicedSubMessage {
+typedef struct SPICE_ATTR_PACKED SpiceSubMessage {
uint16_t type;
uint32_t size;
-} SpicedSubMessage;
+} SpiceSubMessage;
typedef struct SPICE_ATTR_PACKED SpiceSubMessageList {
uint16_t size;
diff --git a/spice/qxl_dev.h b/spice/qxl_dev.h
index d8a1b31..7a121ad 100644
--- a/spice/qxl_dev.h
+++ b/spice/qxl_dev.h
@@ -397,18 +397,18 @@ typedef struct SPICE_ATTR_PACKED QXLTransparent {
uint32_t true_color;
} QXLTransparent;
-typedef struct SPICE_ATTR_PACKED QXLAlphaBlnd {
+typedef struct SPICE_ATTR_PACKED QXLAlphaBlend {
uint16_t alpha_flags;
uint8_t alpha;
QXLPHYSICAL src_bitmap;
QXLRect src_area;
-} QXLAlphaBlnd;
+} QXLAlphaBlend;
-typedef struct SPICE_ATTR_PACKED QXLCompatAlphaBlnd {
+typedef struct SPICE_ATTR_PACKED QXLCompatAlphaBlend {
uint8_t alpha;
QXLPHYSICAL src_bitmap;
QXLRect src_area;
-} QXLCompatAlphaBlnd;
+} QXLCompatAlphaBlend;
typedef struct SPICE_ATTR_PACKED QXLRop3 {
QXLPHYSICAL src_bitmap;
@@ -469,7 +469,7 @@ typedef struct SPICE_ATTR_PACKED QXLCompatDrawable {
QXLOpaque opaque;
QXLCopy copy;
QXLTransparent transparent;
- QXLCompatAlphaBlnd alpha_blend;
+ QXLCompatAlphaBlend alpha_blend;
QXLCopyBits copy_bits;
QXLBlend blend;
QXLRop3 rop3;
@@ -498,7 +498,7 @@ typedef struct SPICE_ATTR_PACKED QXLDrawable {
QXLOpaque opaque;
QXLCopy copy;
QXLTransparent transparent;
- QXLAlphaBlnd alpha_blend;
+ QXLAlphaBlend alpha_blend;
QXLCopyBits copy_bits;
QXLBlend blend;
QXLRop3 rop3;