From dc079e5355984f9f57bd73c213012ccc116d7eb4 Mon Sep 17 00:00:00 2001 From: neil Date: Tue, 9 Aug 2016 13:17:27 +0000 Subject: [PATCH] Test initialisation of MUIA_List_AdjustWidth and MUIA_List_AdjustHeight, and default value of MUIA_Listview_ClickColumn. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@52845 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- test/Zune/test.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/Zune/test.c b/test/Zune/test.c index 75d60916f0..94c437abfc 100644 --- a/test/Zune/test.c +++ b/test/Zune/test.c @@ -1813,6 +1813,7 @@ int main(void) MUIA_List_Format, list_format, MUIA_List_SourceArray, entries, MUIA_List_Title, TRUE, + MUIA_List_AdjustWidth, TRUE, End, MUIA_Listview_MultiSelect, MUIV_Listview_MultiSelect_None, @@ -1830,11 +1831,13 @@ int main(void) MUIA_List_Format, list_format, MUIA_List_SourceArray, entries, MUIA_List_Title, TRUE, + MUIA_List_AdjustHeight, TRUE, End, MUIA_Listview_MultiSelect, MUIV_Listview_MultiSelect_None, MUIA_CycleChain, 1, End, + Child, HVSpace, End, End, Child, RectangleObject, @@ -2478,6 +2481,10 @@ int main(void) if (value != -1) printf("MUIA_List_Visible equals %ld before display," " but it should be -1.\n", (long)value); + get(list.multi_lists[0], MUIA_Listview_ClickColumn, &value); + if (value != 0) + printf("MUIA_Listview_ClickColumn equals %ld before display," + " but it should be 0.\n", (long)value); set(wnd, MUIA_Window_Open, TRUE); set(wnd, MUIA_Window_ScreenTitle, "Zune Test application"); -- 2.11.4.GIT