Base: rename Exception's PascalCase methods to camelCase

This commit is contained in:
Ladislav Michl
2025-05-01 10:14:18 +02:00
parent bf4ace0957
commit 9683cf1e4f
128 changed files with 394 additions and 394 deletions

View File

@@ -195,7 +195,7 @@ void StdCmdLinkMakeGroup::activated(int option) {
QMessageBox::critical(getMainWindow(), QObject::tr("Create link group failed"),
QString::fromLatin1(e.what()));
Command::abortCommand();
e.ReportException();
e.reportException();
}
}
@@ -260,7 +260,7 @@ void StdCmdLinkMake::activated(int) {
Command::abortCommand();
QMessageBox::critical(getMainWindow(), QObject::tr("Create link failed"),
QString::fromLatin1(e.what()));
e.ReportException();
e.reportException();
}
}
@@ -335,7 +335,7 @@ void StdCmdLinkMakeRelative::activated(int) {
Command::abortCommand();
QMessageBox::critical(getMainWindow(), QObject::tr("Failed to create relative link"),
QString::fromLatin1(e.what()));
e.ReportException();
e.reportException();
}
return;
}
@@ -463,7 +463,7 @@ static void linkConvert(bool unlink) {
Command::abortCommand();
auto title = unlink?QObject::tr("Unlink failed"):QObject::tr("Replace link failed");
QMessageBox::critical(getMainWindow(), title, QString::fromLatin1(e.what()));
e.ReportException();
e.reportException();
return;
}
}
@@ -593,7 +593,7 @@ void StdCmdLinkImport::activated(int) {
Command::abortCommand();
QMessageBox::critical(getMainWindow(), QObject::tr("Failed to import links"),
QString::fromLatin1(e.what()));
e.ReportException();
e.reportException();
}
}
@@ -633,7 +633,7 @@ void StdCmdLinkImportAll::activated(int) {
QMessageBox::critical(getMainWindow(), QObject::tr("Failed to import all links"),
QString::fromLatin1(e.what()));
Command::abortCommand();
e.ReportException();
e.reportException();
}
}