Changeset 1573

Show
Ignore:
Timestamp:
12/15/2006 10:06:52 AM (2 years ago)
Author:
xue
Message:

changing some public methods to protected.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/framework/Web/THttpResponse.php

    r1568 r1573  
    326326         * the current request will be inserted at the beginning. 
    327327         */ 
    328         public function httpRedirect($url) 
     328        protected function httpRedirect($url) 
    329329        { 
    330330                if(!$this->getApplication()->getRequestCompleted()) 
     
    360360         * Outputs the buffered content, sends content-type and charset header. 
    361361         */ 
    362         public function flushContent() 
     362        protected function flushContent() 
    363363        { 
    364364                Prado::trace("Flushing output",'System.Web.THttpResponse'); 
     
    494494         * @param ITextWriter text writer holding the contents. 
    495495         */ 
    496         public function createNewHtmlWriter($type, $writer) 
     496        protected function createNewHtmlWriter($type, $writer) 
    497497        { 
    498498                return Prado::createComponent($type, $writer);