From 1f8fe87602f30b5c81c32b4728716395b236da3e Mon Sep 17 00:00:00 2001 From: Daniel Klaffenbach Date: Sat, 2 Oct 2010 20:50:34 +0200 Subject: [PATCH] Fixed source code doc and indent issues --- src/helpwindow.cpp | 12 ++++++------ src/mainwindow.cpp | 47 ++++++++++++++++++++++++++--------------------- 2 files changed, 32 insertions(+), 27 deletions(-) diff --git a/src/helpwindow.cpp b/src/helpwindow.cpp index 95b4863..a95f64c 100644 --- a/src/helpwindow.cpp +++ b/src/helpwindow.cpp @@ -50,12 +50,12 @@ void HelpWindow::setHelpText() //open the file if ( !help.exists() || !help.open( QIODevice::ReadOnly ) ) { - //try to open the file in english language instead - help.setFileName(":/txt/help_en"); - if ( !help.exists() || !help.open( QIODevice::ReadOnly ) ) { - QMessageBox::critical(this, tr("QCPUFreq"), tr("Cannot open help file!")); - return; - } + //try to open the file in english language instead + help.setFileName(":/txt/help_en"); + if ( !help.exists() || !help.open( QIODevice::ReadOnly ) ) { + QMessageBox::critical(this, tr("QCPUFreq"), tr("Cannot open help file!")); + return; + } } //read the file diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 1b826a1..3abf8e6 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -265,7 +265,7 @@ int MainWindow::getScalingFreq(int step) /** * Returns the name of the current CPU frequency scaling governor * - * \return name of governor + * @return QString - name of governor */ QString MainWindow::getScalingGovernor() { @@ -275,6 +275,8 @@ QString MainWindow::getScalingGovernor() /** * Returns the amount of available scaling steps. + * + * @return int */ int MainWindow::getScalingSteps() { @@ -286,6 +288,8 @@ int MainWindow::getScalingSteps() /** * Returns the scaling step for the specified frequency. + * + * @return int */ int MainWindow::getScalingStep( int freq ) { @@ -309,10 +313,11 @@ int MainWindow::getSmartReflexState() #if defined(Q_WS_MAEMO_5) QString tmp = readSysFile( "power/sr_vdd1_autocomp" ); - if ( tmp == "1" ) - return 1; - else - return 0; + if ( tmp == "1" ) { + return 1; + } else { + return 0; + } #else //disable UI checkbox ui->sr_box->setDisabled( true ); @@ -375,9 +380,9 @@ void MainWindow::refresh() //smart reflex button if ( getSmartReflexState() == 1 ) - ui->sr_box->setCheckState( Qt::Checked ); + ui->sr_box->setCheckState( Qt::Checked ); else - ui->sr_box->setCheckState( Qt::Unchecked ); + ui->sr_box->setCheckState( Qt::Unchecked ); //display frequency slider @@ -399,22 +404,22 @@ void MainWindow::orientationChanged() //check whether we are using portrait or landscape mode if ( usePortrait() ) { - //in portrait mode we want to display the large image - image.load( ":/img/chip256" ); - scene.clear(); - scene.addPixmap( image ); - - ui->graphicsPortrait->setScene( &scene ); - ui->graphicsPortrait->setMaximumSize( 256, 256 ); - ui->graphicsLandscape->setMaximumSize( 0, 0 ); + //in portrait mode we want to display the large image + image.load( ":/img/chip256" ); + scene.clear(); + scene.addPixmap( image ); + + ui->graphicsPortrait->setScene( &scene ); + ui->graphicsPortrait->setMaximumSize( 256, 256 ); + ui->graphicsLandscape->setMaximumSize( 0, 0 ); } else { - image.load( ":/img/chip128" ); - scene.clear(); - scene.addPixmap( image ); + image.load( ":/img/chip128" ); + scene.clear(); + scene.addPixmap( image ); - ui->graphicsLandscape->setScene( &scene ); - ui->graphicsLandscape->setMaximumSize( 128, 128 ); - ui->graphicsPortrait->setMaximumSize( 0, 0 ); + ui->graphicsLandscape->setScene( &scene ); + ui->graphicsLandscape->setMaximumSize( 128, 128 ); + ui->graphicsPortrait->setMaximumSize( 0, 0 ); } } -- 1.7.9.5