From 668408fa1c69eaf0f0a37f24e2ec8b4a38fe3db7 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 27 May 2015 11:40:22 +0200 Subject: Fix accidental mis-uses of VclPtr address-of operator Change-Id: I3a82423378d3198a25f90ddfbf42af55d85c96fb --- svtools/source/control/filectrl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svtools/source/control') diff --git a/svtools/source/control/filectrl.cxx b/svtools/source/control/filectrl.cxx index ab520bf4730b..4482cf4b8ab9 100644 --- a/svtools/source/control/filectrl.cxx +++ b/svtools/source/control/filectrl.cxx @@ -246,7 +246,7 @@ void FileControl::ImplBrowseFile( ) if ( aObj.GetProtocol() == INetProtocol::File ) aNewText = aObj.PathToFileName(); SetText( aNewText ); - maEdit->GetModifyHdl().Call( &maEdit ); + maEdit->GetModifyHdl().Call( maEdit.get() ); } } } -- cgit