summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2013-06-10 13:19:14 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2013-06-10 14:03:40 +0200
commit4e41227dd6af52ec562d10efcb365defba6bd36e (patch)
tree78126f91c09616eeddafcbdda87fed05e606a6a4 /include/svl
parente9289dbde26cd89b7e5bf54afccd06fc01dabdde (diff)
mingw64: change Link class to use sal_IntPtr instead of long
Change-Id: I2b78c7b714ff064f2f1b8a8eb161e5e2ae121eee
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/svdde.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svl/svdde.hxx b/include/svl/svdde.hxx
index 66ec9f0b6a5a..0a1d22bd7de1 100644
--- a/include/svl/svdde.hxx
+++ b/include/svl/svdde.hxx
@@ -96,8 +96,8 @@ protected:
DdeData aDdeData;
DdeString* pName;
short nType;
- long nId;
- long nTime;
+ sal_IntPtr nId;
+ sal_IntPtr nTime;
Link aData;
Link aDone;
bool bBusy;
@@ -285,11 +285,11 @@ public:
class SVL_DLLPUBLIC DdeTopic
{
- SVL_DLLPRIVATE void _Disconnect( long );
+ SVL_DLLPRIVATE void _Disconnect( sal_IntPtr );
public:
- virtual void Connect( long );
- virtual void Disconnect( long );
+ virtual void Connect( sal_IntPtr );
+ virtual void Disconnect( sal_IntPtr );
virtual DdeData* Get( sal_uLong );
virtual sal_Bool Put( const DdeData* );
virtual sal_Bool Execute( const String* );