summaryrefslogtreecommitdiff
path: root/extensions/source/update/check/updateinfo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/update/check/updateinfo.hxx')
-rw-r--r--extensions/source/update/check/updateinfo.hxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/extensions/source/update/check/updateinfo.hxx b/extensions/source/update/check/updateinfo.hxx
index 0f23e8463e71..4788405fdb09 100644
--- a/extensions/source/update/check/updateinfo.hxx
+++ b/extensions/source/update/check/updateinfo.hxx
@@ -42,7 +42,6 @@ struct ReleaseNote
OUString URL2;
ReleaseNote(sal_uInt8 pos, const OUString& aURL) : Pos(pos), URL(aURL), Pos2(0), URL2() {};
- ReleaseNote(sal_uInt8 pos, const OUString& aURL, sal_uInt8 pos2, const OUString& aURL2) : Pos(pos), URL(aURL), Pos2(pos2), URL2(aURL2) {};
ReleaseNote(const ReleaseNote& rn) :Pos(rn.Pos), URL(rn.URL), Pos2(rn.Pos2), URL2(rn.URL2) {};
ReleaseNote & operator=( const ReleaseNote& rn) { Pos=rn.Pos; URL=rn.URL; Pos2=rn.Pos2; URL2=rn.URL2; return *this; };