Changeset 40023 in vbox for trunk/src/libs
- Timestamp:
- Feb 7, 2012 9:44:31 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76146
- Location:
- trunk/src/libs/xpcom18a4/xpcom/ds
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/ds/nsBaseHashtable.h
r1 r40023 125 125 PRBool Get(KeyType aKey, UserDataType* pData) const 126 126 { 127 EntryType* ent = GetEntry(aKey);127 EntryType* ent = this->GetEntry(aKey); 128 128 129 129 if (!ent) … … 144 144 PRBool Put(KeyType aKey, UserDataType aData) 145 145 { 146 EntryType* ent = PutEntry(aKey);146 EntryType* ent = this->PutEntry(aKey); 147 147 148 148 if (!ent) … … 158 158 * @param aKey the key to remove from the hashtable 159 159 */ 160 void Remove(KeyType aKey) { RemoveEntry(aKey); }160 void Remove(KeyType aKey) { this->RemoveEntry(aKey); } 161 161 162 162 /** -
trunk/src/libs/xpcom18a4/xpcom/ds/nsClassHashtable.h
r1 r40023 99 99 { 100 100 typename nsBaseHashtable<KeyClass,nsAutoPtr<T>,T*>::EntryType* ent = 101 GetEntry(aKey);101 this->GetEntry(aKey); 102 102 103 103 if (ent) … … 127 127 128 128 typename nsBaseHashtableMT<KeyClass,nsAutoPtr<T>,T*>::EntryType* ent = 129 GetEntry(aKey);129 this->GetEntry(aKey); 130 130 131 131 if (ent) -
trunk/src/libs/xpcom18a4/xpcom/ds/nsInterfaceHashtable.h
r1 r40023 112 112 { 113 113 typename nsBaseHashtable<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent = 114 GetEntry(aKey);114 this->GetEntry(aKey); 115 115 116 116 if (ent) … … 140 140 { 141 141 typename nsBaseHashtable<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent = 142 GetEntry(aKey);142 this->GetEntry(aKey); 143 143 144 144 if (ent) … … 168 168 169 169 typename nsBaseHashtableMT<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent = 170 GetEntry(aKey);170 this->GetEntry(aKey); 171 171 172 172 if (ent) -
trunk/src/libs/xpcom18a4/xpcom/ds/nsRefPtrHashtable.h
r1 r40023 113 113 { 114 114 typename nsBaseHashtable<KeyClass, nsRefPtr<RefPtr>, RefPtr*>::EntryType* ent = 115 GetEntry(aKey);115 this->GetEntry(aKey); 116 116 117 117 if (ent) … … 141 141 { 142 142 typename nsBaseHashtable<KeyClass, nsRefPtr<RefPtr>, RefPtr*>::EntryType* ent = 143 GetEntry(aKey);143 this->GetEntry(aKey); 144 144 145 145 if (ent) … … 169 169 170 170 typename nsBaseHashtableMT<KeyClass, nsRefPtr<RefPtr>, RefPtr*>::EntryType* ent = 171 GetEntry(aKey);171 this->GetEntry(aKey); 172 172 173 173 if (ent)
Note:
See TracChangeset
for help on using the changeset viewer.