mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
fix member name
This commit is contained in:
parent
83215ba726
commit
8d2b00ea75
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user