diff options
author | Arno <arno@disconnect.de> | 2018-11-03 11:19:09 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-11-03 11:19:09 +0100 |
commit | 55b60427611f342f5890c0e6ef5e23d24e618632 (patch) | |
tree | bc4a9cba4232d86492b1ff3843712d2f0132ea2d /newmoviewizard.cpp | |
parent | c355d2f6adfb7562a3acef66308eac3c81f84821 (diff) | |
download | SheMov-55b60427611f342f5890c0e6ef5e23d24e618632.tar.gz SheMov-55b60427611f342f5890c0e6ef5e23d24e618632.tar.bz2 SheMov-55b60427611f342f5890c0e6ef5e23d24e618632.zip |
Fix typo in NewMovieWizard
See for yourself... So stupid!
Diffstat (limited to 'newmoviewizard.cpp')
-rw-r--r-- | newmoviewizard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newmoviewizard.cpp b/newmoviewizard.cpp index c977fc2..790f2a0 100644 --- a/newmoviewizard.cpp +++ b/newmoviewizard.cpp @@ -70,7 +70,7 @@ void NewMovieWizard::accept(){ int partNo = field("seriesNo").toInt(); QString subtitle = field("subtitle").toString().toLower().trimmed(); QStringList subtitles = Helper::fuzzyCheck(subtitle); - if(!subtitle.isEmpty()){ + if(!subtitles.isEmpty()){ QString msg = QString(tr("%1:<ul>")).arg(subtitle); for(int i = 0; i < subtitles.count() && i < 5; ++i){ msg = msg.append("<li>%1</li>").arg(subtitles.at(i)); |