Remove unused variable warning.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10047 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
70865d6c10
commit
56b7434dd0
@ -673,9 +673,9 @@ void Fl_Xlib_Graphics_Driver::rtl_draw(const char* c, int n, int x, int y) {
|
||||
if (num_chars < n) n = num_chars; // limit drawing to usable characters in input array
|
||||
FcChar32 *ucs_txt = new FcChar32[n+1];
|
||||
FcChar32* pu;
|
||||
int in, out, sz;
|
||||
int out, sz;
|
||||
ucs_txt[n] = 0;
|
||||
in = 0; out = n-1;
|
||||
out = n-1;
|
||||
while ((out >= 0) && (utf_len > 0))
|
||||
{
|
||||
pu = &ucs_txt[out];
|
||||
|
Loading…
x
Reference in New Issue
Block a user