summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-22 14:32:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-23 04:46:35 +0000
commit46d3163f779a43cc7c023a6e8141f990e5d23292 (patch)
tree99c87b90b69f3c59edb91206b364a4e5c9b1c640 /include
parentc2a20af2c12bf75e7378a3a9dbc50a4dddabdebc (diff)
loplugin:unusedmethods
Change-Id: Ife4c8d948ffa116f044d43903de9485e43cfcae5 Reviewed-on: https://gerrit.libreoffice.org/32336 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/threadpool.hxx3
-rw-r--r--include/svtools/valueset.hxx1
-rw-r--r--include/vcl/bitmap.hxx13
-rw-r--r--include/vcl/helper.hxx2
-rw-r--r--include/vcl/toolbox.hxx3
5 files changed, 0 insertions, 22 deletions
diff --git a/include/comphelper/threadpool.hxx b/include/comphelper/threadpool.hxx
index 9f7692252fbf..32fcb64198d7 100644
--- a/include/comphelper/threadpool.hxx
+++ b/include/comphelper/threadpool.hxx
@@ -85,13 +85,10 @@ private:
@return a new task to perform, or NULL if list empty or terminated
*/
ThreadTask *popWorkLocked( std::unique_lock< std::mutex > & rGuard, bool bWait );
- void startWorkLocked();
- void stopWorkLocked();
/// signalled when all in-progress tasks are complete
std::mutex maMutex;
std::condition_variable maTasksChanged;
- sal_Int32 mnThreadsWorking;
bool mbTerminate;
std::vector< ThreadTask * > maTasks;
std::vector< rtl::Reference< ThreadWorker > > maWorkers;
diff --git a/include/svtools/valueset.hxx b/include/svtools/valueset.hxx
index 78cf013a2358..061816e84bb9 100644
--- a/include/svtools/valueset.hxx
+++ b/include/svtools/valueset.hxx
@@ -348,7 +348,6 @@ public:
return GetItemPos( mnSelItemId );
}
void SaveValue() { mnSavedItemId = GetSelectItemId(); }
- sal_Int32 GetSavedValue() const { return mnSavedItemId; }
bool IsItemSelected( sal_uInt16 nItemId ) const
{
return !mbNoSelection && (nItemId == mnSelItemId);
diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx
index 751fa9a08ad6..9ff398482987 100644
--- a/include/vcl/bitmap.hxx
+++ b/include/vcl/bitmap.hxx
@@ -589,19 +589,6 @@ public:
sal_uLong nColorCount,
sal_uLong* pTols = nullptr );
- /** Convert the bitmap to a PolyPolygon
-
- This works by putting continuous areas of the same color into
- a polygon, by tracing its bounding line.
-
- @param rPolyPoly
- The resulting PolyPolygon
-
- @return true, if the operation was completed successfully.
- */
- bool Vectorize(
- tools::PolyPolygon& rPolyPoly );
-
/** Convert the bitmap to a meta file
This works by putting continuous areas of the same color into
diff --git a/include/vcl/helper.hxx b/include/vcl/helper.hxx
index cbefea363676..fc5889531417 100644
--- a/include/vcl/helper.hxx
+++ b/include/vcl/helper.hxx
@@ -42,8 +42,6 @@ void VCL_DLLPUBLIC getPrinterPathList( std::list< OUString >& rPathList, const c
// seems to be a bug in gcc, now we return an object instead of a reference
VCL_DLLPUBLIC OUString const & getFontPath();
-bool VCL_DLLPUBLIC convertPfbToPfa( osl::File& rInFile, osl::File& rOutFile );
-
// normalized path (equivalent to realpath)
void VCL_DLLPUBLIC normPath( OString& rPath );
diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx
index 3edb3b8022bd..7fe0b7a41f7e 100644
--- a/include/vcl/toolbox.hxx
+++ b/include/vcl/toolbox.hxx
@@ -328,9 +328,6 @@ public:
void CopyItem( const ToolBox& rToolBox, sal_uInt16 nItemId );
void Clear();
- const ImageList& GetImageList() const { return maImageList; }
- void SetImageList( const ImageList& rImageList );
-
void SetButtonType( ButtonType eNewType = ButtonType::SYMBOLONLY );
ButtonType GetButtonType() const { return meButtonType; }