summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-14 14:58:02 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-15 09:31:13 +0000
commit04b472af1e1c9a3de4b8380305d2b4e8ce3a43df (patch)
treec25d702d4d7229894347b22e3eb510f5c192b657 /fpicker
parent22b094f5d8e1e82375b135abd3a6f99a9a555244 (diff)
loplugin:unusedmethods accessibility,fpicker,uui
Change-Id: I106a0be06c4b9fe1313bbd8d4c62472c4b0a4b4f Reviewed-on: https://gerrit.libreoffice.org/17045 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/fpsmartcontent.hxx2
-rw-r--r--fpicker/source/office/iodlg.hxx63
-rw-r--r--fpicker/source/office/iodlgimp.hxx6
3 files changed, 0 insertions, 71 deletions
diff --git a/fpicker/source/office/fpsmartcontent.hxx b/fpicker/source/office/fpsmartcontent.hxx
index cce20ec5061e..b6ffd7281848 100644
--- a/fpicker/source/office/fpsmartcontent.hxx
+++ b/fpicker/source/office/fpsmartcontent.hxx
@@ -198,8 +198,6 @@ namespace svt
}
inline bool isFolder( ) { return isFolder( getURL() ); }
- inline bool isDocument( ) { return isDocument( getURL() ); }
- inline bool is( ) { return is( getURL() ); }
};
diff --git a/fpicker/source/office/iodlg.hxx b/fpicker/source/office/iodlg.hxx
index bf01b492d9a9..7770935f0e78 100644
--- a/fpicker/source/office/iodlg.hxx
+++ b/fpicker/source/office/iodlg.hxx
@@ -162,7 +162,6 @@ private:
protected:
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
- void EnableInternet( bool bInternet );
// originally from VclFileDialog
Link<> _aOKHdl;
@@ -229,7 +228,6 @@ public:
inline SvtFileView* GetView() const;
- void DisableSaveLastDirectory();
void InitSize();
void UpdateControls( const OUString& rURL );
void EnableAutocompletion( bool _bEnable = true );
@@ -260,12 +258,6 @@ public:
inline void SetDefaultExt( const OUString& rExt );
inline void EraseDefaultExt( sal_Int32 _nIndex = 0 );
inline const OUString& GetDefaultExt() const;
- inline void SetOKHdl( const Link<>& rLink );
- inline const Link<>& GetOKHdl() const;
- inline void SetFileSelectHdl( const Link<>& rLink );
- inline const Link<>& GetFileSelectHdl() const;
- inline void SetFilterSelectHdl( const Link<>& rLink );
- inline const Link<>& GetFilterSelectHdl() const;
inline Image GetButtonImage( sal_uInt16 _nButtonId ) const { return m_aImages.GetImage( _nButtonId ); }
@@ -368,67 +360,12 @@ inline const OUString& SvtFileDialog::GetDefaultExt() const
}
-
-inline void SvtFileDialog::SetOKHdl
-(
- const Link<>& rLink
-)
-{
- _aOKHdl = rLink;
-}
-
-
-
-inline const Link<>& SvtFileDialog::GetOKHdl() const
-{
- return _aOKHdl;
-}
-
-
-
-inline void SvtFileDialog::SetFileSelectHdl
-(
- const Link<>& rLink
-)
-{
- _aFileSelectHdl = rLink;
-}
-
-
-
-inline const Link<>& SvtFileDialog::GetFileSelectHdl() const
-{
- return _aFileSelectHdl;
-}
-
-
-
-inline void SvtFileDialog::SetFilterSelectHdl
-(
- const Link<>& rLink
-)
-{
- _aFilterSelectHdl = rLink;
-}
-
-
-
-inline const Link<>& SvtFileDialog::GetFilterSelectHdl() const
-{
- return _aFilterSelectHdl;
-}
-
-
-
inline SvtFileView* SvtFileDialog::GetView() const
{
return _pFileView;
}
-
-
-
#define FILE_SELECTION_CHANGED 1
#define DIRECTORY_CHANGED 2
#define HELP_REQUESTED 3
diff --git a/fpicker/source/office/iodlgimp.hxx b/fpicker/source/office/iodlgimp.hxx
index dd6244b4fe21..243f6afa620e 100644
--- a/fpicker/source/office/iodlgimp.hxx
+++ b/fpicker/source/office/iodlgimp.hxx
@@ -217,7 +217,6 @@ public:
inline const SvtFileDialogFilter_Impl* GetCurFilter( ) const;
inline const OUString& GetCurFilterDisplayName() const;
void SetCurFilter( SvtFileDialogFilter_Impl* _pFilter, const OUString& _rDisplayName );
- inline void SetCurFilter( SvtFileDialogFilter_Impl* _pFilter );
};
inline void SvtExpFileDlg_Impl::SetFilterListSelectHdl( const Link<>& _rHandler )
@@ -261,11 +260,6 @@ inline const OUString& SvtExpFileDlg_Impl::GetCurFilterDisplayName() const
return m_sCurrentFilterDisplayName;
}
-inline void SvtExpFileDlg_Impl::SetCurFilter( SvtFileDialogFilter_Impl* pFilter )
-{
- SetCurFilter( pFilter, pFilter->GetName() );
-}
-
#endif // INCLUDED_FPICKER_SOURCE_OFFICE_IODLGIMP_HXX