From 8d2b00ea75ff040a8cac80dca8bfbe4edf52ec39 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Mon, 17 Dec 2012 13:12:31 -0800 Subject: [PATCH] fix member name --- include/mapnik/datasource.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mapnik/datasource.hpp b/include/mapnik/datasource.hpp index 6a0bdeb53..92974c998 100644 --- a/include/mapnik/datasource.hpp +++ b/include/mapnik/datasource.hpp @@ -86,7 +86,7 @@ public: }; datasource (parameters const& params) - : params__(params) {} + : params_(params) {} /*! * @brief Get the configuration parameters of the data source. @@ -97,7 +97,7 @@ public: */ parameters const& params() const { - return params__; + return params_; } /*! @@ -112,7 +112,7 @@ public: virtual layer_descriptor get_descriptor() const = 0; virtual ~datasource() {} protected: - parameters params__; + parameters params_; }; typedef const char * datasource_name();