summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2012-10-01 20:28:10 +0200
committerThorsten Behrens <tbehrens@suse.com>2012-10-01 20:28:10 +0200
commit053b68a0c7b75eae7d86d4465f65abc6046515ee (patch)
tree7c9c9bfdcdd3eca4128861fea9d63b514caac3cf /unotools
parent78272699f3fdad03c960b4888452ddb7049e24fe (diff)
Unused code cleanup.
Change-Id: Iad4d1f6cdd9ad03c5ccc02c57acef5b9bbb47d35
Diffstat (limited to 'unotools')
-rw-r--r--unotools/inc/unotools/useroptions.hxx8
-rw-r--r--unotools/source/config/useroptions.cxx8
2 files changed, 0 insertions, 16 deletions
diff --git a/unotools/inc/unotools/useroptions.hxx b/unotools/inc/unotools/useroptions.hxx
index 502fcce50f0e..a7b2267d7439 100644
--- a/unotools/inc/unotools/useroptions.hxx
+++ b/unotools/inc/unotools/useroptions.hxx
@@ -78,14 +78,6 @@ public:
rtl::OUString GetFullName () const;
// set the address token
- void SetCompany (rtl::OUString const&);
- void SetFirstName (rtl::OUString const&);
- void SetID (rtl::OUString const&);
- void SetState (rtl::OUString const&);
- void SetCountry (rtl::OUString const&);
- void SetPosition (rtl::OUString const&);
- void SetTitle (rtl::OUString const&);
- void SetFax (rtl::OUString const&);
void SetCustomerNumber (rtl::OUString const&);
sal_Bool IsTokenReadonly (sal_uInt16 nToken) const;
diff --git a/unotools/source/config/useroptions.cxx b/unotools/source/config/useroptions.cxx
index a8efcd1f4736..1da014a205bd 100644
--- a/unotools/source/config/useroptions.cxx
+++ b/unotools/source/config/useroptions.cxx
@@ -317,14 +317,6 @@ OUString SvtUserOptions::GetCustomerNumber () const { return GetToken(USER_OPT_C
//
// setters
//
-void SvtUserOptions::SetCompany (OUString const& sToken) { SetToken(USER_OPT_COMPANY, sToken); }
-void SvtUserOptions::SetFirstName (OUString const& sToken) { SetToken(USER_OPT_FIRSTNAME, sToken); }
-void SvtUserOptions::SetID (OUString const& sToken) { SetToken(USER_OPT_ID, sToken); }
-void SvtUserOptions::SetState (OUString const& sToken) { SetToken(USER_OPT_STATE, sToken); }
-void SvtUserOptions::SetCountry (OUString const& sToken) { SetToken(USER_OPT_COUNTRY, sToken); }
-void SvtUserOptions::SetPosition (OUString const& sToken) { SetToken(USER_OPT_POSITION, sToken); }
-void SvtUserOptions::SetTitle (OUString const& sToken) { SetToken(USER_OPT_TITLE, sToken); }
-void SvtUserOptions::SetFax (OUString const& sToken) { SetToken(USER_OPT_FAX, sToken); }
void SvtUserOptions::SetCustomerNumber (OUString const& sToken) { SetToken(USER_OPT_CUSTOMERNUMBER, sToken); }
// -----------------------------------------------------------------------