summaryrefslogtreecommitdiff
path: root/core/obex/receiver.cpp
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/obex/receiver.cpp
parente9e20c4e64b8b228af928822e3d4a49ed773dc2e (diff)
downloadopie-62cc9d89378f281c11599f38c3ebe89886b69568.zip
opie-62cc9d89378f281c11599f38c3ebe89886b69568.tar.gz
opie-62cc9d89378f281c11599f38c3ebe89886b69568.tar.bz2
Fix getting files
Diffstat (limited to 'core/obex/receiver.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/obex/receiver.cpp4
1 files changed, 4 insertions, 0 deletions
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
@@ -60,6 +60,7 @@ void Receiver::handleOther( const QString& other ) {
hand->handle( other );
}
int Receiver::checkFile( const QString& file ) {
+ qWarning("check file!! %s", file.latin1() );
int ret;
if (file.right(4) == ".vcs" ) {
ret = Datebook;
@@ -68,6 +69,8 @@ int Receiver::checkFile( const QString& file ) {
}else
ret = Other;
+
+ qWarning("check it now %d", ret );
return ret;
}
@@ -106,6 +109,7 @@ void OtherHandler::handle( const QString& file ) {
m_file = file;
m_na->setText(file);
DocLnk lnk(file);
+ qWarning(" %s %s", lnk.type().latin1(), lnk.icon().latin1() );
QString str = tr("<p>You received a file of type %1 (<img src=\"%2\"> )What do you want to do?").arg(lnk.type() ).arg(lnk.icon() );
m_view->setText( str );