aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gwin/gwin_container.c2
-rw-r--r--src/gwin/gwin_frame.c2
-rw-r--r--src/gwin/gwin_tabset.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gwin/gwin_container.c b/src/gwin/gwin_container.c
index 3145ae56..f45af504 100644
--- a/src/gwin/gwin_container.c
+++ b/src/gwin/gwin_container.c
@@ -190,7 +190,7 @@ void gwinContainerDraw_Std(GWidgetObject *gw, void *param) {
for(iw=gi->width; x < mx; x += iw) {
if (iw > mx - x)
iw = mx - x;
- gdispGImageDraw(gw->g.display, gi, x, y, ih, iw, 0, 0);
+ gdispGImageDraw(gw->g.display, gi, x, y, iw, ih, 0, 0);
}
}
diff --git a/src/gwin/gwin_frame.c b/src/gwin/gwin_frame.c
index 8cb74a7d..8811dce6 100644
--- a/src/gwin/gwin_frame.c
+++ b/src/gwin/gwin_frame.c
@@ -312,7 +312,7 @@ void gwinFrameDraw_Std(GWidgetObject *gw, void *param) {
for(x = gw->g.x+BORDER_L, iw = gi->width; x < mx; x += iw) {
if (iw > mx - x)
iw = mx - x;
- gdispGImageDraw(gw->g.display, gi, x, y, ih, iw, 0, 0);
+ gdispGImageDraw(gw->g.display, gi, x, y, iw, ih, 0, 0);
}
}
diff --git a/src/gwin/gwin_tabset.c b/src/gwin/gwin_tabset.c
index 6969c143..45cd7fc8 100644
--- a/src/gwin/gwin_tabset.c
+++ b/src/gwin/gwin_tabset.c
@@ -553,7 +553,7 @@ void gwinTabsetDraw_Std(GWidgetObject *gw, void *param) {
for(iw = gi->width; x < mx; x += iw) {
if (iw > mx - x)
iw = mx - x;
- gdispGImageDraw(gw->g.display, gi, x, y, ih, iw, 0, 0);
+ gdispGImageDraw(gw->g.display, gi, x, y, iw, ih, 0, 0);
}
}