Summary: | Try to move an mp3 from one folder to another - crashes konqueror | ||
---|---|---|---|
Product: | [Applications] kfile-plugins | Reporter: | Abe Ezekowitz <aezekowitz> |
Component: | mp3 | Assignee: | Multimedia Developers <kde-multimedia> |
Status: | RESOLVED FIXED | ||
Severity: | crash | CC: | johann-nikolaus, kdebugsystem, maksim, perresoren |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Slackware | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Abe Ezekowitz
2004-05-14 16:35:06 UTC
*** Bug 82001 has been marked as a duplicate of this bug. *** Reporters: do you have kdemultimedia (in particular kfile_mp3) installed? Confirm when w/o kdemultimedia/kfile-mp3 CVS commit by orlovich: Don't crash if kfile_mp3 is not installed. Fixes #81582 CCMAIL:81582-done@bugs.kde.org (This thing is pretty unhelpful if neither kfile-mp3 nor an embeddable player, such as kaboodle or kmplayer is installed, though) M +20 -17 audiopreview.cpp 1.11 --- kdeaddons/renamedlgplugins/audio/audiopreview.cpp #1.10:1.11 @@ -83,4 +83,6 @@ void AudioPreview::initView( const QStri QString desc; + if (info.isValid()) + { if (mimeptr->is("audio/x-mp3") || mimeptr->is("application/ogg")) { @@ -101,4 +103,5 @@ void AudioPreview::initView( const QStri desc.append("0"); desc.append(QString("%1\n").arg(length%60, 0, 10)); + } description->setText( desc ); *** Bug 83350 has been marked as a duplicate of this bug. *** |