diff options
| author | 2016-04-07 13:00:54 +0200 | |
|---|---|---|
| committer | 2016-04-07 13:00:54 +0200 | |
| commit | 22ca84d4d22ed7e39c626981e5ae85e9287c3edb (patch) | |
| tree | 5bf35583a38fadbcef5ddd37705618b1e79f67af /src/modules/mediaplayer/MpWinampInterface.cpp | |
| parent | Fix #1921 (diff) | |
| download | KVIrc-22ca84d4d22ed7e39c626981e5ae85e9287c3edb.tar.gz KVIrc-22ca84d4d22ed7e39c626981e5ae85e9287c3edb.tar.bz2 KVIrc-22ca84d4d22ed7e39c626981e5ae85e9287c3edb.zip | |
Remove all ifdefs related to older versions of Qt.
Now that we only support Qt 5 we will no longer need these.
Diffstat (limited to 'src/modules/mediaplayer/MpWinampInterface.cpp')
| -rw-r--r-- | src/modules/mediaplayer/MpWinampInterface.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/modules/mediaplayer/MpWinampInterface.cpp b/src/modules/mediaplayer/MpWinampInterface.cpp index 8d6981fd3..08666c864 100644 --- a/src/modules/mediaplayer/MpWinampInterface.cpp +++ b/src/modules/mediaplayer/MpWinampInterface.cpp @@ -167,12 +167,7 @@ static QTextCodec * mediaplayer_get_codec() { QTextCodec * pCodec = 0; - -#if (QT_VERSION < 0x050000) - pCodec = QTextCodec::codecForName(KVI_OPTION_STRING(KviOption_stringWinampTextEncoding).toLatin1()); -#else pCodec = QTextCodec::codecForName(KVI_OPTION_STRING(KviOption_stringWinampTextEncoding).toUtf8()); -#endif if(!pCodec) pCodec = QTextCodec::codecForLocale(); |
