Qt: Remove mutable qualifier from VFileDevice now that it isn't needed anymore

This commit is contained in:
Jeffrey Pfau 2015-05-29 02:04:27 -07:00
parent c79780f832
commit 920d5b71cb
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ protected:
virtual qint64 size() const override;
private:
mutable VFile* m_vf;
VFile* m_vf;
};
}