summaryrefslogtreecommitdiff
path: root/vcl/source/control/ilstbox.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2014-09-14 13:07:31 +0200
committerLuboš Luňák <l.lunak@collabora.com>2014-09-14 22:07:11 +0200
commit96369e97a014a279db61b8e37bc54270f7beaccb (patch)
tree1cfd53325eeb1a9581ba792014f4ba6448266e74 /vcl/source/control/ilstbox.cxx
parent4443993c06ec323088644414e0c064565952bca2 (diff)
convert ListBox's ImplBtn to use boost signal2
Change-Id: I18680e47688da02c9e211bf7f8d861622735e749
Diffstat (limited to 'vcl/source/control/ilstbox.cxx')
-rw-r--r--vcl/source/control/ilstbox.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/control/ilstbox.cxx b/vcl/source/control/ilstbox.cxx
index b1f02fca1f5a..bbc1f2ad5e53 100644
--- a/vcl/source/control/ilstbox.cxx
+++ b/vcl/source/control/ilstbox.cxx
@@ -2599,7 +2599,7 @@ ImplWin::ImplWin( Window* pParent, WinBits nWinStyle ) :
void ImplWin::MBDown()
{
if( IsEnabled() )
- maMBDownHdl.Call( this );
+ buttonDownSignal( this );
}
void ImplWin::MouseButtonDown( const MouseEvent& )
@@ -2874,7 +2874,7 @@ ImplBtn::ImplBtn( Window* pParent, WinBits nWinStyle ) :
void ImplBtn::MBDown()
{
if( IsEnabled() )
- maMBDownHdl.Call( this );
+ buttonDownSignal( this );
}
void ImplBtn::MouseButtonDown( const MouseEvent& )