summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-01-02 20:04:45 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-01-02 20:04:45 (GMT)
commitc24c84b770e7593b3920fe28b83847eb3deff46b (patch)
tree74d6075ff545fe35e16bed6ccc0269a5ac359146
parent1c9096bc72f1b21d3090650d81c4ce3f78279a82 (diff)
downloadDoxygen-c24c84b770e7593b3920fe28b83847eb3deff46b.zip
Doxygen-c24c84b770e7593b3920fe28b83847eb3deff46b.tar.gz
Doxygen-c24c84b770e7593b3920fe28b83847eb3deff46b.tar.bz2
Refactoring: remove unused IndexFieldSDict class
-rw-r--r--src/htmlhelp.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp
index a1b0deb..af511bb 100644
--- a/src/htmlhelp.cpp
+++ b/src/htmlhelp.cpp
@@ -109,19 +109,6 @@ struct IndexField
bool reversed;
};
-/** Sorted dictionary of IndexField objects. */
-class IndexFieldSDict : public SDict<IndexField>
-{
- public:
- IndexFieldSDict() : SDict<IndexField>(17) {}
- ~IndexFieldSDict() {}
- private:
- int compareValues(const IndexField *item1, const IndexField *item2) const
- {
- return qstricmp(item1->name,item2->name);
- }
-};
-
/** A helper class for HtmlHelp that manages a two level index in
* alphabetical order.
*/