Skip to content

Commit

Permalink
Refactoring: remove unused IndexFieldSDict class
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Jan 2, 2021
1 parent 1c9096b commit c24c84b
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/htmlhelp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down

0 comments on commit c24c84b

Please sign in to comment.