mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
Access class static methods with "::"
Recommendation from Clang-Tidy: https://clang.llvm.org/extra/clang-tidy/checks/readability-static-accessed-through-instance.html
This commit is contained in:
parent
09c9996f31
commit
8a6b5ca71f
11 changed files with 31 additions and 31 deletions
|
@ -116,8 +116,8 @@ int main(int argc, char** argv)
|
|||
s_qt_mutex.lock();
|
||||
rpcs3_app app(argc, argv);
|
||||
|
||||
app.setApplicationVersion(qstr(rpcs3::version.to_string()));
|
||||
app.setApplicationName("RPCS3");
|
||||
QCoreApplication::setApplicationVersion(qstr(rpcs3::version.to_string()));
|
||||
QCoreApplication::setApplicationName("RPCS3");
|
||||
|
||||
// Command line args
|
||||
QCommandLineParser parser;
|
||||
|
@ -166,5 +166,5 @@ int main(int argc, char** argv)
|
|||
|
||||
s_qt_init.unlock();
|
||||
s_qt_mutex.unlock();
|
||||
return app.exec();
|
||||
return QCoreApplication::exec();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue