summaryrefslogtreecommitdiff
path: root/transform.h
diff options
context:
space:
mode:
Diffstat (limited to 'transform.h')
-rw-r--r--transform.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/transform.h b/transform.h
index 74e770b2..e98c53a3 100644
--- a/transform.h
+++ b/transform.h
@@ -113,7 +113,7 @@ class select_transform : public transform_t
xml::xpath_t xpath;
public:
- select_transform(const std::string& selection_path) {
+ select_transform(const string& selection_path) {
xpath.parse(selection_path);
}
virtual ~select_transform() {
@@ -127,7 +127,7 @@ class select_transform : public transform_t
class remove_transform : public select_transform
{
public:
- remove_transform(const std::string& selection_path)
+ remove_transform(const string& selection_path)
: select_transform(selection_path) {}
virtual void execute(xml::document_t * document);