From: Daniel Klaffenbach Date: Wed, 3 Nov 2010 22:53:52 +0000 (+0100) Subject: Make use of autoRotate setting in main application X-Git-Tag: v0.4.0~15 X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=e298ebf8d53811d331770526b8c3625e881f7ca5;hp=2361e086b1d784af91070d795fc03c24da36bf56;p=qcpufreq Make use of autoRotate setting in main application --- diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8149779..8ea4a24 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -58,7 +58,7 @@ MainWindow::MainWindow(QWidget *parent) : init(); refresh(); - // enable auto rotation + // setup auto rotation setAutoRotation(); //initialize orientation @@ -74,7 +74,6 @@ MainWindow::MainWindow(QWidget *parent) : helpWindow.setWindowFlags( windowFlags() | Qt::Window ); //Settings widget - //settings.setWindowFlags(Qt::Popup); settings.hide(); //connect signals and slots @@ -452,12 +451,12 @@ void MainWindow::orientationChanged() /** - * Enables the auto-rotation feature of Maemo5 devices + * Enables or disables the auto-rotation feature of Maemo5 devices. */ void MainWindow::setAutoRotation() { #if defined(Q_WS_MAEMO_5) - setAttribute(Qt::WA_Maemo5AutoOrientation, true); + setAttribute(Qt::WA_Maemo5AutoOrientation, settings.useAutoRotate()); #endif }