Reimplement QIODevice::reset() properly
The reset() function is not const.
tests/benchmarks/network/access/qnetworkreply/tst_qnetworkreply.cpp:324:
warning: 'FixedSizeDataGenerator::reset' hides overloaded virtual
function [-Woverloaded-virtual]
virtual bool reset() const{
^
src/corelib/io/qiodevice.h:112: hidden overloaded virtual function
'QIODevice::reset' declared here
virtual bool reset();
^
Change-Id: I022d902147f9c8fb71bee8c3e21b963b2d7bec55
Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@nokia.com>
bb10
parent
f0710e1d95
commit
cd796404f1
|
|
@ -321,7 +321,7 @@ public:
|
|||
return false;
|
||||
}
|
||||
|
||||
virtual bool reset() const{
|
||||
virtual bool reset() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue