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 149284 - Three arg createOutlineModel in DefaultOutlineModel does not respect the islargeModel arg
Summary: Three arg createOutlineModel in DefaultOutlineModel does not respect the isla...
Status: RESOLVED FIXED
Alias: None
Product: platform
Classification: Unclassified
Component: Outline&TreeTable (show other bugs)
Version: 6.x
Hardware: All All
: P4 blocker (vote)
Assignee: Stanislav Aubrecht
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-10-06 20:31 UTC by lkishalmi
Modified: 2009-02-19 22:53 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 lkishalmi 2008-10-06 20:31:55 UTC
In DefaultOutlineModel the three arg createOutlineModel looks like:
    public static OutlineModel createOutlineModel(TreeModel treeModel, RowModel rowModel, boolean isLargeModel) {
        return createOutlineModel (treeModel, rowModel, false, null);
    }

however it should look like:

    public static OutlineModel createOutlineModel(TreeModel treeModel, RowModel rowModel, boolean isLargeModel) {
        return createOutlineModel (treeModel, rowModel, isLargeModel, null);
    }
Comment 1 Stanislav Aubrecht 2008-10-08 14:23:48 UTC
it's a simple fix but 6.5 is already frozen...
Comment 2 Stanislav Aubrecht 2008-10-23 14:25:57 UTC
fixed

c4202fe0ac03
Comment 3 Quality Engineering 2008-10-27 05:57:16 UTC
Integrated into 'main-golden', will be available in build *200810270201* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main/rev/c4202fe0ac03
User: S. Aubrecht <saubrecht@netbeans.org>
Log: #149284 - Three arg createOutlineModel in DefaultOutlineModel does not respect the islargeModel arg