diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-17 14:38:33 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-18 09:48:28 +0100 |
commit | f471fe7badd582ca64e452790b5ac46c365b8931 (patch) | |
tree | efe86d678662350ba059bf726337b3e59967c9a7 /include | |
parent | dd4bd0ee74fae3d7e3a16e018021da173152571b (diff) |
Better way to avoid ambiguities among ResId ctors
Change-Id: I43c4c1c5ad193cdd3182cea649fae6091984a121
Diffstat (limited to 'include')
-rw-r--r-- | include/tools/resid.hxx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/tools/resid.hxx b/include/tools/resid.hxx index 07976f7bdeb5..26f21c742536 100644 --- a/include/tools/resid.hxx +++ b/include/tools/resid.hxx @@ -65,19 +65,6 @@ public: { ImplInit( nId, rMgr, NULL ); } - // backwards compatibility; avoid ambiguities - ResId( sal_uInt16 nId, ResMgr& rMgr ) - { - ImplInit( sal_uInt32(nId), rMgr, NULL ); - } - ResId( int nId, ResMgr& rMgr ) - { - ImplInit( sal_uInt32(nId), rMgr, NULL ); - } - ResId( long nId, ResMgr& rMgr ) - { - ImplInit( sal_uInt32(nId), rMgr, NULL ); - } sal_uInt32 GetWinBits() const { return m_nWinBits; } void SetWinBits( sal_uInt32 nBits ) const { m_nWinBits = nBits; } |