Fixed source code doc and indent issues
authorDaniel Klaffenbach <danielklaffenbach@gmail.com>
Sat, 2 Oct 2010 18:50:34 +0000 (20:50 +0200)
committerDaniel Klaffenbach <danielklaffenbach@gmail.com>
Sat, 2 Oct 2010 18:50:34 +0000 (20:50 +0200)
src/helpwindow.cpp
src/mainwindow.cpp

index 95b4863..a95f64c 100644 (file)
@@ -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
index 1b826a1..3abf8e6 100644 (file)
@@ -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 );
     }
 }