2018-09-11 16:19:41 +00:00
|
|
|
diff -urp cppcheck-1.84.orig/gui/CMakeLists.txt cppcheck-1.84/gui/CMakeLists.txt
|
|
|
|
--- cppcheck-1.84.orig/gui/CMakeLists.txt 2018-08-13 13:29:29.082264726 -0400
|
|
|
|
+++ cppcheck-1.84/gui/CMakeLists.txt 2018-08-13 13:32:21.181246257 -0400
|
|
|
|
@@ -26,7 +26,7 @@ if (BUILD_GUI)
|
|
|
|
target_link_libraries(cppcheck-gui tinyxml2 Qt5::Core Qt5::Gui Qt5::Widgets Qt5::PrintSupport)
|
2017-05-18 03:52:18 +00:00
|
|
|
|
|
|
|
install(TARGETS cppcheck-gui RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR} COMPONENT applications)
|
|
|
|
- install(FILES ${qms} DESTINATION ${CMAKE_INSTALL_FULL_BINDIR} COMPONENT applications)
|
2018-09-11 16:19:41 +00:00
|
|
|
+ install(FILES ${qms} DESTINATION share/${PROJECT_NAME}/lang COMPONENT applications)
|
2017-05-18 03:52:18 +00:00
|
|
|
|
|
|
|
install(FILES cppcheck-gui.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications)
|
|
|
|
|
2018-09-11 16:19:41 +00:00
|
|
|
diff -urp cppcheck-1.84.orig/gui/translationhandler.cpp cppcheck-1.84/gui/translationhandler.cpp
|
|
|
|
--- cppcheck-1.84.orig/gui/translationhandler.cpp 2018-06-10 16:41:03.000000000 -0400
|
|
|
|
+++ cppcheck-1.84/gui/translationhandler.cpp 2018-08-13 13:30:45.279256549 -0400
|
2017-10-18 14:44:12 +00:00
|
|
|
@@ -116,15 +116,7 @@ bool TranslationHandler::setLanguage(con
|
2016-04-10 01:30:21 +00:00
|
|
|
if (datadir.isEmpty())
|
|
|
|
datadir = appPath;
|
|
|
|
|
|
|
|
- QString translationFile;
|
|
|
|
- if (QFile::exists(datadir + "/lang/" + mTranslations[index].mFilename + ".qm"))
|
|
|
|
- translationFile = datadir + "/lang/" + mTranslations[index].mFilename + ".qm";
|
|
|
|
-
|
|
|
|
- else if (QFile::exists(datadir + "/" + mTranslations[index].mFilename + ".qm"))
|
|
|
|
- translationFile = datadir + "/" + mTranslations[index].mFilename + ".qm";
|
|
|
|
-
|
|
|
|
- else
|
|
|
|
- translationFile = appPath + "/" + mTranslations[index].mFilename + ".qm";
|
|
|
|
+ QString translationFile("/usr/share/CppCheck/lang/" + mTranslations[index].mFilename + ".qm");
|
|
|
|
|
|
|
|
if (!mTranslator->load(translationFile) && !failure) {
|
2017-05-18 03:52:18 +00:00
|
|
|
//If it failed, lets check if the default file exists
|