From c61baba819d3be3c2f2bf068b177348dec636b10 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Wed, 28 May 2008 17:29:27 +0000 Subject: (svn r13314) -Codechange: Switch EngineList from std::vector to GUIList --- src/engine_gui.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/engine_gui.h') diff --git a/src/engine_gui.h b/src/engine_gui.h index 12957da92..6f002600b 100644 --- a/src/engine_gui.h +++ b/src/engine_gui.h @@ -5,12 +5,12 @@ #ifndef ENGINE_GUI_H #define ENGINE_GUI_H -#include +#include "sortlist_type.h" -typedef std::vector EngineList; +typedef GUIList GUIEngineList; typedef int CDECL EngList_SortTypeFunction(const void*, const void*); ///< argument type for EngList_Sort() -void EngList_Sort(EngineList *el, EngList_SortTypeFunction compare); ///< qsort of the engine list -void EngList_SortPartial(EngineList *el, EngList_SortTypeFunction compare, uint begin, uint num_items); ///< qsort of specified portion of the engine list +void EngList_Sort(GUIEngineList *el, EngList_SortTypeFunction compare); ///< qsort of the engine list +void EngList_SortPartial(GUIEngineList *el, EngList_SortTypeFunction compare, uint begin, uint num_items); ///< qsort of specified portion of the engine list #endif /* ENGINE_GUI_H */ -- cgit v1.2.3-70-g09d2