summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/XCollectionBase.idl
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 19:34:01 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-26 09:51:30 -0600
commit07c638f9421f0d17078d52c1574e1614262af37f (patch)
tree6d7baa128b81c3cc4445c057d8f71d5b6a7b9f16 /oovbaapi/ooo/vba/XCollectionBase.idl
parentda290f39fc3029215bd1dc78731d2cea25f13e92 (diff)
Remove visual noise from oovbaapi
Change-Id: I9e378028bf876fdb01c139d7d747558cac1de28c Reviewed-on: https://gerrit.libreoffice.org/8287 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'oovbaapi/ooo/vba/XCollectionBase.idl')
-rw-r--r--oovbaapi/ooo/vba/XCollectionBase.idl14
1 files changed, 7 insertions, 7 deletions
diff --git a/oovbaapi/ooo/vba/XCollectionBase.idl b/oovbaapi/ooo/vba/XCollectionBase.idl
index 419c21f5161e..cd76766da8d0 100644
--- a/oovbaapi/ooo/vba/XCollectionBase.idl
+++ b/oovbaapi/ooo/vba/XCollectionBase.idl
@@ -23,11 +23,11 @@
#include <com/sun/star/container/XEnumerationAccess.idl>
#include <com/sun/star/script/XDefaultMethod.idl>
-//=============================================================================
+
module ooo { module vba {
-//=============================================================================
+
/** Base interface for VBA collections.
@@ -41,12 +41,12 @@ module ooo { module vba {
*/
interface XCollectionBase
{
- //-------------------------------------------------------------------------
+
/** Provides an enumeration of all items in this collection.
*/
interface ::com::sun::star::container::XEnumerationAccess;
- //-------------------------------------------------------------------------
+
/** Provides the name of the default item access method.
Usually this method is called "Item". The access method has to be
@@ -54,15 +54,15 @@ interface XCollectionBase
*/
interface ::com::sun::star::script::XDefaultMethod;
- //-------------------------------------------------------------------------
+
/** Returns the number of items contained in this collection.
*/
[attribute, readonly] long Count;
- //-------------------------------------------------------------------------
+
};
-//=============================================================================
+
}; };