diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-26 13:55:22 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-26 13:55:22 +0000 |
| commit | 9ffbf6d8b94e8ae40ebc291eab6bd96aff3477b0 (patch) | |
| tree | 4b0e3f59bee77c51663044ef331fc47413c78758 /sources/protocols/implementations/InternalTimeSyncProtocol.java | |
| parent | 71d9caff2cc21a39971b69670c481c28b0399b9c (diff) | |
all relevant variables now do have units.
Diffstat (limited to 'sources/protocols/implementations/InternalTimeSyncProtocol.java')
| -rw-r--r-- | sources/protocols/implementations/InternalTimeSyncProtocol.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/protocols/implementations/InternalTimeSyncProtocol.java b/sources/protocols/implementations/InternalTimeSyncProtocol.java index f6c4afa..2e1c013 100644 --- a/sources/protocols/implementations/InternalTimeSyncProtocol.java +++ b/sources/protocols/implementations/InternalTimeSyncProtocol.java @@ -24,8 +24,8 @@ public class InternalTimeSyncProtocol extends VSProtocol { setClassname(getClass().toString()); /* Those prefs are editable through the VSProtocol VSEditor GUI. t_min and t_max in milliseconds */ - setLong("t_min", 500); - setLong("t_max", 2000); + initLong("t_min", 500, "Max. Übetragungszeit", "ms"); + initLong("t_max", 2000, "Min. Übertragungszeit", "ms"); } /* (non-Javadoc) |
