diff options
author | Justin Luth <justin.luth@collabora.com> | 2022-10-13 07:10:17 -0400 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2022-10-14 09:38:54 +0200 |
commit | 8717a700e847330897b44aa40d1787c65dfa64be (patch) | |
tree | c6134095cd476df415414fa1fb50c14d854d6e1c | |
parent | 97ee126d69859d01abfbdb55450d27afb71bf9b1 (diff) |
sw vba: add doxygen comment for class SwWordBasic
Change-Id: I8b12845341e8754c0882411c19a57b7a46e05e98
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141290
Tested-by: Jenkins
Reviewed-by: Justin Luth <jluth@mail.com>
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
-rw-r--r-- | sw/source/ui/vba/vbawordbasic.hxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sw/source/ui/vba/vbawordbasic.hxx b/sw/source/ui/vba/vbawordbasic.hxx index 5933f104eb49..eb9ce5d500c2 100644 --- a/sw/source/ui/vba/vbawordbasic.hxx +++ b/sw/source/ui/vba/vbawordbasic.hxx @@ -21,6 +21,18 @@ class SwVbaApplication; +/** + * This is a representation of the WordBasic statements and functions + * that were available in Word version 6.0 and Word for Windows 95. + * + * It can be specified as "Application.WordBasic." or "WordBasic.". + * + * Starting with Word 2000, old macros were automatically converted + * into Visual Basic modules, and the WordBasic prefix was added where + * no VBA methods precisely corresponded. + * + * In other words, it is a compatibility shim. + */ class SwWordBasic : public cppu::WeakImplHelper<ooo::vba::word::XWordBasic> { private: |