httpfilters/httpfilterproxy/Src/HttpFilterProxy.cpp
branchRCL_3
changeset 37 5f1cd966e0d9
parent 8 fa2fd8b2d6cc
child 39 c0c2f28ace9c
--- a/httpfilters/httpfilterproxy/Src/HttpFilterProxy.cpp	Thu Jul 15 19:14:59 2010 +0300
+++ b/httpfilters/httpfilterproxy/Src/HttpFilterProxy.cpp	Thu Aug 19 10:27:19 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,RHTTPSession::GetTable()));  //The name of the filter to add
+                                            iStringPool.StringF(HttpFilterCommonStringsExt::EProxyFilter,HttpFilterCommonStringsExt::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,RHTTPSession::GetTable()));
+	iSession->FilterCollection().AddFilterL(*this, KErrNotReady, MHTTPFilter::ETidyUp -1, iStringPool.StringF(HttpFilterCommonStringsExt::EProxyFilter,HttpFilterCommonStringsExt::GetTable()));
 }
 
 //---------------------------------------------------------------------------------------------