forked from qt-creator/qt-creator
We used to call QTextCharFormat::setToolTip from the ExtraSelection to install the diagnostic tooltip. Since this allows to set only text tooltips and we would like to introduce a custom tooltip widget for diagnostics, make use of CppHoverHandler, which is more flexible. Change-Id: Ia1b2c3c50810596ce4a3a025002e6e4efd8789db Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
21 lines
732 B
Plaintext
21 lines
732 B
Plaintext
INCLUDEPATH += $$PWD
|
|
|
|
SOURCES += \
|
|
$$PWD/clangactivationsequencecontextprocessor.cpp \
|
|
$$PWD/clangactivationsequenceprocessor.cpp \
|
|
$$PWD/clangcompletionchunkstotextconverter.cpp \
|
|
$$PWD/clangcompletioncontextanalyzer.cpp \
|
|
$$PWD/clangdiagnosticfilter.cpp \
|
|
$$PWD/clangfixitoperation.cpp \
|
|
$$PWD/clanghighlightingmarksreporter.cpp
|
|
|
|
HEADERS += \
|
|
$$PWD/clangactivationsequencecontextprocessor.h \
|
|
$$PWD/clangactivationsequenceprocessor.h \
|
|
$$PWD/clangcompletionchunkstotextconverter.h \
|
|
$$PWD/clangcompletioncontextanalyzer.h \
|
|
$$PWD/clangdiagnosticfilter.h \
|
|
$$PWD/clangfixitoperation.h \
|
|
$$PWD/clanghighlightingmarksreporter.h \
|
|
$$PWD/clangisdiagnosticrelatedtolocation.h
|