diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-03-02 08:55:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-03-02 08:55:49 +0100 |
commit | 906ca2e0e58556353a40670828e111986285315a (patch) | |
tree | a907f18b3ded66c9a37a05705229d25fe2346f32 | |
parent | 75a6e52bc8d3062859f626f7466f5af55841a7b7 (diff) |
WNT-only IMPL_LINK_NOARG fixes
-rw-r--r-- | cui/source/options/optgdlg.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/dlg/dsselect.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optgdlg.hxx b/cui/source/options/optgdlg.hxx index cf69c7d2ee0b..817cf46622d2 100644 --- a/cui/source/options/optgdlg.hxx +++ b/cui/source/options/optgdlg.hxx @@ -80,7 +80,7 @@ private: DECL_LINK(HelpCheckHdl_Impl, void *); DECL_LINK(HelpAgentResetHdl_Impl, void *); #ifdef WNT - DECL_LINK( OnFileDlgToggled, CheckBox* ); + DECL_LINK( OnFileDlgToggled, void* ); #endif protected: virtual int DeactivatePage( SfxItemSet* pSet = NULL ); diff --git a/dbaccess/source/ui/dlg/dsselect.hxx b/dbaccess/source/ui/dlg/dsselect.hxx index 56566c023de4..0081cb9e6d79 100644 --- a/dbaccess/source/ui/dlg/dsselect.hxx +++ b/dbaccess/source/ui/dlg/dsselect.hxx @@ -80,7 +80,7 @@ public: protected: DECL_LINK( ListDblClickHdl, ListBox * ); #ifdef HAVE_ODBC_ADMINISTRATION - DECL_LINK( ManageClickHdl, PushButton * ); + DECL_LINK( ManageClickHdl, void* ); DECL_LINK( ManageProcessFinished, void* ); #endif void fillListBox(const StringBag& _rDatasources); |