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

(-)kmix/mixer_alsa9.cpp~ (-14 / +2 lines)
Lines 305-312 Link Here
305
	    } // is ordinary mixer element (NOT an enum)
305
	    } // is ordinary mixer element (NOT an enum)
306
306
307
		MixDevice* md = new MixDevice( mixerIdx,
307
		MixDevice* md = new MixDevice( mixerIdx,
308
				   *volPlay,
308
				   canCapture ? *volCapture : *volPlay,
309
					canRecord,
309
				   canCapture ? true : canRecord,
310
				   canMute,
310
				   canMute,
311
				   snd_mixer_selem_id_get_name( sid ),
311
				   snd_mixer_selem_id_get_name( sid ),
312
				   ct,
312
				   ct,
Lines 321-338 Link Here
321
		masterChosen = true;
321
		masterChosen = true;
322
		}
322
		}
323
323
324
		if ( canCapture && !canRecord ) {
325
			MixDevice *mdCapture =
326
		    	new MixDevice( mixerIdx,
327
				   *volCapture,
328
					true,
329
				   canMute,
330
				   snd_mixer_selem_id_get_name( sid ),
331
				   ct,
332
				   cc );
333
			m_mixDevices.append( mdCapture );
334
		}
335
336
		if ( enumList.count() > 0 ) {
324
		if ( enumList.count() > 0 ) {
337
		  int maxEnumId= enumList.count();
325
		  int maxEnumId= enumList.count();
338
		  TQPtrList<TQString>& enumValuesRef = md->enumValues(); // retrieve a ref
326
		  TQPtrList<TQString>& enumValuesRef = md->enumValues(); // retrieve a ref

Return to bug 1190