diff options
Diffstat (limited to 'common/rfb/ScreenSet.h')
-rw-r--r-- | common/rfb/ScreenSet.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/rfb/ScreenSet.h b/common/rfb/ScreenSet.h index fb93e5c2..10753b17 100644 --- a/common/rfb/ScreenSet.h +++ b/common/rfb/ScreenSet.h @@ -25,10 +25,11 @@ #include <string.h> #include <stdint.h> -#include <rfb/Rect.h> #include <list> #include <set> +#include <core/Rect.h> + namespace rfb { // rfb::Screen @@ -52,7 +53,7 @@ namespace rfb { } uint32_t id; - Rect dimensions; + core::Rect dimensions; uint32_t flags; }; @@ -87,7 +88,7 @@ namespace rfb { inline bool validate(int fb_width, int fb_height) const { std::list<Screen>::const_iterator iter; std::set<uint32_t> seen_ids; - Rect fb_rect; + core::Rect fb_rect; if (screens.empty()) return false; |