mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-11-24 14:30:56 +00:00
Fixed an improper override of a virtual function that masked the original
This commit is contained in:
parent
3213cb500a
commit
fc67d6aae2
@ -7,9 +7,9 @@ class BinaryFile : public GenericFile
|
||||
{
|
||||
public:
|
||||
BinaryFile(QByteArray data = QByteArray());
|
||||
void setData(QByteArray data);
|
||||
void setData(QByteArray data) override;
|
||||
|
||||
virtual quint16 length() { return m_length; }
|
||||
virtual quint16 length() const override { return m_length; }
|
||||
|
||||
void dump();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user