aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/frame.c
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-01-07 00:29:56 +0100
committerJoel Bodenmann <joel@unormal.org>2014-01-07 00:29:56 +0100
commitf3cbb02c3a9a199acfb04d543a8e160e83e00d49 (patch)
treee78340cd6d8be29920f8a53127a663c584ed2887 /src/gwin/frame.c
parentbb91a78156fad81f39c70289756c4e2db5fdf322 (diff)
downloaduGFX-f3cbb02c3a9a199acfb04d543a8e160e83e00d49.tar.gz
uGFX-f3cbb02c3a9a199acfb04d543a8e160e83e00d49.tar.bz2
uGFX-f3cbb02c3a9a199acfb04d543a8e160e83e00d49.zip
GFrame code cleanup - buttons need to be implemented
Diffstat (limited to 'src/gwin/frame.c')
-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 //
///////////////////////////////////////////////////////////////////////////////////////////////////