aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/editordocumenthandle.h
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@qt.io>2017-01-19 15:46:40 +0100
committerNikolai Kosjar <nikolai.kosjar@qt.io>2017-01-26 07:52:54 +0000
commit741596481900347ef4c69d80efdffe710e79ff6b (patch)
treec7c9471da1abe791de994d8256fcf2b53d03dbbe /src/plugins/cpptools/editordocumenthandle.h
parentbddfe21961f59ee471b302da9bc7a5c7ee4f561d (diff)
CppTools: Fix choosing project part after project open
As long as there are project parts for a source file, always determine the best project part, instead of trying to stick to the previous one. This ensures the best project part at all times and simplifies the code. Change-Id: I25ea3eb43a5a3e6d93688d4b8965f596dc9ae22b Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/cpptools/editordocumenthandle.h')
-rw-r--r--src/plugins/cpptools/editordocumenthandle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cpptools/editordocumenthandle.h b/src/plugins/cpptools/editordocumenthandle.h
index 16b69ab751..ac9e9fa076 100644
--- a/src/plugins/cpptools/editordocumenthandle.h
+++ b/src/plugins/cpptools/editordocumenthandle.h
@@ -40,8 +40,8 @@ public:
enum RefreshReason {
None,
- Usual, // e.g. project configuration change or change of editor contents
- ActiveProjectChange
+ ProjectUpdate,
+ Other,
};
RefreshReason refreshReason() const;
void setRefreshReason(const RefreshReason &refreshReason);