summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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
*/