summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-25 14:06:47 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-25 16:17:09 +0100
commit86088dda6e893faaecfea19bad6e0e6c1ffa657c (patch)
tree8e64e634135436e5026d5263d6827307b86151dd /vcl
parent7bb5f9e1a206e1f62df5d72947d564af2aaa09ca (diff)
osl_setDetailedDebugMessageFunc is effectively doing nothing
...since the osl/diagnose.h macros got rebased onto sal/log.hxx, so remove the corresponding tools/debug.h functionality. Change-Id: Ife4b5b1a2608230d0dbfc3fa8852243c89ed292f
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/dbggui.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/vcl/source/app/dbggui.cxx b/vcl/source/app/dbggui.cxx
index f8cee634566b..26010b555d9f 100644
--- a/vcl/source/app/dbggui.cxx
+++ b/vcl/source/app/dbggui.cxx
@@ -390,7 +390,6 @@ private:
ListBox maTraceBox;
FixedText maErrorText;
ListBox maErrorBox;
- CheckBox maHookOSLBox;
GroupBox maBox4;
OKButton maOKButton;
@@ -574,7 +573,6 @@ DbgDialog::DbgDialog() :
maTraceBox( this, WB_DROPDOWN ),
maErrorText( this ),
maErrorBox( this, WB_DROPDOWN ),
- maHookOSLBox( this ),
maBox4( this ),
maOKButton( this, WB_DEFBUTTON ),
maCancelButton( this ),
@@ -699,15 +697,6 @@ DbgDialog::DbgDialog() :
}
{
- maHookOSLBox.Show();
- maHookOSLBox.SetText("Reroute osl debug ~messages");
- if ( pData->bHookOSLAssert )
- maHookOSLBox.Check( true );
- maHookOSLBox.SetPosSizePixel( LogicToPixel( Point( 10, 240 ), aAppMap ),
- LogicToPixel( Size( 100, 12 ), aAppMap ) );
- }
-
- {
maInclClassText.Show();
maInclClassText.SetText("~Include-ObjectTest-Filter");
maInclClassText.SetPosSizePixel( LogicToPixel( Point( 10, 150 ), aAppMap ),
@@ -880,7 +869,6 @@ IMPL_LINK( DbgDialog, ClickHdl, Button*, pButton )
aData.aExclFilter[sizeof( aData.aExclFilter )-1] = '\0';
aData.bOverwrite = maOverwrite.IsChecked() ? true : false;
- aData.bHookOSLAssert = maHookOSLBox.IsChecked() ? true : false;
if ( maXtorThis.IsChecked() )
aData.nTestFlags |= DBG_TEST_XTOR_THIS;
@@ -915,7 +903,6 @@ IMPL_LINK( DbgDialog, ClickHdl, Button*, pButton )
// Umschalten der Laufzeitwerte
DBG_INSTOUTTRACE( aData.nTraceOut );
DBG_INSTOUTERROR( aData.nErrorOut );
- DbgUpdateOslHook( &aData );
DbgData* pData = DbgGetData();
#define IMMEDIATE_FLAGS (DBG_TEST_RESOURCE | DBG_TEST_DIALOG | DBG_TEST_BOLDAPPFONT)