summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-10-13 22:27:12 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-10-15 12:18:45 +0100
commitcdbd93e9a548d48109f2227bff1d94743e46949b (patch)
treeb34dc51998493cb3b359ee440b029ebe42726d0e /unotools
parenta5aef9544429319cd0c0cfa0631571c8a46ae70f (diff)
callcatcher: some unused code
Diffstat (limited to 'unotools')
-rw-r--r--unotools/inc/unotools/bootstrap.hxx6
-rw-r--r--unotools/source/config/bootstrap.cxx19
2 files changed, 0 insertions, 25 deletions
diff --git a/unotools/inc/unotools/bootstrap.hxx b/unotools/inc/unotools/bootstrap.hxx
index 81135c43fab9..f596d63d0a02 100644
--- a/unotools/inc/unotools/bootstrap.hxx
+++ b/unotools/inc/unotools/bootstrap.hxx
@@ -64,9 +64,6 @@ namespace utl
/// retrieve the BUILDID information item; uses the given default, if not found
static rtl::OUString getBuildIdData(rtl::OUString const& _sDefault);
- /// retrieve the ALLUSERS information item from setup.ini file; uses the given default, if not found
- static rtl::OUString getAllUsersValue(rtl::OUString const& _sDefault);
-
/// reload cached data
static void reloadData();
@@ -123,9 +120,6 @@ namespace utl
INVALID_BOOTSTRAP_DATA /// some bootstrap data was invalid in unexpected ways
};
- /// Evaluates the status of the installation and returns a diagnostic message corresponding to this status
- static Status checkBootstrapStatus(rtl::OUString& _rDiagnosticMessage);
-
/** Evaluates the status of the installation and returns a diagnostic
message and error code corresponding to this status
*/
diff --git a/unotools/source/config/bootstrap.cxx b/unotools/source/config/bootstrap.cxx
index aa0d1b4996a7..d5959cd53c28 100644
--- a/unotools/source/config/bootstrap.cxx
+++ b/unotools/source/config/bootstrap.cxx
@@ -682,17 +682,6 @@ OUString Bootstrap::getBuildIdData(OUString const& _sDefault)
// ---------------------------------------------------------------------------------------
-OUString Bootstrap::getAllUsersValue(OUString const& _sDefault)
-{
- OUString const csAllUsersItem(RTL_CONSTASCII_USTRINGPARAM(SETUP_ITEM_ALLUSERS));
-
- rtl::Bootstrap aData( getExecutableDirectory() + OUString( RTL_CONSTASCII_USTRINGPARAM( "/"SETUP_DATA_NAME ) ) );
- OUString sResult;
- aData.getFrom( csAllUsersItem, sResult, _sDefault );
- return sResult;
-}
-// ---------------------------------------------------------------------------------------
-
Bootstrap::PathStatus Bootstrap::locateBaseInstallation(OUString& _rURL)
{
Impl::PathData const& aPathData = data().aBaseInstall_;
@@ -765,14 +754,6 @@ PathStatus Bootstrap::locateVersionFile(OUString& _rURL)
}
// ---------------------------------------------------------------------------------------
-Bootstrap::Status Bootstrap::checkBootstrapStatus(OUString& _rDiagnosticMessage)
-{
- FailureCode eDummyCode(NO_FAILURE);
-
- return checkBootstrapStatus(_rDiagnosticMessage,eDummyCode);
-}
-// ---------------------------------------------------------------------------------------
-
Bootstrap::Status Bootstrap::checkBootstrapStatus(rtl::OUString& _rDiagnosticMessage, FailureCode& _rErrCode)
{
Impl const& aData = data();