Qt: Remove mutable qualifier from VFileDevice now that it isn't needed anymore
Jeffrey Pfau jeffrey@endrift.com
Fri, 29 May 2015 02:04:27 -0700
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
src/platform/qt/VFileDevice.h
→
src/platform/qt/VFileDevice.h
@@ -28,7 +28,7 @@ virtual qint64 writeData(const char* data, qint64 maxSize) override;
virtual qint64 size() const override; private: - mutable VFile* m_vf; + VFile* m_vf; }; }