summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorRas-al-Ghul <dipankar1995@gmail.com>2016-01-14 01:38:03 +0530
committerMichael Meeks <michael.meeks@collabora.com>2016-01-19 18:36:35 +0000
commit9c09d4d0d36076d39926eeaf7774171df3b55e52 (patch)
treea8cd978ada41ad32793a258e67566dc89859f439 /cui
parent85b46f51928dc17cda1bc974bca9159de9221b4d (diff)
tdf#96888 - Kill internal vcl dog-tags ...
Modifications done as per CR Change-Id: I0b57f5c32fc217929d71411ca5176e3cab3f6e73 Reviewed-on: https://gerrit.libreoffice.org/21457 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/hangulhanjadlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx b/cui/source/dialogs/hangulhanjadlg.cxx
index 8ebe2f49296c..0be8100cee7d 100644
--- a/cui/source/dialogs/hangulhanjadlg.cxx
+++ b/cui/source/dialogs/hangulhanjadlg.cxx
@@ -825,9 +825,9 @@ namespace svx
// give the focus to the new def button temporarily - VCL is somewhat peculiar
// in recognizing a new default button
- sal_uInt32 nSaveFocusId = Window::SaveFocus();
+ VclPtr<vcl::Window> xSaveFocusId = Window::SaveFocus();
pNewDefButton->GrabFocus();
- Window::EndSaveFocus( nSaveFocusId );
+ Window::EndSaveFocus( xSaveFocusId );
}
}