diff options
Diffstat (limited to 'src/libs/clangbackendipc/ipcserverproxy.cpp')
-rw-r--r-- | src/libs/clangbackendipc/ipcserverproxy.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libs/clangbackendipc/ipcserverproxy.cpp b/src/libs/clangbackendipc/ipcserverproxy.cpp index fa5777267c..90419da958 100644 --- a/src/libs/clangbackendipc/ipcserverproxy.cpp +++ b/src/libs/clangbackendipc/ipcserverproxy.cpp @@ -40,6 +40,7 @@ #include <ipcclientinterface.h> #include <registerunsavedfilesforeditormessage.h> #include <requestdiagnosticsmessage.h> +#include <requesthighlightingmessage.h> #include <unregisterunsavedfilesforeditormessage.h> #include <updatetranslationunitsforeditormessage.h> #include <updatevisibletranslationunitsmessage.h> @@ -120,6 +121,11 @@ void IpcServerProxy::requestDiagnostics(const ClangBackEnd::RequestDiagnosticsMe writeMessageBlock.write(QVariant::fromValue(message)); } +void IpcServerProxy::requestHighlighting(const RequestHighlightingMessage &message) +{ + writeMessageBlock.write(QVariant::fromValue(message)); +} + void IpcServerProxy::updateVisibleTranslationUnits(const UpdateVisibleTranslationUnitsMessage &message) { writeMessageBlock.write(QVariant::fromValue(message)); |