summaryrefslogtreecommitdiffstats
path: root/client/cursor.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-02-04 18:04:26 +0100
committerAlexander Larsson <alexl@redhat.com>2010-02-04 18:49:00 +0100
commit1f516978527b223882c02d8c23834a0f30279dec (patch)
tree7472bb21b145c2c586a3ad7aebb7bd136cef9e70 /client/cursor.h
parentc1694fb51bb29d3cbd03f679372339f9e8f29803 (diff)
downloadspice-1f516978527b223882c02d8c23834a0f30279dec.tar.gz
spice-1f516978527b223882c02d8c23834a0f30279dec.tar.xz
spice-1f516978527b223882c02d8c23834a0f30279dec.zip
Rename symbols that were changed in spice-protocol
This is an automatic change using: $ find -name "*.[ch]" | xargs ../spice-protocol/rename-identifiers.sh ../spice-protocol/renames $ find -name "*.cpp" | xargs ../spice-protocol/rename-identifiers.sh ../spice-protocol/renames
Diffstat (limited to 'client/cursor.h')
-rw-r--r--client/cursor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/cursor.h b/client/cursor.h
index c964fd40..cc64c720 100644
--- a/client/cursor.h
+++ b/client/cursor.h
@@ -32,7 +32,7 @@ class LocalCursor;
class CursorData {
public:
- CursorData(RedCursor& cursor, int data_size);
+ CursorData(SpiceCursor& cursor, int data_size);
CursorData *ref() { ++_atomic; return this;}
void unref() {if (--_atomic == 0) delete this;}
@@ -40,7 +40,7 @@ public:
CursorOpaque* get_opaque() { return _opaque;}
void set_local(LocalCursor* local_cursor);
LocalCursor* get_local() { return _local_cursor;}
- const CursorHeader& header() const { return _header;}
+ const SpiceCursorHeader& header() const { return _header;}
const uint8_t* data() const { return _data;}
private:
@@ -48,7 +48,7 @@ private:
private:
AtomicCount _atomic;
- CursorHeader _header;
+ SpiceCursorHeader _header;
uint8_t* _data;
CursorOpaque* _opaque;
LocalCursor* _local_cursor;
@@ -63,7 +63,7 @@ public:
void unref() { if (--_atomic == 0) delete this;}
protected:
- static int get_size_bits(const CursorHeader& header, int &size);
+ static int get_size_bits(const SpiceCursorHeader& header, int &size);
private:
AtomicCount _atomic;