diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-02-01 22:42:44 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-02-01 22:42:44 +0100 |
commit | 7ef4d1e0d4ad872972d087246361b6c8ba267d2f (patch) | |
tree | 117996c991be69000859bb053c0e332d3c312a06 /src | |
parent | 84367d080f6e73ca2183320e768b5b3f1ce17025 (diff) | |
download | uGFX-7ef4d1e0d4ad872972d087246361b6c8ba267d2f.tar.gz uGFX-7ef4d1e0d4ad872972d087246361b6c8ba267d2f.tar.bz2 uGFX-7ef4d1e0d4ad872972d087246361b6c8ba267d2f.zip |
Revert "initial work on GGroup"
This reverts commit 3a08f65cfcd884b454e835e6319d949e51e0b428.
Diffstat (limited to 'src')
-rw-r--r-- | src/gwin/ggroup.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/gwin/ggroup.c b/src/gwin/ggroup.c deleted file mode 100644 index 3bfefe38..00000000 --- a/src/gwin/ggroup.c +++ /dev/null @@ -1,26 +0,0 @@ -/* - * This file is subject to the terms of the GFX License. If a copy of - * the license was not distributed with this file, you can obtain one at: - * - * http://ugfx.org/license.html - */ - -#include "gfx.h" - -#if GFX_USE_GWIN && GWIN_NEED_GROUPS - -#include "gwin/class_gwin.h" - -GHandle _ggroupCreate(GDisplay *g, GGroupObject *go, const GGroupInit *pInit) { - if (!(go = (GGroupObject *)_gwindowCreate(g, &go->g, &pInit->g, &vmt->g, GWIN_FLG_GROUP|GWIN_FLG_ENABLED))) - return NULL; - - go->parent = NULL; - go->sibling = NULL; - go->child = NULL; - - return &go->g; -} - -#endif /* GFX_USE_GWIN && GWIN_NEED_GROUPS */ - |