forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.4'
Conflicts: src/tools/clangbackend/ipcsource/clangiasyncjob.cpp src/tools/clangbackend/ipcsource/clangjobrequest.cpp src/tools/clangbackend/ipcsource/clangjobrequest.h Change-Id: Ib8602530663813ade418f995dfd2a736908cfe75
This commit is contained in:
@@ -54,15 +54,22 @@ public:
|
||||
RequestDocumentAnnotations,
|
||||
RequestReferences,
|
||||
FollowSymbol,
|
||||
|
||||
SuspendDocument,
|
||||
ResumeDocument,
|
||||
};
|
||||
|
||||
enum class Condition {
|
||||
NoCondition,
|
||||
CurrentDocumentRevision,
|
||||
NoCondition = 1 << 0,
|
||||
DocumentVisible = 1 << 1,
|
||||
DocumentNotVisible = 1 << 2,
|
||||
DocumentSuspended = 1 << 3,
|
||||
DocumentUnsuspended = 1 << 4,
|
||||
CurrentDocumentRevision = 1 << 5,
|
||||
};
|
||||
Q_DECLARE_FLAGS(Conditions, Condition)
|
||||
|
||||
enum ExpirationReason {
|
||||
enum class ExpirationReason {
|
||||
Never = 1 << 0,
|
||||
|
||||
DocumentClosed = 1 << 1,
|
||||
|
||||
Reference in New Issue
Block a user