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/tdeioslave/media/mediamanager/tdehardwarebackend.cpp (-2 / +2 lines)
Lines 411-417 void TDEBackend::setVolumeProperties(Medium* medium) Link Here
411
411
412
	TQString diskLabel = sdevice->diskLabel();
412
	TQString diskLabel = sdevice->diskLabel();
413
	if (diskLabel.isNull()) {
413
	if (diskLabel.isNull()) {
414
		diskLabel = i18n("%1 Removable Device").arg(sdevice->deviceFriendlySize());
414
		diskLabel = TQString("%1 %2").arg(sdevice->deviceFriendlySize(), i18n("Removable Device"));
415
	}
415
	}
416
416
417
	TQString mimeType;
417
	TQString mimeType;
Lines 622-628 bool TDEBackend::setFloppyProperties(Medium* medium) Link Here
622
		// Set label
622
		// Set label
623
		TQString diskLabel = sdevice->diskLabel();
623
		TQString diskLabel = sdevice->diskLabel();
624
		if (diskLabel.isNull()) {
624
		if (diskLabel.isNull()) {
625
			diskLabel = i18n("%1 Zip Disk").arg(sdevice->deviceFriendlySize());
625
			diskLabel = TQString("%1 %2").arg(sdevice->deviceFriendlySize(), i18n("Zip Disk"));
626
		}
626
		}
627
		medium->setLabel(diskLabel);
627
		medium->setLabel(diskLabel);
628
	}
628
	}

Return to bug 1499