summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-24 17:17:54 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-25 23:41:46 +0100
commit75618786f31a5e0a8b167488a8c6f5fb19255e1c (patch)
treeb6d1ce1f869d2daae730e95698878a2c3f05e8b7
parent6528457fe05b699a11983656b4d363d112366378 (diff)
Remove FS_PRIV_DEBUG directive.
-rw-r--r--cui/source/dialogs/commonlingui.cxx5
-rw-r--r--forms/source/misc/InterfaceContainer.cxx12
2 files changed, 0 insertions, 17 deletions
diff --git a/cui/source/dialogs/commonlingui.cxx b/cui/source/dialogs/commonlingui.cxx
index f6c24c587..9c44241f1 100644
--- a/cui/source/dialogs/commonlingui.cxx
+++ b/cui/source/dialogs/commonlingui.cxx
@@ -106,11 +106,6 @@ SvxCommonLinguisticControl::SvxCommonLinguisticControl( ModalDialog* _pParent )
,aAuditBox ( this, CUI_RES( GB_AUDIT ) )
{
FreeResource();
-
-#ifdef FS_PRIV_DEBUG
- SetType( WINDOW_TABPAGE );
-#endif
-
SetPosSizePixel( Point( 0, 0 ), _pParent->GetOutputSizePixel() );
Show();
}
diff --git a/forms/source/misc/InterfaceContainer.cxx b/forms/source/misc/InterfaceContainer.cxx
index 400f2d77d..0b4c9372d 100644
--- a/forms/source/misc/InterfaceContainer.cxx
+++ b/forms/source/misc/InterfaceContainer.cxx
@@ -805,18 +805,6 @@ void OInterfaceContainer::approveNewElement( const Reference< XPropertySet >& _r
Reference< XChild > xChild( _rxObject, UNO_QUERY );
if ( !xChild.is() || xChild->getParent().is() )
{
-#ifdef FS_PRIV_DEBUG
- ::rtl::OUString sChildName, sParentName;
- Reference< XNamed > xNamed( xChild, UNO_QUERY );
- if ( xNamed.is() )
- sChildName = xNamed->getName();
- if ( xChild.is() )
- {
- xNamed = xNamed.query( xChild->getParent() );
- if ( xNamed.is() )
- sParentName = xNamed->getName();
- }
-#endif
lcl_throwIllegalArgumentException();
}