-rw-r--r-- | core/applets/vmemo/vmemo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index e6c4ff9..4d4d598 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp @@ -243,26 +243,26 @@ void VMemo::paintEvent( QPaintEvent* ) void VMemo::mousePressEvent( QMouseEvent *me ) { // just to be safe if (recording) { recording = FALSE; return; } /* No mousePress/mouseRelease recording on the iPAQ. The REC button on the iPAQ calls these functions mousePressEvent and mouseReleaseEvent with a NULL parameter. */ -// if (!systemZaurus && me != NULL) -// return; + if (!systemZaurus && me != NULL) + return; // Config config( "Sound" ); // config.setGroup( "System" ); // useAlerts = config.readBoolEntry("Alert"); // if(useAlerts) { // if( QMessageBox::warning(this,"VMemo","Really Record?","Yes","No",0,0,1) ==1) // return; // } else { QSound::play(Resource::findSound("vmemob")); // } qDebug("Start recording"); |