This commit is contained in:
Michael Davidsaver
2018-09-07 14:36:08 +01:00
parent 3bc1603f47
commit eab36d5123
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ struct ChatHandler : public pvas::SharedPV::Handler
if(req) {
strm<<req->getRequesterName()<<" says ";
} else {
op.complete(pvd::Status::error("Defuct Put"));
op.complete(pvd::Status::error("Defunct Put"));
return;
}

View File

@ -60,7 +60,7 @@ struct Getter : public pvac::ClientChannel::GetCallback,
op.cancel();
}
virtual void getDone(const pvac::GetEvent& event)
virtual void getDone(const pvac::GetEvent& event) OVERRIDE FINAL
{
switch(event.event) {
case pvac::GetEvent::Fail:
@ -78,7 +78,7 @@ struct Getter : public pvac::ClientChannel::GetCallback,
}
}
virtual void connectEvent(const pvac::ConnectEvent& evt)
virtual void connectEvent(const pvac::ConnectEvent& evt) OVERRIDE FINAL
{
if(evt.connected) {
op = channel.get(this);