mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-02-26 08:22:31 +00:00
refactoring: fix Blu-ray spelling/capitalization
This commit is contained in:
parent
7d4141e48f
commit
7dccb34837
@ -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>.
|
||||
*/
|
||||
|
@ -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>.
|
||||
*/
|
||||
|
@ -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>.
|
||||
*/
|
||||
|
@ -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>.
|
||||
*/
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user