diff options
author | David Schulz <david.schulz@qt.io> | 2021-12-13 14:19:30 +0100 |
---|---|---|
committer | David Schulz <david.schulz@qt.io> | 2022-01-18 08:14:57 +0000 |
commit | 49ac087955789e4ab931afe3a34414c7cba68589 (patch) | |
tree | d29c504a53c847130b65e49bae89cd1070ef90ab /src/plugins/python/pythonplugin.cpp | |
parent | 1ba6faeea01cd5eeba854d559344eb01a5c64574 (diff) | |
download | qt-creator-49ac087955789e4ab931afe3a34414c7cba68589.tar.gz |
Python: move language client functionality out of utils
There will be more lsp specific functionality so moving it into its own
space is reasonable.
Change-Id: Ic87d437182d68673b53f662c804707138fef5b6c
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/python/pythonplugin.cpp')
-rw-r--r-- | src/plugins/python/pythonplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythonplugin.cpp b/src/plugins/python/pythonplugin.cpp index 9c02a7ead2..dc89abf2b0 100644 --- a/src/plugins/python/pythonplugin.cpp +++ b/src/plugins/python/pythonplugin.cpp @@ -26,10 +26,10 @@ #include "pythonplugin.h" #include "pythoneditor.h" +#include "pythonlanguageclient.h" #include "pythonproject.h" #include "pythonsettings.h" #include "pythonrunconfiguration.h" -#include "pythonutils.h" #include <coreplugin/fileiconprovider.h> |