diff options
author | David Tardon <dtardon@redhat.com> | 2011-11-21 12:58:47 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-11-21 13:19:32 +0100 |
commit | 5e04a781c5b5cb22bb35ad3031e579ea32c0cace (patch) | |
tree | 98d0ad438f06a04d3ace578737c7ab438be7e90a /vcl | |
parent | bab4bc9ec4ba1a7f85a406f413155e18caa78ee0 (diff) |
WaE: type qualifiers ignored on function return type
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/win/source/gdi/salgdi3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/source/gdi/salgdi3.cxx b/vcl/win/source/gdi/salgdi3.cxx index d47f5c9ae5af..ed2ffffedad5 100644 --- a/vcl/win/source/gdi/salgdi3.cxx +++ b/vcl/win/source/gdi/salgdi3.cxx @@ -258,7 +258,7 @@ public: ~RawFontData() { delete[] mpRawBytes; } const unsigned char* get() const { return mpRawBytes; } const unsigned char* steal() { unsigned char* p = mpRawBytes; mpRawBytes = NULL; return p; } - const int size() const { return mnByteCount; } + int size() const { return mnByteCount; } private: unsigned char* mpRawBytes; |