summaryrefslogtreecommitdiff
path: root/framework/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-22 15:50:53 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-24 07:39:23 +0100
commitd55fb1552f6ecd5c2f9e817d2b820e1a66410840 (patch)
tree865c19b08be30096ba1de7395e056caeaf2d840c /framework/inc
parent40871e226945ff732261fd1437df55b733ecdbc3 (diff)
loplugin:unusedfields in framework
Change-Id: I7c633bf3e217a71c51bd3781fe716cb06fe92b0c Reviewed-on: https://gerrit.libreoffice.org/68227 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/inc')
-rw-r--r--framework/inc/helper/titlebarupdate.hxx2
-rw-r--r--framework/inc/helper/vclstatusindicator.hxx3
-rw-r--r--framework/inc/jobs/jobdata.hxx10
-rw-r--r--framework/inc/services/desktop.hxx1
-rw-r--r--framework/inc/services/layoutmanager.hxx1
-rw-r--r--framework/inc/uielement/toolbarmerger.hxx2
6 files changed, 0 insertions, 19 deletions
diff --git a/framework/inc/helper/titlebarupdate.hxx b/framework/inc/helper/titlebarupdate.hxx
index ab93896ec273..f835b915d89f 100644
--- a/framework/inc/helper/titlebarupdate.hxx
+++ b/framework/inc/helper/titlebarupdate.hxx
@@ -54,8 +54,6 @@ class TitleBarUpdate : public ::cppu::WeakImplHelper<
{
/// internal id of this module
OUString sID;
- /// localized name for this module
- OUString sUIName;
/// configured icon for this module
::sal_Int32 nIcon;
};
diff --git a/framework/inc/helper/vclstatusindicator.hxx b/framework/inc/helper/vclstatusindicator.hxx
index 5665b2a394ee..1462616d7793 100644
--- a/framework/inc/helper/vclstatusindicator.hxx
+++ b/framework/inc/helper/vclstatusindicator.hxx
@@ -52,9 +52,6 @@ class VCLStatusIndicator : public ::cppu::WeakImplHelper< css::task::XStatusInd
*/
VclPtr<StatusBar> m_pStatusBar;
- /** knows the current info text of the progress. */
- OUString m_sText;
-
/** knows the current range of the progress. */
sal_Int32 m_nRange;
diff --git a/framework/inc/jobs/jobdata.hxx b/framework/inc/jobs/jobdata.hxx
index 1b5ec7c41dc6..5f36411463c5 100644
--- a/framework/inc/jobs/jobdata.hxx
+++ b/framework/inc/jobs/jobdata.hxx
@@ -164,15 +164,6 @@ class JobData final
*/
std::vector< css::beans::NamedValue > m_lArguments;
- /**
- after a job was successfully executed (by any outside code using our
- information) it can return a result. This member make it part of this
- container too. So it can be used for further things.
- We use it also to update our internal state and the configuration
- of the job. But note: only the last result will be saved here!
- */
- JobResult m_aLastExecutionResult;
-
// native interface
public:
@@ -200,7 +191,6 @@ class JobData final
void setEvent ( const OUString& sEvent ,
const OUString& sAlias );
void setJobConfig ( const std::vector< css::beans::NamedValue >& lArguments );
- void setResult ( const JobResult& aResult );
void disableJob ( );
static std::vector< OUString > getEnabledJobsForEvent( const css::uno::Reference< css::uno::XComponentContext >& rxContext,
diff --git a/framework/inc/services/desktop.hxx b/framework/inc/services/desktop.hxx
index bbde5e69a237..faf93a6e0126 100644
--- a/framework/inc/services/desktop.hxx
+++ b/framework/inc/services/desktop.hxx
@@ -399,7 +399,6 @@ class Desktop : private cppu::BaseMutex,
css::uno::Reference< css::frame::XFrames > m_xFramesHelper; /// helper for XFrames, XIndexAccess, XElementAccess and implementation of a childcontainer!
css::uno::Reference< css::frame::XDispatchProvider > m_xDispatchHelper; /// helper to dispatch something for new tasks, created by "_blank"!
ELoadState m_eLoadState; /// hold information about state of asynchron loading of component for loadComponentFromURL()!
- css::uno::Any m_aInteractionRequest;
bool m_bSuspendQuickstartVeto; /// don't ask quickstart for a veto
std::unique_ptr<SvtCommandOptions> m_xCommandOptions; /// ref counted class to support disabling commands defined by configuration file
OUString m_sName;
diff --git a/framework/inc/services/layoutmanager.hxx b/framework/inc/services/layoutmanager.hxx
index 6e15d58e2442..ed43e2c31828 100644
--- a/framework/inc/services/layoutmanager.hxx
+++ b/framework/inc/services/layoutmanager.hxx
@@ -246,7 +246,6 @@ namespace framework
css::uno::Reference< css::frame::XFrame > m_xFrame;
css::uno::Reference< css::ui::XUIConfigurationManager > m_xModuleCfgMgr;
css::uno::Reference< css::ui::XUIConfigurationManager > m_xDocCfgMgr;
- css::uno::WeakReference< css::frame::XModel > m_xModel;
css::uno::Reference< css::awt::XWindow > m_xContainerWindow;
css::uno::Reference< css::awt::XTopWindow2 > m_xContainerTopWindow;
sal_Int32 m_nLockCount;
diff --git a/framework/inc/uielement/toolbarmerger.hxx b/framework/inc/uielement/toolbarmerger.hxx
index 802b9bd080cb..24017793bede 100644
--- a/framework/inc/uielement/toolbarmerger.hxx
+++ b/framework/inc/uielement/toolbarmerger.hxx
@@ -42,7 +42,6 @@ namespace framework
struct AddonsParams
{
OUString aImageId;
- OUString aTarget;
OUString aControlType;
sal_uInt16 nWidth;
};
@@ -62,7 +61,6 @@ typedef ::std::vector< AddonToolbarItem > AddonToolbarItemContainer;
struct ReferenceToolbarPathInfo
{
- VclPtr<ToolBox> pToolbar;
ToolBox::ImplToolItems::size_type nPos;
bool bResult;
};