framework/inc/taskcreatordefs.hxx |   17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

New commits:
commit 45aa6f7ca99fff8388ade3484f5d5458a84af015
Author:     Julien Nabet <serval2...@yahoo.fr>
AuthorDate: Sun May 7 18:21:38 2023 +0200
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Sun May 7 18:24:26 2023 +0200

    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 <serval2...@yahoo.fr>
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

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: */

Reply via email to