mirror of https://github.com/OpenTTD/OpenTTD
(svn r25579) -Fix [FS#5642] (r25577): doxygen generation failed + typo fix
parent
b8ba32db06
commit
423b44e552
|
@ -33,11 +33,11 @@ public:
|
||||||
|
|
||||||
/** Sort ascending */
|
/** Sort ascending */
|
||||||
static const bool SORT_ASCENDING = true;
|
static const bool SORT_ASCENDING = true;
|
||||||
/** Sort descnding */
|
/** Sort descending */
|
||||||
static const bool SORT_DESCENDING = false;
|
static const bool SORT_DESCENDING = false;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ScriptListSorter *sorter; ///< Sorting algorithm
|
ScriptListSorter *sorter; ///< Sorting algorithm
|
||||||
SorterType sorter_type; ///< Sorting type
|
SorterType sorter_type; ///< Sorting type
|
||||||
bool sort_ascending; ///< Whether to sort ascending or descending
|
bool sort_ascending; ///< Whether to sort ascending or descending
|
||||||
bool initialized; ///< Whether an iteration has been started
|
bool initialized; ///< Whether an iteration has been started
|
||||||
|
@ -63,7 +63,7 @@ public:
|
||||||
void AddItem(int32 item, int32 value);
|
void AddItem(int32 item, int32 value);
|
||||||
#else
|
#else
|
||||||
void AddItem(int32 item, int32 value = 0);
|
void AddItem(int32 item, int32 value = 0);
|
||||||
#endif
|
#endif /* DOXYGEN_API */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove a single item from the list.
|
* Remove a single item from the list.
|
||||||
|
|
Loading…
Reference in New Issue