summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2023-05-07 18:21:38 +0200
committerJulien Nabet <serval2412@yahoo.fr>2023-05-07 18:24:26 +0200
commit45aa6f7ca99fff8388ade3484f5d5458a84af015 (patch)
treeaff00d412035a8b431b1876f0618b845ca3582ed /framework
parent12e0178d4a450386eac6864cb98bf006cef93b85 (diff)
framework/inc/taskcreatordefs.hxx: these are bool and not sal_Bool since 2014
See a6287e21f1dab6ae382c24ceeb4c0212b7cad2d7 "framework: sal_Bool->bool" + /opt/lo/bin/clang-format -i framework/inc/taskcreatordefs.hxx as requested when submitting patch with logerrit Change-Id: Icb21563590a4104f3cb678db44fc4b5f1d884764 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151475 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/taskcreatordefs.hxx17
1 files changed, 8 insertions, 9 deletions
diff --git a/framework/inc/taskcreatordefs.hxx b/framework/inc/taskcreatordefs.hxx
index 262de19f56fb..b7a223527d4f 100644
--- a/framework/inc/taskcreatordefs.hxx
+++ b/framework/inc/taskcreatordefs.hxx
@@ -29,13 +29,13 @@ inline constexpr OUStringLiteral ARGUMENT_PARENTFRAME = u"ParentFrame"; // XFram
*/
inline constexpr OUStringLiteral ARGUMENT_FRAMENAME = u"FrameName"; // OUString
-/// [sal_Bool] If it's set to sal_True we will make the new created frame visible.
-inline constexpr OUStringLiteral ARGUMENT_MAKEVISIBLE = u"MakeVisible"; // sal_Bool
+/// [bool] If it's set to sal_True we will make the new created frame visible.
+inline constexpr OUStringLiteral ARGUMENT_MAKEVISIBLE = u"MakeVisible"; // bool
-/** [sal_Bool] If not "ContainerWindow" property is set it force creation of a
+/** [bool] If not "ContainerWindow" property is set it force creation of a
top level window as new container window.
*/
-inline constexpr OUStringLiteral ARGUMENT_CREATETOPWINDOW = u"CreateTopWindow"; // sal_Bool
+inline constexpr OUStringLiteral ARGUMENT_CREATETOPWINDOW = u"CreateTopWindow"; // bool
/// [Rectangle] Place the new created frame on this place and resize the container window.
inline constexpr OUStringLiteral ARGUMENT_POSSIZE = u"PosSize"; // Rectangle
@@ -43,17 +43,16 @@ inline constexpr OUStringLiteral ARGUMENT_POSSIZE = u"PosSize"; // Rectangle
/// [XWindow] an outside created window, used as container window of the new created frame.
inline constexpr OUStringLiteral ARGUMENT_CONTAINERWINDOW = u"ContainerWindow"; // XWindow
-/** [sal_Bool] enable/disable special mode, where this frame will be part of
+/** [bool] enable/disable special mode, where this frame will be part of
the persistent window state feature suitable for any office module window
*/
inline constexpr OUStringLiteral ARGUMENT_SUPPORTPERSISTENTWINDOWSTATE
- = u"SupportPersistentWindowState"; // sal_Bool
+ = u"SupportPersistentWindowState"; // bool
-/** [sal_Bool] enable/disable special mode, where the title bar of our
+/** [bool] enable/disable special mode, where the title bar of our
the new created frame will be updated automatically.
Default = ON !
*/
-inline constexpr OUStringLiteral ARGUMENT_ENABLE_TITLEBARUPDATE
- = u"EnableTitleBarUpdate"; // sal_Bool
+inline constexpr OUStringLiteral ARGUMENT_ENABLE_TITLEBARUPDATE = u"EnableTitleBarUpdate"; // bool
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */