diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-04-15 16:51:34 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-04-15 16:51:34 +0000 |
commit | 3234247c8b81b2159fb9b14a0dca65c0ec07713c (patch) | |
tree | 8afe9063c72106f06eb8ddfbd64c57cf368d9dd6 | |
parent | ee45603aa030db99f343a9edeae394ae1a204231 (diff) |
INTEGRATION: CWS dbgmacros1 (1.11.150); FILE MERGED
2003/04/10 08:41:09 kso 1.11.150.1: #108413# - debug macro unification.
-rw-r--r-- | svtools/source/brwbox/brwbox3.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/brwbox/brwbox3.cxx b/svtools/source/brwbox/brwbox3.cxx index 3a04186b8d37..076377ab73fb 100644 --- a/svtools/source/brwbox/brwbox3.cxx +++ b/svtools/source/brwbox/brwbox3.cxx @@ -2,9 +2,9 @@ * * $RCSfile: brwbox3.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: oj $ $Date: 2002-12-03 10:55:32 $ + * last change: $Author: vg $ $Date: 2003-04-15 17:51:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -261,7 +261,7 @@ OUString BrowseBox::GetAccessibleName( ::svt::AccessibleBrowseBoxObjType eObjTyp break; case ::svt::BBTYPE_TABLECELL: aRetText = OUString( RTL_CONSTASCII_USTRINGPARAM( "TableCell[ " ) ); -#ifdef DEBUG +#if OSL_DEBUG_LEVEL > 1 aRetText += OUString::valueOf(sal_Int32(GetCurRow())); aRetText += OUString( RTL_CONSTASCII_USTRINGPARAM( "," ) ); aRetText += OUString::valueOf(sal_Int32(GetCurColumnId())); @@ -270,7 +270,7 @@ OUString BrowseBox::GetAccessibleName( ::svt::AccessibleBrowseBoxObjType eObjTyp break; case ::svt::BBTYPE_ROWHEADERCELL: aRetText = OUString( RTL_CONSTASCII_USTRINGPARAM( "RowHeaderCell" ) ); -#ifdef DEBUG +#if OSL_DEBUG_LEVEL > 1 aRetText += OUString::valueOf(sal_Int32(GetCurRow())); aRetText += OUString( RTL_CONSTASCII_USTRINGPARAM( "," ) ); aRetText += OUString::valueOf(sal_Int32(GetCurColumnId())); @@ -279,7 +279,7 @@ OUString BrowseBox::GetAccessibleName( ::svt::AccessibleBrowseBoxObjType eObjTyp break; case ::svt::BBTYPE_COLUMNHEADERCELL: aRetText = OUString( RTL_CONSTASCII_USTRINGPARAM( "ColumnHeaderCell" ) ); -#ifdef DEBUG +#if OSL_DEBUG_LEVEL > 1 aRetText += OUString::valueOf(sal_Int32(GetCurRow())); aRetText += OUString( RTL_CONSTASCII_USTRINGPARAM( "," ) ); aRetText += OUString::valueOf(sal_Int32(GetCurColumnId())); |