summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2011-08-13 01:20:31 -0400
committerKohei Yoshida <kohei.yoshida@suse.com>2011-08-16 21:22:44 -0400
commitc8f40655eac948bb8b7c9387e7333160c0088f4f (patch)
tree0940fa43c94c794d9f9f6e7fa7dbaffcc132e524 /offapi
parent80b1e662777100a7dfd80176a2b528880a838167 (diff)
Keep the container and object separate methods.
ScVbaControl doesn't have any container instance to pass to the old method.
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/document/XCodeNameQuery.idl4
1 files changed, 3 insertions, 1 deletions
diff --git a/offapi/com/sun/star/document/XCodeNameQuery.idl b/offapi/com/sun/star/document/XCodeNameQuery.idl
index 47908f0549d1..35e7b7f6ae9a 100644
--- a/offapi/com/sun/star/document/XCodeNameQuery.idl
+++ b/offapi/com/sun/star/document/XCodeNameQuery.idl
@@ -38,7 +38,9 @@ module com { module sun { module star { module document {
interface XCodeNameQuery
{
//-------------------------------------------------------------------------
- string getCodeNameForObject( [in] com::sun::star::uno::XInterface aContainer, [in] com::sun::star::uno::XInterface aObj );
+ string getCodeNameForObject( [in] com::sun::star::uno::XInterface aObj );
+
+ string getCodeNameForContainer( [in] com::sun::star::uno::XInterface aObj );
};
//=============================================================================