summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-17 14:38:33 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-18 09:48:28 +0100
commitf471fe7badd582ca64e452790b5ac46c365b8931 (patch)
treeefe86d678662350ba059bf726337b3e59967c9a7 /include
parentdd4bd0ee74fae3d7e3a16e018021da173152571b (diff)
Better way to avoid ambiguities among ResId ctors
Change-Id: I43c4c1c5ad193cdd3182cea649fae6091984a121
Diffstat (limited to 'include')
-rw-r--r--include/tools/resid.hxx13
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; }