diff options
| author | dknn <yoann.blein@free.fr> | 2012-07-14 08:00:24 (GMT) |
|---|---|---|
| committer | dknn <yoann.blein@free.fr> | 2012-09-22 09:01:48 (GMT) |
| commit | 51958a50e31b483aa932aac8d696b229ba66b5cb (patch) | |
| tree | 559c19451c2d53a1ee72113154aa187060680f3c /Swiften/ScreenSharing/Image.h | |
| parent | ce9a3d75677f08af0a226bb3d2bf02c28c938c33 (diff) | |
| download | swift-contrib-51958a50e31b483aa932aac8d696b229ba66b5cb.zip swift-contrib-51958a50e31b483aa932aac8d696b229ba66b5cb.tar.bz2 | |
Fixes to make classes working together
Diffstat (limited to 'Swiften/ScreenSharing/Image.h')
| -rw-r--r-- | Swiften/ScreenSharing/Image.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/ScreenSharing/Image.h b/Swiften/ScreenSharing/Image.h index 5cdf043..0e0151d 100644 --- a/Swiften/ScreenSharing/Image.h +++ b/Swiften/ScreenSharing/Image.h @@ -14,9 +14,9 @@ namespace Swift { class Image { public: typedef boost::shared_ptr<Image> ref; - Image(int width, int height, uint8_t* rgb24data = 0); + Image(int width, int height, const uint8_t* rgb24data = 0); int width; int height; std::vector<uint8_t> data; |
Swift