From c97990e517adca2d0a8c287bddbdd4761f5965f2 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sat, 2 Feb 2019 22:29:53 +0100 Subject: Removed all shadow lint in header files (STR #2714). --- test/keyboard.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/keyboard.cxx b/test/keyboard.cxx index a0326d7e6..27107de3e 100644 --- a/test/keyboard.cxx +++ b/test/keyboard.cxx @@ -101,8 +101,8 @@ int main(int argc, char** argv) { const char *str; // update all the buttons with the current key and shift state: - for (int i = 0; i < window->children(); i++) { - Fl_Widget* b = window->child(i); + for (int c = 0; c < window->children(); c++) { + Fl_Widget* b = window->child(c); if (b->callback() == (Fl_Callback*)key_cb) { int i = b->argument(); if (!i) i = b->label()[0]; -- cgit v1.2.3