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 171284
Collapse All | Expand All

(-)a/options.api/src/org/netbeans/modules/options/OptionsCategoryImpl.java (-1 / +1 lines)
Lines 83-89 Link Here
83
83
84
    @Override
84
    @Override
85
    public Icon getIcon() {
85
    public Icon getIcon() {
86
        if (icon == null) {
86
        if (icon == null && iconBase != null) {
87
            Image image = ImageUtilities.loadImage(iconBase);
87
            Image image = ImageUtilities.loadImage(iconBase);
88
            if (image != null) {
88
            if (image != null) {
89
                return new ImageIcon(image);
89
                return new ImageIcon(image);
(-)a/tasklist.todo/src/org/netbeans/modules/tasklist/todo/layer.xml (-3 / +2 lines)
Lines 30-39 Link Here
30
        <folder name="Advanced">
30
        <folder name="Advanced">
31
            <attr name="position" intvalue="0"/>
31
            <attr name="position" intvalue="0"/>
32
            <file name="ToDo.instance">
32
            <file name="ToDo.instance">
33
                <attr name="instanceCreate" methodvalue="org.netbeans.spi.options.AdvancedOption.createSubCategory"/>
33
                <attr name="instanceCreate" methodvalue="org.netbeans.spi.options.OptionsCategory.createCategory"/>
34
35
                <attr name="controller" newvalue="org.netbeans.modules.tasklist.todo.settings.ToDoOptionsController"/>
34
                <attr name="controller" newvalue="org.netbeans.modules.tasklist.todo.settings.ToDoOptionsController"/>
36
                <attr name="displayName" bundlevalue="org.netbeans.modules.tasklist.todo.settings.Bundle#LBL_Options"/>
35
                <attr name="categoryName" bundlevalue="org.netbeans.modules.tasklist.todo.settings.Bundle#LBL_Options"/>
37
                <attr name="toolTip" bundlevalue="org.netbeans.modules.tasklist.todo.settings.Bundle#HINT_Options"/>
36
                <attr name="toolTip" bundlevalue="org.netbeans.modules.tasklist.todo.settings.Bundle#HINT_Options"/>
38
                <attr name="keywords" bundlevalue="org.netbeans.modules.tasklist.todo.settings.Bundle#KW_ToDo"/>
37
                <attr name="keywords" bundlevalue="org.netbeans.modules.tasklist.todo.settings.Bundle#KW_ToDo"/>
39
                <attr name="keywordsCategory" stringvalue="Advanced/ToDo"/>
38
                <attr name="keywordsCategory" stringvalue="Advanced/ToDo"/>

Return to bug 171284