summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Wilson <alex.wilson@nokia.com>2011-12-28 14:32:09 +1000
committerQt by Nokia <qt-info@nokia.com>2011-12-28 06:45:06 +0100
commit183ba0ac8d966f257cad16a7fc95638690bea60e (patch)
treef8fae7890a0f58ba5a1460d0bc55719e2dfca43d /src
parentc11b884ee567f6c0bdf57fd8fcecc651a5ca1635 (diff)
downloadqtlocation-183ba0ac8d966f257cad16a7fc95638690bea60e.tar.gz
Fixing up a bunch of minor compile warnings
Mostly just using Q_UNUSED in appropriate spots. Also commenting out some unused constants. Change-Id: Id43e171bf3a34f7c11e366b14eadb42f08f0096d Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/location/maps/qgeomappingmanager.cpp1
-rw-r--r--src/location/places/qplacemanagerengine.cpp1
-rw-r--r--src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp8
-rw-r--r--src/plugins/geoservices/nokia/places/qplacejsonreviewparser.cpp7
-rw-r--r--src/plugins/geoservices/nokia/places/qplacejsonsearchparser.cpp2
5 files changed, 17 insertions, 2 deletions
diff --git a/src/location/maps/qgeomappingmanager.cpp b/src/location/maps/qgeomappingmanager.cpp
index 822eb392..fa4bb749 100644
--- a/src/location/maps/qgeomappingmanager.cpp
+++ b/src/location/maps/qgeomappingmanager.cpp
@@ -190,6 +190,7 @@ void QGeoMappingManager::registerMap(Map *map)
void QGeoMappingManager::deregisterMap(Map *map)
{
+ Q_UNUSED(map);
// TileCache *cache = map->tileCache();
// QSet<Map*> maps = d_ptr->caches.value(cache);
// maps.remove(map);
diff --git a/src/location/places/qplacemanagerengine.cpp b/src/location/places/qplacemanagerengine.cpp
index 2688e409..5f890cd2 100644
--- a/src/location/places/qplacemanagerengine.cpp
+++ b/src/location/places/qplacemanagerengine.cpp
@@ -151,6 +151,7 @@ QPlaceManager *QPlaceManagerEngine::manager() const
*/
QPlace QPlaceManagerEngine::compatiblePlace(const QPlace &original) const
{
+ Q_UNUSED(original);
return QPlace();
}
diff --git a/src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp b/src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp
index 46224496..49e5d842 100644
--- a/src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp
+++ b/src/plugins/geoservices/nokia/places/qplacejsondetailsparser.cpp
@@ -73,7 +73,9 @@
//search const
static const char *place_place_element = "place";
static const char *place_id_element = "a_id";
+/* currently unused:
static const char *place_is_ad_place_value = "isAdPlace";
+*/
static const char *place_provider = "provider";
static const char *place_provider_url = "providerUrl";
@@ -85,7 +87,9 @@ static const char *place_contact_email_element = "email";
static const char *place_contact_fax_element = "fax";
static const char *place_contact_phone_element = "phone";
static const char *place_contact_website_element = "website";
+/* currently unused:
static const char *place_contact_im_element = "im";
+*/
static const char *place_tags_element = "tags";
static const char *place_tags_value_element = "value";
@@ -95,7 +99,9 @@ static const char *place_alternativenames_element = "alternativeNames";
static const char *place_name_default_element = "defaultName";
static const char *place_name_localized_element = "localizedName";
static const char *place_name_value_element = "name";
+/* currently unused:
static const char *place_name_language_element = "language";
+*/
static const char *place_ratings_element = "averageRatings";
static const char *place_rating_element = "averageRating";
@@ -149,6 +155,7 @@ static const char *place_adcontent_hours_open_to_element = "openTo";
static const char *place_adcontent_hours_openingnotes_element = "openingnotes";
static const char *place_adcontent_hours_openingnote_element = "openingnote";
static const char *place_adcontent_hours_openingnote_v_element = "_v";
+/* currently unused:
static const char *place_adcontent_packages_element = "packages";
static const char *place_adcontent_package_element = "package";
static const char *place_adcontent_package_type_element = "packageType";
@@ -160,6 +167,7 @@ static const char *place_package_type_ad_place = "ADPLACE";
static const char *place_package_type_ad_place_prime_plus = "ADPLACE, PRIME_PLUS";
static const char *place_package_type_ad_place_prime_plus_plus = "ADPLACE, PRIME_PLUS_PLUS";
static const char *place_package_type_place = "PLACE";
+*/
static const char *place_premiumcontent_element = "premiumContent";
static const char *place_premiumcontent_version_element = "version";
diff --git a/src/plugins/geoservices/nokia/places/qplacejsonreviewparser.cpp b/src/plugins/geoservices/nokia/places/qplacejsonreviewparser.cpp
index 35528b1e..41079a58 100644
--- a/src/plugins/geoservices/nokia/places/qplacejsonreviewparser.cpp
+++ b/src/plugins/geoservices/nokia/places/qplacejsonreviewparser.cpp
@@ -71,9 +71,7 @@ static const char *review_count = "totalNumberOfReviews";
static const char *review_id_element = "a_id";
static const char *review_date_element = "creationDate";
static const char *review_description_element = "description";
-static const char *review_minus_element = "minusCount";
static const char *review_originator_element = "originatorUrl";
-static const char *review_plus_element = "plusCount";
static const char *review_rating_element = "rating";
static const char *review_title_element = "title";
static const char *review_username_element = "user";
@@ -82,6 +80,11 @@ static const char *review_vendor_element = "vendor";
static const char *review_vendorname_element = "vendorDisplayName";
static const char *review_vendoricon_element = "vendorIconUrl";
+/* currently unused:
+static const char *review_minus_element = "minusCount";
+static const char *review_plus_element = "plusCount";
+*/
+
QT_USE_NAMESPACE
QPlaceJSonReviewParser::QPlaceJSonReviewParser(QPlaceManager *manager, QObject *parent) :
diff --git a/src/plugins/geoservices/nokia/places/qplacejsonsearchparser.cpp b/src/plugins/geoservices/nokia/places/qplacejsonsearchparser.cpp
index 5d0dc717..4a22c99a 100644
--- a/src/plugins/geoservices/nokia/places/qplacejsonsearchparser.cpp
+++ b/src/plugins/geoservices/nokia/places/qplacejsonsearchparser.cpp
@@ -72,7 +72,9 @@
static const char *search_results_element = "results";
static const char *search_type_element = "type";
static const char *search_type_dym_value = "DID_YOU_MEAN_SEARCH";
+/* currently unused:
static const char *search_type_addplace_value = "ADPLACE";
+*/
static const char *search_categories_element = "categories";
static const char *search_categories_id_value = "id";