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 - [newcodemodel] IDE can't find new header file if user uses a relative path
Summary: [newcodemodel] IDE can't find new header file if user uses a relative path
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 8.1
Hardware: PC Solaris
: P3 normal (vote)
Assignee: Vladimir Voskresensky
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-10-06 15:39 UTC by soldatov
Modified: 2015-11-02 13:22 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.