By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1958
Collapse All | Expand All

(-)koffice/filters/kword/html/import/tdehtmlreader.cpp (+2 lines)
Lines 244-250 Link Here
244
244
245
bool TDEHTMLReader::parseTag(DOM::Element e) 
245
bool TDEHTMLReader::parseTag(DOM::Element e) 
246
{
246
{
247
#ifndef NDEBUG
247
  kdDebug(30503) << "Entering parseTag for " << e.tagName().lower() << endl;
248
  kdDebug(30503) << "Entering parseTag for " << e.tagName().lower() << endl;
249
#endif
248
  if (e.tagName().lower()=="a") { return parse_a(e); }
250
  if (e.tagName().lower()=="a") { return parse_a(e); }
249
  if (e.tagName().lower()=="p") { return parse_p(e); }
251
  if (e.tagName().lower()=="p") { return parse_p(e); }
250
  if (e.tagName().lower()=="br") { return parse_br(e); }
252
  if (e.tagName().lower()=="br") { return parse_br(e); }

Return to bug 1958