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.

View | Details | Raw Unified | Return to bug 60618
Collapse All | Expand All

(-)loaders/src/org/openide/awt/DynaMenuModel.java (-1 / +1 lines)
Lines 119-125 Link Here
119
            } else {
119
            } else {
120
                // null means separator
120
                // null means separator
121
                if (!wasSeparator) {
121
                if (!wasSeparator) {
122
                    m.addSeparator();
122
                    m.addSeparator(new JSeparator());
123
                }
123
                }
124
            }
124
            }
125
        }
125
        }
(-)util/src/org/openide/util/Utilities.java (-1 / +1 lines)
Lines 2567-2573 Link Here
2567
                    needSep = false;
2567
                    needSep = false;
2568
2568
2569
                    if (haveHadNonSep) {
2569
                    if (haveHadNonSep) {
2570
                        menu.addSeparator();
2570
                        menu.add(new JSeparator());
2571
                    }
2571
                    }
2572
                }
2572
                }
2573
2573

Return to bug 60618