aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gwin/frame.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/gwin/frame.c b/src/gwin/frame.c
index 1699a3c2..6472663c 100644
--- a/src/gwin/frame.c
+++ b/src/gwin/frame.c
@@ -148,27 +148,6 @@ GHandle gwinGFrameCreate(GDisplay *g, GFrameObject *fo, GWidgetInit *pInit, uint
return (GHandle)fo;
}
-GHandle gwinFrameGetClose(GHandle gh) {
- if (gh->vmt != (gwinVMT *)&frameVMT)
- return;
-
- return gh2obj->btnClose;
-}
-
-GHandle gwinFrameGetMin(GHandle gh) {
- if (gh->vmt != (gwinVMT *)&frameVMT)
- return;
-
- return gh2obj->btnMin;
-}
-
-GHandle gwinFrameGetMax(GHandle gh) {
- if (gh->vmt != (gwinVMT *)&frameVMT)
- return;
-
- return gh2obj->btnMax;
-}
-
///////////////////////////////////////////////////////////////////////////////////////////////////
// Default render routines //
///////////////////////////////////////////////////////////////////////////////////////////////////