diff -r 41c0a814d878 -r 6c9acdc6adc0 logsui/logsapp/src/logsmainwindow.cpp --- a/logsui/logsapp/src/logsmainwindow.cpp Fri Jun 11 13:38:41 2010 +0300 +++ b/logsui/logsapp/src/logsmainwindow.cpp Thu Jun 24 14:44:14 2010 +0300 @@ -17,7 +17,6 @@ #include "logsmainwindow.h" #include "logslogger.h" -#include "logsforegroundwatcher.h" #include #include @@ -27,12 +26,6 @@ // LogsMainWindow::LogsMainWindow() : HbMainWindow(), mForeground(false) { - if ( viewport() ){ - viewport()->grabGesture(Qt::SwipeGesture); - } - mWatcher = new LogsForegroundWatcher(this); - connect( mWatcher, SIGNAL(losingForeground()), this, SIGNAL(appFocusLost()) ); - connect( mWatcher, SIGNAL(gainingForeground()), this, SIGNAL(appFocusGained()) ); } // ----------------------------------------------------------------------------- @@ -41,9 +34,6 @@ // LogsMainWindow::~LogsMainWindow() { - if ( viewport() ){ - viewport()->ungrabGesture(Qt::SwipeGesture); - } } // -----------------------------------------------------------------------------