diff options
-rw-r--r-- | accessibility/source/extended/AccessibleBrowseBoxBase.cxx | 4 | ||||
-rw-r--r-- | accessibility/source/extended/AccessibleGridControlBase.cxx | 4 | ||||
-rw-r--r-- | accessibility/source/standard/vclxaccessibletoolboxitem.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/misc/UITools.cxx | 2 | ||||
-rw-r--r-- | editeng/source/items/frmitems.cxx | 4 | ||||
-rw-r--r-- | editeng/source/items/paraitem.cxx | 4 | ||||
-rw-r--r-- | editeng/source/items/textitem.cxx | 2 | ||||
-rw-r--r-- | formula/source/core/api/FormulaCompiler.cxx | 4 | ||||
-rw-r--r-- | formula/source/core/api/token.cxx | 28 | ||||
-rw-r--r-- | fpicker/source/office/OfficeControlAccess.cxx | 8 | ||||
-rw-r--r-- | fpicker/source/office/OfficeFilePicker.cxx | 2 | ||||
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 4 | ||||
-rw-r--r-- | framework/source/classes/fwktabwindow.cxx | 6 | ||||
-rw-r--r-- | linguistic/source/convdiclist.cxx | 4 | ||||
-rw-r--r-- | sc/inc/formularesult.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/dptabsrc.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/tool/lookupcache.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/docshell/dbdocimp.cxx | 2 |
18 files changed, 43 insertions, 43 deletions
diff --git a/accessibility/source/extended/AccessibleBrowseBoxBase.cxx b/accessibility/source/extended/AccessibleBrowseBoxBase.cxx index 8f156721881a..4391ec5f56f0 100644 --- a/accessibility/source/extended/AccessibleBrowseBoxBase.cxx +++ b/accessibility/source/extended/AccessibleBrowseBoxBase.cxx @@ -469,7 +469,7 @@ Rectangle AccessibleBrowseBoxBase::getBoundingBox() Rectangle aRect = implGetBoundingBox(); if ( 0 == aRect.Left() && 0 == aRect.Top() && 0 == aRect.Right() && 0 == aRect.Bottom() ) { - SAL_INFO( "accessibility", "rectangle doesn't exist" ); + SAL_WARN( "accessibility", "rectangle doesn't exist" ); } return aRect; } @@ -483,7 +483,7 @@ Rectangle AccessibleBrowseBoxBase::getBoundingBoxOnScreen() Rectangle aRect = implGetBoundingBoxOnScreen(); if ( 0 == aRect.Left() && 0 == aRect.Top() && 0 == aRect.Right() && 0 == aRect.Bottom() ) { - SAL_INFO( "accessibility", "rectangle doesn't exist" ); + SAL_WARN( "accessibility", "rectangle doesn't exist" ); } return aRect; } diff --git a/accessibility/source/extended/AccessibleGridControlBase.cxx b/accessibility/source/extended/AccessibleGridControlBase.cxx index 147aaee15cde..6bf0ea7352b5 100644 --- a/accessibility/source/extended/AccessibleGridControlBase.cxx +++ b/accessibility/source/extended/AccessibleGridControlBase.cxx @@ -368,7 +368,7 @@ Rectangle AccessibleGridControlBase::getBoundingBox() Rectangle aRect = implGetBoundingBox(); if ( 0 == aRect.Left() && 0 == aRect.Top() && 0 == aRect.Right() && 0 == aRect.Bottom() ) { - SAL_INFO( "accessibility", "rectangle doesn't exist" ); + SAL_WARN( "accessibility", "rectangle doesn't exist" ); } return aRect; } @@ -382,7 +382,7 @@ Rectangle AccessibleGridControlBase::getBoundingBoxOnScreen() Rectangle aRect = implGetBoundingBoxOnScreen(); if ( 0 == aRect.Left() && 0 == aRect.Top() && 0 == aRect.Right() && 0 == aRect.Bottom() ) { - SAL_INFO( "accessibility", "rectangle doesn't exist" ); + SAL_WARN( "accessibility", "rectangle doesn't exist" ); } return aRect; } diff --git a/accessibility/source/standard/vclxaccessibletoolboxitem.cxx b/accessibility/source/standard/vclxaccessibletoolboxitem.cxx index c8a3c1b9d900..575d672fc7c4 100644 --- a/accessibility/source/standard/vclxaccessibletoolboxitem.cxx +++ b/accessibility/source/standard/vclxaccessibletoolboxitem.cxx @@ -116,7 +116,7 @@ VCLXAccessibleToolBoxItem::VCLXAccessibleToolBoxItem( ToolBox* _pToolBox, sal_In default: { - SAL_INFO( "accessibility", "unsupported toolbox itemtype" ); + SAL_WARN( "accessibility", "unsupported toolbox itemtype" ); } } } diff --git a/dbaccess/source/ui/misc/UITools.cxx b/dbaccess/source/ui/misc/UITools.cxx index d77c9dabcfdb..2deb60720881 100644 --- a/dbaccess/source/ui/misc/UITools.cxx +++ b/dbaccess/source/ui/misc/UITools.cxx @@ -1281,7 +1281,7 @@ namespace } else { - SAL_INFO( "dbaccess", "Property 'AnchorName' is missing" ); + SAL_WARN( "dbaccess.ui", "Property 'AnchorName' is missing" ); } } catch( Exception& ) diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx index 08b8379fcd44..7627b0022182 100644 --- a/editeng/source/items/frmitems.cxx +++ b/editeng/source/items/frmitems.cxx @@ -3527,7 +3527,7 @@ bool SvxBrushItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const break; case MID_GRAPHIC: - SAL_INFO( "editeng", "not implemented" ); + SAL_WARN( "editeng.items", "not implemented" ); break; case MID_GRAPHIC_TRANSPARENT: @@ -3613,7 +3613,7 @@ bool SvxBrushItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) break; case MID_GRAPHIC: - SAL_INFO( "editeng", "not implemented" ); + SAL_WARN( "editeng.items", "not implemented" ); break; case MID_GRAPHIC_TRANSPARENT: diff --git a/editeng/source/items/paraitem.cxx b/editeng/source/items/paraitem.cxx index 283b1bd266a7..36986d1c2efb 100644 --- a/editeng/source/items/paraitem.cxx +++ b/editeng/source/items/paraitem.cxx @@ -601,7 +601,7 @@ SfxItemPresentation SvxWidowsItem::GetPresentation default: { - SAL_INFO( "editeng", "SvxWidowsItem::GetPresentation(): unknown SfxItemPresentation" ); + SAL_WARN( "editeng.items", "SvxWidowsItem::GetPresentation(): unknown SfxItemPresentation" ); } } @@ -673,7 +673,7 @@ SfxItemPresentation SvxOrphansItem::GetPresentation default: { - SAL_INFO( "editeng", "SvxOrphansItem::GetPresentation(): unknown SfxItemPresentation" ); + SAL_WARN( "editeng.items", "SvxOrphansItem::GetPresentation(): unknown SfxItemPresentation" ); } } diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx index 2a1dfee2678b..abbb90354f56 100644 --- a/editeng/source/items/textitem.cxx +++ b/editeng/source/items/textitem.cxx @@ -2559,7 +2559,7 @@ SvxLanguageItem::SvxLanguageItem( const LanguageType eLang, const sal_uInt16 nId sal_uInt16 SvxLanguageItem::GetValueCount() const { // #i50205# got rid of class International - SAL_INFO( "editeng", "SvxLanguageItem::GetValueCount: supposed to return a count of what?"); + SAL_WARN( "editeng.items", "SvxLanguageItem::GetValueCount: supposed to return a count of what?"); // FIXME: previously returned LANGUAGE_COUNT from tools/intn.hxx which was wrong anyway. // Could be SvtLanguageTable::GetEntryCount() (all locales with resource string)? // Could be LocaleDataWrapper::getInstalledLanguageTypes() (all locales with locale data)? diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx index 92424152325c..64961843b30f 100644 --- a/formula/source/core/api/FormulaCompiler.cxx +++ b/formula/source/core/api/FormulaCompiler.cxx @@ -606,7 +606,7 @@ FormulaCompiler::OpCodeMapPtr FormulaCompiler::CreateOpCodeMap( xMap->putExternal( pArr2->Name, aExternalName); else { - SAL_INFO( "xmlsecurity", "FormulaCompiler::CreateOpCodeMap: no Token.Data external name"); + SAL_WARN( "formula.core", "FormulaCompiler::CreateOpCodeMap: no Token.Data external name"); } } } @@ -1661,7 +1661,7 @@ FormulaToken* FormulaCompiler::CreateStringFromToken( rtl::OUStringBuffer& rBuff rBuffer.append(mxSymbols->getSymbol(eOp)); else { - SAL_INFO( "xmlsecurity","unknown OpCode"); + SAL_WARN( "formula.core","unknown OpCode"); rBuffer.append(GetNativeSymbol( ocErrName )); } if( bNext ) diff --git a/formula/source/core/api/token.cxx b/formula/source/core/api/token.cxx index c8bd3ab5c895..8dab7d7474d0 100644 --- a/formula/source/core/api/token.cxx +++ b/formula/source/core/api/token.cxx @@ -165,7 +165,7 @@ sal_uInt8 FormulaToken::GetByte() const void FormulaToken::SetByte( sal_uInt8 ) { - SAL_INFO( "formula", "FormulaToken::SetByte: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::SetByte: virtual dummy called" ); } bool FormulaToken::HasForceArray() const @@ -176,80 +176,80 @@ bool FormulaToken::HasForceArray() const void FormulaToken::SetForceArray( bool ) { - SAL_INFO( "formula", "FormulaToken::SetForceArray: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::SetForceArray: virtual dummy called" ); } double FormulaToken::GetDouble() const { - SAL_INFO( "formula", "FormulaToken::GetDouble: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::GetDouble: virtual dummy called" ); return 0.0; } double & FormulaToken::GetDoubleAsReference() { - SAL_INFO( "formula", "FormulaToken::GetDouble: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::GetDouble: virtual dummy called" ); static double fVal = 0.0; return fVal; } const String& FormulaToken::GetString() const { - SAL_INFO( "formula", "FormulaToken::GetString: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::GetString: virtual dummy called" ); static String aDummyString; return aDummyString; } sal_uInt16 FormulaToken::GetIndex() const { - SAL_INFO( "formula", "FormulaToken::GetIndex: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::GetIndex: virtual dummy called" ); return 0; } void FormulaToken::SetIndex( sal_uInt16 ) { - SAL_INFO( "formula", "FormulaToken::SetIndex: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::SetIndex: virtual dummy called" ); } bool FormulaToken::IsGlobal() const { - SAL_INFO( "formula", "FormulaToken::IsGlobal: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::IsGlobal: virtual dummy called" ); return true; } void FormulaToken::SetGlobal( bool ) { - SAL_INFO( "formula", "FormulaToken::SetGlobal: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::SetGlobal: virtual dummy called" ); } short* FormulaToken::GetJump() const { - SAL_INFO( "formula", "FormulaToken::GetJump: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::GetJump: virtual dummy called" ); return NULL; } const String& FormulaToken::GetExternal() const { - SAL_INFO( "formula", "FormulaToken::GetExternal: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::GetExternal: virtual dummy called" ); static String aDummyString; return aDummyString; } FormulaToken* FormulaToken::GetFAPOrigToken() const { - SAL_INFO( "formula", "FormulaToken::GetFAPOrigToken: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::GetFAPOrigToken: virtual dummy called" ); return NULL; } sal_uInt16 FormulaToken::GetError() const { - SAL_INFO( "formula", "FormulaToken::GetError: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::GetError: virtual dummy called" ); return 0; } void FormulaToken::SetError( sal_uInt16 ) { - SAL_INFO( "formula", "FormulaToken::SetError: virtual dummy called" ); + SAL_WARN( "formula.core", "FormulaToken::SetError: virtual dummy called" ); } bool FormulaToken::TextEqual( const FormulaToken& rToken ) const diff --git a/fpicker/source/office/OfficeControlAccess.cxx b/fpicker/source/office/OfficeControlAccess.cxx index 45a3e33f2a22..21bcf83daa0c 100644 --- a/fpicker/source/office/OfficeControlAccess.cxx +++ b/fpicker/source/office/OfficeControlAccess.cxx @@ -386,7 +386,7 @@ namespace svt break; case LISTBOX_FILTER: - SAL_INFO( "fpicker", "Use the XFilterManager to access the filter listbox" ); + SAL_WARN( "fpicker.office", "Use the XFilterManager to access the filter listbox" ); break; case LISTBOX_VERSION: @@ -445,7 +445,7 @@ namespace svt } else { - SAL_INFO( "fpicker", "Use the XFilterManager to access the filter listbox" ); + SAL_WARN( "fpicker.office", "Use the XFilterManager to access the filter listbox" ); } break; @@ -464,7 +464,7 @@ namespace svt nPropertyId = PROPERTY_FLAG_LISTITEMS; break; default: - SAL_INFO( "fpicker", "OControlAccess::GetValue: invalid control action for the listbox!" ); + SAL_WARN( "fpicker.office", "OControlAccess::GetValue: invalid control action for the listbox!" ); break; } break; @@ -546,7 +546,7 @@ namespace svt break; default: - SAL_INFO( "fpicker", "Wrong ControlAction for implDoListboxAction()" ); + SAL_WARN( "fpicker.office", "Wrong ControlAction for implDoListboxAction()" ); } } diff --git a/fpicker/source/office/OfficeFilePicker.cxx b/fpicker/source/office/OfficeFilePicker.cxx index f789f4b569b7..e7d1add71c84 100644 --- a/fpicker/source/office/OfficeFilePicker.cxx +++ b/fpicker/source/office/OfficeFilePicker.cxx @@ -349,7 +349,7 @@ void SvtFilePicker::notify( sal_Int16 _nEventId, sal_Int16 _nControlId ) m_xListener->dialogSizeChanged(); break; default: - SAL_INFO( "fpicker", "SvtFilePicker::notify(): Unknown event id!" ); + SAL_WARN( "fpicker.office", "SvtFilePicker::notify(): Unknown event id!" ); break; } } diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 0ab97df93d7b..fd02d6b9ffe9 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -2005,7 +2005,7 @@ void SvtFileDialog::EnableControl( Control* _pControl, sal_Bool _bEnable ) { if ( !_pControl ) { - SAL_INFO( "fpicker", "SvtFileDialog::EnableControl: invalid control!" ); + SAL_WARN( "fpicker.office", "SvtFileDialog::EnableControl: invalid control!" ); return; } @@ -2871,7 +2871,7 @@ Control* SvtFileDialog::getControl( sal_Int16 _nControlId, sal_Bool _bLabelContr break; default: - SAL_INFO( "fpicker", "SvtFileDialog::getControl: invalid id!" ); + SAL_WARN( "fpicker.office", "SvtFileDialog::getControl: invalid id!" ); } return pReturn; } diff --git a/framework/source/classes/fwktabwindow.cxx b/framework/source/classes/fwktabwindow.cxx index b43895e16723..2f89d8ded3f8 100644 --- a/framework/source/classes/fwktabwindow.cxx +++ b/framework/source/classes/fwktabwindow.cxx @@ -76,7 +76,7 @@ void FwkTabControl::BroadcastEvent( sal_uLong nEvent ) ImplCallEventListeners( nEvent, (void*)(sal_uIntPtr)GetCurPageId() ); else { - SAL_INFO( "sfx2", "FwkTabControl::BroadcastEvent(): illegal event" ); + SAL_WARN( "framework", "FwkTabControl::BroadcastEvent(): illegal event" ); } } @@ -135,11 +135,11 @@ void FwkTabPage::CreateDialog() } catch ( const lang::IllegalArgumentException& ) { - SAL_INFO( "sfx2", "FwkTabPage::CreateDialog(): illegal argument" ); + SAL_WARN( "framework", "FwkTabPage::CreateDialog(): illegal argument" ); } catch ( const uno::Exception& ) { - SAL_INFO( "sfx2", "FwkTabPage::CreateDialog(): exception of XDialogProvider2::createContainerWindow()" ); + SAL_WARN( "framework", "FwkTabPage::CreateDialog(): exception of XDialogProvider2::createContainerWindow()" ); } } diff --git a/linguistic/source/convdiclist.cxx b/linguistic/source/convdiclist.cxx index 93af0f049ba0..05b3a9bc52fe 100644 --- a/linguistic/source/convdiclist.cxx +++ b/linguistic/source/convdiclist.cxx @@ -319,11 +319,11 @@ void SAL_CALL ConvDicNameContainer::removeByName( const OUString& rName ) } catch( ::com::sun::star::ucb::CommandAbortedException& ) { - SAL_INFO( "linguistic", "HangulHanjaOptionsDialog::OkHdl(): CommandAbortedException" ); + SAL_WARN( "linguistic", "HangulHanjaOptionsDialog::OkHdl(): CommandAbortedException" ); } catch( ... ) { - SAL_INFO( "linguistic", "HangulHanjaOptionsDialog::OkHdl(): Any other exception" ); + SAL_WARN( "linguistic", "HangulHanjaOptionsDialog::OkHdl(): Any other exception" ); } } diff --git a/sc/inc/formularesult.hxx b/sc/inc/formularesult.hxx index 7a34de8bf218..c1cb90609275 100644 --- a/sc/inc/formularesult.hxx +++ b/sc/inc/formularesult.hxx @@ -324,7 +324,7 @@ inline void ScFormulaResult::SetToken( const formula::FormulaToken* p ) dynamic_cast<const ScMatrixFormulaCellToken*>(pMatResult); if (pNewMatFormula) { - SAL_INFO( "sc", "ScFormulaResult::SetToken: pNewMatFormula and pMatFormula, overriding matrix formula dimension; intended?"); + SAL_WARN( "sc", "ScFormulaResult::SetToken: pNewMatFormula and pMatFormula, overriding matrix formula dimension; intended?"); pMatFormula->SetMatColsRows( pNewMatFormula->GetMatCols(), pNewMatFormula->GetMatRows()); } diff --git a/sc/source/core/data/dptabsrc.cxx b/sc/source/core/data/dptabsrc.cxx index 5dc0d2eb35c5..769319771889 100644 --- a/sc/source/core/data/dptabsrc.cxx +++ b/sc/source/core/data/dptabsrc.cxx @@ -735,7 +735,7 @@ void ScDPSource::FilterCacheTableByPageDimensions() if (bPageFiltered) { - SAL_INFO( "sc.core","tried to apply page field filters several times"); + SAL_WARN( "sc.core","tried to apply page field filters several times"); pData->DisposeData(); pData->CreateCacheTable(); // re-initialize the cache table diff --git a/sc/source/core/tool/lookupcache.cxx b/sc/source/core/tool/lookupcache.cxx index a9b42ca5df9f..2b854769eec7 100644 --- a/sc/source/core/tool/lookupcache.cxx +++ b/sc/source/core/tool/lookupcache.cxx @@ -47,7 +47,7 @@ ScLookupCache::QueryCriteria::QueryCriteria( const ScQueryEntry& rEntry ) : break; default: meOp = UNKNOWN; - SAL_INFO( "sc.core", "ScLookupCache::QueryCriteria not prepared for this ScQueryOp"); + SAL_WARN( "sc.core", "ScLookupCache::QueryCriteria not prepared for this ScQueryOp"); } const ScQueryEntry::Item& rItem = rEntry.GetQueryItem(); diff --git a/sc/source/ui/docshell/dbdocimp.cxx b/sc/source/ui/docshell/dbdocimp.cxx index 09f4b7162aeb..d3bd84b18832 100644 --- a/sc/source/ui/docshell/dbdocimp.cxx +++ b/sc/source/ui/docshell/dbdocimp.cxx @@ -293,7 +293,7 @@ bool ScDBDocFunc::DoImport( SCTAB nTab, const ScImportParam& rParam, xLocate.set( xRowSet, uno::UNO_QUERY ); if ( !xLocate.is() ) { - SAL_INFO( "sc.ui","can't get XRowLocate"); + SAL_WARN( "sc.ui","can't get XRowLocate"); bDoSelection = bRealSelection = bBookmarkSelection = sal_False; } } |