From 58fa039cf914e3a108fd463398bf3a39b9c6341e Mon Sep 17 00:00:00 2001 From: Daniel Klaffenbach Date: Sat, 25 Sep 2010 16:33:12 +0200 Subject: [PATCH] Only display overclocking option on power kernels --- src/mainwindow.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index e904561..44b9a7e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -81,6 +81,11 @@ MainWindow::MainWindow(QWidget *parent) : connect(&refreshTimer, SIGNAL(timeout()), this, SLOT(refresh())); connect(ui->actionOverclocking, SIGNAL(toggled(bool)), this, SLOT(setOverclocking())); + //disable overclocking button on vanilla kernels + if ( getScalingFreq(0) <= 600000 ) { + ui->actionOverclocking->setDisabled(true); + } + } MainWindow::~MainWindow() @@ -116,7 +121,7 @@ void MainWindow::adjustFreq() //check for overclocking #if defined(Q_WS_MAEMO_5) if (this->allowOverclocking == false && newmax > 600000) { - QMaemo5InformationBox::information(this, tr( "You need to enable overclocking for setting frequencies above 600MHz!"), 0); + QMaemo5InformationBox::information(this, tr( "You need to enable overclocking in QCPUFreq's menu for setting frequencies above 600MHz!"), 0); refresh(); return; } -- 1.7.9.5