diff options
author | Andras Timar <atimar@suse.com> | 2012-07-12 15:22:20 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-07-12 15:22:45 +0200 |
commit | c015b4ae380e65f3d1169aac33ff96335935ba78 (patch) | |
tree | b7b337b82f66ec3918770665990531b70ce9ffcc /cui | |
parent | 7cb7efce3552563cba41bd9cb62c0ae82e60e154 (diff) |
cleanup of m_aWebsiteLinkStr in About box code (fdo#52000)
Change-Id: Ie4b7325eb238064540681d5e19e5d2e7666f094d
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/about.cxx | 1 | ||||
-rw-r--r-- | cui/source/dialogs/about.hrc | 1 | ||||
-rw-r--r-- | cui/source/dialogs/about.src | 4 | ||||
-rw-r--r-- | cui/source/inc/about.hxx | 1 |
4 files changed, 0 insertions, 7 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index 8ba491c73eb8..21e4592376bb 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -82,7 +82,6 @@ AboutDialog::AboutDialog( Window* pParent, const ResId& rId) : m_aCopyrightTextStr(ResId(ABOUT_STR_COPYRIGHT, *rId.GetResMgr())), m_aBasedTextStr(ResId(ABOUT_STR_BASED, *rId.GetResMgr())), m_aBasedDerivedTextStr(ResId(ABOUT_STR_BASED_DERIVED, *rId.GetResMgr())), - m_aWebsiteLinkStr(ResId( ABOUT_STR_LINK_WEBSITE, *rId.GetResMgr())), m_aCreditsLinkStr(ResId( ABOUT_STR_LINK_CREDITS, *rId.GetResMgr())), m_sBuildStr(ResId(ABOUT_STR_BUILD, *rId.GetResMgr())), m_aDescriptionTextStr(ResId(ABOUT_STR_DESCRIPTION, *rId.GetResMgr())) diff --git a/cui/source/dialogs/about.hrc b/cui/source/dialogs/about.hrc index 6ad08e7fdfda..0afbe0b8654a 100644 --- a/cui/source/dialogs/about.hrc +++ b/cui/source/dialogs/about.hrc @@ -24,7 +24,6 @@ #define ABOUT_STR_COPYRIGHT 4 #define ABOUT_STR_BASED 5 #define ABOUT_STR_BASED_DERIVED 6 -#define ABOUT_STR_LINK_WEBSITE 7 #define ABOUT_STR_LINK_CREDITS 8 #define ABOUT_BTN_CREDITS 10 #define ABOUT_DESCRIPTION_TEXT 11 diff --git a/cui/source/dialogs/about.src b/cui/source/dialogs/about.src index 63c5f2c0e930..ab853c665a46 100644 --- a/cui/source/dialogs/about.src +++ b/cui/source/dialogs/about.src @@ -97,10 +97,6 @@ ModalDialog RID_DEFAULTABOUT { Text[ en-US ] = "(Build ID: $BUILDID)"; }; - String ABOUT_STR_LINK_WEBSITE - { - Text[ en-US ] = "http://www.libreoffice.org"; - }; String ABOUT_STR_LINK_CREDITS { Text[ en-US ] = "http://www.libreoffice.org/about-us/credits/"; diff --git a/cui/source/inc/about.hxx b/cui/source/inc/about.hxx index 639490878f26..783a261673b2 100644 --- a/cui/source/inc/about.hxx +++ b/cui/source/inc/about.hxx @@ -61,7 +61,6 @@ private: String m_aCopyrightTextStr; String m_aBasedTextStr; String m_aBasedDerivedTextStr; - String m_aWebsiteLinkStr; String m_aCreditsLinkStr; rtl::OUString m_sBuildStr; String m_aDescriptionTextStr; |