diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-06-05 22:59:19 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-06-06 00:59:23 +0900 |
commit | f7ebee38a3c5c6cb58f40109a213d449138ea987 (patch) | |
tree | b5083e38ec0c9881ce416bb54e5bcb16f4333641 /codemaker | |
parent | eb9b8ebca49291797e655b50f64af2c2fa03434c (diff) |
removed dead code
Change-Id: I02e535f0a0e55446e5a29297c2d05b1503805e71
Diffstat (limited to 'codemaker')
-rw-r--r-- | codemaker/source/cppumaker/cpputype.cxx | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/codemaker/source/cppumaker/cpputype.cxx b/codemaker/source/cppumaker/cpputype.cxx index b4eac7855472..7fc720a65fa4 100644 --- a/codemaker/source/cppumaker/cpputype.cxx +++ b/codemaker/source/cppumaker/cpputype.cxx @@ -4569,33 +4569,4 @@ bool produceType(RegistryKey& rTypeKey, bool bIsExtraType, return ret; } -//************************************************************************* -// scopedName -//************************************************************************* -/* -OString scopedName(const OString& scope, const OString& type, - sal_Bool bNoNameSpace) -{ - sal_Int32 nPos = type.lastIndexOf( '/' ); - if (nPos == -1) - return type; - - OStringBuffer tmpBuf(type.getLength()*2); - nPos = 0; - do - { - tmpBuf.append("::"); - OString token(type.getToken(0, '/', nPos)); - if (nPos != -1) - tmpBuf.append(translateUnoToCppIndentifier( - token, "module", ITM_KEYWORDSONLY)); - else - tmpBuf.append(translateUnoToCppIndentifier( - token, "interface", ITM_KEYWORDSONLY)); - } while( nPos != -1 ); - - return tmpBuf.makeStringAndClear(); -} -*/ - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |