summaryrefslogtreecommitdiffstats
path: root/development/cppcheck/fix-default-settings.diff
blob: 1fa730b543bbd611a5f43fbf0a3ed0c1d0977e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Description: Set configuration directory and python version
Author: Joachim Reichel <reichel@debian.org>

Index: cppcheck/gui/main.cpp
===================================================================
--- cppcheck.orig/gui/main.cpp
+++ cppcheck/gui/main.cpp
@@ -55,6 +55,12 @@ int main(int argc, char *argv[])
 
     QSettings* settings = new QSettings("Cppcheck", "Cppcheck-GUI", &app);
 
+    // Set some default settings
+    if( settings->value("DATADIR", QString()).toString().isEmpty())
+        settings->setValue("DATADIR", FILESDIR);
+    if( settings->value(SETTINGS_PYTHON_PATH, QString()).toString().isEmpty())
+        settings->setValue(SETTINGS_PYTHON_PATH, QString("/usr/bin/python3"));
+
     // Set data dir..
     foreach (const QString arg, app.arguments()) {
         if (arg.startsWith("--data-dir=")) {
Index: cppcheck/htmlreport/cppcheck-htmlreport
===================================================================
--- cppcheck.orig/htmlreport/cppcheck-htmlreport
+++ cppcheck/htmlreport/cppcheck-htmlreport
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import unicode_literals