CComponentsScrollBar: use matching type names

This commit is contained in:
2017-08-09 21:34:20 +02:00
parent 431cfadcc2
commit b863f874b0
2 changed files with 2 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ void CComponentsScrollBar::initSegments()
fb_pixel_t passive_col = sb_visual_enable ? sb_segment_col : col_body; fb_pixel_t passive_col = sb_visual_enable ? sb_segment_col : col_body;
//create and add segments to segment container //create and add segments to segment container
for(u_int32_t i=0; i<sb_segments_count; i++){ for(uint32_t i=0; i<sb_segments_count; i++){
CComponentsShapeSquare *item = new CComponentsShapeSquare(0, y_seg, w_seg, h_seg, sb_segments_obj, false); CComponentsShapeSquare *item = new CComponentsShapeSquare(0, y_seg, w_seg, h_seg, sb_segments_obj, false);
y_seg += h_seg + append_y_offset; y_seg += h_seg + append_y_offset;

View File

@@ -49,7 +49,7 @@ class CComponentsScrollBar : public CComponentsFrmChain
fb_pixel_t sb_segment_col, sb_segment_col_sel; fb_pixel_t sb_segment_col, sb_segment_col_sel;
///count of segments ///count of segments
u_int32_t sb_segments_count; uint32_t sb_segments_count;
///mark id ///mark id
int sb_mark_id; int sb_mark_id;