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 270188 - Usages tab - namespace is truncated
Summary: Usages tab - namespace is truncated
Status: VERIFIED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: Dev
Hardware: PC Linux
: P3 normal (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-03-24 15:24 UTC by mariusz_m
Modified: 2017-04-21 09:41 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
usages-namespace (124.69 KB, image/png)
2017-03-24 15:24 UTC, mariusz_m
Details

Note You need to log in before you can comment on or make changes to this bug.
Description mariusz_m 2017-03-24 15:24:18 UTC
Created attachment 163934 [details]
usages-namespace

On usages tab there is hierarchy
file -> namespace -> function -> line of occurence.

The last letter of namespace string is always missing.
See the image.
Comment 1 mariusz_m 2017-03-24 15:26:08 UTC
Still found in latest build:

netbeans-trunk-nightly-201703240002-cpp-linux-x64
Comment 2 Alexander Simon 2017-03-27 09:26:29 UTC
fixed in enum, branch release82, changeset a11dcda9fef4
Comment 3 Quality Engineering 2017-04-02 02:36:54 UTC
Integrated into 'main-silver', will be available in build *201704020002* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/3e195e221f76
User: Alexander Simon <alexvsimon@netbeans.org>
Log: fixed Bug #270188 Usages tab - namespace is truncated
(transplanted from a11dcda9fef4d704d4a1a3884a2f786499598863)
Comment 4 ilia 2017-04-12 12:58:45 UTC
https://netbeans.org/bugzilla/show_bug.cgi?id=270188 Changesets:
    http://hg.netbeans.org/releases/rev/a11dcda9fef4 # fixed Bug #270188 Usages tab - namespace is truncated
Comment 5 soldatov 2017-04-21 09:41:22 UTC
Verified in NetBeans IDE 8.2 (Build 201704181436)

Code:

namespace abcd
{
    void foo()
    {
    }
}

using namespace abcd;

int main()
{
    foo();
    return 0;
}