head	1.1;
access;
symbols
	RELENG_9_1_0_RELEASE:1.1
	RELENG_9_1:1.1.0.6
	RELENG_9_1_BP:1.1
	RELENG_9_0_0_RELEASE:1.1
	RELENG_9_0:1.1.0.4
	RELENG_9_0_BP:1.1
	RELENG_9:1.1.0.2
	RELENG_9_BP:1.1
	RELENG_8_BP:1.1;
locks; strict;
comment	@# @;


1.1
date	2011.04.17.17.28.17;	author nwhitehorn;	state Exp;
branches;
next	;


desc
@@


1.1
log
@SVN rev 220749 on 2011-04-17 17:28:17Z by nwhitehorn

Update dialog to version 1.1-20110302.
@
text
@#!/bin/sh
# $Id: textbox-help,v 1.1 2011/01/18 09:59:20 tom Exp $

. ./setup-vars

. ./setup-tempfile

TEXT=/usr/share/common-licenses/GPL
test -f $TEXT || TEXT=../COPYING

cat textbox.txt | expand > $tempfile
cat $TEXT | expand >> $tempfile

$DIALOG --clear --title "TEXT BOX" \
	--help-button "$@@" \
	--textbox "$tempfile" 22 77

retval=$?

. ./report-button
@
