Hello! Is there an easy way to get file extesions those assotiated with a some MIME type? I need to determine all supported file extension from the MIME types supported by Phonon. Getting the MIME-list is easy:

Qt Code:
  1. QStringList mimeTypes = Phonon::BackendCapabilities::availableMimeTypes();
To copy to clipboard, switch view to plain text mode 

But the file extensions... Currently the only platform-independed solution that I know is to make some inner map/hash and hardcode all assotiations.