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 (+7 lines)
Lines 42-50 Link Here
42
package org.openide.actions;
42
package org.openide.actions;
43
43
44
44
45
import java.awt.Component;
46
import javax.swing.Action;
47
import javax.swing.JButton;
45
import javax.swing.event.ChangeEvent;
48
import javax.swing.event.ChangeEvent;
46
import javax.swing.event.ChangeListener;
49
import javax.swing.event.ChangeListener;
47
import org.openide.LifecycleManager;
50
import org.openide.LifecycleManager;
51
import org.openide.awt.Actions;
48
import org.openide.loaders.DataObject;
52
import org.openide.loaders.DataObject;
49
import org.openide.util.Exceptions;
53
import org.openide.util.Exceptions;
50
import org.openide.util.HelpCtx;
54
import org.openide.util.HelpCtx;
Lines 77-82 Link Here
77
        super.initialize ();
81
        super.initialize ();
78
        // false by default
82
        // false by default
79
        putProperty (PROP_ENABLED, Boolean.FALSE);
83
        putProperty (PROP_ENABLED, Boolean.FALSE);
84
        // default tooltip  warning about CoS feature #148977
85
        putValue(Action.SHORT_DESCRIPTION, NbBundle.getMessage(
86
             org.openide.loaders.DataObject.class, "HINT_SaveAll"));
80
        // listen to the changes
87
        // listen to the changes
81
        chl = new ModifiedListL();
88
        chl = new ModifiedListL();
82
        DataObject.getRegistry().addChangeListener(
89
        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 unsaved files and compile them if Compile on Save feature is on
269
# FileSystemRefreshAction
270
# FileSystemRefreshAction
270
LAB_Refresh=Refresh Folder
271
LAB_Refresh=Refresh Folder
271
# NewTemplateAction
272
# NewTemplateAction

Return to bug 148977