summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-01-08 11:21:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-01-08 11:21:52 +0100
commit6e2b8411a9352cef56e310a1a01b6000e7d15ca7 (patch)
treefca1636556f87305eabcbf6f037603c5c29000d9
parent604a3bfbcf4515dd090949df57274d86cafaea21 (diff)
Missing semicolon
Change-Id: I160163a377fc374174ca48814494b849d1d32c3f
-rw-r--r--vcl/source/window/dialog.cxx2
1 files changed, 1 insertions, 1 deletions
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()" );
}