some refactoring in miscspace(.h|.cpp)
space() renamed to space_value() and takes a third parameter: escape (bool) space_noescape() removed space_tab() renamed to space_list_tab() space_tab_value() renamed to space_list_tab_value() space_tab_has_next() renamed to space_list_tab_has_next() git-svn-id: svn://ttmath.org/publicrep/winix/trunk@1035 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -131,7 +131,7 @@ void gallery_tab_meta(Info & i)
|
||||
if( gallery_index < gallery_info.item_sort_tab.size() )
|
||||
{
|
||||
Item & item = *gallery_info.item_sort_tab[gallery_index];
|
||||
space(i, item.meta);
|
||||
space_value(i, item.meta);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -141,7 +141,7 @@ void gallery_tab_meta_tab(Info & i)
|
||||
if( gallery_index < gallery_info.item_sort_tab.size() )
|
||||
{
|
||||
Item & item = *gallery_info.item_sort_tab[gallery_index];
|
||||
spaces_tab(i, item.meta);
|
||||
space_list_tab(i, item.meta);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -151,7 +151,7 @@ void gallery_tab_meta_tab_value(Info & i)
|
||||
if( gallery_index < gallery_info.item_sort_tab.size() )
|
||||
{
|
||||
Item & item = *gallery_info.item_sort_tab[gallery_index];
|
||||
spaces_tab_value(i, item.meta);
|
||||
space_list_tab_value(i, item.meta);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -161,7 +161,7 @@ void gallery_tab_meta_tab_has_next(Info & i)
|
||||
if( gallery_index < gallery_info.item_sort_tab.size() )
|
||||
{
|
||||
Item & item = *gallery_info.item_sort_tab[gallery_index];
|
||||
spaces_tab_has_next(i, item.meta);
|
||||
space_list_tab_has_next(i, item.meta);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user