diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-18 23:47:02 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-18 23:48:47 -0200 |
commit | 80fb2e397a60550de72b378215c2e305b29257a9 (patch) | |
tree | befc5cc4cd89e129597247dd0e3d80a7fb8cc35f /ucb/source/inc/regexp.hxx | |
parent | 3e04e08d371532960917afbcd59307fbd6c1f313 (diff) |
Fix for fdo43460 Part L getLength() to isEmpty()
Part L
Modules
ucb
Diffstat (limited to 'ucb/source/inc/regexp.hxx')
-rw-r--r-- | ucb/source/inc/regexp.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/inc/regexp.hxx b/ucb/source/inc/regexp.hxx index f115afa35c31..faed20e2de32 100644 --- a/ucb/source/inc/regexp.hxx +++ b/ucb/source/inc/regexp.hxx @@ -47,7 +47,7 @@ public: inline bool operator ==(Regexp const & rOther) const; inline bool isDefault() const - { return m_eKind == KIND_PREFIX && m_aPrefix.getLength() == 0; } + { return m_eKind == KIND_PREFIX && m_aPrefix.isEmpty(); } inline Kind getKind() const { return m_eKind; } |