From 28c514ec19215b6db5e98ba64d5f716c0b5ba391 Mon Sep 17 00:00:00 2001 From: llornkcor Date: Mon, 27 Sep 2004 09:46:44 +0000 Subject: fix vmemo --- diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index 07ef15c..d5808b7 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp @@ -218,18 +218,21 @@ VMemo::VMemo( QWidget *parent, const char *_name ) // else systemZaurus = FALSE; +// myChannel = new QCopChannel( "QPE/VMemo", this ); myChannel = new QCopChannel( "QPE/VMemo", this ); + connect( myChannel, SIGNAL(received(const QCString&,const QByteArray&)), this, SLOT(receive(const QCString&,const QByteArray&)) ); + if( toggleKey != -1 ) { odebug << "Register key " << toggleKey << "" << oendl; QCopEnvelope e("QPE/Launcher", "keyRegister(int,QCString,QCString)"); // e << 4096; // Key_Escape // e << Key_F5; //4148 e << toggleKey; - e << QString("QPE/VMemo"); - e << QString("toggleRecord()"); + e << QCString("QPE/VMemo"); + e << QCString("toggleRecord()"); } if(toggleKey == 1) usingIcon = TRUE; @@ -251,7 +254,6 @@ int VMemo::position() } void VMemo::receive( const QCString &msg, const QByteArray &data ) { - odebug << "Vmemo receive" << oendl; QDataStream stream( data, IO_ReadOnly ); if (msg == "toggleRecord()") { @@ -520,7 +522,7 @@ bool VMemo::record() { odebug << "ready to record"<< oendl; if(useADPCM) { odebug << "usr ADPCM" << oendl; - + while(recording) { result = ::read(dsp, sbuf, bufsize); // adpcm read if( result <= 0) { @@ -665,5 +667,5 @@ void VMemo::timerBreak() { } -EXPORT_OPIE_APPLET_v1( VMemo ) +//EXPORT_OPIE_APPLET_v1( VMemo ) -- cgit v0.9.0.2