forked from qt-creator/qt-creator
Fix build on Windows
For some reason it doesn't like signals with QFutures. Going back to pointers, but copying the future from there when it's used. Change-Id: I8dea0817b4e59ede6874ab8be01f22a92e7402a0 Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
This commit is contained in:
@@ -132,7 +132,7 @@ signals:
|
||||
void documentUpdated();
|
||||
void diagnosticsChanged();
|
||||
void semanticInfoUpdated(CppTools::SemanticInfo);
|
||||
void highlighterStarted(QFuture<TextEditor::HighlightingResult>, unsigned revision);
|
||||
void highlighterStarted(QFuture<TextEditor::HighlightingResult> *, unsigned revision);
|
||||
|
||||
private slots:
|
||||
void onMimeTypeChanged();
|
||||
|
||||
Reference in New Issue
Block a user