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 1744
Collapse All | Expand All

(-)ori/tdebase/kate/app/katedocmanager.cpp (-4 / +13 lines)
Lines 381-387 Link Here
381
  return modified;
381
  return modified;
382
}
382
}
383
383
384
385
bool KateDocManager::queryCloseDocuments(KateMainWindow *w)
384
bool KateDocManager::queryCloseDocuments(KateMainWindow *w)
386
{
385
{
387
  uint docCount = m_docList.count();
386
  uint docCount = m_docList.count();
Lines 436-447 Link Here
436
  return true;
435
  return true;
437
}
436
}
438
437
439
440
void KateDocManager::saveAll()
438
void KateDocManager::saveAll()
441
{
439
{
442
  for (TQPtrListIterator<Kate::Document> it(m_docList); it.current(); ++it)
440
  for (TQPtrListIterator<Kate::Document> it(m_docList); it.current(); ++it)
443
    if ( it.current()->isModified() && it.current()->views().count() )
441
  {
444
      ((Kate::View*)it.current()->views().first())->save();
442
    if (it.current()->views().count())
443
    {
444
      if (it.current()->url().isEmpty())
445
      {
446
        ((Kate::View*)it.current()->views().first())->saveAs();
447
      }
448
      else if (it.current()->isModified())
449
      {
450
        ((Kate::View*)it.current()->views().first())->save();
451
      }
452
    }
453
  }
445
}
454
}
446
455
447
void KateDocManager::saveDocumentList (TDEConfig* config)
456
void KateDocManager::saveDocumentList (TDEConfig* config)

Return to bug 1744