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

(-)ori/tdebase/kate/app/katemainwindow.cpp (-8 / +3 lines)
Lines 422-428 Link Here
422
void KateMainWindow::saveOptions ()
422
void KateMainWindow::saveOptions ()
423
{
423
{
424
  TDEConfig *config = KateApp::self()->config ();
424
  TDEConfig *config = KateApp::self()->config ();
425
426
  config->setGroup("General");
425
  config->setGroup("General");
427
426
428
  if (console)
427
  if (console)
Lines 431-450 Link Here
431
    config->writeEntry("Show Console", false);
430
    config->writeEntry("Show Console", false);
432
431
433
  config->writeEntry("Save Meta Infos", KateDocManager::self()->getSaveMetaInfos());
432
  config->writeEntry("Save Meta Infos", KateDocManager::self()->getSaveMetaInfos());
434
435
  config->writeEntry("Days Meta Infos", KateDocManager::self()->getDaysMetaInfos());
433
  config->writeEntry("Days Meta Infos", KateDocManager::self()->getDaysMetaInfos());
436
437
  config->writeEntry("Show Full Path in Title", m_viewManager->getShowFullPath());
434
  config->writeEntry("Show Full Path in Title", m_viewManager->getShowFullPath());
438
439
  config->writeEntry("Sync Konsole", syncKonsole);
435
  config->writeEntry("Sync Konsole", syncKonsole);
440
441
  config->writeEntry("UseInstance", useInstance);
436
  config->writeEntry("UseInstance", useInstance);
442
437
  
443
  fileOpenRecent->saveEntries(config, "Recent Files");
438
  fileOpenRecent->saveEntries(config, "Recent Files");
444
445
  fileselector->writeConfig(config, "fileselector");
439
  fileselector->writeConfig(config, "fileselector");
446
447
  filelist->writeConfig(config, "Filelist");
440
  filelist->writeConfig(config, "Filelist");
441
442
  config->sync();
448
}
443
}
449
444
450
void KateMainWindow::slotWindowActivated ()
445
void KateMainWindow::slotWindowActivated ()
(-)ori/tdebase/kate/app/katepluginmanager.cpp (-1 lines)
Lines 65-71 Link Here
65
65
66
    TQString pVersion = ptr->property("X-Kate-Version").toString();
66
    TQString pVersion = ptr->property("X-Kate-Version").toString();
67
67
68
//    if ((pVersion >= "2.5") && (pVersion <= KateApp::kateVersion(false)))
69
    if (pVersion == "2.5")
68
    if (pVersion == "2.5")
70
    {
69
    {
71
      KatePluginInfo info;
70
      KatePluginInfo info;

Return to bug 1743