mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-02-03 10:00:04 -05:00
LayeredStream dtor: fully qualify 'close()' call
`close()` is a virtual function. Since we are calling it from a destructor, make it clear that we are specifically calling the base class (`QIODevice`) implementation, as opposed to an implementation in any derived class. [Found by lgtm.com](https://lgtm.com/projects/g/keepassxreboot/keepassxc/alerts)
This commit is contained in:
parent
9be538a5f6
commit
1af293847c
@ -26,7 +26,7 @@ LayeredStream::LayeredStream(QIODevice* baseDevice)
|
||||
|
||||
LayeredStream::~LayeredStream()
|
||||
{
|
||||
close();
|
||||
QIODevice::close();
|
||||
}
|
||||
|
||||
bool LayeredStream::isSequential() const
|
||||
|
Loading…
x
Reference in New Issue
Block a user