// Created: 01/02/97
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
-// Licence: wxWidgets licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// ============================================================================
wxHashTableBase::wxHashTableBase()
{
- m_deleteContents = FALSE;
+ m_deleteContents = false;
m_hashTable = (wxListBase **)NULL;
m_hashSize = 0;
m_count = 0;
if ( keys->Item(n) == key )
{
if ( wasFound )
- *wasFound = TRUE;
+ *wasFound = true;
return m_values[slot]->Item(n);
}
}
if ( wasFound )
- *wasFound = FALSE;
+ *wasFound = false;
return _T("");
}
bool wxStringHashTable::Delete(long key) const
{
- wxCHECK_MSG( m_hashSize, FALSE, _T("must call Create() first") );
+ wxCHECK_MSG( m_hashSize, false, _T("must call Create() first") );
size_t slot = (size_t)abs((int)(key % (long)m_hashSize));
{
keys->RemoveAt(n);
m_values[slot]->RemoveAt(n);
- return TRUE;
+ return true;
}
}
}
- return FALSE;
+ return false;
}
#endif // WXWIN_COMPATIBILITY_2_4
hash_table = (wxList**) NULL;
Create(the_key_type, size);
m_count = 0;
- m_deleteContents = FALSE;
+ m_deleteContents = false;
/*
n = size;
current_position = -1;
int i;
for (i = 0; i < size; i++)
hash_table[i] = (wxList *) NULL;
- return TRUE;
+ return true;
}
if (!hash_table[position])
{
hash_table[position] = new wxList (wxKEY_INTEGER);
- if (m_deleteContents) hash_table[position]->DeleteContents(TRUE);
+ if (m_deleteContents) hash_table[position]->DeleteContents(true);
}
hash_table[position]->Append (value, object);
if (!hash_table[position])
{
hash_table[position] = new wxList (wxKEY_STRING);
- if (m_deleteContents) hash_table[position]->DeleteContents(TRUE);
+ if (m_deleteContents) hash_table[position]->DeleteContents(true);
}
hash_table[position]->Append (value, object);
if (!hash_table[position])
{
hash_table[position] = new wxList (wxKEY_INTEGER);
- if (m_deleteContents) hash_table[position]->DeleteContents(TRUE);
+ if (m_deleteContents) hash_table[position]->DeleteContents(true);
}
hash_table[position]->Append (k, object);
if (!hash_table[position])
{
hash_table[position] = new wxList (wxKEY_STRING);
- if (m_deleteContents) hash_table[position]->DeleteContents(TRUE);
+ if (m_deleteContents) hash_table[position]->DeleteContents(true);
}
hash_table[position]->Append (key, object);
wxHashTable::Node* wxHashTable::Next ()
{
wxNode *found = (wxNode *) NULL;
- bool end = FALSE;
+ bool end = false;
while (!end && !found)
{
if (!current_node)
{
current_position = -1;
current_node = (wxNode *) NULL;
- end = TRUE;
+ end = true;
}
else
{
Node* prev = start;
for( curr = prev->GetNext(); curr != node;
- prev = curr, curr = curr->GetNext() );
+ prev = curr, curr = curr->GetNext() ) ;
DoUnlinkNode( bucket, node, prev );
}