diff options
author | fanquake <fanquake@gmail.com> | 2022-04-06 19:47:16 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-04-06 19:47:16 +0100 |
commit | b72925e7cea11522aca65580c136dbacb2753e83 (patch) | |
tree | 00617415262375c5f957dc1a5eeae3ecf80eb1f6 /src | |
parent | 41720a1f540ef3c16a283a6cce6f0a63552a4937 (diff) |
lint: remove qt SIGNAL/SLOT lint
I think we are past the point where we need to lint for this, the CPU
can probably be better utilized.
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/bitcoingui.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 0ae5f7331e..d2b29ba27b 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -303,7 +303,7 @@ public Q_SLOTS: /** Show window if hidden, unminimize when minimized, rise when obscured or show if hidden and fToggleHidden is true */ void showNormalIfMinimized() { showNormalIfMinimized(false); } void showNormalIfMinimized(bool fToggleHidden); - /** Simply calls showNormalIfMinimized(true) for use in SLOT() macro */ + /** Simply calls showNormalIfMinimized(true) */ void toggleHidden(); /** called by a timer to check if ShutdownRequested() has been set **/ |