-
Notifications
You must be signed in to change notification settings - Fork 271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: Signal-slot connections cleanup #333
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK faf0639
Reviewed the code and tested that each commit can compile and run on its own. Also tested to ensure there is no change in functionality. This is a nice simplification of the signal/slot logic
@promag @ryanofsky @Sjors @Talkless Could you look into this PR, please? |
This change makes a connection directly to the signal that was emitted in the removed slot. This commit does not change behavior.
This change makes a connection directly to the signal that was emitted in the removed slot. This commit does not change behavior.
This change removes redundant intermediate WalletFrame connections. This commit does not change behavior.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tACK f507681, tested on Debian Sid with Qt 5.15.2, no any behavioral changes noticed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code review ACK f507681.
This PR:
WalletView::outOfSyncWarningClicked
signal to theBitcoinGUI::showModalOverlay
slot directly, and removes intermediateWalletFrame
slot and signalThis PR does not change behavior.