VirtualBox

Changeset 40023 in vbox for trunk/src/libs


Ignore:
Timestamp:
Feb 7, 2012 9:44:31 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
76146
Message:

gcc-4.7 fixes

Location:
trunk/src/libs/xpcom18a4/xpcom/ds
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/xpcom/ds/nsBaseHashtable.h

    r1 r40023  
    125125  PRBool Get(KeyType aKey, UserDataType* pData) const
    126126  {
    127     EntryType* ent = GetEntry(aKey);
     127    EntryType* ent = this->GetEntry(aKey);
    128128
    129129    if (!ent)
     
    144144  PRBool Put(KeyType aKey, UserDataType aData)
    145145  {
    146     EntryType* ent = PutEntry(aKey);
     146    EntryType* ent = this->PutEntry(aKey);
    147147
    148148    if (!ent)
     
    158158   * @param aKey the key to remove from the hashtable
    159159   */
    160   void Remove(KeyType aKey) { RemoveEntry(aKey); }
     160  void Remove(KeyType aKey) { this->RemoveEntry(aKey); }
    161161
    162162  /**
  • trunk/src/libs/xpcom18a4/xpcom/ds/nsClassHashtable.h

    r1 r40023  
    9999{
    100100  typename nsBaseHashtable<KeyClass,nsAutoPtr<T>,T*>::EntryType* ent =
    101     GetEntry(aKey);
     101    this->GetEntry(aKey);
    102102
    103103  if (ent)
     
    127127
    128128  typename nsBaseHashtableMT<KeyClass,nsAutoPtr<T>,T*>::EntryType* ent =
    129     GetEntry(aKey);
     129    this->GetEntry(aKey);
    130130
    131131  if (ent)
  • trunk/src/libs/xpcom18a4/xpcom/ds/nsInterfaceHashtable.h

    r1 r40023  
    112112{
    113113  typename nsBaseHashtable<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent =
    114     GetEntry(aKey);
     114    this->GetEntry(aKey);
    115115
    116116  if (ent)
     
    140140{
    141141  typename nsBaseHashtable<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent =
    142     GetEntry(aKey);
     142    this->GetEntry(aKey);
    143143
    144144  if (ent)
     
    168168
    169169  typename nsBaseHashtableMT<KeyClass, nsCOMPtr<Interface>, Interface*>::EntryType* ent =
    170     GetEntry(aKey);
     170    this->GetEntry(aKey);
    171171
    172172  if (ent)
  • trunk/src/libs/xpcom18a4/xpcom/ds/nsRefPtrHashtable.h

    r1 r40023  
    113113{
    114114  typename nsBaseHashtable<KeyClass, nsRefPtr<RefPtr>, RefPtr*>::EntryType* ent =
    115     GetEntry(aKey);
     115    this->GetEntry(aKey);
    116116
    117117  if (ent)
     
    141141{
    142142  typename nsBaseHashtable<KeyClass, nsRefPtr<RefPtr>, RefPtr*>::EntryType* ent =
    143     GetEntry(aKey);
     143    this->GetEntry(aKey);
    144144
    145145  if (ent)
     
    169169
    170170  typename nsBaseHashtableMT<KeyClass, nsRefPtr<RefPtr>, RefPtr*>::EntryType* ent =
    171     GetEntry(aKey);
     171    this->GetEntry(aKey);
    172172
    173173  if (ent)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette