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

(-)applications/kmymoney/doc/en/kmymoney2.1 (-1 / +1 lines)
Lines 200-206 Link Here
200
shared over more than one screen.
200
shared over more than one screen.
201
.IP DISPLAY
201
.IP DISPLAY
202
Specifies the X display to run KDE on.
202
Specifies the X display to run KDE on.
203
.IP KDESYCOCA
203
.IP TDESYCOCA
204
Specifies and alternative path for the 
204
Specifies and alternative path for the 
205
.I ksycoca
205
.I ksycoca
206
KDE system configuration cache file.
206
KDE system configuration cache file.
(-)applications/tdesudo/tdesudo/tdesudo.cpp (-1 / +1 lines)
Lines 239-245 Link Here
239
			*p << "ICEAUTHORITY=" + iceauthorityFile;
239
			*p << "ICEAUTHORITY=" + iceauthorityFile;
240
240
241
		if (!kdeSycoca.isEmpty())
241
		if (!kdeSycoca.isEmpty())
242
			*p << "KDESYCOCA=" + kdeSycoca;
242
			*p << "TDESYCOCA=" + kdeSycoca;
243
243
244
		if (realtime)
244
		if (realtime)
245
		{
245
		{
(-)tdelibs/kded/kbuildsycoca.cpp (-2 / +2 lines)
Lines 108-114 Link Here
108
  }
108
  }
109
  else
109
  else
110
  {
110
  {
111
     TQCString ksycoca_env = getenv("KDESYCOCA");
111
     TQCString ksycoca_env = getenv("TDESYCOCA");
112
     if (ksycoca_env.isEmpty())
112
     if (ksycoca_env.isEmpty())
113
        path = KGlobal::dirs()->saveLocation("cache")+"ksycoca";
113
        path = KGlobal::dirs()->saveLocation("cache")+"ksycoca";
114
     else
114
     else
Lines 120-126 Link Here
120
120
121
static TQString oldSycocaPath()
121
static TQString oldSycocaPath()
122
{
122
{
123
  TQCString ksycoca_env = getenv("KDESYCOCA");
123
  TQCString ksycoca_env = getenv("TDESYCOCA");
124
  if (ksycoca_env.isEmpty())
124
  if (ksycoca_env.isEmpty())
125
     return KGlobal::dirs()->saveLocation("tmp")+"ksycoca";
125
     return KGlobal::dirs()->saveLocation("tmp")+"ksycoca";
126
126
(-)tdelibs/kded/kded.cpp (-1 / +1 lines)
Lines 104-110 Link Here
104
{
104
{
105
  _self = this;
105
  _self = this;
106
  TQCString cPath;
106
  TQCString cPath;
107
  TQCString ksycoca_env = getenv("KDESYCOCA");
107
  TQCString ksycoca_env = getenv("TDESYCOCA");
108
  if (ksycoca_env.isEmpty())
108
  if (ksycoca_env.isEmpty())
109
     cPath = TQFile::encodeName(KGlobal::dirs()->saveLocation("tmp")+"ksycoca");
109
     cPath = TQFile::encodeName(KGlobal::dirs()->saveLocation("tmp")+"ksycoca");
110
  else
110
  else
(-)tdelibs/tdecore/ksycoca.cpp (-1 / +1 lines)
Lines 112-118 Link Here
112
   m_str = 0;
112
   m_str = 0;
113
   m_barray = 0;
113
   m_barray = 0;
114
   TQString path;
114
   TQString path;
115
   TQCString ksycoca_env = getenv("KDESYCOCA");
115
   TQCString ksycoca_env = getenv("TDESYCOCA");
116
   if (ksycoca_env.isEmpty())
116
   if (ksycoca_env.isEmpty())
117
      path = KGlobal::dirs()->saveLocation("cache") + "ksycoca";
117
      path = KGlobal::dirs()->saveLocation("cache") + "ksycoca";
118
   else
118
   else
(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1248-1254 Link Here
1248
</listitem>
1248
</listitem>
1249
</varlistentry>
1249
</varlistentry>
1250
1250
1251
<varlistentry><term>$<envar>KDESYCOCA</envar></term><listitem><para>Allows
1251
<varlistentry><term>$<envar>TDESYCOCA</envar></term><listitem><para>Allows
1252
you to specify the path and the name of the generated &kde; system
1252
you to specify the path and the name of the generated &kde; system
1253
configuration cache file.</para>
1253
configuration cache file.</para>
1254
</listitem>
1254
</listitem>
(-)tdebase/tdesu/tdesu/tdesu.cpp (-1 / +1 lines)
Lines 302-308 Link Here
302
    
302
    
303
    if (!new_dcop)
303
    if (!new_dcop)
304
    {
304
    {
305
        TQCString ksycoca = "KDESYCOCA="+TQFile::encodeName(locateLocal("cache", "ksycoca"));
305
        TQCString ksycoca = "TDESYCOCA="+TQFile::encodeName(locateLocal("cache", "ksycoca"));
306
        env << ksycoca;
306
        env << ksycoca;
307
307
308
        options += "xf"; // X-only, dcop forwarding enabled.
308
        options += "xf"; // X-only, dcop forwarding enabled.

Return to bug 860