summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2013-11-26 09:00:15 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-11-26 10:48:14 +0000
commit22029c7e17b4cb48acb058d47ec9c3b6b8b6b294 (patch)
treefb1ae2478a4882269e899f59895f48c1b2f242f5 /include/svl
parente579d453545c4fb00126c6d41636d3960785a166 (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')
-rw-r--r--include/svl/smplhint.hxx6
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; }
};
//--------------------------------------------------------------------