search for: writetext

Displaying 3 results from an estimated 3 matches for "writetext".

Did you mean: writetest
2011 Nov 01
0
Read/Write textbox in R
...height = 5) entry <- tkentry(base) text <- tktext(base, width = 20, height = 5) tkpack(list, entry, text) # Write and read from the widgets writeList(list, c("Option1", "Option2", "Option3")) writeList(entry, "An Entry box") writeText(text, "A text box") # Will be NULL if not selected getListValue(list) getTextValue(text) getEntryValue(entry) # Destroy toplevel widget # tkdestroy(base) ## End(Not run) I took it from: http://svitsrv25.epfl.ch/R-doc/library/widgetTools/html/writeText.html. When I run...
2013 Jan 13
0
[ANNOUNCE] xgc 1.0.4
...us features of the X11 core protocol graphics primitives. This minor maintenance release includes several years of build improvements, cleanups, and bug fixes; including making the build configuration scripts compatible with automake-1.13. Alan Coopersmith (3): Bounds check value passed to WriteText config: Add missing AC_CONFIG_SRCDIR xgc 1.0.4 Gaetan Nadon (5): config: replace AC_CHECK_FILE with test -f config: replace deprecated AC_HELP_STRING with AS_HELP_STRING config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS config: move man pages in...
2007 Aug 23
0
[git patch] klibc dash 0.5.4 update
...f ((getgroups(ngroups, group_array)) != ngroups) + return (0); /* Search through the list looking for GID. */ for (i = 0; i < ngroups; i++) diff --git a/usr/dash/mkinit.c b/usr/dash/mkinit.c index e803751..9714bee 100644 --- a/usr/dash/mkinit.c +++ b/usr/dash/mkinit.c @@ -427,9 +427,12 @@ writetext(struct text *text, FILE *fp) struct block *bp; if (text->start != NULL) { - for (bp = text->start ; bp != text->last ; bp = bp->next) - fwrite(bp->text, sizeof (char), BLOCKSIZE, fp); - fwrite(bp->text, sizeof (char), BLOCKSIZE - text->nleft, fp); + for (bp = text-&g...