aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/RREDecoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/rfb/RREDecoder.h')
-rw-r--r--common/rfb/RREDecoder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/rfb/RREDecoder.h b/common/rfb/RREDecoder.h
index 8490146c..3fdcdd85 100644
--- a/common/rfb/RREDecoder.h
+++ b/common/rfb/RREDecoder.h
@@ -29,17 +29,17 @@ namespace rfb {
public:
RREDecoder();
virtual ~RREDecoder();
- bool readRect(const Rect& r, rdr::InStream* is,
+ bool readRect(const core::Rect& r, rdr::InStream* is,
const ServerParams& server,
rdr::OutStream* os) override;
- void decodeRect(const Rect& r, const uint8_t* buffer,
+ void decodeRect(const core::Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb) override;
private:
template<class T>
inline T readPixel(rdr::InStream* is);
template<class T>
- void rreDecode(const Rect& r, rdr::InStream* is,
+ void rreDecode(const core::Rect& r, rdr::InStream* is,
const PixelFormat& pf, ModifiablePixelBuffer* pb);
};
}