summaryrefslogtreecommitdiff
path: root/core
authorzecke <zecke>2003-03-14 08:23:21 (UTC)
committer zecke <zecke>2003-03-14 08:23:21 (UTC)
commit52c72efc3bcc6b57c6960b5da3393b57182b5ee6 (patch) (unidiff)
tree42bb8ed6f48484fd02912354a11086a51b3bd17c /core
parent7e04934c4b7b9f8ad0d74d2da1c7c1273d9fe1d4 (diff)
downloadopie-52c72efc3bcc6b57c6960b5da3393b57182b5ee6.zip
opie-52c72efc3bcc6b57c6960b5da3393b57182b5ee6.tar.gz
opie-52c72efc3bcc6b57c6960b5da3393b57182b5ee6.tar.bz2
Unconfuse eilers about naming variables :)
I hate big gray squares in a TextView better include pics/obex/* to the obex2 package...
Diffstat (limited to 'core') (more/less context) (show whitespace changes)
-rw-r--r--core/obex/libopieobex0.control4
-rw-r--r--core/obex/obexhandler.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/core/obex/libopieobex0.control b/core/obex/libopieobex0.control
index d74b51c..6df9f36 100644
--- a/core/obex/libopieobex0.control
+++ b/core/obex/libopieobex0.control
@@ -1,7 +1,7 @@
1Files: plugins/obex/libopieobex.so* 1Files: plugins/obex/libopieobex.so* pics/obex/*
2Priority: optional 2Priority: optional
3Section: opie/system 3Section: opie/system
4Maintainer: Holger Freyther <zecke@handhelds.org> 4Maintainer: hOlgar Freyther <zecke@handhelds.org>
5Architecture: arm 5Architecture: arm
6Version: $QPE_VERSION-$SUB_VERSION.1 6Version: $QPE_VERSION-$SUB_VERSION.1
7Depends: opie-base ($QPE_VERSION), openobex 7Depends: opie-base ($QPE_VERSION), openobex
diff --git a/core/obex/obexhandler.cpp b/core/obex/obexhandler.cpp
index 16e1c2f..6509d12 100644
--- a/core/obex/obexhandler.cpp
+++ b/core/obex/obexhandler.cpp
@@ -52,11 +52,11 @@ void ObexHandler::irdaMessage( const QCString& msg, const QByteArray& data) {
52 QDataStream stream( data, IO_ReadOnly ); 52 QDataStream stream( data, IO_ReadOnly );
53 if ( msg == "send(QString,QString,QString)" ) { 53 if ( msg == "send(QString,QString,QString)" ) {
54 QString name, desc; 54 QString name, desc;
55 stream >> name;
56 stream >> desc; 55 stream >> desc;
56 stream >> name;
57 m_wasRec = (m_receiver != 0 ); 57 m_wasRec = (m_receiver != 0 );
58 doReceive( false ); 58 doReceive( false );
59 doSend(desc, name); 59 doSend(name, desc);
60 }else if (msg == "receive(int)") { 60 }else if (msg == "receive(int)") {
61 int rec; 61 int rec;
62 stream >> rec; 62 stream >> rec;