--- 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();
}
/*!