summaryrefslogtreecommitdiff
path: root/embedserv/prj/makefile.mk
diff options
context:
space:
mode:
Diffstat (limited to 'embedserv/prj/makefile.mk')
-rw-r--r--embedserv/prj/makefile.mk1
1 files changed, 0 insertions, 1 deletions
diff --git a/embedserv/prj/makefile.mk b/embedserv/prj/makefile.mk
deleted file mode 100644
index 0997622e00f6..000000000000
--- a/embedserv/prj/makefile.mk
+++ /dev/null
@@ -1 +0,0 @@
-.INCLUDE : gbuildbridge.mk
398e0192a11dab179fe3'>Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpfootnote.cxx2
-rw-r--r--lotuswordpro/source/filter/lwpproplist.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwpfootnote.cxx b/lotuswordpro/source/filter/lwpfootnote.cxx
index 0c4dbd6ec5f9..5ed5611b1c2f 100644
--- a/lotuswordpro/source/filter/lwpfootnote.cxx
+++ b/lotuswordpro/source/filter/lwpfootnote.cxx
@@ -363,7 +363,7 @@ LwpEnSuperTableLayout* LwpFootnote::FindFootnoteTableLayout()
LwpContent* pContent = nullptr;
while ((pContent = pFoundry->EnumContents(pContent)) != nullptr)
- if (pContent->IsTable() && (strClassName.equals(pContent->GetClassName())) &&
+ if (pContent->IsTable() && (strClassName == pContent->GetClassName()) &&
pContent->IsActive() && pContent->GetLayout(nullptr).is())
{
// Found it!
diff --git a/lotuswordpro/source/filter/lwpproplist.cxx b/lotuswordpro/source/filter/lwpproplist.cxx
index 3ecc26782201..69587e80e936 100644
--- a/lotuswordpro/source/filter/lwpproplist.cxx
+++ b/lotuswordpro/source/filter/lwpproplist.cxx
@@ -80,7 +80,7 @@ void LwpPropListElement::Read()
bool LwpPropListElement::IsNamed(const OUString& name)
{
- return name.equals(m_Name.str());
+ return name == m_Name.str();
}
OUString LwpPropList::GetNamedProperty(const OUString& name)