/**
  * Add a link
  *
  * @access protected
  * @param string $text Text to use as link
  * @param string $link URL link
  * @param string $font Type of font
  * @deprecated
  */
 protected function fAddLink($text = '', $textLink = '', $font = '')
 {
     $link = CreateLink::getInstance();
     $link->createLink($text, $textLink, $font);
     $this->_wordDocumentC .= (string) $link;
 }