Fix misleading indentation in Motif code

This commit contains whitespace-only changes (including adding one extra
new line) and no real ones.

Closes https://github.com/wxWidgets/wxWidgets/pull/1715
This commit is contained in:
Lauri Nurmi
2017-04-22 19:18:20 +03:00
committed by Vadim Zeitlin
parent 2d89c3fad0
commit 565034aa49
3 changed files with 24 additions and 23 deletions

View File

@@ -1230,7 +1230,8 @@ void wxWindow::DoGetClientSize(int *x, int *y) const
Widget widget = (Widget) GetClientWidget();
Dimension xx, yy;
XtVaGetValues(widget, XmNwidth, &xx, XmNheight, &yy, NULL);
if(x) *x = xx; if(y) *y = yy;
if(x) *x = xx;
if(y) *y = yy;
}
void wxWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)