diff options
author | David Ostrovsky <david@ostrovsky.org> | 2015-01-10 12:36:22 +0100 |
---|---|---|
committer | David Ostrovsky <david@ostrovsky.org> | 2015-01-10 21:37:08 +0000 |
commit | 2ce00302275f8676decbdfe919590bb215b1c134 (patch) | |
tree | dd943126e52dc268a38e5766bd7f9427feb8e65a /include/svx | |
parent | 28deec717c40e04c41f66b094fe2c1e969241525 (diff) |
Fix long/sal_IntPtr mismatch on x86_64 platform on windows
25e291438231611823dadc195fd26d26a1b8ece4 changed Link class to
use sal_IntPtr instead of long, but missed to adjust number of
occurrences.
Change-Id: I966185083a41b41c7385947a03369a8ce65c61b8
Reviewed-on: https://gerrit.libreoffice.org/13852
Reviewed-by: David Ostrovsky <david@ostrovsky.org>
Tested-by: David Ostrovsky <david@ostrovsky.org>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/svxdlg.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx index 6ec31bef4251..5882adb9f4fd 100644 --- a/include/svx/svxdlg.hxx +++ b/include/svx/svxdlg.hxx @@ -90,7 +90,7 @@ class AbstractSpellDialog : public VclAbstractDialog virtual SfxBindings& GetBindings() = 0; }; -typedef long (*PLinkStub)( void*, void* ); +typedef sal_IntPtr (*PLinkStub)( void*, void* ); class AbstractSearchProgress :public VclAbstractRefreshableDialog { |