comparison dwtx/jface/text/contentassist/ContextInformationPopup.d @ 160:3678e4f1a766

toHash, toString
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 02:07:22 +0200
parents 25f1f92fa3df
children 1a5b8f8129df
comparison
equal deleted inserted replaced
159:7926b636c282 160:3678e4f1a766
112 112
113 /* 113 /*
114 * @see java.lang.Object#hashCode() 114 * @see java.lang.Object#hashCode()
115 * @since 3.1 115 * @since 3.1
116 */ 116 */
117 public int hashCode() { 117 public override hash_t toHash() {
118 return (fInformation.hashCode() << 16) | fBeginOffset; 118 return (fInformation.toHash() << 16) | fBeginOffset;
119 } 119 }
120 } 120 }
121 121
122 alias ContextFrame ContextInformationPopup_ContextFrame; 122 alias ContextFrame ContextInformationPopup_ContextFrame;
123 /** 123 /**