summaryrefslogtreecommitdiff
path: root/noncore
authormickeyl <mickeyl>2004-06-01 14:14:38 (UTC)
committer mickeyl <mickeyl>2004-06-01 14:14:38 (UTC)
commit4438393d8eef624565e840b798429071829adea8 (patch) (side-by-side diff)
tree35bb6132f33b9aa1725d57158b4fd1967cfca1df /noncore
parent27dfc34d411dee76f09f5e516c60b0a64eb35948 (diff)
downloadopie-4438393d8eef624565e840b798429071829adea8.zip
opie-4438393d8eef624565e840b798429071829adea8.tar.gz
opie-4438393d8eef624565e840b798429071829adea8.tar.bz2
fix typos
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/device.cc2
-rw-r--r--noncore/net/opietooth/lib/manager.cc20
2 files changed, 11 insertions, 11 deletions
diff --git a/noncore/net/opietooth/lib/device.cc b/noncore/net/opietooth/lib/device.cc
index f81066e..eea1178 100644
--- a/noncore/net/opietooth/lib/device.cc
+++ b/noncore/net/opietooth/lib/device.cc
@@ -72,7 +72,7 @@ void Device::detach(){
// kill the pid we got
if(m_attached ){
//kill the pid
- warn << "killing" << oendl;
+ owarn << "killing" << oendl;
kill(pid, 9);
}
owarn << "detached" << oendl;
diff --git a/noncore/net/opietooth/lib/manager.cc b/noncore/net/opietooth/lib/manager.cc
index 76d9127..53122c1 100644
--- a/noncore/net/opietooth/lib/manager.cc
+++ b/noncore/net/opietooth/lib/manager.cc
@@ -192,7 +192,7 @@ void Manager::slotHCIExited(OProcess* proc ) {
}
void Manager::slotHCIOut(OProcess* proc, char* ch, int len) {
QCString str( ch, len+1 );
- owarn << "hci: " << str.data() oendl;
+ owarn << "hci: " << str.data() << oendl;
QMap<QString, QString>::Iterator it;
it = m_devices.find( proc->name() );
owarn << "proc->name " << proc->name() << oendl;
@@ -282,15 +282,15 @@ ConnectionState::ValueList Manager::parseConnections( const QString& out ) {
for (; it != list.end(); ++it ) {
QString row = (*it).stripWhiteSpace();
QStringList value = QStringList::split(' ', row );
- owan << "0: %s" << value[0].latin1() << oendl;
- owan << "1: %s" << value[1].latin1() << oendl;
- owan << "2: %s" << value[2].latin1() << oendl;
- owan << "3: %s" << value[3].latin1() << oendl;
- owan << "4: %s" << value[4].latin1() << oendl;
- owan << "5: %s" << value[5].latin1() << oendl;
- owan << "6: %s" << value[6].latin1() << oendl;
- owan << "7: %s" << value[7].latin1() << oendl;
- owan << "8: %s" << value[8].latin1() << oendl;
+ owarn << "0: %s" << value[0].latin1() << oendl;
+ owarn << "1: %s" << value[1].latin1() << oendl;
+ owarn << "2: %s" << value[2].latin1() << oendl;
+ owarn << "3: %s" << value[3].latin1() << oendl;
+ owarn << "4: %s" << value[4].latin1() << oendl;
+ owarn << "5: %s" << value[5].latin1() << oendl;
+ owarn << "6: %s" << value[6].latin1() << oendl;
+ owarn << "7: %s" << value[7].latin1() << oendl;
+ owarn << "8: %s" << value[8].latin1() << oendl;
ConnectionState con;
con.setDirection( value[0] == QString::fromLatin1("<") ? Outgoing : Incoming );
con.setConnectionMode( value[1] );