-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 | |||
@@ -249,14 +249,14 @@ void VMemo::mousePressEvent( QMouseEvent *me ) | |||
249 | } | 249 | } |
250 | 250 | ||
251 | /* | 251 | /* |
252 | No mousePress/mouseRelease recording on the iPAQ. The REC button on the iPAQ calls these functions | 252 | No mousePress/mouseRelease recording on the iPAQ. The REC button on the iPAQ calls these functions |
253 | mousePressEvent and mouseReleaseEvent with a NULL parameter. | 253 | mousePressEvent and mouseReleaseEvent with a NULL parameter. |
254 | */ | 254 | */ |
255 | // if (!systemZaurus && me != NULL) | 255 | if (!systemZaurus && me != NULL) |
256 | // return; | 256 | return; |
257 | 257 | ||
258 | // Config config( "Sound" ); | 258 | // Config config( "Sound" ); |
259 | // config.setGroup( "System" ); | 259 | // config.setGroup( "System" ); |
260 | // useAlerts = config.readBoolEntry("Alert"); | 260 | // useAlerts = config.readBoolEntry("Alert"); |
261 | 261 | ||
262 | // if(useAlerts) { | 262 | // if(useAlerts) { |