diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-19 17:13:28 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-19 17:13:53 -0800 |
commit | 1c6e89d9dda4d41709abfed4522fd801799bfd30 (patch) | |
tree | 57eb44fc9c75500330252ba6b823ef9fa3125c4e | |
parent | bc51dd4cdf617ba44ed1231d411eb8d63616e371 (diff) |
Remove extraneous braces left from commit 1d6970a838d4ed42a
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | xfontsel.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -332,10 +332,8 @@ see 'xfontsel' manual page." viewPort = XtCreateManagedWidget("viewPort",viewportWidgetClass,pane,NZ); - { - sampleText = - XtCreateManagedWidget("sampleText",ucsLabelWidgetClass,viewPort,NZ); - } + sampleText = + XtCreateManagedWidget("sampleText",ucsLabelWidgetClass,viewPort,NZ); } XtRealizeWidget(topLevel); |