ran qt client
Details
Details
- Reviewers
deadalnix schancel - Group Reviewers
Restricted Project - Commits
- rSTAGINGa4afdad25f8f: Make Config more available in Qt
rABCa4afdad25f8f: Make Config more available in Qt
Diff Detail
Diff Detail
- Repository
- rABC Bitcoin ABC
- Branch
- 23-11-configaround
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 1159 Build 1159: arc lint + arc unit
Event Timeline
Comment Actions
I like the idea, please just make sure you use a pointer when you take ownership of the Config object down the road.
src/qt/bitcoin.cpp | ||
---|---|---|
219 | pointer | |
367 | Pointer | |
src/qt/bitcoingui.h | ||
55 | because you take ownership, you shouldn't use a reference. Using reference usually imply you won't take ownership of things (it's not a hard rule, more like a common convention). | |
134 | Pointer |
src/qt/bitcoingui.h | ||
---|---|---|
55 | I'm not taking ownership |
src/qt/bitcoingui.h | ||
---|---|---|
55 | You are keeping a reference to it. |