File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -243,8 +243,8 @@ void openDebugLogfile()
243
243
#endif
244
244
}
245
245
246
- ToolTipToRichTextFilter::ToolTipToRichTextFilter (int size_threshold, QObject *parent):
247
- size_threshold (size_threshold ), QObject(parent )
246
+ ToolTipToRichTextFilter::ToolTipToRichTextFilter (int size_threshold, QObject *parent) :
247
+ QObject (parent ), size_threshold(size_threshold )
248
248
{
249
249
250
250
}
Original file line number Diff line number Diff line change @@ -77,11 +77,11 @@ namespace GUIUtil
77
77
representation if needed. This assures that Qt can word-wrap long tooltip messages.
78
78
Tooltips longer than the provided size threshold (in characters) are wrapped.
79
79
*/
80
- class ToolTipToRichTextFilter : public QObject
80
+ class ToolTipToRichTextFilter : public QObject
81
81
{
82
82
Q_OBJECT
83
83
public:
84
- ToolTipToRichTextFilter (int size_threshold, QObject *parent);
84
+ explicit ToolTipToRichTextFilter (int size_threshold, QObject *parent = 0 );
85
85
86
86
protected:
87
87
bool eventFilter (QObject *obj, QEvent *evt);
You can’t perform that action at this time.
0 commit comments