Lines Matching refs:start
2196 void ProjectConfigDlg::CheckFontFormat(res_info* start, int m_display) in CheckFontFormat() argument
2202 while (start) in CheckFontFormat()
2204 if (start->child) in CheckFontFormat()
2206 CheckFontFormat(start->child, m_display); in CheckFontFormat()
2209 if (start->type == RES_TYPE_FONT) in CheckFontFormat()
2214 if (start->compress) in CheckFontFormat()
2216 start->compress = FALSE; in CheckFontFormat()
2220 switch (start->font_bits) in CheckFontFormat()
2225 start->font_bits = 1; in CheckFontFormat()
2232 start->font_bits = 1; in CheckFontFormat()
2240 start = start->next; in CheckFontFormat()
2245 void ProjectConfigDlg::DisableTextScrollWheelRoundStyle(widget_info* start) in DisableTextScrollWheelRoundStyle() argument
2249 while (start) in DisableTextScrollWheelRoundStyle()
2251 child = start->GetChildWidgetInfo(); in DisableTextScrollWheelRoundStyle()
2258 if (start->basetype == GX_TYPE_STRING_SCROLL_WHEEL || in DisableTextScrollWheelRoundStyle()
2259 start->basetype == GX_TYPE_NUMERIC_SCROLL_WHEEL) in DisableTextScrollWheelRoundStyle()
2261 start->style &= (~GX_STYLE_TEXT_SCROLL_WHEEL_ROUND); in DisableTextScrollWheelRoundStyle()
2264 start = start->GetNextWidgetInfo(); in DisableTextScrollWheelRoundStyle()
2275 void ProjectConfigDlg::ResetPixelmapFormat(res_info* start, int m_display) in ResetPixelmapFormat() argument
2280 while (start) in ResetPixelmapFormat()
2282 if (start->child) in ResetPixelmapFormat()
2284 ResetPixelmapFormat(start->child, m_display); in ResetPixelmapFormat()
2287 if (start->type == RES_TYPE_PIXELMAP) in ResetPixelmapFormat()
2289 start->output_color_format = 0; in ResetPixelmapFormat()
2292 start->palette_type = PALETTE_TYPE_SHARED; in ResetPixelmapFormat()
2296 start->palette_type = PALETTE_TYPE_NONE; in ResetPixelmapFormat()
2299 start = start->next; in ResetPixelmapFormat()