summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-16 10:37:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-16 13:03:32 +0200
commitca83aad3703a2c3b28eb7cca43f3b6d2e9351aa4 (patch)
tree94c77aa4cec83f4152420fa9f246281c1343c3c7 /include
parentf80385d44814df4cef9fef025240a078f1996bec (diff)
convert dialog result methods from long->sal_Int32
Change-Id: Id3c56a2c9f8f8813e3bbff4c4ae9156b2185fc9c Reviewed-on: https://gerrit.libreoffice.org/41206 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/abstdlg.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/abstdlg.hxx b/include/vcl/abstdlg.hxx
index 5303165f2e9b..40f75ed293b6 100644
--- a/include/vcl/abstdlg.hxx
+++ b/include/vcl/abstdlg.hxx
@@ -55,7 +55,7 @@ protected:
virtual ~VclAbstractDialog2() override;
public:
virtual void StartExecuteModal( const Link<Dialog&,void>& rEndDialogHdl ) = 0;
- virtual long GetResult() = 0;
+ virtual sal_Int32 GetResult() = 0;
};
class VCL_DLLPUBLIC VclAbstractTerminatedDialog : public VclAbstractDialog
@@ -63,7 +63,7 @@ class VCL_DLLPUBLIC VclAbstractTerminatedDialog : public VclAbstractDialog
protected:
virtual ~VclAbstractTerminatedDialog() override = default;
public:
- virtual void EndDialog(long nResult) = 0;
+ virtual void EndDialog(sal_Int32 nResult) = 0;
};
class VCL_DLLPUBLIC VclAbstractRefreshableDialog : public VclAbstractDialog