[Bug 81582] Try to move an mp3 from one folder to another - crashes konqueror
Maksim Orlovich
maksim at kde.org
Sat May 29 20:23:44 BST 2004
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=81582
maksim kde org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From maksim kde org 2004-05-29 21:23 -------
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 );
More information about the kde-multimedia
mailing list