fix compilation error (#1609)

This commit is contained in:
Le Tan 2020-12-18 23:35:25 -08:00 committed by GitHub
parent 6aa0e98993
commit 44a11ce5bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -81,7 +81,7 @@ MarkdownEditor::MarkdownEditor(const MarkdownEditorConfig &p_config,
connect(m_headingTimer, &QTimer::timeout,
this, &MarkdownEditor::currentHeadingChanged);
connect(m_textEdit, &vte::VTextEdit::cursorLineChanged,
m_headingTimer, QOverload<void>::of(&QTimer::start));
m_headingTimer, QOverload<>::of(&QTimer::start));
}
MarkdownEditor::~MarkdownEditor()

View File

@ -10,6 +10,7 @@
class QMimeData;
class QMenu;
class QTimer;
namespace vte
{