diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2014-05-18 13:26:31 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2014-05-18 14:50:59 +0300 |
commit | a1fc526845df5b8641c996a9f96a25e323771dd4 (patch) | |
tree | a8fca33df8564cba9f44d8624e0cc8c9ebc59c40 /svx/source | |
parent | e4ce7d286a5039e5a65ba994bd1b168679d4a7c3 (diff) |
That's actually a pointer
Change-Id: I9d6333646f8ef366f63ff09e089c84517d9756e7
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/tbxctrls/tbcontrl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/tbxctrls/tbcontrl.cxx b/svx/source/tbxctrls/tbcontrl.cxx index 93c5981d087b..617b8c3b0c5a 100644 --- a/svx/source/tbxctrls/tbcontrl.cxx +++ b/svx/source/tbxctrls/tbcontrl.cxx @@ -2404,10 +2404,10 @@ SfxPopupWindow* SvxColorToolBoxControl::CreatePopupWindow() return pColorWin; } -IMPL_LINK(SvxColorToolBoxControl, SelectedHdl, Color*, aColor) +IMPL_LINK(SvxColorToolBoxControl, SelectedHdl, Color*, pColor) { - pBtnUpdater->Update( *aColor ); - mLastColor = *aColor; + pBtnUpdater->Update( *pColor ); + mLastColor = *pColor; return 0; } |