aboutsummaryrefslogtreecommitdiffstats
path: root/src/utility/url.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utility/url.cpp')
-rw-r--r--src/utility/url.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utility/url.cpp b/src/utility/url.cpp
index cf991b86..a2d4e32b 100644
--- a/src/utility/url.cpp
+++ b/src/utility/url.cpp
@@ -122,7 +122,7 @@ const string url::build() const
oss << urlUtils::encode(m_path);
}
- const std::vector <const propertySet::property*> params
+ const std::vector <ref <const propertySet::property> > params
= m_params.getPropertyList();
if (!params.empty())
@@ -134,7 +134,7 @@ const string url::build() const
for (unsigned int i = 0 ; i < params.size() ; ++i)
{
- const propertySet::property* prop = params[i];
+ const ref <const propertySet::property> prop = params[i];
if (i != 0)
oss << "&";