summaryrefslogtreecommitdiff
path: root/l10ntools/source/help
diff options
context:
space:
mode:
authorGustavo Buzzatti Pacheco <gbpacheco@gmail.com>2012-01-04 11:38:41 -0200
committerLuboš Luňák <l.lunak@suse.cz>2012-01-05 15:07:34 +0100
commitc47f3523338b8e58c1ea18cc583064761f60df90 (patch)
treeb4fa717b768e4445e66a9345119103689f4fdd57 /l10ntools/source/help
parent77d05dfa5ba3f81844b093808246d60504cfabda (diff)
Fix for fdo43460 Part XXII getLength() to isEmpty()
Part XXII modules jvmfwk, l10ntools, lingucomponent
Diffstat (limited to 'l10ntools/source/help')
-rw-r--r--l10ntools/source/help/HelpCompiler.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/help/HelpCompiler.hxx b/l10ntools/source/help/HelpCompiler.hxx
index b2e061cc3825..5e0ec8d032cb 100644
--- a/l10ntools/source/help/HelpCompiler.hxx
+++ b/l10ntools/source/help/HelpCompiler.hxx
@@ -115,7 +115,7 @@ namespace fs
rtl::OString tmp(rtl::OUStringToOString(data, RTL_TEXTENCODING_UTF8));
return std::string(tmp.getStr());
}
- bool empty() const { return data.getLength() == 0; }
+ bool empty() const { return data.isEmpty(); }
path operator/(const std::string &in) const
{
path ret(*this);