aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/ZRLEDecoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/rfb/ZRLEDecoder.h')
-rw-r--r--common/rfb/ZRLEDecoder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/rfb/ZRLEDecoder.h b/common/rfb/ZRLEDecoder.h
index facf0adc..b9ebf771 100644
--- a/common/rfb/ZRLEDecoder.h
+++ b/common/rfb/ZRLEDecoder.h
@@ -30,16 +30,16 @@ namespace rfb {
public:
ZRLEDecoder();
virtual ~ZRLEDecoder();
- 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>
- void zrleDecode(const Rect& r, rdr::InStream* is,
+ void zrleDecode(const core::Rect& r, rdr::InStream* is,
const PixelFormat& pf, ModifiablePixelBuffer* pb);
private: