diff options
author | Bernard Normier <bernard@zeroc.com> | 2012-10-15 16:06:21 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2012-10-15 16:06:21 -0400 |
commit | 881b43e4b50398db0594ea951b786f5b75043341 (patch) | |
tree | cd31ef4237e9645840a54bbb9b3e8c017a8ec371 /java/src/IceGridGUI/Application/NodeEditor.java | |
parent | Metrics minor fix (diff) | |
download | ice-881b43e4b50398db0594ea951b786f5b75043341.tar.bz2 ice-881b43e4b50398db0594ea951b786f5b75043341.tar.xz ice-881b43e4b50398db0594ea951b786f5b75043341.zip |
Fixed ICE-4868: processors is now either 'threads' or 'sockets', as appropriate
Diffstat (limited to 'java/src/IceGridGUI/Application/NodeEditor.java')
-rw-r--r-- | java/src/IceGridGUI/Application/NodeEditor.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/java/src/IceGridGUI/Application/NodeEditor.java b/java/src/IceGridGUI/Application/NodeEditor.java index d36a38a7c14..d49201d8d71 100644 --- a/java/src/IceGridGUI/Application/NodeEditor.java +++ b/java/src/IceGridGUI/Application/NodeEditor.java @@ -171,8 +171,9 @@ class NodeEditor extends Editor _loadFactor.getDocument().addDocumentListener(_updateListener); _loadFactor.setToolTipText("<html>A floating point value.<br>" - + "When not specified, IceGrid uses 1.0 on all platforms<br>" - + "except Windows where it uses 1.0 divided by <i>number of processors</i>.<html>"); + + "When not specified, IceGrid uses 1.0 divided by the<br>" + + "<i>number of threads</i> on all platforms except Windows;<br>" + + "on Windows, IceGrid uses 1.0.<html>"); } protected void appendProperties(DefaultFormBuilder builder) |