diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-27 11:40:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-27 11:40:22 +0200 |
commit | 668408fa1c69eaf0f0a37f24e2ec8b4a38fe3db7 (patch) | |
tree | 1979b22faf086895588d5c7a03ad92c52f55e263 /svtools | |
parent | 66854d697f973f36e1b878080999901e0936dae6 (diff) |
Fix accidental mis-uses of VclPtr address-of operator
Change-Id: I3a82423378d3198a25f90ddfbf42af55d85c96fb
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/filectrl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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() ); } } } |