summaryrefslogtreecommitdiffstats
path: root/src/sortdict.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sortdict.h')
-rw-r--r--src/sortdict.h20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/sortdict.h b/src/sortdict.h
index 4db330f..203ae5e 100644
--- a/src/sortdict.h
+++ b/src/sortdict.h
@@ -128,7 +128,7 @@ class SDict
/*! Appends an element to the dictionary. The element is owned by the
* dictionary.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -146,7 +146,7 @@ class SDict
/*! Prepends an element to the dictionary. The element is owned by the
* dictionary.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -190,7 +190,7 @@ class SDict
m_list->sort();
}
/*! Inserts a compound into the dictionary in a sorted way.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -237,10 +237,6 @@ class SDict
{
return m_dict->find(key);
}
- T *find(const QString &key)
- {
- return m_dict->find(key);
- }
int findAt(const QCString &key)
{
T *item = find(key);
@@ -248,7 +244,7 @@ class SDict
return m_list->find(item);
}
- /*! Equavalent to find(). */
+ /*! Equivalent to find(). */
T *operator[](const char *key) const
{
return m_dict->find(key);
@@ -474,7 +470,7 @@ class SIntDict
/*! Appends a compound to the dictionary. The element is owned by the
* dictionary.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -492,7 +488,7 @@ class SIntDict
/*! Prepend a compound to the dictionary. The element is owned by the
* dictionary.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -525,7 +521,7 @@ class SIntDict
}
/*! Inserts a compound into the dictionary in a sorted way.
- * \param key The unique key to use to quicky find the item later on.
+ * \param key The unique key to use to quickly find the item later on.
* \param d The compound to add.
* \sa find()
*/
@@ -557,7 +553,7 @@ class SIntDict
return m_dict->find(key);
}
- /*! Equavalent to find(). */
+ /*! Equivalent to find(). */
T *operator[](int key) const
{
return m_dict->find(key);