summaryrefslogtreecommitdiff
path: root/xts5/Xt12
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2010-06-30 11:52:26 +1000
committerAaron Plattner <aplattner@nvidia.com>2011-04-12 15:37:56 -0700
commitdbcf105a03d29ad6541dd851a257393af54f5dd1 (patch)
treea37e75db6468fcef2c392a416db0b96c0a0b67b6 /xts5/Xt12
parentd12f9c04388ce98953e8cfa75c40e7e3628ff573 (diff)
Remove superfluous (void) casts.
sed -e "s/\([ ]\)(void) \(.*\)/\1\2/" Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Aaron Plattner <aplattner@nvidia.com> Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Diffstat (limited to 'xts5/Xt12')
-rw-r--r--xts5/Xt12/XtRegisterGrabAction.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/xts5/Xt12/XtRegisterGrabAction.m b/xts5/Xt12/XtRegisterGrabAction.m
index 5bd0d776..c1b9a938 100644
--- a/xts5/Xt12/XtRegisterGrabAction.m
+++ b/xts5/Xt12/XtRegisterGrabAction.m
@@ -206,7 +206,7 @@ static XtActionsRec actions[] = {
tet_infoline("PREP: Create boxw2 widget in panedw widget");
boxw2 = (Widget) CreateBoxWidget(panedw);
tet_infoline("PREP: Set height and width of boxw2 widget");
- (void) ConfigureDimension(topLevel, boxw2);
+ ConfigureDimension(topLevel, boxw2);
sprintf(ebuf, "PREP: Create label in boxw1 widget");
tet_infoline(ebuf);
labelw_msg = (Widget) CreateLabelWidget(msg, boxw1);