From 02413392a2b40fcebe5f178c776402a9ce148604 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 18 Jul 2012 21:04:10 +0000 Subject: compilation fix for MyDetails git-svn-id: http://svn.miranda-ng.org/main/trunk@1027 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Utils/mir_dblists.cpp | 54 +++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'plugins/Utils/mir_dblists.cpp') diff --git a/plugins/Utils/mir_dblists.cpp b/plugins/Utils/mir_dblists.cpp index e866589b24..1c4df07696 100644 --- a/plugins/Utils/mir_dblists.cpp +++ b/plugins/Utils/mir_dblists.cpp @@ -27,32 +27,32 @@ Boston, MA 02111-1307, USA. #include -void List_DestroyFreeContents( SortedList* p_list ) -{ - if ( p_list == NULL ) - return; - - if ( p_list->items != NULL ) - { - int i; - for ( i = 0 ; i < p_list->realCount ; i++ ) - { - if ( p_list->items[i] != NULL ) - { - mir_free( p_list->items[i] ); - } - } - } - - List_Destroy( p_list ); -} - - -int List_Append( SortedList* p_list, void* p_value ) -{ - return List_Insert( p_list, p_value, p_list->realCount ); -} - +void List_DestroyFreeContents( SortedList* p_list ) +{ + if ( p_list == NULL ) + return; + + if ( p_list->items != NULL ) + { + int i; + for ( i = 0 ; i < p_list->realCount ; i++ ) + { + if ( p_list->items[i] != NULL ) + { + mir_free( p_list->items[i] ); + } + } + } + + List_Destroy( p_list ); +} + + +int List_Append( SortedList* p_list, void* p_value ) +{ + return List_Insert( p_list, p_value, p_list->realCount ); +} + int List_InsertOrdered( SortedList* p_list, void* p_value ) { @@ -80,7 +80,7 @@ int List_RemoveByValue( SortedList* p_list, void* p_value ) } return ret; -} +} int List_RemoveByValueFreeContents( SortedList* p_list, void* p_value ) -- cgit v1.2.3