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.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/extensions/source/update/check/updateinfo.hxx b/extensions/source/update/check/updateinfo.hxx
index 56ecf2ecfd69..0db0c4e6608d 100644
--- a/extensions/source/update/check/updateinfo.hxx
+++ b/extensions/source/update/check/updateinfo.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -36,10 +36,10 @@ struct DownloadSource
{
bool IsDirect;
rtl::OUString URL;
-
+
DownloadSource(bool bIsDirect, const rtl::OUString& aURL) : IsDirect(bIsDirect), URL(aURL) {};
DownloadSource(const DownloadSource& ds) : IsDirect(ds.IsDirect), URL(ds.URL) {};
-
+
DownloadSource & operator=( const DownloadSource & ds ) { IsDirect = ds.IsDirect; URL = ds.URL; return *this; };
};
@@ -49,10 +49,10 @@ struct ReleaseNote
rtl::OUString URL;
sal_uInt8 Pos2;
rtl::OUString URL2;
-
+
ReleaseNote(sal_uInt8 pos, const rtl::OUString aURL) : Pos(pos), URL(aURL), Pos2(0), URL2() {};
ReleaseNote(sal_uInt8 pos, const rtl::OUString aURL, sal_uInt8 pos2, const rtl::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; };
};
@@ -64,20 +64,20 @@ struct UpdateInfo
rtl::OUString Description;
std::vector< DownloadSource > Sources;
std::vector< ReleaseNote > ReleaseNotes;
-
+
UpdateInfo() : BuildId(), Version(), Description(), Sources(), ReleaseNotes() {};
UpdateInfo(const UpdateInfo& ui) : BuildId(ui.BuildId), Version(ui.Version), Description(ui.Description), Sources(ui.Sources), ReleaseNotes(ui.ReleaseNotes) {};
inline UpdateInfo & operator=( const UpdateInfo& ui );
};
-UpdateInfo & UpdateInfo::operator=( const UpdateInfo& ui )
+UpdateInfo & UpdateInfo::operator=( const UpdateInfo& ui )
{
- BuildId = ui.BuildId;
- Version = ui.Version;
+ BuildId = ui.BuildId;
+ Version = ui.Version;
Description = ui.Description;
- Sources = ui.Sources;
- ReleaseNotes = ui.ReleaseNotes;
- return *this;
+ Sources = ui.Sources;
+ ReleaseNotes = ui.ReleaseNotes;
+ return *this;
}