Skip to content

Commit

Permalink
[FIX] : fix the settings load error when no settings
Browse files Browse the repository at this point in the history
  • Loading branch information
aiekick committed Jun 20, 2024
1 parent 0facccd commit 2f5141e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion 3rdparty/ctools
Submodule ctools updated 1 files
+1 −1 src/ConfigAbstract.cpp
6 changes: 1 addition & 5 deletions src/Frontend/Tables/TransactionsTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,7 @@ class TransactionsTable : public ADataTable {
GroupingMode m_GroupingMode = GroupingMode::GROUPING_MODE_TRANSACTIONS;

// accounts display
std::map<BankName, //
std::map<BankAgency, //
std::map<AccountNumber, //
Account>>>
m_Accounts;
std::map<BankName, std::map<BankAgency, std::map<AccountNumber, Account>>> m_Accounts;

public:
TransactionsTable();
Expand Down
4 changes: 2 additions & 2 deletions src/Headers/CashMeBuild.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#define CashMe_Prefix "CashMe"
#define CashMe_BuildNumber 640
#define CashMe_BuildNumber 642
#define CashMe_MinorNumber 0
#define CashMe_MajorNumber 0
#define CashMe_BuildId "0.0.640"
#define CashMe_BuildId "0.0.642"

0 comments on commit 2f5141e

Please sign in to comment.