summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/urlparameter.cxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/urlparameter.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
index ff4c9e21c006..bc5792149cec 100644
--- a/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
+++ b/xmlhelp/source/cxxhelp/provider/urlparameter.cxx
@@ -593,16 +593,13 @@ bool URLParameter::query()
struct UserData {
- UserData( InputStreamTransformer* pTransformer,
- URLParameter* pInitial,
+ UserData( URLParameter* pInitial,
Databases* pDatabases )
- : m_pTransformer( pTransformer ),
- m_pDatabases( pDatabases ),
+ : m_pDatabases( pDatabases ),
m_pInitial( pInitial )
{
}
- InputStreamTransformer* m_pTransformer;
Databases* m_pDatabases;
URLParameter* m_pInitial;
};
@@ -787,7 +784,7 @@ InputStreamTransformer::InputStreamTransformer( URLParameter* urlParam,
}
else
{
- UserData userData( this,urlParam,pDatabases );
+ UserData userData( urlParam,pDatabases );
// Uses the implementation detail, that OString::getStr returns a zero terminated character-array