summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-02 09:40:48 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-02 12:14:34 +0000
commit1a7e0cfd86c03607f9009aec40dbfa5d43de0c8e (patch)
treee32a4954af55e243a4ddf5989355053e3eff7f43 /include
parent1d498fb0feca911fa063e96779b654c3aded2415 (diff)
loplugin:unusedmethods bridges,ucbhelper,io,pyuno
Change-Id: I483deb33b9d861af679d4a36e13585345401e10d Reviewed-on: https://gerrit.libreoffice.org/16681 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/ucbhelper/interactionrequest.hxx17
-rw-r--r--include/ucbhelper/propertyvalueset.hxx25
-rw-r--r--include/ucbhelper/resultsethelper.hxx12
3 files changed, 0 insertions, 54 deletions
diff --git a/include/ucbhelper/interactionrequest.hxx b/include/ucbhelper/interactionrequest.hxx
index d0996d703493..2cba1caf8033 100644
--- a/include/ucbhelper/interactionrequest.hxx
+++ b/include/ucbhelper/interactionrequest.hxx
@@ -529,14 +529,6 @@ public:
const OUString & getPassword() const { return m_aPassword; }
/**
- * This method returns the account that was supplied by the interaction
- * handler.
- *
- * @return the account.
- */
- const OUString & getAccount() const { return m_aAccount; }
-
- /**
* This method returns the authentication remember-mode for the password
* that was supplied by the interaction handler.
*
@@ -545,15 +537,6 @@ public:
const com::sun::star::ucb::RememberAuthentication &
getRememberPasswordMode() const { return m_eRememberPasswordMode; }
- /**
- * This method returns the authentication remember-mode for the account
- * that was supplied by the interaction handler.
- *
- * @return the remember-mode for the account.
- */
- const com::sun::star::ucb::RememberAuthentication &
- getRememberAccountMode() const { return m_eRememberAccountMode; }
-
bool getUseSystemCredentials() const { return m_bUseSystemCredentials; }
};
diff --git a/include/ucbhelper/propertyvalueset.hxx b/include/ucbhelper/propertyvalueset.hxx
index c55737379f47..09f5564b6397 100644
--- a/include/ucbhelper/propertyvalueset.hxx
+++ b/include/ucbhelper/propertyvalueset.hxx
@@ -193,62 +193,37 @@ public:
// Non-interface methods
-
void appendString( const OUString& rPropName, const OUString& rValue );
- void appendString( const sal_Char* pAsciiPropName, const OUString& rValue )
- {
- appendString( OUString::createFromAscii( pAsciiPropName ), rValue );
- }
void appendString( const ::com::sun::star::beans::Property& rProp, const OUString& rValue )
{
appendString( rProp.Name, rValue );
}
void appendBoolean( const OUString& rPropName, bool bValue );
- void appendBoolean( const sal_Char* pAsciiPropName, bool bValue )
- {
- appendBoolean( OUString::createFromAscii( pAsciiPropName ), bValue );
- }
void appendBoolean( const ::com::sun::star::beans::Property& rProp, bool bValue )
{
appendBoolean( rProp.Name, bValue );
}
void appendLong( const OUString& rPropName, sal_Int64 nValue );
- void appendLong( const sal_Char* pAsciiPropName, sal_Int64 nValue )
- {
- appendLong( OUString::createFromAscii( pAsciiPropName ), nValue );
- }
void appendLong( const ::com::sun::star::beans::Property& rProp, sal_Int64 nValue )
{
appendLong( rProp.Name, nValue );
}
void appendTimestamp( const OUString& rPropName, const ::com::sun::star::util::DateTime& rValue );
- void appendTimestamp( const sal_Char* pAsciiPropName, const ::com::sun::star::util::DateTime& rValue )
- {
- appendTimestamp( OUString::createFromAscii( pAsciiPropName ), rValue );
- }
void appendTimestamp( const ::com::sun::star::beans::Property& rProp, const ::com::sun::star::util::DateTime& rValue )
{
appendTimestamp( rProp.Name, rValue );
}
void appendObject( const OUString& rPropName, const ::com::sun::star::uno::Any& rValue );
- void appendObject( const sal_Char* pAsciiPropName, const ::com::sun::star::uno::Any& rValue )
- {
- appendObject( OUString::createFromAscii( pAsciiPropName ), rValue );
- }
void appendObject( const ::com::sun::star::beans::Property& rProp, const ::com::sun::star::uno::Any& rValue )
{
appendObject( rProp.Name, rValue );
}
void appendVoid( const OUString& rPropName );
- void appendVoid( const sal_Char* pAsciiPropName)
- {
- appendVoid( OUString::createFromAscii( pAsciiPropName ) );
- }
void appendVoid( const ::com::sun::star::beans::Property& rProp )
{
appendVoid( rProp.Name );
diff --git a/include/ucbhelper/resultsethelper.hxx b/include/ucbhelper/resultsethelper.hxx
index bd6575e6083c..5c7f9e23e1d3 100644
--- a/include/ucbhelper/resultsethelper.hxx
+++ b/include/ucbhelper/resultsethelper.hxx
@@ -201,18 +201,6 @@ public:
getCapabilities()
throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
- // Non-interface methods.
-
-
- /**
- * This method returns, whether the resultset is static or dynamic.
- * If neither getStatic() nor getDynamic() was called, the type
- * of the resultset is "dynamic".
- *
- * @return true, if the resultset type is "static". False, otherwise.
- */
- bool isStatic() const { return m_bStatic; }
};
}