aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_container.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gwin/gwin_container.c')
-rw-r--r--src/gwin/gwin_container.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gwin/gwin_container.c b/src/gwin/gwin_container.c
index f45af504..b84c96ae 100644
--- a/src/gwin/gwin_container.c
+++ b/src/gwin/gwin_container.c
@@ -92,7 +92,7 @@ coord_t gwinGetInnerHeight(GHandle gh) {
#define BORDER_WIDTH 2
-static coord_t BorderSize(GHandle gh) { return (gh->flags & GWIN_CONTAINER_BORDER) ? BORDER_WIDTH : 0; }
+static coord_t ContainerBorderSize(GHandle gh) { return (gh->flags & GWIN_CONTAINER_BORDER) ? BORDER_WIDTH : 0; }
// The container VMT table
static const gcontainerVMT containerVMT = {
@@ -121,10 +121,10 @@ static const gcontainerVMT containerVMT = {
},
#endif
},
- BorderSize, // The size of the left border (mandatory)
- BorderSize, // The size of the top border (mandatory)
- BorderSize, // The size of the right border (mandatory)
- BorderSize, // The size of the bottom border (mandatory)
+ ContainerBorderSize, // The size of the left border (mandatory)
+ ContainerBorderSize, // The size of the top border (mandatory)
+ ContainerBorderSize, // The size of the right border (mandatory)
+ ContainerBorderSize, // The size of the bottom border (mandatory)
0, // A child has been added (optional)
0, // A child has been deleted (optional)
};