Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 49 for /trunk/Java/core/jvm1.4/src/org/litesoft/ui/support/ActionUsage.java

Diff revisions: vs.
  @@ -1,3 +1,4 @@
1 + // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
1 2 package org.litesoft.ui.support;
2 3
3 4 import org.litesoft.core.util.*;
  @@ -56,7 +57,7 @@
56 57
57 58 public int compareTo( ActionUsage pThem )
58 59 {
59 - return Compare.first( this.mActionID, pThem.mActionID //
60 + return Compare.first( this.mActionID, pThem.mActionID //
60 61 ).then( this.getLabelID(), pThem.getLabelID() //
61 62 ).then( this.isDisabled(), pThem.isDisabled() //
62 63 ).result();