From 11a38f8e1c381f5755b69c76cde13386650a3f4a Mon Sep 17 00:00:00 2001 From: David Tardon Date: Mon, 17 Jan 2011 16:15:04 +0100 Subject: test length instead of comparing with "" --- xmlhelp/source/cxxhelp/provider/urlparameter.hxx | 8 ++++---- 1 file 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; } -- cgit v1.2.3