diff options
author | rtk0c <[email protected]> | 2022-03-15 22:29:53 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-03-15 22:29:53 -0700 |
commit | ee450783622008698647010540d9b9a9d55cb323 (patch) | |
tree | 67088fa2da506a5229fea47b6a812d38b18304a0 /core/src/UI/UI_DatabaseView.cpp | |
parent | 9dcdcf68f6a60741cbdd287e7eda23b4a21a080e (diff) |
Temporarily switch to cstdio instead of custom FileStream implementation
Diffstat (limited to 'core/src/UI/UI_DatabaseView.cpp')
-rw-r--r-- | core/src/UI/UI_DatabaseView.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/UI/UI_DatabaseView.cpp b/core/src/UI/UI_DatabaseView.cpp index 96ef1d7..e128a59 100644 --- a/core/src/UI/UI_DatabaseView.cpp +++ b/core/src/UI/UI_DatabaseView.cpp @@ -16,7 +16,7 @@ #include <memory> #include <vector> -namespace { +namespace CPLT_UNITY_ID { // TODO move to Settings constexpr int kMaxEntriesPerPage = 32; @@ -638,15 +638,15 @@ public: } #pragma clang diagnostic pop }; -} // namespace +} // namespace CPLT_UNITY_ID void UI::DatabaseViewTab() { auto& gs = GlobalStates::GetInstance(); static Project* currentProject = nullptr; - static SalesTableView sales; - static PurchasesTableView purchases; + static CPLT_UNITY_ID::SalesTableView sales; + static CPLT_UNITY_ID::PurchasesTableView purchases; if (currentProject != gs.GetCurrentProject()) { currentProject = gs.GetCurrentProject(); |