Base: rename Exception's PascalCase methods to camelCase
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user