summaryrefslogtreecommitdiffstats
path: root/src/common/port/port_base.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/port/port_base.cpp')
-rw-r--r--src/common/port/port_base.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/port/port_base.cpp b/src/common/port/port_base.cpp
index 63e820e..249db1a 100644
--- a/src/common/port/port_base.cpp
+++ b/src/common/port/port_base.cpp
@@ -58,32 +58,32 @@ bool Port::Base::receiveChar(char &c, uint timeout)
bool Port::Base::setPinOn(uint, bool, LogicType)
{
- qFatal("setPinOn not implemented");
+ tqFatal("setPinOn not implemented");
return false;
}
bool Port::Base::readPin(uint, LogicType, bool &)
{
- qFatal("readPin not implemented");
+ tqFatal("readPin not implemented");
return 0;
}
TQValueVector<Port::PinData> Port::Base::pinData(IODir) const
{
- qFatal("pinData not implemented");
+ tqFatal("pinData not implemented");
return TQValueVector<PinData>();
}
bool Port::Base::isGroundPin(uint) const
{
- qFatal("isGroundPin not implemented");
+ tqFatal("isGroundPin not implemented");
return false;
}
uint Port::Base::groundPin() const
{
- qFatal("groundPin not implemented");
+ tqFatal("groundPin not implemented");
return 0;
}
Port::IODir Port::Base::ioDir(uint) const
{
- qFatal("ioType not implemented");
+ tqFatal("ioType not implemented");
return NoIO;
}
@@ -121,7 +121,7 @@ void Port::Base::logData(const TQString &)
}
}
}
- qDebug("%s", vs.latin1());
+ tqDebug("%s", vs.latin1());
*/
//log(Log::Debug, vs);
}