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

(-)./kioslave/media/mediamanager/halbackend.cpp.ori (-9 / +4 lines)
Lines 585-603 Link Here
585
        medium->setIconName(TQString::null);
585
        medium->setIconName(TQString::null);
586
586
587
        /* check if the disc id a vcd or a video dvd */
587
        /* check if the disc id a vcd or a video dvd */
588
        DiscType type = LinuxCDPolling::identifyDiscType(libhal_volume_get_device_file(halVolume));
588
        if (libhal_device_get_property_bool(m_halContext, udi, "volume.disc.is_vcd", NULL)) {
589
        switch (type)
590
        {
591
        case DiscType::VCD:
592
            mimeType = "media/vcd";
589
            mimeType = "media/vcd";
593
            break;
590
        } else if (libhal_device_get_property_bool(m_halContext, udi, "volume.disc.is_svcd", NULL)) {
594
        case DiscType::SVCD:
595
            mimeType = "media/svcd";
591
            mimeType = "media/svcd";
596
            break;
592
        } else if (libhal_device_get_property_bool(m_halContext, udi, "volume.disc.is_videodvd", NULL)) {
597
        case DiscType::DVD:
598
            mimeType = "media/dvdvideo";
593
            mimeType = "media/dvdvideo";
599
            break;
600
        }
594
        }
595
601
    }
596
    }
602
    else
597
    else
603
    {
598
    {

Return to bug 1499