Update of /cvsroot/fte/fte/src
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv4537/src
Modified Files:
g_motif.cpp
Log Message:
Avoid testing array for existence.
'gc' is not a pointer but array class member.
Index: g_motif.cpp
===================================================================
RCS file: /cvsroot/fte/fte/src/g_motif.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- g_motif.cpp 23 Nov 2013 19:31:33 -0000 1.26
+++ g_motif.cpp 23 Nov 2013 19:33:02 -0000 1.27
@@ -818,7 +818,7 @@
char *p, *ps, *c, *ops;
int len, x, l, ox, olen, skip;
- if (!(View && View->Parent && gc))
+ if (!(View && View->Parent))
return 1;
if (Visibility == VisibilityFullyObscured)
|