summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2024-06-29 23:01:21 +0500
committerMike Kaganski <mike.kaganski@collabora.com>2024-06-29 22:47:38 +0200
commiteb56caec68477d11f281090a09c130a416626d88 (patch)
treeee92dee40e028f8035351f613f32be6548c4e0d6 /oovbaapi
parent203bd3f6744649638703d1b4f7f9d517226557ce (diff)
Fix VBA Table's *Padding properties type
In VBA, it is Single, not Double. See VBA documentation: https://learn.microsoft.com/en-us/office/vba/api/word.table.bottompadding https://learn.microsoft.com/en-us/office/vba/api/word.table.leftpadding https://learn.microsoft.com/en-us/office/vba/api/word.table.rightpadding https://learn.microsoft.com/en-us/office/vba/api/word.table.toppadding Change-Id: I9262462424fc11b5c062a61754ab0fab9103f549 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169763 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/ooo/vba/word/XTable.idl8
1 files changed, 4 insertions, 4 deletions
diff --git a/oovbaapi/ooo/vba/word/XTable.idl b/oovbaapi/ooo/vba/word/XTable.idl
index 683e859e4040..42b05950785c 100644
--- a/oovbaapi/ooo/vba/word/XTable.idl
+++ b/oovbaapi/ooo/vba/word/XTable.idl
@@ -55,10 +55,10 @@ interface XTable
any Rows([in] any aIndex );
any Columns([in] any aIndex );
- [attribute] double BottomPadding;
- [attribute] double LeftPadding;
- [attribute] double RightPadding;
- [attribute] double TopPadding;
+ [attribute] float BottomPadding;
+ [attribute] float LeftPadding;
+ [attribute] float RightPadding;
+ [attribute] float TopPadding;
};
}; }; };