summaryrefslogtreecommitdiff
path: root/include/cppuhelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-10 12:16:40 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-10 17:39:53 +0100
commit023c00b7c4bcca3c581cee293150e9389e5a1f7b (patch)
tree005b7c60e265692fbb028f8783e6db1efbb9a18a /include/cppuhelper
parent8038ea6396b2c40599f16b101e9089f6cc13a118 (diff)
cppuhelper: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I1e355c0ef9548d505de996304837d3d0910bd9b8
Diffstat (limited to 'include/cppuhelper')
-rw-r--r--include/cppuhelper/implbase.hxx3
-rw-r--r--include/cppuhelper/typeprovider.hxx4
2 files changed, 4 insertions, 3 deletions
diff --git a/include/cppuhelper/implbase.hxx b/include/cppuhelper/implbase.hxx
index 4c6b8fca2741..315b67fdf4f3 100644
--- a/include/cppuhelper/implbase.hxx
+++ b/include/cppuhelper/implbase.hxx
@@ -74,7 +74,8 @@ struct CPPUHELPER_DLLPUBLIC ClassDataBase
/** pointer to types sequence (com.sun.star.lang.XTypeProvider)
*/
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > * pTypes;
- /** pointer to class id (com.sun.star.lang.XTypeProvider)
+ /** obsolete pointer to class id (com.sun.star.lang.XTypeProvider), will
+ always be null
*/
::com::sun::star::uno::Sequence< sal_Int8 > * pId;
diff --git a/include/cppuhelper/typeprovider.hxx b/include/cppuhelper/typeprovider.hxx
index b617483bbe8e..b82ed96ace95 100644
--- a/include/cppuhelper/typeprovider.hxx
+++ b/include/cppuhelper/typeprovider.hxx
@@ -175,7 +175,7 @@ public:
{ return _aTypes; }
};
-/** Helper class to implement com::sun::star::lang::XTypeProvider. Construct a static object
+/** Helper class to implement IDs for XUnoTunnel. Construct a static object
of this class for your UNO object's implementation id.
*/
class CPPUHELPER_DLLPUBLIC OImplementationId
@@ -219,7 +219,7 @@ public:
: _pSeq( new ::com::sun::star::uno::Sequence< sal_Int8 >( rId.getImplementationId() ) )
{}
- /** Called upon XTypeProvider::getImplementationId().
+ /** Get implementation id.
@return implementation id
*/