From d97b1a730547c6b40b07e20e6eccf3440b4b30b2 Mon Sep 17 00:00:00 2001 From: Pierre-André Jacquod Date: Mon, 3 Oct 2011 17:12:11 +0200 Subject: add missing braces for if statement, making correct scope --- slideshow/test/demoshow.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'slideshow') diff --git a/slideshow/test/demoshow.cxx b/slideshow/test/demoshow.cxx index d59153720cde..2432e3720a7d 100644 --- a/slideshow/test/demoshow.cxx +++ b/slideshow/test/demoshow.cxx @@ -487,9 +487,10 @@ IMPL_LINK( DemoWindow, updateHdl, Timer*, EMPTYARG ) init(); if( mxShow.is() ) + { double nTimeout; mxShow->update(nTimeout); - + } return 0; } -- cgit