diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-06-24 14:35:43 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2024-06-24 14:35:43 +0200 |
commit | 1b6d5594e34bf3c96e225eab794943dc1ce6b1de (patch) | |
tree | 3088799b3e595f2e062e258c515d97970b00402b /common/rfb/RawEncoder.h | |
parent | 0e9a00e87cf12087b253e0be214c7a7a045c94de (diff) | |
parent | 02c6a1bf7ec18701a0f1a44bec20fc383b8f3565 (diff) | |
download | tigervnc-1b6d5594e34bf3c96e225eab794943dc1ce6b1de.tar.gz tigervnc-1b6d5594e34bf3c96e225eab794943dc1ce6b1de.zip |
Merge branch 'c++11' of github.com:CendioOssman/tigervnc
Diffstat (limited to 'common/rfb/RawEncoder.h')
-rw-r--r-- | common/rfb/RawEncoder.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/rfb/RawEncoder.h b/common/rfb/RawEncoder.h index 76da4c5b..e191645c 100644 --- a/common/rfb/RawEncoder.h +++ b/common/rfb/RawEncoder.h @@ -27,11 +27,11 @@ namespace rfb { public: RawEncoder(SConnection* conn); virtual ~RawEncoder(); - virtual bool isSupported(); - virtual void writeRect(const PixelBuffer* pb, const Palette& palette); - virtual void writeSolidRect(int width, int height, - const PixelFormat& pf, - const uint8_t* colour); + bool isSupported() override; + void writeRect(const PixelBuffer* pb, + const Palette& palette) override; + void writeSolidRect(int width, int height, const PixelFormat& pf, + const uint8_t* colour) override; }; } #endif |