diff options
author | Gregory Guy <[email protected]> | 2018-07-24 20:01:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-07-24 20:01:45 +0900 |
commit | 5ce7c8e82cf52034de5fb01df7798c25b09a3929 (patch) | |
tree | a21df1fde3051a67fb7bac3dc9ce8d54f9c36ebf | |
parent | 512a9e490dece6ba654df7c4683e306ee1d334a0 (diff) | |
download | kaffeine-5ce7c8e82cf52034de5fb01df7798c25b09a3929.tar.gz kaffeine-5ce7c8e82cf52034de5fb01df7798c25b09a3929.zip |
Removed unnecessary search for win32 codecs.
Signed-off-by: Gregory Guy <[email protected]>
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | kaffeine/src/instwizard.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kaffeine/src/instwizard.cpp b/kaffeine/src/instwizard.cpp index 0acf9d8..cc880d1 100644 --- a/kaffeine/src/instwizard.cpp +++ b/kaffeine/src/instwizard.cpp @@ -106,6 +106,7 @@ void InstWizard::internalWizard() << " <a href=\"http://www.xinehq.de\">http://www.xinehq.de</a>.</font>"; */ //WIN32-CODECS + /* info << "<hr><b>" << i18n("WIN32 Codecs") << "...</b><br>"; TQDir d("/usr/lib/win32"); TQStringList entries = d.entryList("wmv*"); @@ -114,12 +115,12 @@ void InstWizard::internalWizard() else info << "<font color=\"DarkRed\">" << i18n("No WIN32 codecs found in /usr/lib/win32. You're not able to play Windows Media 9 files, newer Real Media files and some less common formats. Download the codecs here:") << " <a href=\"http://www1.mplayerhq.hu/design7/dload.html#binary_codecs\">http://www1.mplayerhq.hu/design7/dload.html#binary_codecs</a>.</font>"; - + */ //LIBDVDCSS info << "<br><hr><b>" << "libdvdcss" << "...</b><br>"; bool dvdcss = false; - d = TQDir("/usr/lib"); - entries = d.entryList("libdvdcss.so*"); + TQDir d("/usr/lib"); + TQStringList entries = d.entryList("libdvdcss.so*"); if (entries.count()) dvdcss = true; else |