diff options
author | Mathias Bauer <mba@openoffice.org> | 2010-07-23 16:18:22 +0200 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2010-07-23 16:18:22 +0200 |
commit | f141d817df67792de77d5805869883f948365d24 (patch) | |
tree | d77644160f8a3b955b6711d2b1835573cac61474 /tools/source | |
parent | 2c2a74a576e35b3a142804cd35de75dbc086bcd3 (diff) |
CWS changehid: #i111874#: use '.' instead of ':' as separator for autohelpids; ':' may cause confusion with URL detection
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/rc/resmgr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx index df8506bb090b..d64d262ea43c 100644 --- a/tools/source/rc/resmgr.cxx +++ b/tools/source/rc/resmgr.cxx @@ -1811,7 +1811,7 @@ rtl::OString ResMgr::GetAutoHelpId() // prepare HID, start with resource prefix rtl::OStringBuffer aHID( 32 ); aHID.append( rtl::OUStringToOString( pImpRes->aPrefix, RTL_TEXTENCODING_UTF8 ) ); - aHID.append( ':' ); + aHID.append( '.' ); // append type const ImpRCStack *pRC = StackTop(); @@ -1851,7 +1851,7 @@ rtl::OString ResMgr::GetAutoHelpId() // append resource id hierarchy for( int nOff = nCurStack-1; nOff >= 0; nOff-- ) { - aHID.append( ':' ); + aHID.append( '.' ); pRC = StackTop( nOff ); OSL_ENSURE( pRC->pResource, "missing resource in resource stack level !" ); |