httpfilters/httpfilterproxy/Src/HttpFilterProxy.cpp
branchRCL_3
changeset 19 c0c2f28ace9c
parent 18 5f1cd966e0d9
child 20 a0da872af3fa
--- a/httpfilters/httpfilterproxy/Src/HttpFilterProxy.cpp	Thu Aug 19 10:27:19 2010 +0300
+++ b/httpfilters/httpfilterproxy/Src/HttpFilterProxy.cpp	Tue Aug 31 15:44:10 2010 +0300
@@ -142,11 +142,11 @@
                                             RStringF(),                // The header whose presence triggers this filter, or KNullDesC to trigger on any header
                                             KAnyStatusCode,            // The status code that triggers this filter, or KAnyStatusCode to trigger on any status code
                                             ECache - KProxyOrderOffset,// The position of the filter in the queue
-                                            iStringPool.StringF(HttpFilterCommonStringsExt::EProxyFilter,HttpFilterCommonStringsExt::GetTable()));  //The name of the filter to add
+                                            iStringPool.StringF(HttpFilterCommonStringsExt::EProxyFilter,RHTTPSession::GetTable()));  //The name of the filter to add
 
 	// register for notification of KErrNotReady error codes
 	// this allows us to re-start the connection if it fails
-	iSession->FilterCollection().AddFilterL(*this, KErrNotReady, MHTTPFilter::ETidyUp -1, iStringPool.StringF(HttpFilterCommonStringsExt::EProxyFilter,HttpFilterCommonStringsExt::GetTable()));
+	iSession->FilterCollection().AddFilterL(*this, KErrNotReady, MHTTPFilter::ETidyUp -1, iStringPool.StringF(HttpFilterCommonStringsExt::EProxyFilter,RHTTPSession::GetTable()));
 }
 
 //---------------------------------------------------------------------------------------------