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

(-)src/org/openide/actions/SaveAllAction.java (+4 lines)
Lines 42-47 Link Here
42
package org.openide.actions;
42
package org.openide.actions;
43
43
44
44
45
import javax.swing.Action;
45
import javax.swing.event.ChangeEvent;
46
import javax.swing.event.ChangeEvent;
46
import javax.swing.event.ChangeListener;
47
import javax.swing.event.ChangeListener;
47
import org.openide.LifecycleManager;
48
import org.openide.LifecycleManager;
Lines 77-82 Link Here
77
        super.initialize ();
78
        super.initialize ();
78
        // false by default
79
        // false by default
79
        putProperty (PROP_ENABLED, Boolean.FALSE);
80
        putProperty (PROP_ENABLED, Boolean.FALSE);
81
        // default tooltip  warning about CoS feature #148977
82
        putValue(Action.SHORT_DESCRIPTION, NbBundle.getMessage(
83
             org.openide.loaders.DataObject.class, "HINT_SaveAll"));
80
        // listen to the changes
84
        // listen to the changes
81
        chl = new ModifiedListL();
85
        chl = new ModifiedListL();
82
        DataObject.getRegistry().addChangeListener(
86
        DataObject.getRegistry().addChangeListener(
(-)src/org/openide/loaders/Bundle.properties (+1 lines)
Lines 266-271 Link Here
266
CTL_SaveAsTemplate=&Select the category in which the new template will appear:
266
CTL_SaveAsTemplate=&Select the category in which the new template will appear:
267
CTL_SaveAsTemplate_TemplatesRoot=Templates
267
CTL_SaveAsTemplate_TemplatesRoot=Templates
268
SaveAll=Save &All
268
SaveAll=Save &All
269
HINT_SaveAll=Save all files (if the Compile on Save feature is on, this will also compile/build your files)
269
# FileSystemRefreshAction
270
# FileSystemRefreshAction
270
LAB_Refresh=Refresh Folder
271
LAB_Refresh=Refresh Folder
271
# NewTemplateAction
272
# NewTemplateAction

Return to bug 148977