summaryrefslogtreecommitdiff
path: root/codemaker/source/cppumaker/includes.cxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2011-12-12 18:19:01 -0200
committerIvan Timofeev <timofeev.i.s@gmail.com>2011-12-13 00:40:14 +0400
commitfd866ac8f184c0910883963c9c12b45a239a9227 (patch)
tree831e32642f086fc1dd73efb2c502eeeed8e8625e /codemaker/source/cppumaker/includes.cxx
parent0eac98aa742e8e76ebb1af91b32bd02e04b2e20a (diff)
Fix for fdo43460 Part VI getLength() to isEmpty()
Part VI Module codemaker
Diffstat (limited to 'codemaker/source/cppumaker/includes.cxx')
-rw-r--r--codemaker/source/cppumaker/includes.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/codemaker/source/cppumaker/includes.cxx b/codemaker/source/cppumaker/includes.cxx
index 71172f5dbde9..143826b143c6 100644
--- a/codemaker/source/cppumaker/includes.cxx
+++ b/codemaker/source/cppumaker/includes.cxx
@@ -273,7 +273,7 @@ void Includes::dumpInclude(
{
static char const * extension[2] = { "hdl", "hpp" };
out << "#include \"" << registryType;
- if (suffix.getLength() > 0) {
+ if (!suffix.isEmpty()) {
out << "/" << suffix;
}
out << "." << extension[hpp] << "\"\n";