aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2015-08-16 22:05:32 +1000
committerinmarket <andrewh@inmarket.com.au>2015-08-16 22:05:32 +1000
commitaf76c04767f3e5d1cc6f39ba907a7d4afdb43200 (patch)
tree5187b8dada8e5262a83459a593127f215a1afabf /demos/modules
parent15e7342fd7b21b76a565561a3caafee394e70c88 (diff)
downloaduGFX-af76c04767f3e5d1cc6f39ba907a7d4afdb43200.tar.gz
uGFX-af76c04767f3e5d1cc6f39ba907a7d4afdb43200.tar.bz2
uGFX-af76c04767f3e5d1cc6f39ba907a7d4afdb43200.zip
Compile fixes
Diffstat (limited to 'demos/modules')
-rw-r--r--demos/modules/gwin/textedit/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/modules/gwin/textedit/main.c b/demos/modules/gwin/textedit/main.c
index 950475b5..ed52ccb2 100644
--- a/demos/modules/gwin/textedit/main.c
+++ b/demos/modules/gwin/textedit/main.c
@@ -35,7 +35,7 @@ static GHandle ghTextedit2;
static GHandle ghTextedit3;
static GListener gl;
-static void guiCreate()
+static void guiCreate(void)
{
GWidgetInit wi;
gwinWidgetClearInit(&wi);
@@ -69,7 +69,7 @@ static void guiCreate()
wi.g.height = 35;
wi.text = "to switch between";
ghTextedit2 = gwinTexteditCreate(0, &wi, 20);
- gwinTexteditSetBorder(ghTextedit2, FALSE);
+ //gwinTexteditSetBorder(ghTextedit2, FALSE);
// TextEdit3
wi.g.show = TRUE;
@@ -79,7 +79,7 @@ static void guiCreate()
wi.g.height = 35;
wi.text = "the different widgets";
ghTextedit3 = gwinTexteditCreate(0, &wi, 100);
- gwinTexteditSetBorder(ghTextedit3, TRUE);
+ //gwinTexteditSetBorder(ghTextedit3, TRUE);
}
int main(void) {