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 132276 - SS: open advanced property node doesn't work
Summary: SS: open advanced property node doesn't work
Status: VERIFIED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 6.x
Hardware: All All
: P1 blocker (vote)
Assignee: Thomas Preisler
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-04-08 02:24 UTC by Thomas Preisler
Modified: 2008-04-09 13:29 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 Thomas Preisler 2008-04-08 02:24:34 UTC
From SS / NB 6.1 testing:

8) Advanced->RTC->Configure from main menu bar navigates to ProjectProperties/Advanced instead of ProjectProperties/Advanced/RTC 

This is a regression.
Comment 1 Thomas Preisler 2008-04-08 02:49:17 UTC
Fixed in trunk:

changeset 5ac0847de03d in main
details: http://hg.netbeans.org/main?cmd=changeset;node=5ac0847de03d
description:
	132276 SS: open advanced property node doesn't work

diffs (25 lines):

diff -r b7e396275949 -r 5ac0847de03d cnd.makeproject/src/org/netbeans/modules/cnd/makeproject/ui/customizer/MakeCustomizer.java
--- a/cnd.makeproject/src/org/netbeans/modules/cnd/makeproject/ui/customizer/MakeCustomizer.java	Mon Apr 07 11:42:54 2008 -0700
+++ b/cnd.makeproject/src/org/netbeans/modules/cnd/makeproject/ui/customizer/MakeCustomizer.java	Mon Apr 07 18:28:05 2008 -0700
@@ -363,9 +363,10 @@ public class MakeCustomizer extends java
         
         private ExplorerManager manager;
         private BeanTreeView btv;
+        private String preselectedNodeName;
         
         CategoryView( Node rootNode, String preselectedNodeName ) {
-            
+            this.preselectedNodeName = preselectedNodeName;
             // See #36315
             manager = new ExplorerManager();
             
@@ -416,6 +417,9 @@ public class MakeCustomizer extends java
             super.addNotify();
             //btv.expandAll();
             expandCollapseTree(manager.getRootContext(), btv);
+            if (preselectedNodeName != null && preselectedNodeName.length() > 0) {
+                selectNode( preselectedNodeName );
+            }
         }
         
         private Node findNode(Node pnode, String name) {

Comment 2 Alexander Pepin 2008-04-08 12:59:46 UTC
verified in trunk (in SS IDE build based on NB from the trunk)
Comment 3 Thomas Preisler 2008-04-08 20:53:37 UTC
Fixed in release61:

changeset a96c61f8c5f5 in release61
details: http://hg.netbeans.org/release61?cmd=changeset;node=a96c61f8c5f5
description:
	132276 SS: open advanced property node doesn't work

Comment 4 Alexander Pepin 2008-04-09 13:29:38 UTC
verified in SS IDE based on NB 6.1 build 20080408015310