summaryrefslogtreecommitdiff
path: root/shell/inc/columninfo.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-11-27 10:38:05 +0100
committerStephan Bergmann <sbergman@redhat.com>2020-11-27 13:16:46 +0100
commit2a78e9ddafcfa644e771bb2fc47d5ca23f46af59 (patch)
tree44d9688f35431cc55c13f8f9b15fb8065bc91bdd /shell/inc/columninfo.hxx
parenta93b47c0a788771cc761f37e610985cbeb971a1e (diff)
Windows InterlockedIncrement/Decrement use LONG
Change-Id: Ib3e8e89332399eba443d9ff291f694cfceb95af1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106726 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'shell/inc/columninfo.hxx')
-rw-r--r--shell/inc/columninfo.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/inc/columninfo.hxx b/shell/inc/columninfo.hxx
index 6a6710a65ac6..de122ad1f361 100644
--- a/shell/inc/columninfo.hxx
+++ b/shell/inc/columninfo.hxx
@@ -26,7 +26,7 @@
class CColumnInfo : public IColumnProvider
{
public:
- CColumnInfo(long RefCnt = 1);
+ CColumnInfo(LONG RefCnt = 1);
virtual ~CColumnInfo();
@@ -53,7 +53,7 @@ public:
LPCSHCOLUMNID pscid, LPCSHCOLUMNDATA pscd, VARIANT *pvarData) override;
private:
- long m_RefCnt;
+ LONG m_RefCnt;
};
#endif