summaryrefslogtreecommitdiff
path: root/src/location/places/qplacemanagerengine.h
diff options
context:
space:
mode:
authorabcd <qt-info@nokia.com>2011-06-22 16:22:44 +1000
committerabcd <qt-info@nokia.com>2011-06-22 16:22:44 +1000
commit47a2918ed8e48a4cf923464fbe91de2aa5c8f231 (patch)
tree98ce64ccfe9c6e8ec212165f5008137d38420a58 /src/location/places/qplacemanagerengine.h
parent8e562196d8c7d873b38af2041cf1674a106e52a3 (diff)
downloadqtlocation-47a2918ed8e48a4cf923464fbe91de2aa5c8f231.tar.gz
Use QGeoPlace instead of QPlace
QGeoPlace was an already existing class in mobility.
Diffstat (limited to 'src/location/places/qplacemanagerengine.h')
-rw-r--r--src/location/places/qplacemanagerengine.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/location/places/qplacemanagerengine.h b/src/location/places/qplacemanagerengine.h
index 91373a28..b2ed8bf9 100644
--- a/src/location/places/qplacemanagerengine.h
+++ b/src/location/places/qplacemanagerengine.h
@@ -58,26 +58,26 @@ public:
virtual QPlaceDetailsReply *getPlaceDetails(const QString &placeId) = 0;
- virtual QPlaceMediaReply *getMedia(const QPlace &place, const QPlaceQuery &query) = 0;
+ virtual QPlaceMediaReply *getMedia(const QGeoPlace &place, const QPlaceQuery &query) = 0;
- virtual QPlaceReply *postRating(const QPlace &place, qreal value) = 0;
+ virtual QPlaceReply *postRating(const QGeoPlace &place, qreal value) = 0;
- virtual QPlaceReviewReply *getReviews(const QPlace &place, const QPlaceQuery &query) = 0;
+ virtual QPlaceReviewReply *getReviews(const QGeoPlace &place, const QPlaceQuery &query) = 0;
virtual QPlaceSearchReply *searchForPlaces(const QPlaceSearchQuery &query, QPlaceManager::VisibilityScope scope) = 0;
virtual QPlaceManager::VisibilityScopes supportedSearchVisibilityScopes() const = 0;
- virtual QPlaceSearchReply *recommendations(const QPlace &place, const QPlaceSearchQuery &query) = 0;
+ virtual QPlaceSearchReply *recommendations(const QGeoPlace &place, const QPlaceSearchQuery &query) = 0;
virtual QPlaceTextPredictionReply *textPredictions(const QPlaceSearchQuery &query) = 0;
virtual QPlaceManager::ConnectivityModes connectivityMode() const = 0;
virtual void setConnectivityMode(QPlaceManager::ConnectivityModes mode) = 0;
virtual QPlaceManager::ConnectivityModes supportedConnectivityModes() const = 0;
- virtual QPlaceReply *savePlace(QPlace *place, QPlaceManager::VisibilityScope scope) = 0;
+ virtual QPlaceReply *savePlace(QGeoPlace *place, QPlaceManager::VisibilityScope scope) = 0;
virtual QPlaceManager::VisibilityScopes supportedSaveVisibilityScopes() const = 0;
- virtual QPlaceReply *removePlace(const QPlace &place) = 0;
+ virtual QPlaceReply *removePlace(const QGeoPlace &place) = 0;
virtual QPlaceReply *initializeCategories() = 0;
virtual QList<QPlaceCategory> categories() const = 0;