summaryrefslogtreecommitdiff
path: root/unotools/source/config/lingucfg.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-06-13 08:42:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-06-13 08:42:02 +0200
commit8445ab32a371963f025d170e7baf1a0ddd36bd4b (patch)
treedf88923b46930ac72836eae7a8570eb0f27aabaa /unotools/source/config/lingucfg.cxx
parente19759c9ad5e98f158009686ea3c695456265e91 (diff)
loplugin:sallogareas
Change-Id: I97fe4a566531015fe6c9fd275aaa46723aee9513
Diffstat (limited to 'unotools/source/config/lingucfg.cxx')
-rw-r--r--unotools/source/config/lingucfg.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/config/lingucfg.cxx b/unotools/source/config/lingucfg.cxx
index 3f7da46ec7d0..65fd554d1b5b 100644
--- a/unotools/source/config/lingucfg.cxx
+++ b/unotools/source/config/lingucfg.cxx
@@ -391,7 +391,7 @@ uno::Any SvtLinguConfigItem::GetProperty( sal_Int32 nPropertyHandle ) const
case UPH_IS_GRAMMAR_AUTO: pbVal = &rOpt.bIsGrammarAuto; break;
case UPH_IS_GRAMMAR_INTERACTIVE: pbVal = &rOpt.bIsGrammarInteractive; break;
default :
- SAL_WARN( "unotools", "unexpected property handle" );
+ SAL_WARN( "unotools.config", "unexpected property handle" );
}
if (pbVal)
@@ -490,7 +490,7 @@ bool SvtLinguConfigItem::SetProperty( sal_Int32 nPropertyHandle, const uno::Any
case UPH_IS_GRAMMAR_AUTO: pbVal = &rOpt.bIsGrammarAuto; break;
case UPH_IS_GRAMMAR_INTERACTIVE: pbVal = &rOpt.bIsGrammarInteractive; break;
default :
- SAL_WARN( "unotools", "unexpected property handle" );
+ SAL_WARN( "unotools.config", "unexpected property handle" );
}
if (pbVal)
@@ -652,7 +652,7 @@ void SvtLinguConfigItem::LoadOptions( const uno::Sequence< OUString > &rProperyN
break;
default:
- SAL_WARN( "unotools", "unexpected case" );
+ SAL_WARN( "unotools.config", "unexpected case" );
}
}
@@ -777,7 +777,7 @@ bool SvtLinguConfigItem::IsReadOnly( sal_Int32 nPropertyHandle ) const
case UPH_IS_GRAMMAR_AUTO: bReadOnly = rOpt.bROIsGrammarAuto; break;
case UPH_IS_GRAMMAR_INTERACTIVE: bReadOnly = rOpt.bROIsGrammarInteractive; break;
default :
- SAL_WARN( "unotools", "unexpected property handle" );
+ SAL_WARN( "unotools.config", "unexpected property handle" );
}
return bReadOnly;
}