Skip to content

Commit

Permalink
Solves STR #2428: Silence double->int conversion warnings
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7838 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
erco77 committed Nov 15, 2010
1 parent e5ac1f7 commit 6ab895a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Fl_Text_Display.cxx
Expand Up @@ -672,7 +672,7 @@ void Fl_Text_Display::wrap_mode(int wrap, int wrapMargin) {
break;
case WRAP_AT_COLUMN:
default:
mWrapMarginPix = col_to_x(wrapMargin);
mWrapMarginPix = int(col_to_x(wrapMargin));
mContinuousWrap = 1;
break;
case WRAP_AT_PIXEL:
Expand Down Expand Up @@ -1747,7 +1747,7 @@ int Fl_Text_Display::handle_vline(
// FIXME: if the character is an optional hyphen, we need to ignore it unless we wrap the text
if (charStyle!=style) {
// draw a segment whenever the style changes
int w = string_width( lineStr+startIndex, i-startIndex, style );
int w = int( string_width( lineStr+startIndex, i-startIndex, style ) );
if (mode==DRAW_LINE)
draw_string( style, startX, Y, startX+w, lineStr+startIndex, i-startIndex );
if (mode==FIND_INDEX && startX+w>rightClip) {
Expand All @@ -1767,7 +1767,7 @@ int Fl_Text_Display::handle_vline(
}
i += len;
}
int w = string_width( lineStr+startIndex, i-startIndex, style );
int w = int( string_width( lineStr+startIndex, i-startIndex, style ) );
if (mode==DRAW_LINE)
draw_string( style, startX, Y, startX+w, lineStr+startIndex, i-startIndex );
if (mode==FIND_INDEX) {
Expand Down Expand Up @@ -1809,7 +1809,7 @@ int Fl_Text_Display::find_x(const char *s, int len, int style, int x) const {
int i = 0;
while (i<len) {
int cl = fl_utf8len(s[i]);
int w = string_width(s, i+cl, style);
int w = int( string_width(s, i+cl, style) );
if (w>x)
return i;
i += cl;
Expand Down

0 comments on commit 6ab895a

Please sign in to comment.