[Window] Fix shadowed variable "index"
authorIra W. Snyder <devel@irasnyder.com>
Tue, 29 Jan 2008 02:46:58 +0000 (18:46 -0800)
committerIra W. Snyder <devel@irasnyder.com>
Tue, 29 Jan 2008 02:46:58 +0000 (18:46 -0800)
commit961151ba172a4430e1ed92b291a8cc911d162f21
tree420014480f4c48be62790d28060581aa7dd1b0d2
parentda6256ac92440808970712f8a0017cf39d6afa91
[Window] Fix shadowed variable "index"

The string.h header declares a global variable "index". The TildaWindow
code also used a variable named index, so the global variable was
shadowed by the local variable. While this isn't a problem, I prefer to
make code -Wshadow safe.

Also, I removed a comment left over from debugging in TildaController.
tilda-controller.c
tilda-window.c