diff options
author | Rob Snelders <programming@ertai.nl> | 2012-04-05 22:40:21 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-04-10 13:37:11 +0200 |
commit | 912e36e911201742633e7c0a0a56f247735ee09c (patch) | |
tree | 5ccff01ba1b8012e1f928dfca89dcafa8f00c6f2 /sdext | |
parent | 1ae4c87367d1719a100b61eb694a7a186d2e8d6b (diff) |
Remove VERBOSE part 3
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/presenter/PresenterAccessibility.cxx | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/sdext/source/presenter/PresenterAccessibility.cxx b/sdext/source/presenter/PresenterAccessibility.cxx index 18ba0e737607..ff90539754a7 100644 --- a/sdext/source/presenter/PresenterAccessibility.cxx +++ b/sdext/source/presenter/PresenterAccessibility.cxx @@ -59,8 +59,6 @@ using ::rtl::OUString; #define A2S(s) (::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(s))) -#define VERBOSE - //===== PresenterAccessibleObject ============================================= namespace sdext { namespace presenter { @@ -784,12 +782,8 @@ void SAL_CALL PresenterAccessible::focusGained (const css::awt::FocusEvent& rEve throw (cssu::RuntimeException) { (void)rEvent; - -#ifdef VERBOSE - OSL_TRACE("PresenterAccessible::focusGained at %x and window %x\r", this, - mxMainWindow.get()); -#endif - + SAL_INFO("sdext.presenter", OSL_THIS_FUNC << ": PresenterAccessible::focusGained at " << this + << " and window " << mxMainWindow.get()); AccessibleFocusManager::Instance()->FocusObject(mpAccessibleConsole); } @@ -797,11 +791,7 @@ void SAL_CALL PresenterAccessible::focusLost (const css::awt::FocusEvent& rEvent throw (cssu::RuntimeException) { (void)rEvent; - -#ifdef VERBOSE - OSL_TRACE("PresenterAccessible::focusLost at %x\r", this); -#endif - + SAL_INFO("sdext.presenter", OSL_THIS_FUNC << ": PresenterAccessible::focusLost at " << this); AccessibleFocusManager::Instance()->FocusObject(NULL); } |