[Libreoffice-bugs] [Bug 155092] UI: Erratic behaviour after resizing spreadsheet window size

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155092

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest

--- Comment #3 from Telesto  ---
(In reply to Patrick Luby from comment #2)
> I am not sure where to start looking for this bug, but maybe someone else
> will see something in my sample that I am missing.

No clue. It's not MacOS Ventura specific
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 066b23115c2a360507e306a88da572554daefab7
CPU threads: 8; OS: Mac OS X 12.6.3; UI render: Skia/Raster; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

Debug info shows

warn:sfx.control:75313:7973284:sfx2/source/control/dispatch.cxx:1211:
Childwindow slot missing: 26190

No repro with
Version: 7.0.0.3
Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
CPU threads: 8; OS: Mac OS X 10.16; UI render: default; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154548] User defined page style disappears when exporting to docx/xlsx, closing and reopening

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154548

Mike Kaganski  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|UNCONFIRMED |RESOLVED

--- Comment #12 from Mike Kaganski  ---
(In reply to Roman Kuznetsov from comment #10)
> DOCX doesn't support the page styles if I remember right.

Yes, you are absolutely correct. Both Word and Excel only can configure page
settings ad hoc, and have no concept of page styles (a named set of settings,
that one can prepare, and then apply at will).

NOTABUG.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108576] [META] Writer page style bugs and enhancements

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108576
Bug 108576 depends on bug 154548, which changed state.

Bug 154548 Summary: User defined page style disappears when exporting to 
docx/xlsx, closing and reopening
https://bugs.documentfoundation.org/show_bug.cgi?id=154548

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: svtools/source

2023-05-05 Thread Mike Kaganski (via logerrit)
 svtools/source/control/valueacc.cxx |6 +++---
 svtools/source/control/valueset.cxx |4 ++--
 svtools/source/uno/unoimap.cxx  |   10 +-
 3 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 6276e7c28ed53670fb911ec2bd97a6696583d36b
Author: Mike Kaganski 
AuthorDate: Sun Apr 23 20:15:01 2023 +0300
Commit: Mike Kaganski 
CommitDate: Sat May 6 07:25:32 2023 +0200

Use getXWeak in svtools

Change-Id: Ia985e96eb441d03ace050f4f184a899fba897830
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150873
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/svtools/source/control/valueacc.cxx 
b/svtools/source/control/valueacc.cxx
index 1ba2c79dbbab..a14676d403fa 100644
--- a/svtools/source/control/valueacc.cxx
+++ b/svtools/source/control/valueacc.cxx
@@ -387,7 +387,7 @@ void ValueItemAcc::FireAccessibleEvent( short nEventId, 
const uno::Any& rOldValu
 accessibility::AccessibleEventObject   
 aEvtObject;
 
 aEvtObject.EventId = nEventId;
-aEvtObject.Source = static_cast(this);
+aEvtObject.Source = getXWeak();
 aEvtObject.NewValue = rNewValue;
 aEvtObject.OldValue = rOldValue;
 
@@ -418,7 +418,7 @@ void ValueSetAcc::FireAccessibleEvent( short nEventId, 
const uno::Any& rOldValue
 accessibility::AccessibleEventObject   
 aEvtObject;
 
 aEvtObject.EventId = nEventId;
-aEvtObject.Source = static_cast(this);
+aEvtObject.Source = getXWeak();
 aEvtObject.NewValue = rNewValue;
 aEvtObject.OldValue = rOldValue;
 
@@ -952,7 +952,7 @@ void ValueSetAcc::ThrowIfDisposed()
 SAL_WARN("svx", "Calling disposed object. Throwing exception:");
 throw lang::DisposedException (
 "object has been already disposed",
-static_cast(this));
+getXWeak());
 }
 else
 {
diff --git a/svtools/source/control/valueset.cxx 
b/svtools/source/control/valueset.cxx
index 76bce45c8de3..933f8d42ca49 100644
--- a/svtools/source/control/valueset.cxx
+++ b/svtools/source/control/valueset.cxx
@@ -804,7 +804,7 @@ void ValueSet::SelectItem( sal_uInt16 nItemId )
 {
 Any aOldAny;
 Any aNewAny;
-aOldAny <<= 
Reference(static_cast(pItemAcc));
+aOldAny <<= Reference(getXWeak(pItemAcc));
 
ImplFireAccessibleEvent(AccessibleEventId::ACTIVE_DESCENDANT_CHANGED, aOldAny, 
aNewAny );
 }
 }
@@ -827,7 +827,7 @@ void ValueSet::SelectItem( sal_uInt16 nItemId )
 {
 Any aOldAny;
 Any aNewAny;
-aNewAny <<= 
Reference(static_cast(pItemAcc));
+aNewAny <<= Reference(getXWeak(pItemAcc));
 ImplFireAccessibleEvent(AccessibleEventId::ACTIVE_DESCENDANT_CHANGED, 
aOldAny, aNewAny);
 }
 
diff --git a/svtools/source/uno/unoimap.cxx b/svtools/source/uno/unoimap.cxx
index 64d7521fc63b..210e580818c0 100644
--- a/svtools/source/uno/unoimap.cxx
+++ b/svtools/source/uno/unoimap.cxx
@@ -671,27 +671,27 @@ void SvUnoImageMap::fillImageMap( ImageMap& rMap ) const
 
 Reference< XInterface > SvUnoImageMapRectangleObject_createInstance( const 
SvEventDescription* pSupportedMacroItems )
 {
-return static_cast(new SvUnoImageMapObject( 
IMapObjectType::Rectangle, pSupportedMacroItems ));
+return getXWeak(new SvUnoImageMapObject( IMapObjectType::Rectangle, 
pSupportedMacroItems ));
 }
 
 Reference< XInterface > SvUnoImageMapCircleObject_createInstance( const 
SvEventDescription* pSupportedMacroItems )
 {
-return static_cast(new SvUnoImageMapObject( 
IMapObjectType::Circle, pSupportedMacroItems ));
+return getXWeak(new SvUnoImageMapObject( IMapObjectType::Circle, 
pSupportedMacroItems ));
 }
 
 Reference< XInterface > SvUnoImageMapPolygonObject_createInstance( const 
SvEventDescription* pSupportedMacroItems )
 {
-return static_cast(new SvUnoImageMapObject( 
IMapObjectType::Polygon, pSupportedMacroItems ));
+return getXWeak(new SvUnoImageMapObject( IMapObjectType::Polygon, 
pSupportedMacroItems ));
 }
 
 Reference< XInterface > SvUnoImageMap_createInstance()
 {
-return static_cast(new SvUnoImageMap);
+return getXWeak(new SvUnoImageMap);
 }
 
 Reference< XInterface > SvUnoImageMap_createInstance( const ImageMap& rMap, 
const SvEventDescription* pSupportedMacroItems )
 {
-return static_cast(new SvUnoImageMap( rMap, pSupportedMacroItems 
));
+return getXWeak(new SvUnoImageMap( rMap, pSupportedMacroItems ));
 }
 
 bool SvUnoImageMap_fillImageMap( const Reference< XInterface >& xImageMap, 
ImageMap& rMap )


[Libreoffice-commits] core.git: 2 commits - linguistic/source oox/source

2023-05-05 Thread Mike Kaganski (via logerrit)
 linguistic/source/gciterator.cxx   |2 +-
 oox/source/export/ColorPropertySet.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d590454062cfef1b6ede8b75311610874f63e5fa
Author: Mike Kaganski 
AuthorDate: Sun Apr 23 20:14:16 2023 +0300
Commit: Mike Kaganski 
CommitDate: Sat May 6 07:25:24 2023 +0200

Use getXWeak in oox

Change-Id: I8211a1fe19bbd900f866c46d5b7ec68a37bc38cf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150859
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/oox/source/export/ColorPropertySet.cxx 
b/oox/source/export/ColorPropertySet.cxx
index a0998f195fe4..714870d93e36 100644
--- a/oox/source/export/ColorPropertySet.cxx
+++ b/oox/source/export/ColorPropertySet.cxx
@@ -67,7 +67,7 @@ Property SAL_CALL 
lcl_ColorPropertySetInfo::getPropertyByName( const OUString& a
 {
 if( aName == m_aColorPropName )
 return m_aColorProp;
-throw UnknownPropertyException( m_aColorPropName, static_cast< uno::XWeak 
* >( this ));
+throw UnknownPropertyException( m_aColorPropName, getXWeak());
 }
 
 sal_Bool SAL_CALL lcl_ColorPropertySetInfo::hasPropertyByName( const OUString& 
Name )
commit ee3b2907eae61fb46fb6fe1511fafaa2a2b60bd3
Author: Mike Kaganski 
AuthorDate: Sun Apr 23 20:14:13 2023 +0300
Commit: Mike Kaganski 
CommitDate: Sat May 6 07:25:16 2023 +0200

Use getXWeak in linguistic

Change-Id: I1202763917dab414e8bc540bd89d736e74fa1450
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150858
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/linguistic/source/gciterator.cxx b/linguistic/source/gciterator.cxx
index edd028e31e28..1cd8883705c7 100644
--- a/linguistic/source/gciterator.cxx
+++ b/linguistic/source/gciterator.cxx
@@ -956,7 +956,7 @@ void SAL_CALL 
GrammarCheckingIterator::processLinguServiceEvent(
 
 try
 {
- uno::Reference< uno::XInterface > xThis( static_cast< OWeakObject * 
>(this) );
+ uno::Reference< uno::XInterface > xThis( getXWeak() );
  linguistic2::LinguServiceEvent aEvent( xThis, 
linguistic2::LinguServiceEventFlags::PROOFREAD_AGAIN );
  m_aNotifyListeners.notifyEach(
 
::XLinguServiceEventListener::processLinguServiceEvent,


[Libreoffice-commits] core.git: sal/rtl

2023-05-05 Thread Mike Kaganski (via logerrit)
 sal/rtl/string.cxx  |6 +++---
 sal/rtl/strtmpl.hxx |   44 +++-
 sal/rtl/ustring.cxx |6 +++---
 3 files changed, 17 insertions(+), 39 deletions(-)

New commits:
commit 4cedea47f9f97ec04e25e36cea38a2fb536bb1bc
Author: Mike Kaganski 
AuthorDate: Fri May 5 20:58:24 2023 +0200
Commit: Mike Kaganski 
CommitDate: Sat May 6 07:24:57 2023 +0200

Simplify rtl_(u)string_newReplace implementation

and unify with *ToAscii(Lower/Upper)Case

Change-Id: I06999b4f5f34abc8da2860b7f9e279608edb40dc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151381
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sal/rtl/string.cxx b/sal/rtl/string.cxx
index 23196e528682..06cde3c4faad 100644
--- a/sal/rtl/string.cxx
+++ b/sal/rtl/string.cxx
@@ -638,19 +638,19 @@ void SAL_CALL 
rtl_string_newReplaceStrAt_WithLength(rtl_String** ppThis, rtl_Str
 void SAL_CALL rtl_string_newReplace(rtl_String** ppThis, rtl_String* pStr, 
char cOld, char cNew)
 SAL_THROW_EXTERN_C()
 {
-rtl::str::newReplace(ppThis, pStr, cOld, cNew);
+rtl::str::newReplaceChars(ppThis, pStr, rtl::str::FromTo(cOld, cNew));
 }
 
 void SAL_CALL rtl_string_newToAsciiLowerCase(rtl_String** ppThis, rtl_String* 
pStr)
 SAL_THROW_EXTERN_C()
 {
-rtl::str::newReplaceChars(ppThis, pStr);
+rtl::str::newReplaceChars(ppThis, pStr, rtl::str::toAsciiLower);
 }
 
 void SAL_CALL rtl_string_newToAsciiUpperCase(rtl_String** ppThis, rtl_String* 
pStr)
 SAL_THROW_EXTERN_C()
 {
-rtl::str::newReplaceChars(ppThis, pStr);
+rtl::str::newReplaceChars(ppThis, pStr, rtl::str::toAsciiUpper);
 }
 
 void SAL_CALL rtl_string_newTrim(rtl_String** ppThis, rtl_String* pStr) 
SAL_THROW_EXTERN_C()
diff --git a/sal/rtl/strtmpl.hxx b/sal/rtl/strtmpl.hxx
index ba182f87817e..cbbef030198f 100644
--- a/sal/rtl/strtmpl.hxx
+++ b/sal/rtl/strtmpl.hxx
@@ -87,35 +87,20 @@ template  struct with_length
 auto end() const { return p + len; }
 };
 
-struct ToAsciiLower
+template  
struct CaseReplace
 {
-template  static bool Applicable(C c)
-{
-return rtl::isAsciiUpperCase(UChar(c));
-}
-template  static C Replace(C c)
-{
-return rtl::toAsciiLowerCase(UChar(c));
-}
-} constexpr toAsciiLower;
-
-struct ToAsciiUpper
-{
-template  static bool Applicable(C c)
-{
-return rtl::isAsciiLowerCase(UChar(c));
-}
-template  static C Replace(C c)
-{
-return rtl::toAsciiUpperCase(UChar(c));
-}
-} constexpr toAsciiUpper;
+static auto Applicable() { return [](auto c) { return 
fApplicable(UChar(c)); }; }
+template  static C Replace(C c) { return fReplace(UChar(c)); }
+};
+constexpr CaseReplace 
toAsciiLower;
+constexpr CaseReplace 
toAsciiUpper;
 
 template  struct FromTo
 {
 C from;
 C to;
 FromTo(C cFrom, C cTo) : from(cFrom), to(cTo) {}
+auto Applicable() const { return [this](C c) { return c == from; }; }
 C Replace(C c) const { return c == from ? to : c; }
 };
 
@@ -1112,14 +1097,14 @@ void newReplaceStrAt(rtl_tString** ppThis, rtl_tString* 
pStr, sal_Int32 nIndex,
 
 /* --- */
 
-template 
-void newReplaceChars(rtl_tString** ppThis, rtl_tString* pStr)
+template 
+void newReplaceChars(rtl_tString** ppThis, rtl_tString* pStr, Replacer 
replacer)
 {
 assert(ppThis);
 assert(pStr);
 
 const auto pEnd = pStr->buffer + pStr->length;
-auto pCharStr = std::find_if(pStr->buffer, pEnd, [](auto c) { return 
Traits::Applicable(c); });
+auto pCharStr = std::find_if(pStr->buffer, pEnd, replacer.Applicable());
 if (pCharStr != pEnd)
 {
 rtl_tString* pOrg = *ppThis;
@@ -1133,7 +1118,7 @@ void newReplaceChars(rtl_tString** ppThis, rtl_tString* 
pStr)
 /* replace/copy rest of the string */
 do
 {
-*pNewCharStr = Traits::Replace(*pCharStr);
+*pNewCharStr = replacer.Replace(*pCharStr);
 pNewCharStr++;
 pCharStr++;
 } while (pCharStr != pEnd);
@@ -1367,13 +1352,6 @@ void newReplaceAllFromIndex(S** s, S* s1, CharTypeFrom 
const* from, sal_Int32 fr
 RTL_LOG_STRING_NEW(*s);
 }
 
-template 
-void newReplace(rtl_tString** ppThis, rtl_tString* pStr,
-Char_T cOld, Char_T cNew)
-{
-return newReplaceAllFromIndex(ppThis, pStr, , 1, , 1, 0);
-}
-
 template 
 void newReplaceFirst(rtl_tString** s, rtl_tString* s1, C1 const* from, 
sal_Int32 fromLength,
  C2 const* to, sal_Int32 toLength, sal_Int32& fromIndex)
diff --git a/sal/rtl/ustring.cxx b/sal/rtl/ustring.cxx
index fc23cf37a338..c863be00512b 100644
--- a/sal/rtl/ustring.cxx
+++ b/sal/rtl/ustring.cxx
@@ -1272,19 +1272,19 @@ void SAL_CALL 
rtl_uString_newReplaceStrAtUtf16L(rtl_uString** ppThis, rtl_uStrin
 void SAL_CALL rtl_uString_newReplace(rtl_uString** ppThis, rtl_uString* pStr, 
sal_Unicode cOld,
  

[Libreoffice-commits] core.git: 3 commits - include/rtl sal/rtl

2023-05-05 Thread Mike Kaganski (via logerrit)
 include/rtl/strbuf.hxx  |   75 --
 include/rtl/ustrbuf.hxx |  103 ++--
 sal/rtl/strtmpl.hxx |   12 -
 3 files changed, 59 insertions(+), 131 deletions(-)

New commits:
commit 1db728a70cd2378bfd31c5ea76facd223175f823
Author: Mike Kaganski 
AuthorDate: Fri May 5 20:54:37 2023 +0200
Commit: Mike Kaganski 
CommitDate: Sat May 6 07:24:52 2023 +0200

Simplify a bit

No need to use different temporary objects here

Change-Id: I1b47cae8b80adea5426c780003bddf68310a0060
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151380
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sal/rtl/strtmpl.hxx b/sal/rtl/strtmpl.hxx
index aa126faac1e8..ba182f87817e 100644
--- a/sal/rtl/strtmpl.hxx
+++ b/sal/rtl/strtmpl.hxx
@@ -724,16 +724,6 @@ template  T toInt(S str, sal_Int16 
nRadix)
 /* === */
 
 template  using Char_T = 
std::remove_extent_t;
-template  struct STRINGDATA_;
-template <> struct STRINGDATA_
-{
-using T = rtl_String;
-};
-template <> struct STRINGDATA_
-{
-using T = rtl_uString;
-};
-template  using STRINGDATA = typename STRINGDATA_::T;
 
 template  rtl_tString* Alloc(sal_Int32 nLen)
 {
@@ -1756,7 +1746,7 @@ void doubleToString(rtl_tString** pResult, sal_Int32* 
pResultCapacity, sal_Int32
 template  sal_Int32 SAL_CALL 
valueOfFP(C* pStr, T f)
 {
 assert(pStr);
-STRINGDATA* pResult = nullptr;
+rtl_String* pResult = nullptr;
 doubleToString(, nullptr, 0, f, rtl_math_StringFormat_G,
maxLen - std::size("-x.E-xxx") + 1, '.', nullptr, 0, true);
 const sal_Int32 nLen = pResult->length;
commit e15e809e331e9fdb7a7ed46937f2ad5f83e27dc5
Author: Mike Kaganski 
AuthorDate: Fri May 5 16:18:28 2023 +0200
Commit: Mike Kaganski 
CommitDate: Sat May 6 07:24:47 2023 +0200

Simplify O(U)StringBuffer's append - delegate to insert

This limits the number of places that know how to deal
with a given type.

O(U)StringNumber doesn't need an own overload, because
it has operator basic_string_view.

Change-Id: I6e82dc2cef103b578153fbc3ce16e96247ea9d74
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151379
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/include/rtl/strbuf.hxx b/include/rtl/strbuf.hxx
index cb842bb5839e..780923ebf67b 100644
--- a/include/rtl/strbuf.hxx
+++ b/include/rtl/strbuf.hxx
@@ -348,8 +348,7 @@ public:
 template
 OStringBuffer & operator =(OStringNumber && n)
 {
-*this = OStringBuffer( std::move ( n ));
-return *this;
+return operator =(std::string_view(n));
 }
 #endif
 
@@ -543,7 +542,7 @@ public:
  */
 OStringBuffer & append(const OString )
 {
-return append( str.getStr(), str.getLength() );
+return insert(getLength(), str);
 }
 #endif
 
@@ -561,13 +560,13 @@ public:
 template< typename T >
 typename libreoffice_internal::CharPtrDetector< T, OStringBuffer& >::Type 
append( const T& str )
 {
-return append( str, rtl_str_getLength( str ) );
+return insert(getLength(), str);
 }
 
 template< typename T >
 typename libreoffice_internal::NonConstCharArrayDetector< T, 
OStringBuffer& >::Type append( T& str )
 {
-return append( str, rtl_str_getLength( str ) );
+return insert(getLength(), str);
 }
 
 /**
@@ -578,12 +577,7 @@ public:
 template< typename T >
 typename libreoffice_internal::ConstCharArrayDetector< T, OStringBuffer& 
>::Type append( T& literal )
 {
-RTL_STRING_CONST_FUNCTION
-assert(
-libreoffice_internal::ConstCharArrayDetector::isValid(literal));
-return append(
-
libreoffice_internal::ConstCharArrayDetector::toPointer(literal),
-libreoffice_internal::ConstCharArrayDetector::length);
+return insert(getLength(), literal);
 }
 
 /**
@@ -601,9 +595,7 @@ public:
  */
 OStringBuffer & append( const char * str, sal_Int32 len)
 {
-assert( len == 0 || str != NULL ); // cannot assert that in 
rtl_stringbuffer_insert
-rtl_stringbuffer_insert( , , getLength(), str, len );
-return *this;
+return insert(getLength(), str, len);
 }
 
 #ifdef LIBO_INTERNAL_ONLY // "RTL_FAST_STRING"
@@ -615,33 +607,18 @@ public:
 OStringBuffer& append( OStringConcat< T1, T2 >&& c )
 {
 sal_Int32 l = c.length();
-if( l == 0 )
-return *this;
-l += pData->length;
-rtl_stringbuffer_ensureCapacity( , , l );
-char* end = c.addData( pData->buffer + pData->length );
-*end = '\0';
-pData->length = l;
+if (l != 0)
+c.addData(appendUninitialized(l));
 return *this;
 }
 
-/**
- @overload
- @internal
-*/
-template< std::size_t N >
-

[Libreoffice-commits] core.git: include/rtl

2023-05-05 Thread Mike Kaganski (via logerrit)
 include/rtl/strbuf.hxx  |2 +-
 include/rtl/ustrbuf.hxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 7dbc0e991f65b51f2033b8c8c60df055926d37b9
Author: Mike Kaganski 
AuthorDate: Fri May 5 07:59:00 2023 +0200
Commit: Mike Kaganski 
CommitDate: Sat May 6 07:24:20 2023 +0200

[API CHANGE] Fix O(U)StringBuffer::insert taking float

It was broken from the start: it was introduced like this already
in commit 9399c662f36c385b0c705eb34e636a9aec450282
(initial import, 2000-09-18).

Creating a temporary copy as a return value makes no sense.

Change-Id: I6910d426c2437038ec4979be2c44cd72146dec9c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151375
Reviewed-by: Stephan Bergmann 
Tested-by: Jenkins

diff --git a/include/rtl/strbuf.hxx b/include/rtl/strbuf.hxx
index b448228d6053..e5ae1ebd0a7b 100644
--- a/include/rtl/strbuf.hxx
+++ b/include/rtl/strbuf.hxx
@@ -1030,7 +1030,7 @@ public:
 @param  fa float.
 @return this string buffer.
  */
-OStringBuffer insert(sal_Int32 offset, float f)
+OStringBuffer & insert(sal_Int32 offset, float f)
 {
 char sz[RTL_STR_MAX_VALUEOFFLOAT];
 return insert( offset, sz, rtl_str_valueOfFloat( sz, f ) );
diff --git a/include/rtl/ustrbuf.hxx b/include/rtl/ustrbuf.hxx
index 578df163d819..363b4f24757f 100644
--- a/include/rtl/ustrbuf.hxx
+++ b/include/rtl/ustrbuf.hxx
@@ -1286,7 +1286,7 @@ public:
 @return this string buffer.
 @exception  StringIndexOutOfBoundsException  if the offset is invalid.
  */
-OUStringBuffer insert(sal_Int32 offset, float f)
+OUStringBuffer & insert(sal_Int32 offset, float f)
 {
 sal_Unicode sz[RTL_USTR_MAX_VALUEOFFLOAT];
 return insert( offset, sz, rtl_ustr_valueOfFloat( sz, f ) );


[Libreoffice-bugs] [Bug 154942] Bulleted list in roman numerals - entered text prefixed by tab for some items in the enumeration

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154942

Declan Vize  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #3 from Declan Vize  ---
I've added a sample file

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154942] Bulleted list in roman numerals - entered text prefixed by tab for some items in the enumeration

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154942

--- Comment #2 from Declan Vize  ---
Created attachment 187105
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187105=edit
Sample writer document

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155160] Will not open other drive on the PC

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155160

BogdanB  changed:

   What|Removed |Added

Version|5.3.3.2 release |7.5.3.2 release
 CC||buzea.bog...@libreoffice.or
   ||g

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108567] [META] Splash screen and initialization related bugs and enhancements

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108567
Bug 108567 depends on bug 134941, which changed state.

Bug 134941 Summary: Provide a scrollbar for Start Center when bigger than 
desktop resolution for large scale factor
https://bugs.documentfoundation.org/show_bug.cgi?id=134941

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sfx2/uiconfig

2023-05-05 Thread Heiko Tietze (via logerrit)
 sfx2/uiconfig/ui/startcenter.ui |  685 
 1 file changed, 349 insertions(+), 336 deletions(-)

New commits:
commit 77ed6380dda73a9716f48f73c3ff730380557a09
Author: Heiko Tietze 
AuthorDate: Fri May 5 12:41:54 2023 +0200
Commit: Heiko Tietze 
CommitDate: Sat May 6 06:54:07 2023 +0200

Resolves tdf#134941 - Fix size issue on start center

Very tiny screens or huge scaling may result in cut-off
content at the app pane. The scrollbar should solve this.

Change-Id: I33e6fa3b428c8643f8024bb1287d93dfe4f3b1bd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151422
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git a/sfx2/uiconfig/ui/startcenter.ui b/sfx2/uiconfig/ui/startcenter.ui
index 8120556f3d22..d8d27b8fe6ad 100644
--- a/sfx2/uiconfig/ui/startcenter.ui
+++ b/sfx2/uiconfig/ui/startcenter.ui
@@ -103,352 +103,365 @@
 0
 none
 
-  
+  
 True
-False
-vertical
+True
+in
 
-  
+  
 True
 False
-True
-vertical
-3
-
-  
-_Open File
-True
-True
-True
-6
-6
-6
-open_all_image
-none
-True
-0
-True
-  
-  
-False
-True
-0
-  
-
-
-  
-Remote File_s
-True
-True
-True
-6
-6
-open_all_image2
-none
-True
-0
-True
-  
-  
-False
-True
-1
-  
-
-
-  
-True
-False
-6
-6
-  
-  
-False
-True
-2
-  
-
-
-  
-_Recent Documents
-True
-True
-True
-6
-6
-open_all_image1
-none
-True
-0
-True
-  
-  
-False
-True
-3
-  
-
-
-  
-T_emplates
-True
-True
-True
-6
-6
-templates_all_image
-none
-True
-0
-True
-  
-  
-False
-True
-4
-  
-
-
-  
-True
-False
-6
-6
-  
-  
-False
-True
-5
-  
-
-
-  
-True
-False
-12
-6
-Create:
-0
-  
-  
-False
-True
-6
-  
-
-
-  
-_Writer Document
-True
-True
-True
-6
-6
-writer_all_image
-none
- 

[Libreoffice-bugs] [Bug 154942] Bulleted list in roman numerals - entered text prefixed by tab for some items in the enumeration

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154942

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Dieter  ---
Declan, please provide some steps to reproduce or attach a sample document.
This will make it easier to reproduce the bug. Thank you.
=> NEEDINFO

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150996] [XLSX] Cell colors and number formats are not imported by LibreOffice

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150996

BogdanB  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #6 from BogdanB  ---
The same as Excel

Verified with
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 0f2581204a70038ed7ca78089a9bd96d158e02c0
CPU threads: 16; OS: Linux 5.19; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 101368] Print selected area does not wrap text

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101368

--- Comment #12 from Houman  ---
Bug still present with the provided file, page "étapes de dissolution"
selecting all celles, then printing, no matter what printer is selected, but
including pdf.
tried with the latest version of Libre Office 7.5.3.2 X86_64 
today (06 May 2023)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155097] Glyph replacement for foreign digits

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155097

--- Comment #4 from خالد حسني  ---
(In reply to Eyal Rozenberg from comment #3)
> I should mention I can reproduce this with:
> 
> Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
> Build ID: 5cd9de202765e243e41416802f3e4486b8a96f16
> CPU threads: 4; OS: Linux 6.1; UI render: default; VCL: qt5 (qfont+xcb)
> Locale: he-IL (en_IL); UI: en-US
> 
> but _can't_ reproduce this if I switch to gtk.

GTK vcl plugin probably draws the whole widget including the text natively, for
other VCL backends LO draws the text and hence the bug shows up.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155161] Default instance of fonts with CFF2 table is exported blank in PDF

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155161

خالد حسني  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||0149

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 130149] Text using the Cantarell variable font is not printed or PDF exported in some Linux (comment 8 and comment 26)

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130149

خالد حسني  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||5161

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103378] [META] PDF export bugs and enhancements

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103378

خالد حسني  changed:

   What|Removed |Added

 Depends on||155161


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=155161
[Bug 155161] Default instance of fonts with CFF2 table is exported blank in PDF
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

خالد حسني  changed:

   What|Removed |Added

 Depends on||155161


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=155161
[Bug 155161] Default instance of fonts with CFF2 table is exported blank in PDF
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155161] Default instance of fonts with CFF2 table is exported blank in PDF

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155161

خالد حسني  changed:

   What|Removed |Added

 Blocks||71732, 103378


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71732
[Bug 71732] [META] Bugs related to text rendering, typography and font features
in LO
https://bugs.documentfoundation.org/show_bug.cgi?id=103378
[Bug 103378] [META] PDF export bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155161] New: Default instance of fonts with CFF2 table is exported blank in PDF

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155161

Bug ID: 155161
   Summary: Default instance of fonts with CFF2 table is exported
blank in PDF
   Product: LibreOffice
   Version: 7.5.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kha...@aliftype.com

See https://bugs.documentfoundation.org/show_bug.cgi?id=130149#c34 and
subsequent comments. I suspect that because this is the default instance, we
are not treating it as variable font (probably because FontConfig is not
reporting any variation settings for it). Anyway a font with CFF2 even if not
variable should go through the variable fonts path because it can’t otherwise
be exported to PDF.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154548] User defined page style disappears when exporting to docx/xlsx, closing and reopening

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154548

--- Comment #11 from Roman  ---
Created attachment 187104
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187104=edit
style_list

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 130149] Text using the Cantarell variable font is not printed or PDF exported in some Linux (comment 8 and comment 26)

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130149

--- Comment #39 from خالد حسني  ---
Thanks for the PDF. I think I know what is going on and it is probably
Linux-specific.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155160] New: Will not open other drive on the PC

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155160

Bug ID: 155160
   Summary: Will not open other drive on the PC
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gpmain...@gmail.com

Description:
I have a desktop PC 4 core, @ 3.40GHz, 32Gigs memory OS 64-bit,
Dual boot Ubuntu 22.04.02 LTS, GNOME version 42.5 on one drive
  Windows 10 on its own drive.
I have a DATA drive that serves both drives.
I have run LibreOffice 7.3.7.2 (still operational)
   7.4.5.1 (Ubuntu didn't like it but it worked for me)
Both of these versions accessed other drives on my PC, including the DATA
drive.
I upgraded with SNAP to 7.5.3.2.

The program will not access the DATA drive, only the Home/Linux/Documents.
I went to Tools/Options and selected Paths.
I found the Documents path;  clicked on it and selected Edit, no other drive
can be accessed for a change. Why?
The other versions worked well in finding the DATA drive plus.
Note also, 7.5 would not access a thumb drive.
So, what am I missing? I did make sure the DATA drive and thumb drive were
mounted.
I do not use outside sources for storage and I do not have a network. 
OK, I am up to suggestions or is this a missed item of programing?

And finally an onboard DATA drive is and has always worked when the OS drives
have failed.
I am living proof this can happen.
Hope I provided enough info of the issue.
GLenn


Steps to Reproduce:
1. File - Open
2. Other Locations
3. Computer (This is all that shows up, which is the Linux drive.)

Actual Results:
Same as the steps.

Expected Results:
Same


Reproducible: Always


User Profile Reset: Yes

Additional Info:
As in previous versions listed in my description, give a choice of another
location/drive as another option.

Version: 7.5.3.2 (X86_64) / LibreOffice Community
Build ID: 67bf5ab3e8553b11738d1302ab7051a12dd8b40d
CPU threads: 4; OS: Linux 5.19; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 129847] ### indication of "cell too narrow" should additionally show "more content" red arrow

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129847

Tomaz Vajngerl  changed:

   What|Removed |Added

   Assignee|dipamt1...@gmail.com|libreoffice-b...@lists.free
   ||desktop.org

--- Comment #11 from Tomaz Vajngerl  ---
This seems to be a gerrit patch for this issue:
https://gerrit.libreoffice.org/c/core/+/150703

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 129847] ### indication of "cell too narrow" should additionally show "more content" red arrow

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129847

Tomaz Vajngerl  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sc/inc sc/source sc/uiconfig

2023-05-05 Thread Bartosz Kosiorek (via logerrit)
 sc/inc/strings.hrc |3 
 sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx |   32 
+++---
 sc/uiconfig/scalc/ui/randomnumbergenerator.ui  |1 
 3 files changed, 28 insertions(+), 8 deletions(-)

New commits:
commit 793cc7d2ef5967af90a6810e597e1e12bd42777c
Author: Bartosz Kosiorek 
AuthorDate: Fri May 5 20:15:19 2023 +0200
Commit: Tomaž Vajngerl 
CommitDate: Sat May 6 03:54:25 2023 +0200

tdf#154872 Add Poisson distribution to Random Number Generators

Change-Id: I325a76423a98a405dfb0f69fbd89eb9253c36390
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151439
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/sc/inc/strings.hrc b/sc/inc/strings.hrc
index e860263424be..6c85b3d617da 100644
--- a/sc/inc/strings.hrc
+++ b/sc/inc/strings.hrc
@@ -266,9 +266,10 @@
 #define STR_DISTRIBUTION_CAUCHY 
NC_("STR_DISTRIBUTION_CAUCHY", "Cauchy")
 #define STR_DISTRIBUTION_BERNOULLI  
NC_("STR_DISTRIBUTION_BERNOULLI", "Bernoulli")
 #define STR_DISTRIBUTION_BINOMIAL   
NC_("STR_DISTRIBUTION_BINOMIAL", "Binomial")
-#define STR_DISTRIBUTION_NEGATIVE_BINOMIAL  
NC_("STR_DISTRIBUTION_NEGATIVE_BINOMIAL", "Negative Binomial")
 #define STR_DISTRIBUTION_CHI_SQUARED
NC_("STR_DISTRIBUTION_CHI_SQUARED", "Chi Squared")
 #define STR_DISTRIBUTION_GEOMETRIC  
NC_("STR_DISTRIBUTION_GEOMETRIC", "Geometric")
+#define STR_DISTRIBUTION_NEGATIVE_BINOMIAL  
NC_("STR_DISTRIBUTION_NEGATIVE_BINOMIAL", "Negative Binomial")
+#define STR_DISTRIBUTION_POISSON
NC_("STR_DISTRIBUTION_POISSON", "Poisson")
 #define STR_RNG_PARAMETER_MINIMUM   
NC_("STR_RNG_PARAMETER_MINIMUM", "Minimum")
 #define STR_RNG_PARAMETER_MAXIMUM   
NC_("STR_RNG_PARAMETER_MAXIMUM", "Maximum")
 #define STR_RNG_PARAMETER_MEAN  
NC_("STR_RNG_PARAMETER_MEAN", "Mean")
diff --git a/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx 
b/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx
index 91b43cbe0433..2490ebf47301 100644
--- a/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx
+++ b/sc/source/ui/StatisticsDialogs/RandomNumberGeneratorDialog.cxx
@@ -36,6 +36,7 @@ const sal_Int64 DIST_CHI_SQUARED = 5;
 const sal_Int64 DIST_GEOMETRIC   = 6;
 const sal_Int64 DIST_NEGATIVE_BINOMIAL   = 7;
 const sal_Int64 DIST_UNIFORM_INTEGER = 8;
+const sal_Int64 DIST_POISSON = 9;
 
 const sal_Int64 PRECISION   = 1;
 const sal_Int64 DIGITS  = 4;
@@ -225,13 +226,6 @@ void 
ScRandomNumberGeneratorDialog::SelectGeneratorAndGenerateNumbers()
 GenerateNumbers(rng, STR_DISTRIBUTION_BINOMIAL, aDecimalPlaces);
 break;
 }
-case DIST_NEGATIVE_BINOMIAL:
-{
-std::negative_binomial_distribution<> 
distribution(parameterInteger2, parameter1);
-auto rng = std::bind(distribution, seed);
-GenerateNumbers(rng, STR_DISTRIBUTION_NEGATIVE_BINOMIAL, 
aDecimalPlaces);
-break;
-}
 case DIST_CHI_SQUARED:
 {
 std::chi_squared_distribution<> distribution(parameter1);
@@ -246,6 +240,20 @@ void 
ScRandomNumberGeneratorDialog::SelectGeneratorAndGenerateNumbers()
 GenerateNumbers(rng, STR_DISTRIBUTION_GEOMETRIC, aDecimalPlaces);
 break;
 }
+case DIST_NEGATIVE_BINOMIAL:
+{
+std::negative_binomial_distribution<> 
distribution(parameterInteger2, parameter1);
+auto rng = std::bind(distribution, seed);
+GenerateNumbers(rng, STR_DISTRIBUTION_NEGATIVE_BINOMIAL, 
aDecimalPlaces);
+break;
+}
+case DIST_POISSON:
+{
+std::poisson_distribution<> distribution(parameter1);
+auto rng = std::bind(distribution, seed);
+GenerateNumbers(rng, STR_DISTRIBUTION_POISSON, aDecimalPlaces);
+break;
+}
 }
 }
 
@@ -476,6 +484,16 @@ IMPL_LINK_NOARG(ScRandomNumberGeneratorDialog, 
DistributionChanged, weld::ComboB
 mxParameter2Value->hide();
 break;
 }
+case DIST_POISSON:
+{
+mxParameter1Text->set_label(ScResId(STR_RNG_PARAMETER_MEAN));
+mxParameter1Value->set_value(PRECISION);
+mxParameter1Value->set_increments(1000, 1);
+mxParameter1Value->set_min(1000);
+mxParameter2Text->hide();
+mxParameter2Value->hide();
+break;
+}
 }
 }
 
diff --git a/sc/uiconfig/scalc/ui/randomnumbergenerator.ui 
b/sc/uiconfig/scalc/ui/randomnumbergenerator.ui
index e6f8f93ba214..d9481046bd8f 100644
--- a/sc/uiconfig/scalc/ui/randomnumbergenerator.ui
+++ b/sc/uiconfig/scalc/ui/randomnumbergenerator.ui
@@ -240,6 +240,7 @@
   Chi Squared
  

[Libreoffice-bugs] [Bug 155157] Conditional formatting doesn't copy properly between spreadsheet tabs when copying tabs

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155157

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from m.a.riosv  ---
Please attach a sample file as simple as possible, to test.

Please paste here the information on Menu/Help/About LibreOffce (There is an
icon to copy)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146611] STRG+TAB to quickly switch between Calc Tabs by default

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146611

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEEDINFO
 Whiteboard| QA:needsComment|

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
This was already implemented for bug 86404 and it works for me in:

Version: 7.5.3.2 (X86_64) / LibreOffice Community
Build ID: 9f56dff12ba03b9acd7730a5a481eea045e468f3
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Which version are you using? And on which operating system? Please paste here
the information from Help > About LibreOffice.

Thank you!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155155] Japanese, vertical RTL text: left-side text not displayed after IME text input on new line

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155155

Rob  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Rob  ---
Hello Stéphane,

I've upgraded to version 7.5 and am unable to replicate the bug as described
here. I'll mark as resolved for now and re-open if I'm able to replicate it
again. Thanks!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146102] Saved notation

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146102

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Whiteboard| QA:needsComment|
 CC||stephane.guillou@libreoffic
   ||e.org
Version|unspecified |Inherited From OOo
 Resolution|--- |WONTFIX

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thank you for the suggestion.
We already have the toolbar Save icon that changes depending on saved state, as
well as a status bar icon.
It's true we use the title bar to indicate "read only", but regarding saved
status, I think a third indicator would be superfluous, wouldn't you think?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144169] Number of Printing Copies

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144169

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Whiteboard| QA:needsComment|
 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Dudu, is this when you send to an actual printer, or when you use "Print to
File"?
If it's the second, this is a duplicate of bug 129208.
If not, please test again in a recent version (7.4 or 7.5) to see if the issue
persists.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 129208] Print to file with multiple copies produces only a single copy

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129208

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Version|5.3.0.3 release |Inherited From OOo
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #15 from Stéphane Guillou (stragu) 
 ---
Agree with Buovjaga and Julien here: to make it consistent and to keep it
simple.

Furthermore, two use cases:
1) PDF needs to be sent to be printed via an interface that does not offer many
options. My University had such a service: a website to send a job to networked
printers, in which it wasn't possible to, for example, have several pages per
sheet (imagine you're printing A6 flyers). One would have to prepare the PDF
beforehand.
2) QA usecase: we can't keep printing paper to test issues, for obvious
reasons. Therefore, we need Print to File to be as close as possible to Print
to Paper.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: helpcontent2

2023-05-05 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e594493d4fe1d623467eb9dbcd4e2fb1637b6e4b
Author: Olivier Hallot 
AuthorDate: Fri May 5 21:31:51 2023 -0300
Commit: Gerrit Code Review 
CommitDate: Sat May 6 02:31:51 2023 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to f2726113c1c969d43fbc7c4df996b24408868ec8
  - Refactor Help page - no contents change

Change-Id: I97fd085d2c1a2e2c8a82034a1d15b7408535ffec
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/151443
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 15ebd0257b45..f2726113c1c9 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 15ebd0257b457b87f4de43352d9b5d51272b5dba
+Subproject commit f2726113c1c969d43fbc7c4df996b24408868ec8


[Libreoffice-commits] help.git: source/text

2023-05-05 Thread Olivier Hallot (via logerrit)
 source/text/sdraw/main0210.xhp   |   18 +--
 source/text/shared/01/05200100.xhp   |  120 -
 source/text/simpress/02/1012.xhp |  168 ---
 3 files changed, 146 insertions(+), 160 deletions(-)

New commits:
commit f2726113c1c969d43fbc7c4df996b24408868ec8
Author: Olivier Hallot 
AuthorDate: Fri May 5 14:07:28 2023 -0300
Commit: Olivier Hallot 
CommitDate: Sat May 6 02:31:50 2023 +0200

Refactor Help page - no contents change

Change-Id: I97fd085d2c1a2e2c8a82034a1d15b7408535ffec
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/151443
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/sdraw/main0210.xhp b/source/text/sdraw/main0210.xhp
index 70c7408f49..c298ea2600 100644
--- a/source/text/sdraw/main0210.xhp
+++ b/source/text/sdraw/main0210.xhp
@@ -19,31 +19,31 @@
 
 
 
-Drawing Bar
+Drawing Bar
 /text/sdraw/main0210.xhp
 
 
 
 
 Drawing 
Bar
-The 
Drawing bar holds the main drawing tools.
+The Drawing bar 
holds the main drawing tools.
 
 
 
 Rectangle
-Draws a filled 
rectangle where you drag in the current document. Click where you want to place 
a corner of the rectangle, and drag to the size you want. To draw a square, 
hold down Shift while you drag.
+Draws a filled rectangle where 
you drag in the current document. Click where you want to place a corner of the 
rectangle, and drag to the size you want. To draw a square, hold down Shift 
while you drag.
 
 Ellipse
-Draws a filled 
oval where you drag in the current document. Click where you want to draw the 
oval, and drag to the size you want. To draw a circle, hold down Shift while 
you drag.
+Draws a filled oval where you 
drag in the current document. Click where you want to draw the oval, and drag 
to the size you want. To draw a circle, hold down Shift while you 
drag.
 
 Text
-Draws a text 
box where you click or drag in the current document. Click anywhere in the 
document, and then type or paste your text.
+Draws a text box where you click 
or drag in the current document. Click anywhere in the document, and then type 
or paste your text.
 
 
 
 
 Lines and 
Arrows
-Opens the 
Arrows toolbar to insert lines and arrows.
+Opens the Arrows toolbar to 
insert lines and arrows.
 
 
 
@@ -59,9 +59,9 @@
 
 
 Points
-Enables you to 
edit points on your drawing.
+Enables you to edit points on 
your drawing.
 Gluepoints
-Enables you to 
edit gluepoints on your drawing.
+Enables you to edit gluepoints 
on your drawing.
 
 
 
@@ -78,6 +78,6 @@
 
 
 Extrusion On/Off
-Switches the 3D 
effects on and off for the selected objects.
+Switches the 3D effects on and 
off for the selected objects.
 
 
diff --git a/source/text/shared/01/05200100.xhp 
b/source/text/shared/01/05200100.xhp
index 24acdbb6cd..e2cc79d9dc 100644
--- a/source/text/shared/01/05200100.xhp
+++ b/source/text/shared/01/05200100.xhp
@@ -19,84 +19,84 @@
 
 
 
-Line
+Line
 /text/shared/01/05200100.xhp
 
 
 
 
-
-
-Line
-Set the formatting options for the 
selected line or the line that you want to draw. You can also add arrowheads to 
a line, or change chart symbols.
+
+
+Line
+Set the formatting options for the 
selected line or the line that you want to draw. You can also add arrowheads to 
a line, or change chart symbols.
 
 
   
 
-Line properties
-
-
-Styles
-Select the line style that you want to use.
+Line properties
+
+
+Styles
+Select the line style that you want to use.
 
 
-
-
-Colors
-Select a color for the line.
+
+
+Colors
+Select a color for the line.
 
 
-
-
-Widths
-Select the width for the line. You can append a 
measurement unit. A zero line width results in a hairline with a width of one 
pixel of the output medium.
+
+
+Widths
+Select the width for the line. You can append a 
measurement unit. A zero line width results in a hairline with a width of one 
pixel of the output medium.
 
 
-
-Transparency
-Enter the transparency of the 
line, where 100% corresponds to completely transparent and 0% to completely 
opaque. 
-
+
+Transparency
+Enter the transparency of the 
line, where 100% corresponds to completely transparent and 0% to completely 
opaque. 
+
 
 
 The Line tab of the Data 
Series dialog is only available if you select an XY Chart 
type.
-Icon
-Set the 
options for the data point symbols in your chart.
-
-Select
-Select the symbol style that you want 
to use in your chart. If you select Automatic, 
$[officename] uses the default symbols for the selected chart type.
-
-Width
-Enter a width for the 
symbol.
-
-Height
-Enter a height for the 
symbol.
-
-Keep ratio
-Maintains the proportions of the 
symbol when you enter a new height or width value.
-Arrow styles
-You can add 
arrowheads to one end, or both ends of the selected line. To add a custom arrow 
style to the list, select the arrow in your document, and then click on the 
Arrow Styles tab 
of this dialog.
-
-
-Style
-Select the arrowhead that you want to 
apply to the selected line.
-
-
-Width

[Libreoffice-bugs] [Bug 143835] [UI]/[EDITING] Formula bar only accepts dead key inputs when typing in it for the first time

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143835

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||stephane.guillou@libreoffic
   ||e.org
 Ever confirmed|0   |1
 Whiteboard| QA:needsComment|

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
I can't reproduce the issue in:

Version: 7.1.0.3 / LibreOffice Community
Build ID: f6099ecf3d29644b5008cc8f48f42f4a40986e4c
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Nor in:

Version: 7.5.3.2 (X86_64) / LibreOffice Community
Build ID: 9f56dff12ba03b9acd7730a5a481eea045e468f3
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

I tested with accent dead keys (accute, umlaut, tilde...) on a German keyboard
layout.

Can you please test again with currently supported versions (7.4 or 7.5) and
let us know if you can still reproduce?
If so, which keyboard layout are you using?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 141123] Impossible to replace a TextGraphicObject's event after it has been set

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141123

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
Version|6.4.6.2 release |6.0.0.3 release
 Whiteboard| QA:needsComment|
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Marking as new as I see the same result as described in your macro comments,
and as it seems unexpected, in a recent master build:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b10417eb1e5a4a6959e7fc1cdd9819e5b09d39a4
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

As well as LO 6.0:

Version: 6.0.0.3
Build ID: 64a0f66915f38c6217de274f0aa8e15618924765
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk2; 
Locale: en-AU (en_AU.UTF-8); Calc: group

But the value does update properly in OOo 3.3, so this is a regression.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103100
Bug 103100 depends on bug 138925, which changed state.

Bug 138925 Summary: CRASH: "bad array new length" when editing table cells with 
faulty expressions
https://bugs.documentfoundation.org/show_bug.cgi?id=138925

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WORKSFORME  |---

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 138925] CRASH: "bad array new length" when editing table cells with faulty expressions

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138925

Justin L  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |---
 Status|RESOLVED|NEW

--- Comment #10 from Justin L  ---
I take that back. Just crashed it now in master.
1.) Open document.
2.) enter cell E5
3.) press F2 to edit.
4.) press the OK button 

5.) Press F2 again - crash

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103100
Bug 103100 depends on bug 138925, which changed state.

Bug 138925 Summary: CRASH: "bad array new length" when editing table cells with 
faulty expressions
https://bugs.documentfoundation.org/show_bug.cgi?id=138925

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 138925] CRASH: "bad array new length" when editing table cells with faulty expressions

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138925

Justin L  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED

--- Comment #9 from Justin L  ---
I could never reproduce a crash - testing various bibisects back to LO 5.2.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - editeng/source include/editeng

2023-05-05 Thread Henry Castro (via logerrit)
 editeng/source/editeng/editeng.cxx |   11 +++
 include/editeng/editeng.hxx|2 ++
 2 files changed, 13 insertions(+)

New commits:
commit 0840dcd3c89d149a4e4848b8e3446aa49994
Author: Henry Castro 
AuthorDate: Tue Feb 28 09:42:16 2023 -0400
Commit: Henry Castro 
CommitDate: Sat May 6 02:02:36 2023 +0200

editeng: add setter function SingleLine

Signed-off-by: Henry Castro 
Change-Id: I66cad37e1d3728369f0a08195bf85e6c0d50f0ff
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148000
Tested-by: Jenkins CollaboraOffice 

diff --git a/editeng/source/editeng/editeng.cxx 
b/editeng/source/editeng/editeng.cxx
index 9fb9a35fb615..df8ca191cf3d 100644
--- a/editeng/source/editeng/editeng.cxx
+++ b/editeng/source/editeng/editeng.cxx
@@ -1872,6 +1872,17 @@ bool EditEngine::IsFlatMode() const
 return !( pImpEditEngine->aStatus.UseCharAttribs() );
 }
 
+void EditEngine::SetSingleLine(bool bValue)
+{
+if (bValue == pImpEditEngine->aStatus.IsSingleLine())
+return;
+
+if (bValue)
+pImpEditEngine->aStatus.TurnOnFlags(EEControlBits::SINGLELINE);
+else
+pImpEditEngine->aStatus.TurnOffFlags(EEControlBits::SINGLELINE);
+}
+
 void EditEngine::SetControlWord( EEControlBits nWord )
 {
 
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx
index 0693d06821f9..925e6d12e92c 100644
--- a/include/editeng/editeng.hxx
+++ b/include/editeng/editeng.hxx
@@ -402,6 +402,8 @@ public:
 boolIsFlatMode() const;
 voidSetFlatMode( bool bFlat );
 
+voidSetSingleLine( bool bValue );
+
 voidSetControlWord( EEControlBits nWord );
 EEControlBits   GetControlWord() const;
 


[Libreoffice-bugs] [Bug 108687] Form option buttons and other form fields not reachable with tab key

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108687

Justin L  changed:

   What|Removed |Added

   Severity|normal  |minor
   Priority|medium  |low

--- Comment #39 from Justin L  ---
For anyone facing this problem, I recommend using the new content controls when
you design your form. Any problems found there are much more likely to be
fixed. Plus, they are quite flexible and have a tabIndex to allow navigation
order.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108687] Form option buttons and other form fields not reachable with tab key

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108687

--- Comment #38 from Justin L  ---
repro 7.6+

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 88173] [META] DOCX (OOXML) format limitations

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88173

Justin L  changed:

   What|Removed |Added

 Depends on||135327


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=135327
[Bug 135327] FILESAVE DOCX: Export has hard time by space created by dragging
an image as character down
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 135327] FILESAVE DOCX: Export has hard time by space created by dragging an image as character down

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135327

Justin L  changed:

   What|Removed |Added

 Blocks||88173
   Priority|medium  |lowest
   Severity|normal  |minor


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88173
[Bug 88173] [META] DOCX (OOXML) format limitations
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107934] cannot select text with mouse on a computer with touch screen

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107934

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=85
   ||677

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 85677] Dragging on a touchscreen display highlights instead of scrolling

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85677

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||7934

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 64789] enhancement requests: non-rectangular images, more shadow types (perspective)

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64789

Justin L  changed:

   What|Removed |Added

   Severity|normal  |enhancement

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 105478] DOC LAYOUT specified height row splits and flows back to previous page, despite not meeting minimum height (comment 9).

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105478

--- Comment #25 from Justin L  ---
repro 7.6+

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 85677] Dragging on a touchscreen display highlights instead of scrolling

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85677

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||gta5onlin...@hotmail.fr

--- Comment #28 from Stéphane Guillou (stragu) 
 ---
*** Bug 140721 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 140721] Selecting the page without scrolling to the next page on my tablet computer

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140721

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |RESOLVED
 Whiteboard| QA:needsComment|

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thank you for the report. This is already tracked in bug 85677, so marking as
duplicate.

*** This bug has been marked as a duplicate of bug 85677 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104827] FILESAVE DOC: Justified Text with Section Breaks Incorrectly Exported

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104827

Justin L  changed:

   What|Removed |Added

   Severity|normal  |minor
   Priority|medium  |low

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 138384] Bibliography database overwritten by defaults on update to version 7.0.3.1

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138384

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |NEEDINFO
 CC||ilmari.lauhakangas@libreoff
   ||ice.org,
   ||stephane.guillou@libreoffic
   ||e.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=66
   ||946
 Ever confirmed|0   |1

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
I upgraded from 7.4.6.2 to 7.4.7.2 with deb packages on Ubuntu, and the entry I
had added to the Bibliography database was still there.

Do you happen to know which version you upgraded from?
Can you test again with another upgrade from Arch's repos? (Backing up your
profile beforehand.)
I assume such an upgrade would never touch config files, but maybe the first
launch of the new LO version replaced (parts of) your profile. However I
couldn't find anything new related to bibliography in 7.0.

Maybe Buovjaga can help with the Arch side of things.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 66946] bibliography database broken in update

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66946

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||8384

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 48378] FILEOPEN Table in DOC loses rows over page boundary (and doesn't commence on a new page)

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48378

--- Comment #24 from Justin L  ---
repro 7.6+ (even after many floating table fixes have landed).

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155159] New: PLEASE stop resetting options during updates

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155159

Bug ID: 155159
   Summary: PLEASE stop resetting options during updates
   Product: LibreOffice
   Version: 7.5.3.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wbrucemo...@yahoo.com

Description:
I mostly edit documents written by others. I make extensive use of English
Sentence Checking features, which you keep turning OFF during most updates.
Also, changes to those settings do not take effect until the document is
reloaded. The user should at least be informed of this fact (if it must operate
that way). As it is today, new settings are accepted, but the document still
looks exactly the same, without explanation.

Steps to Reproduce:
1.Apply LibreOffice update
2.
3.

Actual Results:
All English Sentence Checking settings reset to OFF (unchecked) state

Expected Results:
Retain my settings


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.5.3.2 (X86_64) / LibreOffice Community
Build ID: 9f56dff12ba03b9acd7730a5a481eea045e468f3
CPU threads: 16; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

[Information automatically included from LibreOffice]
Locale: en-US
Module: TextDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: yes

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 85298] VIEWING: 3GPP table split throws off page numbers (Microsoft Office .doc)

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85298

Justin L  changed:

   What|Removed |Added

   Priority|medium  |lowest
   Severity|normal  |minor

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 134767] Conditional Formatting (still) Corrupted by Column Insert

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134767

Justin L  changed:

   What|Removed |Added

   Priority|medium  |lowest
 CC|jl...@mail.com  |
   Severity|normal  |minor
  Regression By|Kohei Yoshida   |
   Keywords|regression  |
Version|4.3 all versions|Inherited From OOo
Summary|Conditional Formatting  |Conditional Formatting
   |Corrupted by Column Insert  |(still) Corrupted by Column
   ||Insert

--- Comment #8 from Justin L  ---
Bah - I should have bibisected myself. This bibisect result is not accurate.
Sure, the cells H7:I9 look fine before Kohei's commit, but the same problem
described is seen on cells F14:G16 (except in reverse).

That problem was already seen in OOo 3.3.

This cannot be a bug AFAICS. There is only one formula that describes the
formatting for all the cells.
The formula basically breaks down to "look at the cell 4 columns ahead of you
and see whether it is a 1 or a 2." After the column insertion, the top block
needs to look 4 ahead, and the bottom block needs to look 5 ahead. One rule
cannot say that.


Now, granted, OP says that LO should be smart enough to replicate the rule so
that each broken situation is fixed, and non-broken situations are unaffected.
That seems a little far-fetched to me. Perhaps a calc genius could do that. But
I certainly wouldn't expect a program to be able to be smart enough to know
exactly what to do in this circumstance. And LO certainly didn't do it properly
before this. Removing "regression" and lowering priority.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 142176] No prompt during logout/restart/shutdown when there's unsaved documents

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142176

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||103303
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||caol...@redhat.com,
   ||stephane.guillou@libreoffic
   ||e.org
 Whiteboard| QA:needsComment|
   Keywords||dataLoss

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thanks Eren. Reproduced with Ubuntu 20.04, GNOME 3.36.8 and a recent master
build:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b10417eb1e5a4a6959e7fc1cdd9819e5b09d39a4
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Logging out does not prompt that LO might have unsaved work. Other apps like
gedit do.

Caolán, is this something you'd be interested in?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103303
[Bug 103303] [META] Desktop integration bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103303] [META] Desktop integration bugs and enhancements

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103303

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||142176


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142176
[Bug 142176] No prompt during logout/restart/shutdown when there's unsaved
documents
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 100359] No option available to reset "File > Printer Settings" to default printer

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100359

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

  Component|LibreOffice |Printing and PDF export

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
Still relevant for a recent master build:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b10417eb1e5a4a6959e7fc1cdd9819e5b09d39a4
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - editeng/source include/editeng

2023-05-05 Thread Henry Castro (via logerrit)
 editeng/source/editeng/editstt2.hxx |3 +++
 include/editeng/editstat.hxx|3 ++-
 2 files changed, 5 insertions(+), 1 deletion(-)

New commits:
commit cb9de0256ae56966ace00af9bec73572f23e423b
Author: Henry Castro 
AuthorDate: Tue Jan 31 16:01:08 2023 -0400
Commit: Henry Castro 
CommitDate: Sat May 6 00:44:06 2023 +0200

editeng: add flag EEControlBits::SINGLELINE

The purpose of this flag is to draw a paragraph
into a single line ignoring line breaks

Signed-off-by: Henry Castro 
Change-Id: I0a01e6d4db51d43707f7cdd0ab9d9cf3288e2221
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147999
Tested-by: Jenkins CollaboraOffice 

diff --git a/editeng/source/editeng/editstt2.hxx 
b/editeng/source/editeng/editstt2.hxx
index 4474df8b429b..334622b23495 100644
--- a/editeng/source/editeng/editstt2.hxx
+++ b/editeng/source/editeng/editstt2.hxx
@@ -91,6 +91,9 @@ public:
 
 boolULSpaceSummation() const
 { return bool( nControlBits & EEControlBits::ULSPACESUMMATION 
); }
+
+boolIsSingleLine() const
+{ return bool( nControlBits & EEControlBits::SINGLELINE ); }
 };
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/editeng/editstat.hxx b/include/editeng/editstat.hxx
index eec50ea67c20..29653d5eec4f 100644
--- a/include/editeng/editstat.hxx
+++ b/include/editeng/editstat.hxx
@@ -50,10 +50,11 @@ enum class EEControlBits
 AUTOPAGESIZE   = (AUTOPAGESIZEX | AUTOPAGESIZEY),
 FORMAT100  = 0x0100,  // Always format to 100%
 ULSPACESUMMATION   = 0x0200,  // MS Compat: sum SA and SB, not maximum 
value
+SINGLELINE = 0x0400,  // One line for all text
 };
 namespace o3tl
 {
-template<> struct typed_flags : 
is_typed_flags {};
+template<> struct typed_flags : 
is_typed_flags {};
 }
 
 enum class EVControlBits


[Libreoffice-commits] core.git: officecfg/registry

2023-05-05 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   36 -
 1 file changed, 36 deletions(-)

New commits:
commit 69d0be09ad81935f7da4b6f8d036c3562357d068
Author: Gabor Kelemen 
AuthorDate: Wed Apr 26 14:12:20 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat May 6 00:41:28 2023 +0200

[API CHANGE] Drop unused config group AppWindow

It was not used ever since added in 2002 by
commit 72cbd26315bf935a0d6e2c9ffcdbea7d2ada07fb

Change-Id: I3be8a020174677a6e876628307b2deb311874e67
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151059
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index fa9548425832..d6a005ec977c 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -2701,42 +2701,6 @@
   false
 
   
-  
-
-  Contains settings on how the application window should be
-  displayed.
-
-
-  
-Specifies whether the application window should be opened in
-Fullscreen mode.
-  
-  false
-
-
-  
-Specifies the preferred view of the application 
window.
-  
-  
-
-  
-Use last setting
-  
-
-
-  
-Show in task bar
-  
-
-
-  
-Open in Fullscreen mode
-  
-
-  
-  0
-
-  
   
 
   Contains settings which specify how dialogs and toolbars should


[Libreoffice-commits] core.git: officecfg/registry

2023-05-05 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |   18 -
 1 file changed, 18 deletions(-)

New commits:
commit 10d74fd12af9708b427afd927ce13a90b53b6588
Author: Gabor Kelemen 
AuthorDate: Wed Apr 26 14:14:31 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat May 6 00:40:30 2023 +0200

[API CHANGE] Drop unused config keys ButtonLarge, ButtonFlat

Do not seem to have been ever used since added in 2002 by
commit 72cbd26315bf935a0d6e2c9ffcdbea7d2ada07fb

Change-Id: I64a437111d3c2d54e205de944421b05552e9600d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151060
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index a7f0222bcf55..fa9548425832 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -2742,24 +2742,6 @@
   Contains settings which specify how dialogs and toolbars should
   be displayed.
 
-
-  
-  
-Specifies whether toolbar buttons should be drawn large or
-small. True means large.
-Large buttons
-  
-  false
-
-
-  
-  
-Specifies whether toolbox buttons should be drawn with a flat
-or 3D design. True means flat design.
-Flat buttons
-  
-  true
-
 
   


[Libreoffice-commits] core.git: officecfg/registry postprocess/CustomTarget_registry.mk

2023-05-05 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/data/org/openoffice/Office/Common.xcu   |3 ---
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |7 ---
 postprocess/CustomTarget_registry.mk   |1 -
 3 files changed, 11 deletions(-)

New commits:
commit 5eb3ec6cbd74eafcf2a6c44da23cfba385c44c13
Author: Gabor Kelemen 
AuthorDate: Tue Apr 25 14:03:49 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat May 6 00:40:01 2023 +0200

[API CHANGE] Drop obsolete TemplateRepositoryURL config key

Its use was removed in 2020 by
commit 9eaaf97ab32068a619b5c36772619b7e66268800

Change-Id: I47b86a9b1bf528d611fa3a79054681bd85382bb0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150989
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/data/org/openoffice/Office/Common.xcu 
b/officecfg/registry/data/org/openoffice/Office/Common.xcu
index 1665defdfaf7..23fa2f977764 100644
--- a/officecfg/registry/data/org/openoffice/Office/Common.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Common.xcu
@@ -39,9 +39,6 @@
   
 ${STARTCENTER_INFO_URL}
   
-  
-${STARTCENTER_TEMPLREP_URL}
-  
 
 
   UNIX
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 588cf13adf77..a7f0222bcf55 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -3462,13 +3462,6 @@
   
   
 
-
-  
-Contains a string specifying the URL to be browsed for
-additional template documents
-  
-  
-
 
   
   
diff --git a/postprocess/CustomTarget_registry.mk 
b/postprocess/CustomTarget_registry.mk
index 8111fca4e2ab..f192cc1bcb31 100644
--- a/postprocess/CustomTarget_registry.mk
+++ b/postprocess/CustomTarget_registry.mk
@@ -579,7 +579,6 @@ postprocess_main_SED := \
-e 
's,$${PRODUCTEXTENSION},.$(LIBO_VERSION_MICRO).$(LIBO_VERSION_PATCH)$(LIBO_VERSION_SUFFIX),g'
 \
-e 
's,$${STARTCENTER_ADDFEATURE_URL},https://extensions.libreoffice.org/,g' \
-e 's,$${STARTCENTER_INFO_URL},https://www.libreoffice.org/,g' \
-   -e 
's,$${STARTCENTER_TEMPLREP_URL},https://extensions.libreoffice.org/template-center/,g'
 \
-e 's,$${SYSTEM_LIBEXTTEXTCAT_DATA},$(SYSTEM_LIBEXTTEXTCAT_DATA),g' \
-e 's,$${SYSTEM_LIBNUMBERTEXT_DATA},$(SYSTEM_LIBNUMBERTEXT_DATA),g' \
-e 's,$${PRIVACY_POLICY_URL},$(PRIVACY_POLICY_URL),g' \


[Libreoffice-bugs] [Bug 153582] a5 printing is broken

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153582

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #8 from Stéphane Guillou (stragu) 
 ---
matt, any luck testing on your own computer?
I have recently witnessed changes in available printer settings between first
and second use, so you might be onto something.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: officecfg/registry

2023-05-05 Thread Gabor Kelemen (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Common.xcs |7 ---
 1 file changed, 7 deletions(-)

New commits:
commit 0ca0cd7294e938fff6f0107803c27411cb367f63
Author: Gabor Kelemen 
AuthorDate: Thu May 4 21:29:03 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat May 6 00:39:19 2023 +0200

[API CHANGE] Drop unused PropertyBrowser->ExperimentalProperties config key

Seems to be unused ever since it was added in 2006 by
commit a9d03e7895953a30790c09e0975dbbf116e05111

Change-Id: I26fe886d48d066146b0f925925ae61c45539dfb0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151406
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index 37cea093444e..588cf13adf77 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -5699,13 +5699,6 @@
   specifies settings for the property browser used for forms and
   form controls.
 
-
-  
-Enables or disables the property browser's access to
-form/control properties which are not officially supported.
-  
-  false
-
 
   
 Enables or disables a help section at the bottom of the


[Libreoffice-bugs] [Bug 108800] [META] Print related issues

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108800
Bug 108800 depends on bug 70676, which changed state.

Bug 70676 Summary: PRINTING: Difficulties with combining smaller pages on a 
bigger one
https://bugs.documentfoundation.org/show_bug.cgi?id=70676

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 70676] PRINTING: Difficulties with combining smaller pages on a bigger one

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70676

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||stephane.guillou@libreoffic
   ||e.org
 Resolution|--- |WORKSFORME

--- Comment #22 from Stéphane Guillou (stragu) 
 ---
One main issue that was discussed (e.g. comment 5) was the inability to change
the paper size to A4 when printing a two-A5-page document on a single sheet.
I can reproduce that issue in 6.0, but the issue was resolved at some stage as
I can print these two A5 pages on a single A4 page in 7.0 as well as well as in
a recent master build:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b10417eb1e5a4a6959e7fc1cdd9819e5b09d39a4
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Another issue that might have come up here is the inability to print two copies
of a single page on the same sheet. The workaround is to print pages 1,1. The
issue is already tracked in bug 45701.

For the rest, there isn't enough information to understand what exactly the
issues were, and the succession of comments is very confusing so adding to this
report won't be helpful.

I am closing as "works for me" for the first issue described above. If other
issues remain in currently supported versions, please open other focused
reports, one per issue, with clear description and steps to reproduce.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 45701] PRINTING: Allow printing multiple copies of a page on a single sheet of paper

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45701

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Version|3.4.4 release   |Inherited From OOo
   Hardware|Other   |All

--- Comment #24 from Stéphane Guillou (stragu) 
 ---
In OOo 3.3, I am already getting the two copies on two separate sheets, so
marking as inherited.
Regina's comment 22 workaround was already working back then.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143352] [META] XLSX (OOXML) Opening files from external generators

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143352

Aron Budea  changed:

   What|Removed |Added

 Depends on||150996


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150996
[Bug 150996] [XLSX] Cell colors and number formats are not imported by
LibreOffice
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150996] [XLSX] Cell colors and number formats are not imported by LibreOffice

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150996

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
 Blocks||143352


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=143352
[Bug 143352] [META] XLSX (OOXML) Opening files from external generators
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 45701] PRINTING: Allow printing multiple copies of a page on a single sheet of paper

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45701

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=73
   ||313

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 73313] Draw doesn't support printing 2 A5 on 1 A4

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73313

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=45
   ||701
 Resolution|--- |WORKSFORME
Version|4.0.4.2 release |Inherited From OOo
 Status|NEW |RESOLVED

--- Comment #11 from Stéphane Guillou (stragu) 
 ---
Using steps from comment 3, I got a wrong result back in OOo 3.3.

But I can now get the expected result at least since 6.0 all the way to a
master build from today, on Ubuntu 20.04.

Marking as "works for me", but please set back to "New" if you still have an
issue using the comment 3 steps.

Keeping bug 45701 only as See Also, because the OP was already using the "1,1"
method for "Pages" (as opposed to Copies = 2).

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 83b1f6b58a30bdb589e9ce73deef39f021aebde1
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103309] [META] Print dialog bugs and enhancements

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103309
Bug 103309 depends on bug 73313, which changed state.

Bug 73313 Summary: Draw doesn't support printing 2 A5 on 1 A4
https://bugs.documentfoundation.org/show_bug.cgi?id=73313

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155092] UI: Erratic behaviour after resizing spreadsheet window size

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155092

--- Comment #2 from Patrick Luby  ---
Created attachment 187103
  --> https://bugs.documentfoundation.org/attachment.cgi?id=187103=edit
Sample of LibreOffice using the Activity Monitor application

I was able to reproduce this on macOS Ventura.

I was able to obtain a sample using the Activity Monitor application but I
don't see much LibreOffice code in the sample. From what I can see, CPU usage
skyrockets and LibreOffice is responding to a lot of "update window" events
from macOS.

I am not sure where to start looking for this bug, but maybe someone else will
see something in my sample that I am missing.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: sw/qa

2023-05-05 Thread Andrea Gelmini (via logerrit)
 sw/qa/core/layout/flycnt.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4f58329fa4db17df21cacc35b2f14acf21cc39e2
Author: Andrea Gelmini 
AuthorDate: Fri May 5 19:34:33 2023 +0200
Commit: Julien Nabet 
CommitDate: Fri May 5 23:34:17 2023 +0200

Fix typo

Change-Id: I3a482c273498da94d5f3d8928cfd31fa63f9f6b8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151438
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git a/sw/qa/core/layout/flycnt.cxx b/sw/qa/core/layout/flycnt.cxx
index 445b8ff8f84d..6f580c40a8c5 100644
--- a/sw/qa/core/layout/flycnt.cxx
+++ b/sw/qa/core/layout/flycnt.cxx
@@ -301,7 +301,7 @@ CPPUNIT_TEST_FIXTURE(Test, testSplitFlyEnable)
 
 CPPUNIT_TEST_FIXTURE(Test, testSplitFlyDisable)
 {
-// Given a document with a floating talbe, table split on 2 pages:
+// Given a document with a floating table, table split on 2 pages:
 Create1x2SplitFly();
 SwDoc* pDoc = getSwDoc();
 SwRootFrame* pLayout = pDoc->getIDocumentLayoutAccess().GetCurrentLayout();


[Libreoffice-bugs] [Bug 151136] Print Dialog: List of paper sizes unsorted and has duplicates

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151136

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
I can see some seemingly-duplicated entries in the paper size dropdown for an
Epson WF-7720, e.g.:

- A3 297mm × 420mm
- A3 297mm × 420mm
- A4 210mm × 297mm
- A4 210mm × 297mm

But if I use the same printer in Ubuntu's system print dialog, I can see them
labelled as:

- A3
- A3 (Borderless)
- A4
- A4 (Borderless)

So I think it might be that LO does not display some of the differentiating
metadata? Which would make this an enhancement request.
Telesto, can you see if a different app shows a distinction between the
duplicated paper sizes?

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 83b1f6b58a30bdb589e9ce73deef39f021aebde1
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153851] Print to File default to A4 instead of actual page size since 7.5

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153851

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Version|7.5.1.2 release |7.5.0.0 beta1+

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
I can still reproduce in a recent master:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 83b1f6b58a30bdb589e9ce73deef39f021aebde1
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

And 7.5.3:

Version: 7.5.3.2 (X86_64) / LibreOffice Community
Build ID: 9f56dff12ba03b9acd7730a5a481eea045e468f3
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

Print to File results in A4 (wrong). PDF export results in A5 (correct).
Checked gen VCL as well, same issue.
However, not reproduced on macOS, using File > Print > PDF.

Noel, what did you test on?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155155] Japanese, vertical RTL text: left-side text not displayed after IME text input on new line

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155155

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thank you for the report, Rob.
Could you please test version 7.5 and let us know if you can still reproduce
the issue? The 7.3 branch won't see further releases.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153881] Impress in full screen presentation mode displays a non existing white line on the lower and right edges

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153881

--- Comment #13 from Stéphane Guillou (stragu) 
 ---
There are other similar reports, I think we can probably mark this as a
duplicate of bug 70976, which is about coloured backgrounds.
As your screenshots show, the issue was already there in 6.1, just maybe less
noticeable.

Another related report is bug 55134, which uses an image fill instead.

What do you think, Andy and Miguel Ángel?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103610] [META] Slide show (presentation mode) bugs and enhancements

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103610

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||55134


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=55134
[Bug 55134] SLIDESHOW svg background renders with white border (slide size
Screen 4:3)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 55134] SLIDESHOW svg background renders with white border (slide size Screen 4:3)

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55134

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||103610


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103610
[Bug 103610] [META] Slide show (presentation mode) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 70976] SLIDESHOW: Thin white lines (or desktop color) visible on the right edge and bottom side of screen when running slideshow

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70976

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=55
   ||134

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 55134] SLIDESHOW svg background renders with white border (slide size Screen 4:3)

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55134

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=70
   ||976

--- Comment #22 from Stéphane Guillou (stragu) 
 ---
(In reply to Buovjaga from comment #21)
> Looks like you have to set the slide size to Screen 4:3 to tease out the
> issue. Stéphane, can you try it?

I tested again starting from scratch with a 4:3 slide ratio, same results:
looks better in 7.5.3.2 and recent master build, when compared to 7.4.6.2.
7.4.6.2 had very obvious bottom and right lines; 7.5 and master have a thinner
bottom line (similar to what's seen in bug 70976).

I guess we can keep open as it's still not perfect.

Can you see a difference between 7.4 and 7.5?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154548] User defined page style disappears when exporting to docx/xlsx, closing and reopening

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154548

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru,
   ||mikekagan...@hotmail.com

--- Comment #10 from Roman Kuznetsov <79045_79...@mail.ru> ---
DOCX doesn't support the page styles if I remember right.

Just for double checking, Mike?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155156] Impress presentation slideshow white stripe on the right edge

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155156

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155156] Impress presentation slideshow white stripe on the right edge

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155156

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|DUPLICATE   |---
 Status|RESOLVED|UNCONFIRMED

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Hm I am setting back to unconfirmed, I think I confused two issues.
Exporting in 7.4 to PDF, I don't see the white lines. So it might be something
different here.

Can you please provide this information in English:
- More precise steps to explain how exactly the background was applied
- The version information copied from Help > About LibreOffice

Could be related to bug 55134 or bug 70976.

Thank you!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107237] [META] Notebookbar Tabbed

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107237

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||155021


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=155021
[Bug 155021] Tabbed UI: Tools tab layout can be improved
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 155021] Tabbed UI: Tools tab layout can be improved

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155021

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||107237
 CC||79045_79...@mail.ru
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Keywords||needsUXEval

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Agree


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107237
[Bug 107237] [META] Notebookbar Tabbed
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 88175] [META] XLSX (OOXML) format limitations

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88175
Bug 88175 depends on bug 150996, which changed state.

Bug 150996 Summary: [XLSX] Cell colors and number formats are not imported by 
LibreOffice
https://bugs.documentfoundation.org/show_bug.cgi?id=150996

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150996] [XLSX] Cell colors and number formats are not imported by LibreOffice

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150996

Eike Rathke  changed:

   What|Removed |Added

 Whiteboard||target:7.6.0 target:7.4.6
   ||target:7.5.1
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||9934,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||3139
 Resolution|--- |FIXED
 Status|NEW |RESOLVED

--- Comment #5 from Eike Rathke  ---
So that commit fixes this one as well, nice :)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - sw/qa sw/source

2023-05-05 Thread Justin Luth (via logerrit)
 sw/qa/extras/ooxmlexport/ooxmlexport5.cxx |8 
 sw/source/core/doc/docbm.cxx  |   15 +++
 2 files changed, 19 insertions(+), 4 deletions(-)

New commits:
commit b01d9c03c7686147b60ccbb756922e86cda1e883
Author: Justin Luth 
AuthorDate: Fri Apr 21 11:30:43 2023 -0400
Commit: Justin Luth 
CommitDate: Fri May 5 21:46:18 2023 +0200

tdf#154956 sw: delete bookmarks at end if whole node is selected

Exposed by LO 7.2.2 commit 4bf04dea9afb30a9395e80b07a81d1908937ee8b
Author: Michael Stahl on Fri Aug 27 14:38:18 2021 +0200
tdf#128106 sw: copy bookmarks at start if whole node is copied

Change-Id: I9205463f9beb3704eeb63fe7556103230ba7283d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150772
Tested-by: Jenkins
Reviewed-by: Justin Luth 
Reviewed-by: Michael Stahl 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151004
Tested-by: Jenkins CollaboraOffice 

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
index f33013413a1c..fa592d8496c5 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
@@ -1357,6 +1357,14 @@ CPPUNIT_TEST_FIXTURE(Test, fdo60957)
 loadAndSave("fdo60957-2.docx");
 xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml");
 assertXPath(pXmlDoc, "//w:tbl", 2);
+
+//tdf#154956
+uno::Reference xBookmarksSupplier(mxComponent, 
uno::UNO_QUERY);
+uno::Reference 
xBookmarksByIdx(xBookmarksSupplier->getBookmarks(), uno::UNO_QUERY);
+uno::Reference xBookmarksByName = 
xBookmarksSupplier->getBookmarks();
+
+CPPUNIT_ASSERT_EQUAL(static_cast(1), 
xBookmarksByIdx->getCount());
+CPPUNIT_ASSERT(xBookmarksByName->hasByName("_GoBack"));
 }
 
 //This has more cells than msword supports, we must balance the
diff --git a/sw/source/core/doc/docbm.cxx b/sw/source/core/doc/docbm.cxx
index 3a0383324d9f..00102a5e8458 100644
--- a/sw/source/core/doc/docbm.cxx
+++ b/sw/source/core/doc/docbm.cxx
@@ -197,10 +197,17 @@ namespace
 
 bool lcl_Lower( const SwPosition& rPos, const SwNode& rNdIdx, 
std::optional oContentIdx )
 {
-return rPos.GetNode() < rNdIdx
-   || ( oContentIdx.has_value()
-&& rPos.GetNode() == rNdIdx
-&& rPos.GetContentIndex() < *oContentIdx );
+if (rPos.GetNode() < rNdIdx)
+return true;
+
+if (rPos.GetNode() != rNdIdx || !oContentIdx)
+return false;
+
+if (rPos.GetContentIndex() < *oContentIdx)
+return true;
+
+// paragraph end selected?
+return rNdIdx.IsTextNode() && *oContentIdx == 
rNdIdx.GetTextNode()->Len();
 }
 
 bool lcl_MarkOrderingByStart(const ::sw::mark::MarkBase *const pFirst,


[Libreoffice-bugs] [Bug 114534] [META] Paragraph alignment bugs and enhancements

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114534

BogdanB  changed:

   What|Removed |Added

 Depends on||149671


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149671
[Bug 149671] Oversized spaces at the margin
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149671] Oversized spaces at the margin

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149671

BogdanB  changed:

   What|Removed |Added

 Blocks||114534
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114534
[Bug 114534] [META] Paragraph alignment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 130293] LAYOUT: Paragraph numbering not updated when a style in the same hierarchy is used earlier in the document

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130293

Justin L  changed:

   What|Removed |Added

Summary|Paragraph numbering not |LAYOUT: Paragraph numbering
   |updated when a style in the |not updated when a style in
   |same hierarchy is used  |the same hierarchy is used
   |earlier in the document |earlier in the document

--- Comment #4 from Justin L  ---
repro 7.6+
This is a simple layout invalidation problem. The style inspector indicates the
right string - it simply hasn't been re-painted yet.

Unfortunately, solving simple layout problems is not simple.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43767] Writer FORMATTING: Impossible numbering with small Roman numbers of list with capital letters

2023-05-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43767

--- Comment #15 from Justin L  ---
(In reply to kaesezeh from comment #2)
> This is nonsense. In Word, you can double-click on the paragraph
> mark and format the paragraph 
Yes - this kind of nonsense in MS Word is exactly why we have this problem in
LO. LO thankfully doesn't allow formatting the CR, and so this hacky nonsense
needed to be added for interoperability reasons.

Unfortunately, MS seems to have made an exception for "small caps". Although
the red from the paragraph marker affects the numbering, the small caps
property does not. (Tested in MS Word 2010.)

-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   >