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

(-)amarok-3.5.13.1/amarok/src/engine/xine/xine-engine.cpp.ORI (+4 lines)
Lines 1131-1137 Link Here
1131
1131
1132
bool XineEngine::getAudioCDContents(const TQString &device, KURL::List &urls)
1132
bool XineEngine::getAudioCDContents(const TQString &device, KURL::List &urls)
1133
{
1133
{
1134
#if XINE_MAJOR_VERSION > 1 || ( XINE_MAJOR_VERSION == 1 && XINE_MINOR_VERSION >= 2 )
1135
    const char * const* xine_urls = NULL;
1136
#else
1134
    char **xine_urls = NULL;
1137
    char **xine_urls = NULL;
1138
#endif
1135
    int num;
1139
    int num;
1136
    int i = 0;
1140
    int i = 0;
1137
1141

Return to bug 1262