aboutsummaryrefslogtreecommitdiff
path: root/src/qt/guiutil.h
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2014-08-08 10:03:13 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2014-08-08 11:04:35 +0200
commitc4bae530926853e59d0d9a3bdced91330ba56dd3 (patch)
tree45864e031f390d7e5bc9d79f37f2e0251677541e /src/qt/guiutil.h
parentfffe947c486a7643362997cc4ca2ce207e7c761d (diff)
downloadbitcoin-c4bae530926853e59d0d9a3bdced91330ba56dd3.tar.xz
[Qt] move SubstituteFonts() above ToolTipToRichTextFilter
- doesn't belong to the ToolTipToRichTextFilter class so move it up
Diffstat (limited to 'src/qt/guiutil.h')
-rw-r--r--src/qt/guiutil.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h
index 83739a5f13..0ae5154d4b 100644
--- a/src/qt/guiutil.h
+++ b/src/qt/guiutil.h
@@ -102,14 +102,13 @@ namespace GUIUtil
// Open debug.log
void openDebugLogfile();
+ // Replace invalid default fonts with known good ones
+ void SubstituteFonts();
+
/** Qt event filter that intercepts ToolTipChange events, and replaces the tooltip with a rich text
representation if needed. This assures that Qt can word-wrap long tooltip messages.
Tooltips longer than the provided size threshold (in characters) are wrapped.
*/
-
- // Replace invalid default fonts with known good ones
- void SubstituteFonts();
-
class ToolTipToRichTextFilter : public QObject
{
Q_OBJECT