From: Daniel Klaffenbach Date: Sat, 25 Sep 2010 14:33:12 +0000 (+0200) Subject: Only display overclocking option on power kernels X-Git-Tag: v0.3.3~1 X-Git-Url: http://git.maemo.org/git/?p=qcpufreq;a=commitdiff_plain;h=58fa039cf914e3a108fd463398bf3a39b9c6341e Only display overclocking option on power kernels --- 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; }