From 6e2b8411a9352cef56e310a1a01b6000e7d15ca7 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 8 Jan 2016 11:21:52 +0100 Subject: Missing semicolon Change-Id: I160163a377fc374174ca48814494b849d1d32c3f --- vcl/source/window/dialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx index 09cb50c296be..523eee956593 100644 --- a/vcl/source/window/dialog.cxx +++ b/vcl/source/window/dialog.cxx @@ -884,7 +884,7 @@ short Dialog::Execute() if( xDialogParent ) { if( ! xDialogParent->IsDisposed() ) - xDialogParent.clear() + xDialogParent.clear(); else OSL_FAIL( "Dialog::Execute() - Parent of dialog destroyed in Execute()" ); } -- cgit