From 920d5b71cbacbd19cd5e46584ac1b752cabd295f Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Fri, 29 May 2015 02:04:27 -0700 Subject: [PATCH] Qt: Remove mutable qualifier from VFileDevice now that it isn't needed anymore --- src/platform/qt/VFileDevice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/qt/VFileDevice.h b/src/platform/qt/VFileDevice.h index 16e9ad5ae..f59a7def6 100644 --- a/src/platform/qt/VFileDevice.h +++ b/src/platform/qt/VFileDevice.h @@ -28,7 +28,7 @@ protected: virtual qint64 size() const override; private: - mutable VFile* m_vf; + VFile* m_vf; }; }