(svn r16234) -Codechange (r16231, r16233): Do not add test functions to trunk.

This commit is contained in:
alberth 2009-05-05 20:17:39 +00:00
parent 819588c51f
commit 6d783983e7
2 changed files with 0 additions and 32 deletions

View File

@ -514,22 +514,6 @@ static const NWidgetPart _nested_chat_window_widgets[] = {
EndContainer(),
};
void test_chat()
{
const Widget *wid;
printf("_chat_window_widgets\n");
wid = InitializeWidgetArrayFromNestedWidgets(_nested_chat_window_widgets, lengthof(_nested_chat_window_widgets), _chat_window_widgets, NULL);
free((void *)wid);
}
static const WindowDesc _chat_window_desc(
WDP_CENTER, -26, 320, 14, 640, 14, // x, y, width, height
WC_SEND_NETWORK_MSG, WC_NONE,
WDF_STD_TOOLTIPS | WDF_DEF_WIDGET,
_chat_window_widgets, _nested_chat_window_widgets, lengthof(_nested_chat_window_widgets)
);
void ShowNetworkChatQueryWindow(DestType type, int dest)
{
DeleteWindowById(WC_SEND_NETWORK_MSG, 0);

View File

@ -834,22 +834,6 @@ static const NWidgetPart _nested_network_content_list_widgets[] = {
EndContainer(),
};
void test_nested_content()
{
const Widget *wid;
printf("_network_content_download_status_window_widget\n");
wid = InitializeWidgetArrayFromNestedWidgets(_nested_network_content_download_status_window_widgets, lengthof(_nested_network_content_download_status_window_widgets),
_network_content_download_status_window_widget, NULL);
free((void *)wid);
printf("_network_content_list_widgets\n");
wid = InitializeWidgetArrayFromNestedWidgets(_nested_network_content_list_widgets, lengthof(_nested_network_content_list_widgets),
_network_content_list_widgets, NULL);
free((void *)wid);
}
/** Window description of the content list */
static const WindowDesc _network_content_list_desc(
WDP_CENTER, WDP_CENTER, 450, 278, 630, 460,