refactoring: fix Blu-ray spelling/capitalization

This commit is contained in:
Moritz Bunkus 2019-01-21 19:51:38 +01:00
parent 7d4141e48f
commit 7dccb34837
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85
6 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@
see the file COPYING for details
or visit http://www.gnu.org/copyleft/gpl.html
BluRay clip info data handling
Blu-ray clip info data handling
Written by Moritz Bunkus <moritz@bunkus.org>.
*/

View File

@ -6,7 +6,7 @@
see the file COPYING for details
or visit http://www.gnu.org/copyleft/gpl.html
definitions and helper functions for BluRay clip info data
definitions and helper functions for Blu-ray clip info data
Written by Moritz Bunkus <moritz@bunkus.org>.
*/

View File

@ -6,7 +6,7 @@
see the file COPYING for details
or visit http://www.gnu.org/copyleft/gpl.html
definitions and helper functions for BluRay playlist files (MPLS)
definitions and helper functions for Blu-ray playlist files (MPLS)
Written by Moritz Bunkus <moritz@bunkus.org>.
*/

View File

@ -6,7 +6,7 @@
see the file COPYING for details
or visit http://www.gnu.org/copyleft/gpl.html
definitions and helper functions for BluRay playlist files (MPLS)
definitions and helper functions for Blu-ray playlist files (MPLS)
Written by Moritz Bunkus <moritz@bunkus.org>.
*/

View File

@ -154,7 +154,7 @@ FileIdentificationWorker::handleFileThatShouldBeSelectedElsewhere(QString const
}
boost::optional<FileIdentificationWorker::Result>
FileIdentificationWorker::handleBluRayMainFile(QString const &fileName) {
FileIdentificationWorker::handleBlurayMainFile(QString const &fileName) {
auto info = QFileInfo{fileName};
if (info.completeSuffix().toLower() != Q("bdmv"))
@ -266,7 +266,7 @@ FileIdentificationWorker::identifyThisFile(QString const &fileName) {
return Result::Wait;
}
auto result = handleBluRayMainFile(fileName);
auto result = handleBlurayMainFile(fileName);
if (result) {
qDebug() << "FileIdentificationWorker::identifyThisFile: identified as Blu-ray index.bdmv/MovieObject.bdmv";
return *result;

View File

@ -65,7 +65,7 @@ signals:
protected:
bool handleFileThatShouldBeSelectedElsewhere(QString const &fileName);
boost::optional<FileIdentificationWorker::Result> handleBluRayMainFile(QString const &fileName);
boost::optional<FileIdentificationWorker::Result> handleBlurayMainFile(QString const &fileName);
boost::optional<FileIdentificationWorker::Result> handleIdentifiedPlaylist(SourceFilePtr const &sourceFile);
Result identifyThisFile(QString const &fileName);