summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-16 14:05:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-18 09:17:43 +0200
commit4c05834a363535804d2cf5892704e19a5bb4f966 (patch)
tree43226f521a491e833bdd3f18b1655e945018ba64 /include
parent60861faa8653afebb504cfbcaeed633d2373a27d (diff)
loplugin:unusedmethods
Change-Id: I1c50d176e793397a1f9625f797a3750cf191a61c Reviewed-on: https://gerrit.libreoffice.org/37679 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/editeng/outliner.hxx2
-rw-r--r--include/svtools/inettbc.hxx4
-rw-r--r--include/tools/resmgr.hxx2
-rw-r--r--include/unotools/pathoptions.hxx1
-rw-r--r--include/unotools/ucbhelper.hxx5
5 files changed, 2 insertions, 12 deletions
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 8d570919fcc7..dd83ed03c9cd 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -259,7 +259,7 @@ public:
void AdjustHeight( long nDY );
- sal_uLong Read( SvStream& rInput, EETextFormat eFormat, SvKeyValueIterator* pHTTPHeaderAttrs );
+ void Read( SvStream& rInput, EETextFormat eFormat, SvKeyValueIterator* pHTTPHeaderAttrs );
void InsertText( const OUString& rNew, bool bSelect = false );
void InsertText( const OutlinerParaObject& rParaObj );
diff --git a/include/svtools/inettbc.hxx b/include/svtools/inettbc.hxx
index 5501d77b4d2c..26a3d8aeda31 100644
--- a/include/svtools/inettbc.hxx
+++ b/include/svtools/inettbc.hxx
@@ -71,8 +71,6 @@ public:
void SetNoURLSelection( bool bSet );
INetProtocol GetSmartProtocol() const { return eSmartProtocol; }
void SetSmartProtocol( INetProtocol eProt );
- bool IsCtrlOpen()
- { return bCtrlClick; }
OUString GetURL();
void DisableHistory();
@@ -82,7 +80,7 @@ public:
void SetFilter(const OUString& _sFilter);
- void EnableAutocompletion( bool _bEnable )
+ void EnableAutocompletion( bool _bEnable )
{ bIsAutoCompleteEnabled = _bEnable; }
void SetPlaceHolder( const OUString& sPlaceHolder )
{ aPlaceHolder = sPlaceHolder; }
diff --git a/include/tools/resmgr.hxx b/include/tools/resmgr.hxx
index 68a6a66a911d..6d98f4997e3a 100644
--- a/include/tools/resmgr.hxx
+++ b/include/tools/resmgr.hxx
@@ -157,8 +157,6 @@ public:
{ nLen++; return (nLen + nLen%2); }
static sal_uInt32 GetStringSize( const sal_uInt8* pStr, sal_uInt32& nLen );
- /// Return a int64
- static sal_uInt64 GetUInt64( void const * pDatum );
/// Return a long
static sal_Int32 GetLong( void const * pLong );
diff --git a/include/unotools/pathoptions.hxx b/include/unotools/pathoptions.hxx
index 3f559b4dd93e..cc86e04e5926 100644
--- a/include/unotools/pathoptions.hxx
+++ b/include/unotools/pathoptions.hxx
@@ -124,7 +124,6 @@ public:
OUString ExpandMacros( const OUString& rPath ) const;
OUString UseVariable( const OUString& rVar ) const;
bool SearchFile( OUString& rIniFile, Paths ePath = PATH_USERCONFIG );
- const LanguageTag& GetLanguageTag() const;
};
#endif // INCLUDED_UNOTOOLS_PATHOPTIONS_HXX
diff --git a/include/unotools/ucbhelper.hxx b/include/unotools/ucbhelper.hxx
index 653d82805d6b..201f1b15722e 100644
--- a/include/unotools/ucbhelper.hxx
+++ b/include/unotools/ucbhelper.hxx
@@ -64,11 +64,6 @@ UNOTOOLS_DLLPUBLIC bool ensureFolder(
const css::uno::Reference< css::ucb::XCommandEnvironment >& xEnv,
const OUString& rFolder, ucbhelper::Content & result) throw();
-/// @return the value of the "Size" property of the given content, or zero if
-/// obtaining the property yields a void value or raises a
-/// non-RuntimeException (RuntimeExceptions are passed through)
-UNOTOOLS_DLLPUBLIC sal_Int64 GetSize(OUString const & url);
-
UNOTOOLS_DLLPUBLIC bool IsYounger(
OUString const & younger, OUString const & older);