summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2015-06-14 13:47:56 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-06-29 07:56:47 +0000
commit7153fcb7c4a76d30d9ccc3303c1498dff79649b9 (patch)
treed31c4288ec157bb381299c4ca19606666cb5e7f3 /include
parentea1ea3b910dea72c901cd655af9a3abd501f4e60 (diff)
SfxSimpleHint only needs a sal_uInt32 for the hint
Change-Id: I7f7f99ba93d4f06575228e62f96703fd2c54c469 Reviewed-on: https://gerrit.libreoffice.org/16271 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/svl/smplhint.hxx6
-rw-r--r--include/unotools/syslocaleoptions.hxx12
2 files changed, 9 insertions, 9 deletions
diff --git a/include/svl/smplhint.hxx b/include/svl/smplhint.hxx
index 5c0c7ed97aee..bdf980073ab1 100644
--- a/include/svl/smplhint.hxx
+++ b/include/svl/smplhint.hxx
@@ -49,10 +49,10 @@
class SVL_DLLPUBLIC SfxSimpleHint: public SfxHint
{
private:
- sal_uLong mnId;
+ sal_uInt32 mnId;
public:
- SfxSimpleHint( sal_uLong nId ) { mnId = nId; }
- sal_uLong GetId() const { return mnId; }
+ SfxSimpleHint( sal_uInt32 nId ) { mnId = nId; }
+ sal_uInt32 GetId() const { return mnId; }
};
#endif
diff --git a/include/unotools/syslocaleoptions.hxx b/include/unotools/syslocaleoptions.hxx
index a41d7ec8d88c..cd62d8514c9d 100644
--- a/include/unotools/syslocaleoptions.hxx
+++ b/include/unotools/syslocaleoptions.hxx
@@ -30,12 +30,12 @@
#include <unotools/options.hxx>
// bits for broadcasting hints of changes in a SfxSimpleHint, may be combined
-const sal_uLong SYSLOCALEOPTIONS_HINT_LOCALE = 0x00000001;
-const sal_uLong SYSLOCALEOPTIONS_HINT_CURRENCY = 0x00000002;
-const sal_uLong SYSLOCALEOPTIONS_HINT_UILOCALE = 0x00000004;
-const sal_uLong SYSLOCALEOPTIONS_HINT_DECSEP = 0x00000008;
-const sal_uLong SYSLOCALEOPTIONS_HINT_DATEPATTERNS = 0x00000010;
-const sal_uLong SYSLOCALEOPTIONS_HINT_IGNORELANG = 0x00000020;
+const sal_uInt32 SYSLOCALEOPTIONS_HINT_LOCALE = 0x00000001;
+const sal_uInt32 SYSLOCALEOPTIONS_HINT_CURRENCY = 0x00000002;
+const sal_uInt32 SYSLOCALEOPTIONS_HINT_UILOCALE = 0x00000004;
+const sal_uInt32 SYSLOCALEOPTIONS_HINT_DECSEP = 0x00000008;
+const sal_uInt32 SYSLOCALEOPTIONS_HINT_DATEPATTERNS = 0x00000010;
+const sal_uInt32 SYSLOCALEOPTIONS_HINT_IGNORELANG = 0x00000020;
class SvtSysLocaleOptions_Impl;
class SvtListener;