diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-05 00:00:32 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-05 00:04:20 +0200 |
commit | 6cd8e92402746a193e4a19a5f31e9ac16318352e (patch) | |
tree | 5c8be91e52341b1b924343b379e1b97237680095 /vcl/android | |
parent | 016206156d412b7df6445e81753f49a36f29b29a (diff) |
Add a SAL_INFO
Change-Id: I57702d2d848181f2df4af3fc0d1ce8cbed1455f9
Diffstat (limited to 'vcl/android')
-rw-r--r-- | vcl/android/androidinst.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index fdac1ecf1d1e..dd49738fd4a8 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -979,6 +979,7 @@ Java_org_libreoffice_experimental_desktop_Desktop_zoom(JNIEnv * /* env */, { SalFrame *pFocus = AndroidSalInstance::getInstance()->getFocusFrame(); if (pFocus) { + SAL_INFO( "vcl.androidinst", "zoom: " << scale << "@(" << x << "," << y << ")" ); ZoomEvent aEvent( Point( x, y ), scale); Application::PostZoomEvent(VCLEVENT_WINDOW_ZOOM, pFocus->GetWindow(), &aEvent); } |