summaryrefslogtreecommitdiffstats
path: root/client/screen_layer.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/screen_layer.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/screen_layer.h')
-rw-r--r--client/screen_layer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/client/screen_layer.h b/client/screen_layer.h
index 9b2ed7fa..4966ad4c 100644
--- a/client/screen_layer.h
+++ b/client/screen_layer.h
@@ -38,12 +38,12 @@ public:
void set_area(const QRegion& area);
void offset_area(int dx, int dy);
void clear_area();
- void set_rect_area(const Rect& r);
- void add_rect_area(const Rect& r);
- void remove_rect_area(const Rect& r);
+ void set_rect_area(const SpiceRect& r);
+ void add_rect_area(const SpiceRect& r);
+ void remove_rect_area(const SpiceRect& r);
void begin_update(QRegion& direct_rgn, QRegion& composit_rgn);
void invalidate();
- uint64_t invalidate(const Rect& r, bool urgent = false);
+ uint64_t invalidate(const SpiceRect& r, bool urgent = false);
void invalidate(const QRegion& r);
bool contains_point(int x, int y);
@@ -70,7 +70,7 @@ public:
virtual void on_mouse_button_release(int button, int buttons_state) {}
private:
- uint64_t invalidate_rect(const Rect& r, bool urgent);
+ uint64_t invalidate_rect(const SpiceRect& r, bool urgent);
void notify_changed();
private: