diff options
author | Herbert Dürr <hdu@apache.org> | 2013-11-26 09:00:15 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-11-26 10:48:14 +0000 |
commit | 22029c7e17b4cb48acb058d47ec9c3b6b8b6b294 (patch) | |
tree | fb1ae2478a4882269e899f59895f48c1b2f242f5 /include/svl/smplhint.hxx | |
parent | e579d453545c4fb00126c6d41636d3960785a166 (diff) |
Resolves: #i123753# WaE: fix unoedhlp.hxx declaration of 'nId'...
shadowing a member of SimpleHint
Happy new times: Now even simple compiler warning fixes need their own issue.
(cherry picked from commit 5cd09cc74da93da4c91c665822b6ab9a0d704a7a)
Conflicts:
svl/inc/svl/smplhint.hxx
svl/source/notify/smplhint.cxx
Change-Id: I445126425a22778cf7aaf33d3a34977903e59f84
Diffstat (limited to 'include/svl/smplhint.hxx')
-rw-r--r-- | include/svl/smplhint.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/smplhint.hxx b/include/svl/smplhint.hxx index 848883763cb5..32e749ec4544 100644 --- a/include/svl/smplhint.hxx +++ b/include/svl/smplhint.hxx @@ -60,11 +60,11 @@ class SVL_DLLPUBLIC SfxSimpleHint: public SfxHint { private: - sal_uLong nId; + sal_uLong mnId; public: TYPEINFO(); - SfxSimpleHint( sal_uLong nId ); - sal_uLong GetId() const { return nId; } + SfxSimpleHint( sal_uLong nId ) { mnId = nId; } + sal_uLong GetId() const { return mnId; } }; //-------------------------------------------------------------------- |