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

(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1201-1207 Link Here
1201
</listitem>
1201
</listitem>
1202
</varlistentry>
1202
</varlistentry>
1203
1203
1204
<varlistentry><term>$<envar>KDE_FORK_SLAVES</envar></term>
1204
<varlistentry><term>$<envar>TDE_FORK_SLAVES</envar></term>
1205
<listitem><para>(Since &kde; 3.2.3) Set this variable to spawn
1205
<listitem><para>(Since &kde; 3.2.3) Set this variable to spawn
1206
<acronym>KIO</acronym>-slaves directly from the application process
1206
<acronym>KIO</acronym>-slaves directly from the application process
1207
itself. By default <acronym>KIO</acronym>-slaves are spawned using
1207
itself. By default <acronym>KIO</acronym>-slaves are spawned using
(-)tdebase/kioslave/trash/testtrash.cpp (-1 / +1 lines)
Lines 80-86 Link Here
80
80
81
    // Use another directory than the real one, just to keep things clean
81
    // Use another directory than the real one, just to keep things clean
82
    setenv( "XDG_DATA_HOME", TQFile::encodeName( TQDir::homeDirPath() + "/.local-testtrash" ), true );
82
    setenv( "XDG_DATA_HOME", TQFile::encodeName( TQDir::homeDirPath() + "/.local-testtrash" ), true );
83
    setenv( "KDE_FORK_SLAVES", "yes", true );
83
    setenv( "TDE_FORK_SLAVES", "yes", true );
84
84
85
    KApplication::disableAutoDcopRegistration();
85
    KApplication::disableAutoDcopRegistration();
86
    KCmdLineArgs::init(argc,argv,"testtrash", 0, 0, 0, 0);
86
    KCmdLineArgs::init(argc,argv,"testtrash", 0, 0, 0, 0);
(-)tdelibs/kio/kio/slave.cpp (-2 / +2 lines)
Lines 390-397 Link Here
390
    // for the slave to connect to the application.
390
    // for the slave to connect to the application.
391
    // In such case we start the slave via KProcess.
391
    // In such case we start the slave via KProcess.
392
    // It's possible to force this by setting the env. variable
392
    // It's possible to force this by setting the env. variable
393
    // KDE_FORK_SLAVES, Clearcase seems to require this.
393
    // TDE_FORK_SLAVES, Clearcase seems to require this.
394
    static bool bForkSlaves = !TQCString(getenv("KDE_FORK_SLAVES")).isEmpty();
394
    static bool bForkSlaves = !TQCString(getenv("TDE_FORK_SLAVES")).isEmpty();
395
    
395
    
396
    if (bForkSlaves || !client->isAttached() || client->isAttachedToForeignServer())
396
    if (bForkSlaves || !client->isAttached() || client->isAttachedToForeignServer())
397
    {
397
    {
(-)tdelibs/kio/tests/kurifiltertest.cpp (-1 / +1 lines)
Lines 156-162 Link Here
156
    // Ensure that user configuration doesn't change the results of those tests
156
    // Ensure that user configuration doesn't change the results of those tests
157
    // TDEHOME needs to be writable though, for a ksycoca database
157
    // TDEHOME needs to be writable though, for a ksycoca database
158
    setenv( "TDEHOME", TQFile::encodeName( TQDir::homeDirPath() + "/.kde-kurifiltertest" ), true );
158
    setenv( "TDEHOME", TQFile::encodeName( TQDir::homeDirPath() + "/.kde-kurifiltertest" ), true );
159
    setenv( "KDE_FORK_SLAVES", "yes", true ); // simpler, for the final cleanup
159
    setenv( "TDE_FORK_SLAVES", "yes", true ); // simpler, for the final cleanup
160
160
161
    KAboutData aboutData(appName, programName, version, description);
161
    KAboutData aboutData(appName, programName, version, description);
162
    KCmdLineArgs::init(argc, argv, &aboutData);
162
    KCmdLineArgs::init(argc, argv, &aboutData);
(-)tdepim/karm/test/locking.cpp (-1 / +1 lines)
Lines 133-139 Link Here
133
  setenv( "TDEHOME", TQFile::encodeName( TQDir::homeDirPath() + "/.kde-testresource" ), true );
133
  setenv( "TDEHOME", TQFile::encodeName( TQDir::homeDirPath() + "/.kde-testresource" ), true );
134
134
135
  // Copied from Till's test in libkcal.  Not sure what this is for.
135
  // Copied from Till's test in libkcal.  Not sure what this is for.
136
  setenv( "KDE_FORK_SLAVES", "yes", true ); // simpler, for the final cleanup
136
  setenv( "TDE_FORK_SLAVES", "yes", true ); // simpler, for the final cleanup
137
137
138
  // Copied from Till's test in libkcal.  Not sure what this is for.
138
  // Copied from Till's test in libkcal.  Not sure what this is for.
139
  KApplication::disableAutoDcopRegistration();
139
  KApplication::disableAutoDcopRegistration();
(-)tdepim/libkcal/tests/testresource.cpp (-1 / +1 lines)
Lines 57-63 Link Here
57
    // Use another directory than the real one, just to keep things clean
57
    // Use another directory than the real one, just to keep things clean
58
    // TDEHOME needs to be writable though, for a ksycoca database
58
    // TDEHOME needs to be writable though, for a ksycoca database
59
    setenv( "TDEHOME", TQFile::encodeName( TQDir::homeDirPath() + "/.kde-testresource" ), true );
59
    setenv( "TDEHOME", TQFile::encodeName( TQDir::homeDirPath() + "/.kde-testresource" ), true );
60
    setenv( "KDE_FORK_SLAVES", "yes", true ); // simpler, for the final cleanup
60
    setenv( "TDE_FORK_SLAVES", "yes", true ); // simpler, for the final cleanup
61
61
62
    KApplication::disableAutoDcopRegistration();
62
    KApplication::disableAutoDcopRegistration();
63
    KCmdLineArgs::init(argc,argv,"testresource", 0, 0, 0, 0);
63
    KCmdLineArgs::init(argc,argv,"testresource", 0, 0, 0, 0);
(-)tdepim/libtdepim/tests/testdistrlist.cpp (-1 / +1 lines)
Lines 44-50 Link Here
44
    // Use another directory than the real one, just to keep things clean
44
    // Use another directory than the real one, just to keep things clean
45
    // TDEHOME needs to be writable though, for a ksycoca database
45
    // TDEHOME needs to be writable though, for a ksycoca database
46
    setenv( "TDEHOME", TQFile::encodeName( TQDir::homeDirPath() + "/.kde-testdistrlist" ), true );
46
    setenv( "TDEHOME", TQFile::encodeName( TQDir::homeDirPath() + "/.kde-testdistrlist" ), true );
47
    setenv( "KDE_FORK_SLAVES", "yes", true ); // simpler, for the final cleanup
47
    setenv( "TDE_FORK_SLAVES", "yes", true ); // simpler, for the final cleanup
48
48
49
    KApplication::disableAutoDcopRegistration();
49
    KApplication::disableAutoDcopRegistration();
50
    KCmdLineArgs::init(argc,argv,"testdistrlist", 0, 0, 0, 0);
50
    KCmdLineArgs::init(argc,argv,"testdistrlist", 0, 0, 0, 0);

Return to bug 860