File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 6
6
lint :
7
7
find src -type f -name " *.cpp" -print0 | parallel -q0 --eta clang-tidy --load={{ env_var (" TIDYFOX" ) }}
8
8
9
+ lint-changed :
10
+ git diff --name-only HEAD | grep " ^.*\. cpp\$ " | parallel --eta clang-tidy --load={{ env_var (" TIDYFOX" ) }}
11
+
9
12
configure target = ' debug' * FLAGS = ' ':
10
13
cmake -GNinja -B {{ builddir}} \
11
14
- DCMAKE_BUILD_TYPE={{ if target == " debug" { " Debug" } else { " RelWithDebInfo" } }} \
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ void I3Monitor::updateFromObject(const QVariantMap& obj) {
32
32
auto width = rect.value (" width" ).value <qint32>();
33
33
auto height = rect.value (" height" ).value <qint32>();
34
34
auto scale = obj.value (" scale" ).value <qreal>();
35
- auto focused = obj.value (" active " ).value <bool >();
35
+ auto focused = obj.value (" focused " ).value <bool >();
36
36
37
37
if (id != this ->mId ) {
38
38
this ->mId = id;
You can’t perform that action at this time.
0 commit comments