summaryrefslogtreecommitdiff
path: root/core
authorzecke <zecke>2003-02-16 17:50:15 (UTC)
committer zecke <zecke>2003-02-16 17:50:15 (UTC)
commit62cc9d89378f281c11599f38c3ebe89886b69568 (patch) (side-by-side diff)
tree7499e9704f66820e785acc8c772e35b4f804aa80 /core
parente9e20c4e64b8b228af928822e3d4a49ed773dc2e (diff)
downloadopie-62cc9d89378f281c11599f38c3ebe89886b69568.zip
opie-62cc9d89378f281c11599f38c3ebe89886b69568.tar.gz
opie-62cc9d89378f281c11599f38c3ebe89886b69568.tar.bz2
Fix getting files
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/obex/obex.cc8
-rw-r--r--core/obex/receiver.cpp4
2 files changed, 8 insertions, 4 deletions
diff --git a/core/obex/obex.cc b/core/obex/obex.cc
index 92cd317..b8ed6e0 100644
--- a/core/obex/obex.cc
+++ b/core/obex/obex.cc
@@ -19,3 +19,3 @@ Obex::Obex( QObject *parent, const char* name )
SLOT(slotError() ) );
- connect( this, SIGNAL(sent() ),
+ connect( this, SIGNAL(sent(bool) ),
SLOT(slotError() ) );
@@ -108,4 +108,4 @@ void Obex::slotStdOut(OProcess* proc, char* buf, int len){
if ( proc == m_rec ) { // only receive
- QCString cstring( buf, len );
- m_outp.append( cstring.data() );
+ QString str = QString::fromUtf8( buf, len );
+ m_outp.append( str );
}
@@ -117,3 +117,3 @@ void Obex::received() {
QString filename = parseOut();
- qWarning("ACHTUNG");
+ qWarning("ACHTUNG %s", filename.latin1() );
emit receivedFile( filename );
diff --git a/core/obex/receiver.cpp b/core/obex/receiver.cpp
index 50ee6cb..d5a7271 100644
--- a/core/obex/receiver.cpp
+++ b/core/obex/receiver.cpp
@@ -62,2 +62,3 @@ void Receiver::handleOther( const QString& other ) {
int Receiver::checkFile( const QString& file ) {
+ qWarning("check file!! %s", file.latin1() );
int ret;
@@ -70,2 +71,4 @@ int Receiver::checkFile( const QString& file ) {
+
+ qWarning("check it now %d", ret );
return ret;
@@ -108,2 +111,3 @@ void OtherHandler::handle( const QString& file ) {
DocLnk lnk(file);
+ qWarning(" %s %s", lnk.type().latin1(), lnk.icon().latin1() );