radioapp/radioenginewrapper/src/radioenginewrapper.cpp
changeset 33 11b6825f0862
parent 32 189d20c34778
child 37 451b2e1545b2
child 41 3a6b55c6390c
--- a/radioapp/radioenginewrapper/src/radioenginewrapper.cpp	Wed Jun 23 18:12:57 2010 +0300
+++ b/radioapp/radioenginewrapper/src/radioenginewrapper.cpp	Tue Jul 06 14:16:27 2010 +0300
@@ -109,11 +109,11 @@
 }
 
 /*!
- * Returns the frequency step size from the selected region
+ * Returns true if frequency is valid, otherwise false
  */
 bool RadioEngineWrapper::isFrequencyValid( uint frequency ) const
 {
-    return frequency >= minFrequency() && frequency <= maxFrequency() && frequency % frequencyStepSize() == 0;
+    return frequency >= minFrequency() && frequency <= maxFrequency();
 }
 
 /*!