diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-16 14:30:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-17 08:19:33 +0200 |
commit | fddd41eb4f87c1a271ed0b40ec1b264148756ff7 (patch) | |
tree | f2befca6d1398bda64cc99ea190cbbf36d9162d1 /svx/source/inc/gridcell.hxx | |
parent | f0c658e49eb907a15c17f2a8ae2f42dd2e550a77 (diff) |
convert Link<> to typed
Change-Id: I9705eccf8238cf0dc6c5a429c89a2cd3d8331d08
Diffstat (limited to 'svx/source/inc/gridcell.hxx')
-rw-r--r-- | svx/source/inc/gridcell.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/inc/gridcell.hxx b/svx/source/inc/gridcell.hxx index 1ce7f14f0966..e37db6fa44a4 100644 --- a/svx/source/inc/gridcell.hxx +++ b/svx/source/inc/gridcell.hxx @@ -677,13 +677,13 @@ class DbFilterField :public DbCellControl ,public ::svxform::OSQLParserClient { - ::com::sun::star::uno::Sequence< OUString > m_aValueList; - OUString m_aText; - Link<> m_aCommitLink; + css::uno::Sequence< OUString > m_aValueList; + OUString m_aText; + Link<DbFilterField&,void> m_aCommitLink; sal_Int16 m_nControlClass; - bool m_bFilterList : 1; - bool m_bFilterListFilled : 1; - bool m_bBound : 1; + bool m_bFilterList : 1; + bool m_bFilterListFilled : 1; + bool m_bBound : 1; public: TYPEINFO_OVERRIDE(); @@ -700,7 +700,7 @@ public: const OUString& GetText() const {return m_aText;} void SetText(const OUString& rText); - void SetCommitHdl( const Link<>& rLink ) { m_aCommitLink = rLink; } + void SetCommitHdl( const Link<DbFilterField&,void>& rLink ) { m_aCommitLink = rLink; } protected: @@ -1126,7 +1126,7 @@ public: virtual sal_Int16 SAL_CALL getMaxTextLen() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; protected: - DECL_LINK( OnCommit, void* ); + DECL_LINK_TYPED( OnCommit, DbFilterField&, void ); }; #endif // INCLUDED_SVX_SOURCE_INC_GRIDCELL_HXX |