removed @NULL,@true,@false tags from the function prototypes; fixed * and & displacing in the prototypes; changed @param as discussed on wx-dev; use @see instead of @sa; better indentation for @returns,@remarks,@see paragraphs; other misc fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-09 12:33:59 +00:00
parent 0aaf0255e4
commit 4cc4bfafe5
256 changed files with 8880 additions and 10701 deletions

View File

@@ -27,8 +27,8 @@ class wxHashTable : public wxObject
{
public:
/**
Constructor. @e key_type is one of wxKEY_INTEGER, or wxKEY_STRING,
and indicates what sort of keying is required. @e size is optional.
Constructor. @a key_type is one of wxKEY_INTEGER, or wxKEY_STRING,
and indicates what sort of keying is required. @a size is optional.
*/
wxHashTable(unsigned int key_type, int size = 1000);
@@ -53,8 +53,8 @@ public:
/**
Deletes entry in hash table and returns the user's data (if found).
*/
wxObject * Delete(long key);
wxObject * Delete(const wxString& key);
wxObject* Delete(long key);
wxObject* Delete(const wxString& key);
//@}
/**
@@ -69,8 +69,8 @@ public:
which
has table constructor was used).
*/
wxObject * Get(long key);
wxObject * Get(const char* key);
wxObject* Get(long key);
wxObject* Get(const char* key);
//@}
/**
@@ -92,7 +92,7 @@ public:
implemented as a @b wxNode. The user will probably only wish to use the
@b GetData method to retrieve the data; the node may also be deleted.
*/
wxHashTable::Node * Next();
wxHashTable::Node* Next();
//@{
/**
@@ -101,7 +101,7 @@ public:
has table constructor was used). The key string is copied and stored by the hash
table implementation.
*/
void Put(long key, wxObject * object);
void Put(const char* key, wxObject * object);
void Put(long key, wxObject* object);
void Put(const char* key, wxObject* object);
//@}
};