diff options
author | Vincent Reher <[email protected]> | 2022-02-19 09:32:22 -0800 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-02-20 12:36:16 +0900 |
commit | 712bd43fb823d75702d1777ef27ea2257866e141 (patch) | |
tree | c45195bbe8888484f38a312a631fc265f98d98c0 /tdefile-plugins/mp3/tdefile_mp3.cpp | |
parent | f16962feaf5ae561500be35cea5bc1ed46270677 (diff) | |
download | tdemultimedia-712bd43fb823d75702d1777ef27ea2257866e141.tar.gz tdemultimedia-712bd43fb823d75702d1777ef27ea2257866e141.zip |
Fix Konqueror plugin tdefile_mp3 to activate on mimetype audio/mpeg.
This resolves issue #33.
Signed-off-by: Vincent Reher <[email protected]>
Diffstat (limited to 'tdefile-plugins/mp3/tdefile_mp3.cpp')
-rw-r--r-- | tdefile-plugins/mp3/tdefile_mp3.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdefile-plugins/mp3/tdefile_mp3.cpp b/tdefile-plugins/mp3/tdefile_mp3.cpp index 041e0313..4e7d4bf6 100644 --- a/tdefile-plugins/mp3/tdefile_mp3.cpp +++ b/tdefile-plugins/mp3/tdefile_mp3.cpp @@ -47,9 +47,9 @@ K_EXPORT_COMPONENT_FACTORY(tdefile_mp3, Mp3Factory( "tdefile_mp3" )) KMp3Plugin::KMp3Plugin(TQObject *parent, const char *name, const TQStringList &args) : KFilePlugin(parent, name, args) { - kdDebug(7034) << "mp3 plugin\n"; + kdDebug(7034) << "mp3 plugin for mimetype " << name << endl; - KFileMimeTypeInfo *info = addMimeTypeInfo("audio/x-mp3"); + KFileMimeTypeInfo *info = addMimeTypeInfo(name); // id3 group |