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

(-)./tdeprint/kmfactory.cpp.ORI (-1 / +15 lines)
Lines 249-256 Link Here
249
		conf->writeEntry("PrintSystem", sys);
249
		conf->writeEntry("PrintSystem", sys);
250
		conf->sync();
250
		conf->sync();
251
	}
251
	}
252
	else if ( sys.length()==1 && sys[0].isDigit() ) // discard old-style settings
252
	else if ( sys.length()==1 && sys[0].isDigit() ) { // discard old-style settings
253
        	sys = "lpdunix";
253
        	sys = "lpdunix";
254
	} else {
255
		//Always Autodetect
256
		//it will not try autodetect if user changes any option
257
		//when user force some option, AlwaysSearch will be "no" and then
258
		//kprinter will not to try autodetect again.
259
		if(conf->readEntry("AlwaysSearch") != "no" ) {
260
			sys = autoDetect();
261
			conf->writeEntry("PrintSystem",sys);
262
			conf->writeEntry("AlwaysSearch","yes");
263
			conf->sync();
264
		}
265
	}
266
254
	return sys;
267
	return sys;
255
}
268
}
256
269
Lines 278-283 Link Here
278
	{
291
	{
279
		TDEConfig	*conf = printConfig();
292
		TDEConfig	*conf = printConfig();
280
		conf->setGroup("General");
293
		conf->setGroup("General");
294
		conf->writeEntry("AlwaysSearch","no");
281
		conf->writeEntry("PrintSystem", syst);
295
		conf->writeEntry("PrintSystem", syst);
282
		conf->sync();
296
		conf->sync();
283
297

Return to bug 1499