This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 255741

Summary: [newcodemodel] IDE can't find new header file if user uses a relative path
Product: cnd Reporter: soldatov <soldatov>
Component: Code ModelAssignee: Vladimir Voskresensky <vv159170>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P3    
Version: 8.1   
Hardware: PC   
OS: Solaris   
Issue Type: DEFECT Exception Reporter:

Description soldatov 2015-10-06 15:39:28 UTC
Scenario:
- Create CppApplication_1 project with main.cpp
- Open main.cpp
- Add:
#include "file.h"
#include "../CppApplication_1/file.h"
#include "./file.h"
==> ok. I see 3 unresolved #include
- Create file.h
- Modify and save main.cpp file
==> IDE found first path only. Relative paths has not been found.