summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThomas McGuire <thomas.mcguire.qnx@kdab.com>2013-04-09 16:02:03 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-11 08:59:46 +0200
commit5725577a0cde3ca1efb7194dd79375c503fb83ed (patch)
tree0b8e7d4c52386c0bbca38c6a98721ce37f141576 /src
parentf502a6d1c4feccb986d1fccfd17c773d1a079227 (diff)
Remove TODO comments
With sensorfw we actually have a backend that uses these now. Change-Id: Iba088dc356a54ae43f29e8b5f77349a9a98c4d09 Reviewed-by: Lorn Potter <lorn.potter@jollamobile.com>
Diffstat (limited to 'src')
-rw-r--r--src/sensors/qsensor.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/sensors/qsensor.cpp b/src/sensors/qsensor.cpp
index c0589646..80a1ce44 100644
--- a/src/sensors/qsensor.cpp
+++ b/src/sensors/qsensor.cpp
@@ -1038,7 +1038,6 @@ int QSensor::maxBufferSize() const
*/
void QSensor::setMaxBufferSize(int maxBufferSize)
{
- // ### Qt 6: Remove the entire maxBufferSize property, no backend really uses it
Q_D(QSensor);
if (d->maxBufferSize != maxBufferSize) {
d->maxBufferSize = maxBufferSize;
@@ -1069,7 +1068,6 @@ int QSensor::efficientBufferSize() const
*/
void QSensor::setEfficientBufferSize(int efficientBufferSize)
{
- // ### Qt 6: Remove the entire efficientBufferSize property, no backend really uses it
Q_D(QSensor);
if (d->efficientBufferSize != efficientBufferSize) {
d->efficientBufferSize = efficientBufferSize;
@@ -1120,8 +1118,6 @@ int QSensor::bufferSize() const
void QSensor::setBufferSize(int bufferSize)
{
- // ### Qt 6: Currently only the Blackberry backend supports this, but only as an on/off switch.
- // We should consider changing this to a more appropriate API.
Q_D(QSensor);
if (d->bufferSize != bufferSize) {
d->bufferSize = bufferSize;