summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2011-01-17 16:15:04 +0100
committerDavid Tardon <dtardon@redhat.com>2011-02-19 07:56:26 +0100
commit11a38f8e1c381f5755b69c76cde13386650a3f4a (patch)
tree29ce405ad3ad569de06aed4c5bc4808131b09f8e /xmlhelp
parentcbbb0cd774595dc5f3e58d5c1f8b56042f6c0c13 (diff)
test length instead of comparing with ""
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/provider/urlparameter.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx
index e4bf9fbd0a3c..dfd8808fe82e 100644
--- a/xmlhelp/source/cxxhelp/provider/urlparameter.hxx
+++ b/xmlhelp/source/cxxhelp/provider/urlparameter.hxx
@@ -128,11 +128,11 @@ namespace chelp {
bool isPicture() const { return m_aModule.compareToAscii("picture") == 0; }
bool isActive() const { return m_aActive.getLength() > 0 && m_aActive.compareToAscii( "true" ) == 0; }
- bool isQuery() const { return m_aId.compareToAscii("") == 0 && m_aQuery.compareToAscii("") != 0; }
+ bool isQuery() const { return m_aId.getLength() == 0 && m_aQuery.getLength() != 0; }
bool isEntryForModule() const { return m_aId.compareToAscii("start") == 0 || m_bStart; }
- bool isFile() const { return m_aId.compareToAscii( "" ) != 0; }
- bool isModule() const { return m_aId.compareToAscii("") == 0 && m_aModule.compareToAscii("") != 0; }
- bool isRoot() const { return m_aModule.compareToAscii("") == 0; }
+ bool isFile() const { return m_aId.getLength() != 0; }
+ bool isModule() const { return m_aId.getLength() == 0 && m_aModule.getLength() != 0; }
+ bool isRoot() const { return m_aModule.getLength() == 0; }
bool isErrorDocument();
rtl::OUString get_url() const { return m_aURL; }