summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorRohan Kumar <rohankanojia420@gmail.com>2016-03-11 18:49:08 +0530
committerBjörn Michaelsen <bjoern.michaelsen@canonical.com>2016-03-12 14:20:11 +0000
commiteda245925170eab692143deed367ab11a9adb310 (patch)
tree6358f24ebf8b21f5355ddb8a0c6a4bcd94f84825 /basctl
parent67f4b98b9833f0529cf62928b274ba9234853d2f (diff)
tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals
I removed the OSL_DEBUG_LEVEL > 1 conditional and replaced it to OSL_DEBUG_LEVEL > 0 as suggested in easy hack. Change-Id: If5f086f280d01e7a80be59f3c992dc2d0a7663cf Reviewed-on: https://gerrit.libreoffice.org/23062 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/baside2b.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx
index 4b40a42e943f..73354e175569 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -497,13 +497,6 @@ void EditorWindow::KeyInput( const KeyEvent& rKEvt )
if ( !pEditView ) // Happens in Win95
return;
-#if OSL_DEBUG_LEVEL > 1
- Range aRange = rModulWindow.GetHScrollBar()->GetRange(); (void)aRange;
- long nVisSz = rModulWindow.GetHScrollBar()->GetVisibleSize(); (void)nVisSz;
- long nPapSz = rModulWindow.GetHScrollBar()->GetPageSize(); (void)nPapSz;
- long nLinSz = rModulWindow.GetHScrollBar()->GetLineSize(); (void)nLinSz;
- long nThumb = rModulWindow.GetHScrollBar()->GetThumbPos(); (void)nThumb;
-#endif
bool const bWasModified = pEditEngine->IsModified();
// see if there is an accelerator to be processed first
SfxViewShell *pVS( SfxViewShell::Current());