diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-07 21:34:44 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-07 21:51:26 +0200 |
commit | e278c023f77180d6e72640f4204269c7d82dda03 (patch) | |
tree | 9607c4958a358af4c42e510b30485ba0c683b94c | |
parent | 3bc29af446fd1d9bd267ade1b1a5fca725ca8166 (diff) |
Add a SAL_INFO()
Change-Id: Ic681a76deb8db931f7868ca00d649cc3cbabe21b
-rw-r--r-- | sal/inc/sal/log-areas.dox | 1 | ||||
-rw-r--r-- | vcl/source/control/scrbar.cxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sal/inc/sal/log-areas.dox b/sal/inc/sal/log-areas.dox index bbe1f1f7d7f2..0df74eb58683 100644 --- a/sal/inc/sal/log-areas.dox +++ b/sal/inc/sal/log-areas.dox @@ -239,6 +239,7 @@ certain functionality. @li @c vcl.gdi - the GDI part of VCL, devices, bitmaps, etc. @li @c vcl.gtk - Gtk+ 2/3 plugin @li @c vcl.layout - Widget layout +@li @c vcl.scrollbar - Scroll Bars @li @c vcl.sm - Session Manager @li @c vcl.window diff --git a/vcl/source/control/scrbar.cxx b/vcl/source/control/scrbar.cxx index 961b052a9594..f5677a9bafb4 100644 --- a/vcl/source/control/scrbar.cxx +++ b/vcl/source/control/scrbar.cxx @@ -1410,6 +1410,7 @@ long ScrollBar::DoScroll( long nNewPos ) if ( meScrollType != SCROLL_DONTKNOW ) return 0; + SAL_INFO("vcl.scrollbar", "DoScroll(" << nNewPos << ")"); meScrollType = SCROLL_DRAG; long nDelta = ImplScroll( nNewPos, sal_True ); meScrollType = SCROLL_DONTKNOW; |