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

(-)a/kdesktop/init.cc (-2 / +9 lines)
Lines 87-93 static bool testDir( const TQString &_name ) Link Here
87
  else // exists already
87
  else // exists already
88
  {
88
  {
89
    closedir( dp );
89
    closedir( dp );
90
    return false;
90
    TDEConfig cfg("kdesktoprc");
91
    cfg.setGroup("General");
92
    return cfg.readBoolEntry("FirstRun", true);
91
  }
93
  }
92
}
94
}
93
95
Lines 202-208 void testLocalInstallation() Link Here
202
    copyDirectoryFile("directory.autostart", TDEGlobalSettings::autostartPath(), newRelease);
204
    copyDirectoryFile("directory.autostart", TDEGlobalSettings::autostartPath(), newRelease);
203
205
204
    if (emptyDesktop)
206
    if (emptyDesktop)
205
	copyDesktopLinks();
207
    {
208
        copyDesktopLinks();
209
        TDEConfig cfg("kdesktoprc");
210
        cfg.setGroup("General");
211
        cfg.writeEntry("FirstRun", false);
212
    }
206
213
207
    // Take care of creating or updating trash.desktop
214
    // Take care of creating or updating trash.desktop
208
    const TQString trashDir = TDEGlobal::dirs()->localxdgdatadir() + "Trash";
215
    const TQString trashDir = TDEGlobal::dirs()->localxdgdatadir() + "Trash";

Return to bug 1499