include/svx/sdr/properties/defaultproperties.hxx | 2 +- include/svx/sdr/properties/properties.hxx | 4 ++-- include/svx/svdobj.hxx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-)
New commits: commit 31c5e451f57ad6172188fddfde5b66ead6f97627 Author: Andrea Gelmini <[email protected]> AuthorDate: Wed Jul 31 07:39:04 2024 +0200 Commit: Andrea Gelmini <[email protected]> CommitDate: Wed Jul 31 10:06:13 2024 +0200 Fix typo Change-Id: Ia3762c73a2787f404efb8f6005366283373641c8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171267 Tested-by: Jenkins Tested-by: Andrea Gelmini <[email protected]> Reviewed-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/include/svx/sdr/properties/defaultproperties.hxx b/include/svx/sdr/properties/defaultproperties.hxx index 15e73926b70c..868a141b5237 100644 --- a/include/svx/sdr/properties/defaultproperties.hxx +++ b/include/svx/sdr/properties/defaultproperties.hxx @@ -57,7 +57,7 @@ namespace sdr::properties // Internally react on ItemSet changes. The given span contains changed items. // If nDeletedWhich is not 0, it indicates a deleted item. - // @param bAdjustTextFrameWidthAndHeight pass false if you know it it safe to avoid the cost of doing + // @param bAdjustTextFrameWidthAndHeight pass false if you know it is safe to avoid the cost of doing // text layout right now. SAL_DLLPRIVATE virtual void ItemSetChanged(std::span< const SfxPoolItem* const > aChangedItems, sal_uInt16 nDeletedWhich, bool bAdjustTextFrameWidthAndHeight = true); diff --git a/include/svx/sdr/properties/properties.hxx b/include/svx/sdr/properties/properties.hxx index efcaf309676f..24f4baf380cd 100644 --- a/include/svx/sdr/properties/properties.hxx +++ b/include/svx/sdr/properties/properties.hxx @@ -111,12 +111,12 @@ namespace sdr::properties // Sets all items which are on state SfxItemState::SET in rSet at the local ItemSet. // Uses AllowItemChange(), ItemChange(), PostItemChange() and ItemSetChanged() calls. - // @param bAdjustTextFrameWidthAndHeight pass false if you know it it safe to avoid the cost of doing + // @param bAdjustTextFrameWidthAndHeight pass false if you know it is safe to avoid the cost of doing // text layout right now. virtual void SetObjectItemSet(const SfxItemSet& rSet, bool bAdjustTextFrameWidthAndHeight = true) = 0; // Set merged ItemSet. Normally, this maps to SetObjectItemSet(). - // @param bAdjustTextFrameWidthAndHeight pass false if you know it it safe to avoid the cost of doing + // @param bAdjustTextFrameWidthAndHeight pass false if you know it is safe to avoid the cost of doing // text layout right now. virtual void SetMergedItemSet(const SfxItemSet& rSet, bool bClearAllItems = false, bool bAdjustTextFrameWidthAndHeight = true); diff --git a/include/svx/svdobj.hxx b/include/svx/svdobj.hxx index bfc9107de165..85446e9b35d0 100644 --- a/include/svx/svdobj.hxx +++ b/include/svx/svdobj.hxx @@ -602,7 +602,7 @@ public: const SfxItemSet& GetMergedItemSet() const; void SetMergedItem(const SfxPoolItem& rItem); void ClearMergedItem(const sal_uInt16 nWhich = 0); - // @param bAdjustTextFrameWidthAndHeight pass false if you know it it safe to avoid the cost of doing + // @param bAdjustTextFrameWidthAndHeight pass false if you know it is safe to avoid the cost of doing // text layout right now. void SetMergedItemSet(const SfxItemSet& rSet, bool bClearAllItems = false, bool bAdjustTextFrameWidthAndHeight = true); const SfxPoolItem& GetMergedItem(const sal_uInt16 nWhich) const; @@ -950,7 +950,7 @@ protected: const SfxItemSet* getBackgroundFillSet() const; - // @param bAdjustTextFrameWidthAndHeight pass false if you know it it safe to avoid the cost of doing + // @param bAdjustTextFrameWidthAndHeight pass false if you know it is safe to avoid the cost of doing // text layout right now. virtual void InternalSetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr, bool bBroadcast, bool bAdjustTextFrameWidthAndHeight = true);
