Kaydet (Commit) 47a23789 authored tarafından Zolnai Tamás's avatar Zolnai Tamás

l10ntools: getLength() -> isEmpty()

Change-Id: I9272c244e22d87fbd2547f4fcb6b94493ffaad3a
üst 5acbffd0
......@@ -356,7 +356,7 @@ CfgExport::~CfgExport()
void CfgExport::WorkOnResourceEnd()
{
if ( bLocalize ) {
if ( pStackData->sText[OString(RTL_CONSTASCII_STRINGPARAM("en-US"))].getLength() )
if ( !pStackData->sText["en-US"].isEmpty() )
{
OString sXComment = pStackData->sText[OString(RTL_CONSTASCII_STRINGPARAM("x-comment"))];
OString sLocalId = pStackData->sIdentifier;
......@@ -385,7 +385,7 @@ void CfgExport::WorkOnText(
const OString &rIsoLang
)
{
if( rIsoLang.getLength() ) rText = helper::UnQuotHTML( rText );
if( !rIsoLang.isEmpty() ) rText = helper::UnQuotHTML( rText );
}
......@@ -409,7 +409,7 @@ CfgMerge::CfgMerge(
std::exit(EXIT_FAILURE);
}
if (rMergeSource.getLength())
if (!rMergeSource.isEmpty())
{
pMergeDataFile = new MergeDataFile(
rMergeSource, global::inputPathname, true );
......
......@@ -931,7 +931,7 @@ sal_Bool Export::WriteExportList(ResData *pResData, ExportList *pExportList,
else {
sGID += ".";
sGID += pResData->sId;
while (sGID.getLength() != 0 && sGID[sGID.getLength() - 1] == '.') {
while (!sGID.isEmpty() && sGID[sGID.getLength() - 1] == '.') {
sGID = sGID.copy(0, sGID.getLength() - 1);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment