From 1f516978527b223882c02d8c23834a0f30279dec Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 4 Feb 2010 18:04:26 +0100 Subject: 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 --- client/screen_layer.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'client/screen_layer.h') 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: -- cgit