(svn r17682) -Codechange: remove erroneous space before some commas

This commit is contained in:
rubidium
2009-10-02 15:13:15 +00:00
parent 9c6157c578
commit e9624fe0cc
16 changed files with 21 additions and 21 deletions

View File

@@ -241,7 +241,7 @@ static void DoSetViewportPosition(const Window *w, int left, int top, int width,
if (left + width > w->left + w->width) {
DoSetViewportPosition(w, left, top, (w->left + w->width - left), height);
DoSetViewportPosition(w, left + (w->left + w->width - left), top, width - (w->left + w->width - left) , height);
DoSetViewportPosition(w, left + (w->left + w->width - left), top, width - (w->left + w->width - left), height);
return;
}
@@ -253,7 +253,7 @@ static void DoSetViewportPosition(const Window *w, int left, int top, int width,
if (top + height > w->top + w->height) {
DoSetViewportPosition(w, left, top, width, (w->top + w->height - top));
DoSetViewportPosition(w, left, top + (w->top + w->height - top), width , height - (w->top + w->height - top));
DoSetViewportPosition(w, left, top + (w->top + w->height - top), width, height - (w->top + w->height - top));
return;
}