forked from qt-creator/qt-creator
		
	C++: fix include/framework path handling.
Instead of having two lists of paths, now only one list is used where both include paths and framework paths can be mixed. This reflects the way the compiler is invoked, and retains the (correct) search order. Task-number: QTCREATORBUG-11599 Change-Id: I373953e3e305df5b7a0d10920e12d146584adf9f Reviewed-by: Nikolai Kosjar <nikolai.kosjar@digia.com>
This commit is contained in:
		@@ -56,8 +56,7 @@ public:
 | 
			
		||||
 | 
			
		||||
    CPlusPlus::Document::Ptr document() const;
 | 
			
		||||
    CPlusPlus::Snapshot snapshot() const;
 | 
			
		||||
    QStringList includePaths() const;
 | 
			
		||||
    QStringList frameworkPaths() const;
 | 
			
		||||
    ProjectPart::HeaderPaths headerPaths() const;
 | 
			
		||||
 | 
			
		||||
    ProjectPart::Ptr currentProjectPart() const;
 | 
			
		||||
    void setProjectPart(ProjectPart::Ptr projectPart);
 | 
			
		||||
@@ -76,8 +75,7 @@ private:
 | 
			
		||||
    QByteArray m_configFile;
 | 
			
		||||
    bool m_editorDefinesChangedSinceLastUpdate;
 | 
			
		||||
    QByteArray m_editorDefines;
 | 
			
		||||
    QStringList m_includePaths;
 | 
			
		||||
    QStringList m_frameworkPaths;
 | 
			
		||||
    ProjectPart::HeaderPaths m_headerPaths;
 | 
			
		||||
    QString m_projectConfigFile;
 | 
			
		||||
    QStringList m_precompiledHeaders;
 | 
			
		||||
    CPlusPlus::Snapshot m_snapshot;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user