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

(-)a/kinit/autostart.cpp (-1 / +1 lines)
Lines 178-184 AutoStart::loadAutoStartList() Link Here
178
178
179
       if (config.hasKey("OnlyShowIn"))
179
       if (config.hasKey("OnlyShowIn"))
180
       {
180
       {
181
          if ((!config.readListEntry("OnlyShowIn", ';').contains("TDE")) && (!config.readListEntry("OnlyShowIn", ';').contains("KDE")))
181
          if (!config.readListEntry("OnlyShowIn", ';').contains("TDE"))
182
              continue;
182
              continue;
183
       }
183
       }
184
       if (config.hasKey("NotShowIn"))
184
       if (config.hasKey("NotShowIn"))
(-)a/kio/kio/kservicegroup.cpp (-1 / +1 lines)
Lines 84-90 KServiceGroup::KServiceGroup( const TQString &configFile, const TQString & _relp Link Here
84
  TQStringList tmpList;
84
  TQStringList tmpList;
85
  if (config.hasKey("OnlyShowIn"))
85
  if (config.hasKey("OnlyShowIn"))
86
  {
86
  {
87
     if ((!config.readListEntry("OnlyShowIn", ';').contains("TDE")) && (!config.readListEntry("OnlyShowIn", ';').contains("KDE")))
87
     if (!config.readListEntry("OnlyShowIn", ';').contains("TDE"))
88
        d->m_bNoDisplay = true;
88
        d->m_bNoDisplay = true;
89
  }
89
  }
90
  if (config.hasKey("NotShowIn"))
90
  if (config.hasKey("NotShowIn"))

Return to bug 1364