summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
Diffstat (limited to 'svl')
-rw-r--r--svl/source/svdde/ddeimp.hxx2
-rw-r--r--svl/source/svdde/ddestrg.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/svdde/ddeimp.hxx b/svl/source/svdde/ddeimp.hxx
index 4c6a5ce872d8..060711bbf32e 100644
--- a/svl/source/svdde/ddeimp.hxx
+++ b/svl/source/svdde/ddeimp.hxx
@@ -66,7 +66,7 @@ public:
DdeString( DWORD, const OUString& );
~DdeString();
- bool operator==( HSZ );
+ bool operator==( HSZ ) const;
HSZ getHSZ();
const OUString & toOUString() const { return m_aString; }
};
diff --git a/svl/source/svdde/ddestrg.cxx b/svl/source/svdde/ddestrg.cxx
index 6789dc1e172f..6ddade45b9c6 100644
--- a/svl/source/svdde/ddestrg.cxx
+++ b/svl/source/svdde/ddestrg.cxx
@@ -34,7 +34,7 @@ DdeString::~DdeString()
DdeFreeStringHandle( hInst, hString );
}
-bool DdeString::operator==( HSZ h )
+bool DdeString::operator==( HSZ h ) const
{
return( !DdeCmpStringHandles( hString, h ) );
}