Skip to content

Commit 76c6458

Browse files
committed
[tivars_lib_cpp] update from upstream
1 parent a92802f commit 76c6458

28 files changed

Lines changed: 66 additions & 47 deletions

gui/qt/tivarslib/BinaryFile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/tivars_lib_cpp
55
* License: MIT
66
*/

gui/qt/tivarslib/BinaryFile.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/tivars_lib_cpp
55
* License: MIT
66
*/

gui/qt/tivarslib/CommonTypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/tivars_lib_cpp
55
* License: MIT
66
*/

gui/qt/tivarslib/TIModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/TIs_lib
55
* License: MIT
66
*/

gui/qt/tivarslib/TIModel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/tivars_lib_cpp
55
* License: MIT
66
*/

gui/qt/tivarslib/TIModels.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/tivars_lib_cpp
55
* License: MIT
66
*/

gui/qt/tivarslib/TIModels.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/tivars_lib_cpp
55
* License: MIT
66
*/

gui/qt/tivarslib/TIVarFile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/tivars_lib_cpp
55
* License: MIT
66
*/

gui/qt/tivarslib/TIVarFile.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/tivars_lib_cpp
55
* License: MIT
66
*/
@@ -28,13 +28,13 @@ namespace tivars
2828

2929
struct var_entry_t
3030
{
31-
uint16_t meta_length = 0; // byte count of the next 3 or 5 fields (== 11 or 13) depending on calcFlags, see below
31+
uint16_t meta_length = 0; // byte count of the next 3 or 5 fields (== 11 or 13) depending on calcFlags, see below
3232
uint16_t data_length = 0;
3333
uchar typeID = 0;
3434
uchar varname[8] = {0};
3535
uchar version = 0; // present only if calcFlags >= TIFeatureFlags::hasFlash
3636
uchar archivedFlag = 0; // present only if calcFlags >= TIFeatureFlags::hasFlash
37-
uint16_t data_length2 = 0; // same as data_length
37+
uint16_t data_length2 = 0; // same as data_length
3838
data_t data;
3939
};
4040

gui/qt/tivarslib/TIVarType.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Part of tivars_lib_cpp
3-
* (C) 2015-2018 Adrien "Adriweb" Bertrand
3+
* (C) 2015-2019 Adrien "Adriweb" Bertrand
44
* https://github.com/adriweb/tivars_lib_cpp
55
* License: MIT
66
*/

0 commit comments

Comments
 (0)