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

2019-10-21 Thread Samuel Mehrbrodt (via logerrit)
 oox/source/core/filterdetect.cxx |   13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

New commits:
commit bd3929da20b5a536b82b15af552864e7549f91ef
Author: Samuel Mehrbrodt 
AuthorDate: Mon Oct 21 17:12:28 2019 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Tue Oct 22 07:52:28 2019 +0200

Rather not put unencrypted doc in a tempfile

Keep it in memory instead

Change-Id: I25e5cb7183a4d192938110323e27f2f5d1d006fc
Reviewed-on: https://gerrit.libreoffice.org/81253
Reviewed-by: Tomaž Vajngerl 
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx
index a12e21d1503a..c83dab9d6f74 100644
--- a/oox/source/core/filterdetect.cxx
+++ b/oox/source/core/filterdetect.cxx
@@ -327,20 +327,23 @@ Reference< XInputStream > 
FilterDetect::extractUnencryptedPackage( MediaDescript
 }
 else
 {
-// create temporary file for unencrypted package
-Reference xTempFile( TempFile::create(mxContext), 
UNO_QUERY_THROW );
+// create MemoryStream for unencrypted package - rather 
not put this in a tempfile
+Reference const xTempStream(
+
mxContext->getServiceManager()->createInstanceWithContext(
+"com.sun.star.comp.MemoryStream", mxContext),
+UNO_QUERY_THROW);
 
 // if decryption was unsuccessful (corrupted file or any 
other reason)
-if (!aDecryptor.decrypt(xTempFile))
+if (!aDecryptor.decrypt(xTempStream))
 {
 rMediaDescriptor[ MediaDescriptor::PROP_ABORTED() ] 
<<= true;
 }
 else
 {
 // store temp file in media descriptor to keep it alive
-rMediaDescriptor.setComponentDataEntry( 
"DecryptedPackage", Any( xTempFile ) );
+rMediaDescriptor.setComponentDataEntry( 
"DecryptedPackage", Any( xTempStream ) );
 
-Reference xDecryptedInputStream = 
xTempFile->getInputStream();
+Reference xDecryptedInputStream = 
xTempStream->getInputStream();
 if( lclIsZipPackage( mxContext, xDecryptedInputStream 
) )
 return xDecryptedInputStream;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128314] New: Obscure and unmanageable long month name capitalization rules in date formats (ru-RU)

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128314

Bug ID: 128314
   Summary: Obscure and unmanageable long month name
capitalization rules in date formats (ru-RU)
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

 -> Декабрь (just one possibility (OK in the beginning of sentence), no way
to have the other option - using lowercase)

D  -> 31 декабря (OK)

D , -> 31 Декабрь, (wrong: there's never capitalizing of month name after
day in Russian; wrong ending of the month name - should be "декабря," as in
correct example above)

No way to have "декабрь" or "декабрь 2019" or "31 декабря, 2019".

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] core.git: 2 commits - external/expat sd/source

2019-10-21 Thread Stephan Bergmann (via logerrit)
 external/expat/UnpackedTarball_expat.mk   |1 +
 external/expat/ubsan.patch.0  |   11 +++
 sd/source/ui/framework/factories/BasicPaneFactory.cxx |2 +-
 3 files changed, 13 insertions(+), 1 deletion(-)

New commits:
commit ad53c152cc1b79f9a64fffcff766e0fa29c3e287
Author: Stephan Bergmann 
AuthorDate: Mon Oct 21 22:57:46 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Tue Oct 22 07:19:30 2019 +0200

external/expat: Avoid -fsanitizenullptr-with-offset

...(new with Clang 10 trunk), where adding even an offset of 0 to a null 
pointer
is UB in C.  Seen when building CustomTarget_writerfilter/source:

> [PY ] CustomTarget/writerfilter/source/ooxml/resourceids.hxx
> workdir/UnpackedTarball/expat/lib/xmlparse.c:6488:23: runtime error: 
applying zero offset to null pointer
>  #0 in hashTableIterInit at 
workdir/UnpackedTarball/expat/lib/xmlparse.c:6488:23
>  #1 in dtdDestroy at workdir/UnpackedTarball/expat/lib/xmlparse.c:6130:3
>  #2 in XML_ParserFree at 
workdir/UnpackedTarball/expat/lib/xmlparse.c:1368:5
>  #3 in xmlparse_dealloc at 
workdir/UnpackedTarball/python3/Modules/pyexpat.c:1222:9
>  #4 in insertdict at 
workdir/UnpackedTarball/python3/Objects/dictobject.c:807:9
>  #5 in _PyObjectDict_SetItem at 
workdir/UnpackedTarball/python3/Objects/dictobject.c:3927:19
>  #6 in _PyObject_GenericSetAttrWithDict at 
workdir/UnpackedTarball/python3/Objects/object.c:1159:19
>  #7 in PyObject_SetAttr at 
workdir/UnpackedTarball/python3/Objects/object.c:930:15
>  #8 in PyEval_EvalFrameEx at 
workdir/UnpackedTarball/python3/Python/ceval.c:2310:19
[...]

Change-Id: I152ddb20c726dbeb638c5fab4403423f5c6da7b5
Reviewed-on: https://gerrit.libreoffice.org/81284
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/external/expat/UnpackedTarball_expat.mk 
b/external/expat/UnpackedTarball_expat.mk
index 5d4f41f6d147..96f4e3ec8732 100644
--- a/external/expat/UnpackedTarball_expat.mk
+++ b/external/expat/UnpackedTarball_expat.mk
@@ -15,6 +15,7 @@ $(eval $(call 
gb_UnpackedTarball_update_autoconf_configs,expat,conftools))
 
 $(eval $(call gb_UnpackedTarball_add_patches,expat,\
external/expat/expat-winapi.patch \
+   external/expat/ubsan.patch.0 \
 ))
 
 # This is a bit hackish.
diff --git a/external/expat/ubsan.patch.0 b/external/expat/ubsan.patch.0
new file mode 100644
index ..8317f922df88
--- /dev/null
+++ b/external/expat/ubsan.patch.0
@@ -0,0 +1,11 @@
+--- lib/xmlparse.c
 lib/xmlparse.c
+@@ -6485,7 +6485,7 @@
+ static void FASTCALL
+ hashTableIterInit(HASH_TABLE_ITER *iter, const HASH_TABLE *table) {
+   iter->p = table->v;
+-  iter->end = iter->p + table->size;
++  iter->end = table->size == 0 ? iter->p : iter->p + table->size;
+ }
+ 
+ static NAMED *FASTCALL
commit 0c3e90d95c2c952265625bcff590599627114ec1
Author: Stephan Bergmann 
AuthorDate: Mon Oct 21 22:16:42 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Tue Oct 22 07:19:17 2019 +0200

Comparison between css::uno::WeakReference and css::uno::Reference

...causes overload resolution ambiguity in C++20, as observed with recent
Clang 10 trunk with -std=c++2a:

> sd/source/ui/framework/factories/BasicPaneFactory.cxx:327:39: error: use 
of overloaded operator '==' is ambiguous (with operand types 
'css::uno::WeakReference' 
and 'const ::css::uno::Reference< ::css::uno::XInterface>')
> if (mxConfigurationControllerWeak == rEventObject.Source)
> ~ ^  ~~~
> include/com/sun/star/uno/Reference.hxx:425:28: note: candidate function 
(with reversed parameter order)
> inline bool BaseReference::operator == ( const BaseReference & rRef ) 
const
>^
> include/cppuhelper/weakref.hxx:106:19: note: candidate function
> bool SAL_CALL operator == ( const WeakReferenceHelper & rObj ) const

An alternative would be to add overloads for combinations of
css::uno::WeakReference adn css::uno::Reference, but this was the only case 
of
such an ambiguity across the whole code base, such just resolve it with an
explicit .get().

Change-Id: I4689d5ffd4f8993cc1f9401d3c21b24f53f21ccd
Reviewed-on: https://gerrit.libreoffice.org/81282
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sd/source/ui/framework/factories/BasicPaneFactory.cxx 
b/sd/source/ui/framework/factories/BasicPaneFactory.cxx
index 2754b71d369f..e34b471f8b2a 100644
--- a/sd/source/ui/framework/factories/BasicPaneFactory.cxx
+++ b/sd/source/ui/framework/factories/BasicPaneFactory.cxx
@@ -324,7 +324,7 @@ void SAL_CALL BasicPaneFactory::notifyConfigurationChange (
 void SAL_CALL BasicPaneFactory::disposing (
 const lang::EventObject& rEventObject)
 {
-if (mxConfigurationControllerWeak == rEventObject.Source)
+if (mxConfigurationControllerWeak.get() == 

[Libreoffice-commits] core.git: external/libxml2

2019-10-21 Thread Stephan Bergmann (via logerrit)
 external/libxml2/UnpackedTarball_libxml2.mk |1 +
 external/libxml2/ubsan.patch.0  |   11 +++
 2 files changed, 12 insertions(+)

New commits:
commit fcb2d8a87ad696f7f2fe069f0ed68a88803e1b54
Author: Stephan Bergmann 
AuthorDate: Mon Oct 21 23:13:17 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Tue Oct 22 07:19:45 2019 +0200

external/libxml2: Avoid UBSan nullptr-with-offset

...(new with Clang 10 trunk), where adding even an offset of 0 to a null 
pointer
is UB in C.  Seen when building UIConfig_modules/schart:

> [UIL] chart2/uiconfig/ui/3dviewdialog
> xpath.c:14532:5: runtime error: applying zero offset to null pointer
>  #0 in xmlXPathTryStreamCompile at 
workdir/UnpackedTarball/libxml2/xpath.c:14532:5
>  #1 in xmlXPathCtxtCompile__internal_alias at 
workdir/UnpackedTarball/libxml2/xpath.c:14634:12
>  #2 in xsltXPathCompileFlags at 
workdir/UnpackedTarball/libxslt/libxslt/xsltutils.c:2323:11
>  #3 in xsltValueOfComp at 
workdir/UnpackedTarball/libxslt/libxslt/preproc.c:1258:18
>  #4 in xsltStylePreCompute at 
workdir/UnpackedTarball/libxslt/libxslt/preproc.c:2225:6
>  #5 in xsltParseTemplateContent at 
workdir/UnpackedTarball/libxslt/libxslt/xslt.c:4916:13
>  #6 in xsltParseStylesheetTemplate at 
workdir/UnpackedTarball/libxslt/libxslt/xslt.c:5467:5
>  #7 in xsltParseStylesheetTop at 
workdir/UnpackedTarball/libxslt/libxslt/xslt.c:6205:6
>  #8 in xsltParseStylesheetProcess at 
workdir/UnpackedTarball/libxslt/libxslt/xslt.c:6461:2
>  #9 in xsltParseStylesheetImportedDoc at 
workdir/UnpackedTarball/libxslt/libxslt/xslt.c:6675:9
>  #10 in xsltParseStylesheetDoc at 
workdir/UnpackedTarball/libxslt/libxslt/xslt.c:6714:11
>  #11 in main at workdir/UnpackedTarball/libxslt/xsltproc/xsltproc.c:888:9

Change-Id: I016ca8d24315385bcfeafca56dda44d9be10f517
Reviewed-on: https://gerrit.libreoffice.org/81285
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/external/libxml2/UnpackedTarball_libxml2.mk 
b/external/libxml2/UnpackedTarball_libxml2.mk
index 00398f16af56..3194f1e08e75 100644
--- a/external/libxml2/UnpackedTarball_libxml2.mk
+++ b/external/libxml2/UnpackedTarball_libxml2.mk
@@ -19,6 +19,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,libxml2,\
external/libxml2/libxml2-vc10.patch \
$(if $(filter ANDROID,$(OS)),external/libxml2/libxml2-android.patch) \
external/libxml2/libxml2-icu.patch.0 \
+   external/libxml2/ubsan.patch.0 \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/libxml2/ubsan.patch.0 b/external/libxml2/ubsan.patch.0
new file mode 100644
index ..234f66baddc2
--- /dev/null
+++ b/external/libxml2/ubsan.patch.0
@@ -0,0 +1,11 @@
+--- xpath.c
 xpath.c
+@@ -14529,7 +14529,7 @@
+   }
+ 
+   stream = xmlPatterncompile(str, dict, XML_PATTERN_XPATH,
+-  [0]);
++  namespaces == NULL ? NULL : [0]);
+   if (namespaces != NULL) {
+   xmlFree((xmlChar **)namespaces);
+   }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128313] New: LibreOffice Calc Editing Find results in Failure to respond - Program hangs

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128313

Bug ID: 128313
   Summary: LibreOffice Calc Editing Find results in
Failure to respond - Program hangs
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: narrawa...@gmail.com

Description:
Use LibreOffice Calc to search and replace "text" in cells of a selected
column.
After the first found item, and request for next, the program stops responding.
Requires forced exit.

Steps to Reproduce:
1.Repeated event with different strings
2.repeated event in different spread sheet
3.

Actual Results:
1. Select column
2. Edit/Find, Enter Find "string1", Enter Replace "string2"
3. Tick "Current selection only".
4. Find next, result is OK;  Find Next. 

Expected Results:
Following Second  Calc stops responding


Reproducible: Always


User Profile Reset: No



Additional Info:
Calc should move to next item satisfying find criterion and wait for entry.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-commits] core.git: 2 commits - compilerplugins/clang sd/inc sd/source

2019-10-21 Thread Stephan Bergmann (via logerrit)
 compilerplugins/clang/getstr.cxx   |1 -
 sd/inc/OutlinerIterator.hxx|4 ++--
 sd/source/ui/view/OutlinerIterator.cxx |4 ++--
 3 files changed, 4 insertions(+), 5 deletions(-)

New commits:
commit 41147e20029c80c4941ca81bc5dca3782bef5d94
Author: Stephan Bergmann 
AuthorDate: Mon Oct 21 22:12:06 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Tue Oct 22 07:19:03 2019 +0200

Make comparison operator member functions const

...which avoids overload resolution ambiguities in C++20, when a synthesized
candidate of operator == for a reversed-argument rewrite conflicts with the
actual operator ==, due to the asymmetric const-ness of the implicit object
parameter and the RHS parameter.  (As observed with recent Clang 10 trunk 
with
-std=c++2a:

> sd/source/ui/view/Outliner.cxx:543:44: error: use of overloaded operator 
'!=' is ambiguous (with operand types '::sd::outliner::Iterator' and 
'sd::outliner::Iterator')
> mbMatchMayExist = 
(maObjectIterator!=sd::outliner::OutlinerContainer(this).begin());
>^ 
~
> sd/inc/OutlinerIterator.hxx:133:10: note: candidate function
> bool operator!= (const Iterator& rIterator);
>  ^
> sd/inc/OutlinerIterator.hxx:125:10: note: candidate function
> bool operator== (const Iterator& rIterator);
>  ^
> sd/inc/OutlinerIterator.hxx:125:10: note: candidate function (with 
reversed parameter order)

)

Change-Id: Ia477f3f9cf19a5ae0e15a4536d70924962098ce4
Reviewed-on: https://gerrit.libreoffice.org/81280
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sd/inc/OutlinerIterator.hxx b/sd/inc/OutlinerIterator.hxx
index dcc8238d4271..e78e9447d506 100644
--- a/sd/inc/OutlinerIterator.hxx
+++ b/sd/inc/OutlinerIterator.hxx
@@ -122,7 +122,7 @@ public:
 @return
 Returns  when both iterators point to the same object.
 */
-bool operator== (const Iterator& rIterator);
+bool operator== (const Iterator& rIterator) const;
 /** Test whether two iterators point to different objects.  This is just
 the negation of the result of the equality operator.
 @param rIterator
@@ -130,7 +130,7 @@ public:
 @return
 Returns  when both iterators point to the different objects.
 */
-bool operator!= (const Iterator& rIterator);
+bool operator!= (const Iterator& rIterator) const;
 /** Reverse the direction of iteration.  The position of the iterator is
 not changed.  Thus calling this method twice returns to the old state.
 */
diff --git a/sd/source/ui/view/OutlinerIterator.cxx 
b/sd/source/ui/view/OutlinerIterator.cxx
index aa7bb51b1184..b91e6de9640c 100644
--- a/sd/source/ui/view/OutlinerIterator.cxx
+++ b/sd/source/ui/view/OutlinerIterator.cxx
@@ -104,7 +104,7 @@ Iterator& Iterator::operator++ ()
 return *this;
 }
 
-bool Iterator::operator== (const Iterator& rIterator)
+bool Iterator::operator== (const Iterator& rIterator) const
 {
 if (!mxIterator || !rIterator.mxIterator)
 return mxIterator.get() == rIterator.mxIterator.get();
@@ -112,7 +112,7 @@ bool Iterator::operator== (const Iterator& rIterator)
 return *mxIterator == *rIterator.mxIterator;
 }
 
-bool Iterator::operator!= (const Iterator& rIterator)
+bool Iterator::operator!= (const Iterator& rIterator) const
 {
 return ! operator==(rIterator);
 }
commit 20c6dfde1dff22de7d38ecea00bcf75aa21a1694
Author: Stephan Bergmann 
AuthorDate: Mon Oct 21 19:27:12 2019 +0200
Commit: Stephan Bergmann 
CommitDate: Tue Oct 22 07:18:49 2019 +0200

There doesn't need to be a TemplateSpecializationType here

On both macOS (libc++) and Windows (MSVC standard library),
compilerplugins/clang/test/getstr.cxx failed four tests without this fix:

> error: 'error' diagnostics expected but not seen:
>   File compilerplugins/clang/test/getstr.cxx Line 29: suspicious use of 
'getStr' on an object of type 'rtl::OUStringBuffer'; the result is implicitly 
cast to a void pointer in a call of 'operator <<' [loplugin:getstr]
>   File compilerplugins/clang/test/getstr.cxx Line 30: directly use object 
of type 'S' (aka 'rtl::OString') in a call of 'operator <<', instead of calling 
'getStr' first [loplugin:getstr]
>   File compilerplugins/clang/test/getstr.cxx Line 34: suspicious use of 
'getStr' on an object of type 'rtl::OUStringBuffer'; the result is implicitly 
cast to a void pointer in a call of 'operator <<' [loplugin:getstr]
>   File compilerplugins/clang/test/getstr.cxx Line 35: directly use object 
of type 'rtl::OString' in a call of 'operator <<', instead of calling 'getStr' 
first [loplugin:getstr]

Change-Id: I65406d3d84bb5a89df44c8fd665b6e38d19f38c7
Reviewed-on: https://gerrit.libreoffice.org/81266
Tested-by: Jenkins

[Libreoffice-bugs] [Bug 94147] Some Selected Objects Flash/Blink

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94147

--- Comment #14 from MarjaE  ---
As of 6.2.8, still an issue. Can't see screen when trying to move text objects.

As of MacOS 10.14.6, MacOS system settings don't include a system-wide fix.
Some help requires at Ask LibreOffice suggest that Inux system settings aren't
working either.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128312] Calculation involing some decimals return incorrect floats with 12 d.p.

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128312

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #2 from Mike Kaganski  ---
This is normal: computers represent numbers as binary numbers, and not all
decimal numbers are representable as finite binary floating-point numbers.
E.g., a simple 0.1 is not finite in binary form.

See http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems.

Users working with fractional numbers should account for that.

Closing NOTABUG.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-21 Thread Mike Kaganski (via logerrit)
 basic/source/runtime/stdobj1.cxx |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 2008880a57754c5e54625b06fb9a1a23a848a617
Author: Mike Kaganski 
AuthorDate: Mon Oct 21 11:27:11 2019 +0300
Commit: Mike Kaganski 
CommitDate: Tue Oct 22 06:50:38 2019 +0200

These should be sal_Int16

Change-Id: I18112d114c4632961b86da5539959c0d4abd79c7
Reviewed-on: https://gerrit.libreoffice.org/81276
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/basic/source/runtime/stdobj1.cxx b/basic/source/runtime/stdobj1.cxx
index f648ea1a7fa0..039be508aef9 100644
--- a/basic/source/runtime/stdobj1.cxx
+++ b/basic/source/runtime/stdobj1.cxx
@@ -295,8 +295,8 @@ void SbStdClipboard::MethGetData( SbxArray* pPar_ )
 return;
 }
 
-sal_uInt16 nFormat = pPar_->Get(1)->GetInteger();
-if( !nFormat  || nFormat > 3 )
+sal_Int16 nFormat = pPar_->Get(1)->GetInteger();
+if( nFormat <= 0 || nFormat > 3 )
 {
 StarBASIC::Error( ERRCODE_BASIC_BAD_ARGUMENT );
 return;
@@ -312,8 +312,8 @@ void SbStdClipboard::MethGetFormat( SbxVariable* pVar, 
SbxArray* pPar_ )
 return;
 }
 
-sal_uInt16 nFormat = pPar_->Get(1)->GetInteger();
-if( !nFormat  || nFormat > 3 )
+sal_Int16 nFormat = pPar_->Get(1)->GetInteger();
+if( nFormat <= 0 || nFormat > 3 )
 {
 StarBASIC::Error( ERRCODE_BASIC_BAD_ARGUMENT );
 return;
@@ -341,8 +341,8 @@ void SbStdClipboard::MethSetData( SbxArray* pPar_ )
 return;
 }
 
-sal_uInt16 nFormat = pPar_->Get(2)->GetInteger();
-if( !nFormat  || nFormat > 3 )
+sal_Int16 nFormat = pPar_->Get(2)->GetInteger();
+if( nFormat <= 0 || nFormat > 3 )
 {
 StarBASIC::Error( ERRCODE_BASIC_BAD_ARGUMENT );
 return;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-10-21 Thread Mike Kaganski (via logerrit)
 basic/source/comp/token.cxx |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 1b2f97a5bd66f74d4ca631f81f2371ac7ceeb1c4
Author: Mike Kaganski 
AuthorDate: Mon Oct 21 11:09:59 2019 +0300
Commit: Mike Kaganski 
CommitDate: Tue Oct 22 06:49:47 2019 +0200

These should be sal_Int32

Change-Id: If00ef09bec9b66cd4b7725398b2cdb3f49a3fe90
Reviewed-on: https://gerrit.libreoffice.org/81274
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/basic/source/comp/token.cxx b/basic/source/comp/token.cxx
index 3b6d81416fc0..cad82280b216 100644
--- a/basic/source/comp/token.cxx
+++ b/basic/source/comp/token.cxx
@@ -242,9 +242,9 @@ SbiToken SbiTokenizer::Peek()
 {
 if( ePush == NIL )
 {
-sal_uInt16 nOldLine = nLine;
-sal_uInt16 nOldCol1 = nCol1;
-sal_uInt16 nOldCol2 = nCol2;
+sal_Int32 nOldLine = nLine;
+sal_Int32 nOldCol1 = nCol1;
+sal_Int32 nOldCol2 = nCol2;
 ePush = Next();
 nPLine = nLine; nLine = nOldLine;
 nPCol1 = nCol1; nCol1 = nOldCol1;
@@ -434,10 +434,10 @@ special:
 {
 // from 15.3.96, special treatment for END, at Peek() the current
 // time is lost, so memorize everything and restore after
-sal_uInt16 nOldLine = nLine;
-sal_uInt16 nOldCol  = nCol;
-sal_uInt16 nOldCol1 = nCol1;
-sal_uInt16 nOldCol2 = nCol2;
+sal_Int32 nOldLine = nLine;
+sal_Int32 nOldCol  = nCol;
+sal_Int32 nOldCol1 = nCol1;
+sal_Int32 nOldCol2 = nCol2;
 OUString aOldSym = aSym;
 SaveLine(); // save pLine in the scanner
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 106526] Impress dual head presentation to 4K or QHD resolution monitor or projector has presentation screen tearing

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106526

--- Comment #23 from james demongin  ---
(In reply to tsevelyna from comment #22)
> Now I also use 4k TV on the street, so I can take more diagonal and enjoy
> the quality of the picture! Sorry just need to use tv cover from
> https://calicovers.com/

Thats a great idea. 4k television are great TVs. is like having a theater in
you home

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 106526] Impress dual head presentation to 4K or QHD resolution monitor or projector has presentation screen tearing

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106526

james demongin  changed:

   What|Removed |Added

URL||https://calicovers.com/

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128312] Calculation involing some decimals return incorrect floats with 12 d.p.

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128312

--- Comment #1 from Sam  ---
Created attachment 155224
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155224=edit
Screenshot of Calc showing formula incorrect and calculation result

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128312] New: Calculation involing some decimals return incorrect floats with 12 d.p.

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128312

Bug ID: 128312
   Summary: Calculation involing some decimals return incorrect
floats with 12 d.p.
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: serge...@gmail.com

Description:
Simple subtraction calculation with 2 decimals produces an ugly looking float
result with 12 decimal places and lots of 9's.

Steps to Reproduce:
1. Enter the following cell values:
B1: 31000.99
B2: 32000.12

2. Enter the following cell formula:
B4: =B1-B2

Expected value in B4: -999.13
Actual value in B4: -999.1297


Actual Results:
Actual value in B4: -999.1297

Expected Results:
Expected value in B4: -999.13


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.3.2.2 (x64)
Build ID: 98b30e735bda24bc04ab42594c85f7fd8be07b9c
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
Locale: en-AU (en_AU); UI-Language: en-GB
Calc: CL

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 55676] embedding movies in libre office

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55676

--- Comment #7 from Darin Hill  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.
Moreover (https://ggstreetview.com), I didn't see the difference of action
between the first and the second icon indicated in the Subash's attachment.
Also, other elements in the bottom bar have no help messages (even in en-US
UI).

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123290] android- cannot open files with writer (Android 9)

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123290

baffclan  changed:

   What|Removed |Added

 CC||baffc...@yahoo.co.jp

--- Comment #12 from baffclan  ---
Reproduce with Newest LibreOffice Viewer.

LibreOffice Viewer / Android
Version: 6.4.0.0.alpha1+
BuildID: 3aaa2ec8c603
Android-ARM@24-Bytemark-Hosting/2019-10-21_22.04.56

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128101] Crash - Cannot View ODT Document at LibreOffice Viewer

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128101

baffclan  changed:

   What|Removed |Added

Summary|Cannot View ODT Document at |Crash - Cannot View ODT
   |LibreOffice Viewer  |Document at LibreOffice
   ||Viewer
 CC||xiscofa...@libreoffice.org

--- Comment #1 from baffclan  ---
Reproduce with Newest LibreOffice Viewer.

LibreOffice Viewer / Android
Version: 6.4.0.0.alpha1+
BuildID: 3aaa2ec8c603
Android-ARM@24-Bytemark-Hosting/2019-10-21_22.04.56

Xisco, can you test this?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124536] Crash while opening Chinese documents

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124536

--- Comment #7 from baffclan  ---
Reproduce with Newest LibreOffice Viewer.

LibreOffice Viewer / Android
Version: 6.4.0.0.alpha1+
BuildID: 3aaa2ec8c603
Android-ARM@24-Bytemark-Hosting/2019-10-21_22.04.56

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128311] New: LibreOffice opens cwk drawings with LOO Write, allows save to odt, but not odg.

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128311

Bug ID: 128311
   Summary: LibreOffice opens cwk drawings with LOO Write, allows
save to odt, but not odg.
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: erw...@alumni.beloit.edu

Description:
1. Appleworks/Clarisworks used the same extension .cwk for all file types:
writing, drawing, painting, spreadsheet, database.

2. LibreOffice opens these as Writer files, usually a safe bet.

3. LibreOffice doesn't allow users to open these as Draw files. Or once opened
in Writer, to save them as Draw files.

4. Manually changing the file extension doesn't work either.

Steps to Reproduce:
1. Take an Appleworks drawing.
2. Open with LibreOffice.
3. Try to save as odg instead of odt.
4. Save as odt, quit.
5. Manually change extension.
6. Open with LibreOffice again.
7. Try to save as odg.

Actual Results:
3. find that odg is not available.
7. still not available.

Expected Results:
3. an option t save as .odg
7. or at least to open as .odg after manually changing the extension


Reproducible: Always


User Profile Reset: No



Additional Info:
3. some other save as options should be available, for when LibreOffice
misreads file types. And possibly for other uses.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125687] Extreme memory usage opening/saving a large ODS with tracking changed enabled

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125687

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125013] Python error 'certificate verify failed (_ssl.c:719)'

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125013

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127872] Columns of identical formulas seem to store each formula separately

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127872

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128113] file Open type menu has about 155 items, please organize

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128113

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128005] Remove the useless "Menubar" button in NotebookBar on macOS.

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128005

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127781] Crash in documentLoadNative method in a library compiled for arm64-v8a

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127781

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128287] LibreOffice menu bar not displayed in Windows 10 high contrast view

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128287

--- Comment #5 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128287] LibreOffice menu bar not displayed in Windows 10 high contrast view

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128287

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127540] menu About > Show License crashes

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127540

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125537] Object's width / height is shown different on Impress' / Calc's sidebar and statusbar

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125537

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125765] FILEOPEN VIEWING XLSX applies first sheet gridlines settings for every sheet

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125765

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123152] [Regression] USB dialog pops up every time I do something with usb, please don't

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123152

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|QA:needsComment |

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 127877] FILESAVE: MS Excel format in libreoffice-6.3.1.2-snap1 (or related) lags/freezes for more than "previous versions"

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127877

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123600] LO-Viewer Writer UI unusable on LineageOS

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123600

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|QA:needsComment |

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126440] LibreOffice v.6.2.x series will not install properly on Mageia Linux v.7

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126440

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126530] Tabbed Notebook Bar Usability Issues on Windows 10

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126530

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 122871] soffice process hanging on exit (mutex related)

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122871

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128113] file Open type menu has about 155 items, please organize

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128113

--- Comment #13 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126440] LibreOffice v.6.2.x series will not install properly on Mageia Linux v.7

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126440

--- Comment #6 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125013] Python error 'certificate verify failed (_ssl.c:719)'

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125013

--- Comment #10 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 126440] LibreOffice v.6.2.x series will not install properly on Mageia Linux v.7

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126440

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-ux-advise] [Bug 126530] Tabbed Notebook Bar Usability Issues on Windows 10

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126530

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

[Libreoffice-bugs] [Bug 108897] [META] XLSX (OOXML) bug tracker

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108897
Bug 108897 depends on bug 123501, which changed state.

Bug 123501 Summary: Saved xlsx file, LibreOffice crashed, now file is corrupted
https://bugs.documentfoundation.org/show_bug.cgi?id=123501

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 122871] soffice process hanging on exit (mutex related)

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122871

--- Comment #4 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123501] Saved xlsx file, LibreOffice crashed, now file is corrupted

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123501

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123501] Saved xlsx file, LibreOffice crashed, now file is corrupted

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123501

--- Comment #3 from QA Administrators  ---
Dear icemanjunk,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 120120] No macro security for smb

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120120

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-ux-advise] [Bug 128113] file Open type menu has about 155 items, please organize

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128113

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

[Libreoffice-ux-advise] [Bug 128113] file Open type menu has about 155 items, please organize

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128113

--- Comment #13 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

[Libreoffice-bugs] [Bug 123667] Some greek fonts (LTR) are typed at wrong direction (RTL)

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123667

--- Comment #8 from QA Administrators  ---
Dear dkarnout,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 93348] Base crashes when entering login information for jdbc connection to MariaDB database (Windows 64bit)

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93348

--- Comment #12 from QA Administrators  ---
Dear Andreas Gottardi,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 120120] No macro security for smb

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120120

--- Comment #7 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124185] #EDITING #TABLE (Paste on Table Bug)

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124185

--- Comment #2 from QA Administrators  ---
Dear nory,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108897] [META] XLSX (OOXML) bug tracker

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108897
Bug 108897 depends on bug 121739, which changed state.

Bug 121739 Summary: Keeps asking to use the same App when opening an .xlsx file
https://bugs.documentfoundation.org/show_bug.cgi?id=121739

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121739] Keeps asking to use the same App when opening an .xlsx file

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121739

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 121739] Keeps asking to use the same App when opening an .xlsx file

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121739

--- Comment #6 from QA Administrators  ---
Dear Ulrich Dillge,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 50301] RTL: DOC - Shapes, images and textboxes not positioned correctly in two column page

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50301

--- Comment #14 from QA Administrators  ---
Dear A Sh,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 92666] Base Form/Database Closed When Report Window Closed If Database Browser Window .SetVisible(False)

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92666

--- Comment #11 from QA Administrators  ---
Dear Doug,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123667] Some greek fonts (LTR) are typed at wrong direction (RTL)

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123667

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 44954] delegate search to the database

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44954

--- Comment #14 from QA Administrators  ---
Dear Lionel Elie Mamane,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 59036] EDITING AutoCorrect: "Remove blank paragraphs" will work for all styles, other "[M]" options only for Default

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59036

--- Comment #8 from QA Administrators  ---
Dear Mirosław Zalewski,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 45649] UI: Blinking hourglass icon during slideshow

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45649

--- Comment #19 from QA Administrators  ---
Dear Zoltan Laszlo,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 124897] Conditional format is changing format templates

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124897

--- Comment #3 from QA Administrators  ---
Dear Joachim Wetzig,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 58745] EDITING Extending date lists with dates of 29th or greater by dragging misses month ends

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58745

--- Comment #6 from QA Administrators  ---
Dear Joachim Wetzig,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 47351] Improper kerning of subscripts for italic characters

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47351

--- Comment #9 from QA Administrators  ---
Dear bellgardt,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 38453] Impress text wave effect

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38453

--- Comment #7 from QA Administrators  ---
Dear Steven Baur,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 59952] EDITING: Original (Sub-)Title text box can not be grouped with other elements

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59952

--- Comment #8 from QA Administrators  ---
Dear bugquestcontri,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 47352] Unacceptable kerning of subscripts in Math formulas for italic style

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47352

--- Comment #12 from QA Administrators  ---
Dear bellgardt,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 44225] text outside contour when rotating

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44225

--- Comment #13 from QA Administrators  ---
Dear ridi,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 113134] Hebrew Dagesh/Mapiq mis-rendered with Culmus fonts in special chars dialog and when inserted

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113134

--- Comment #28 from QA Administrators  ---
Dear Eyal Rozenberg,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 40200] SYLK Ignores Character Limits and Encoding

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40200

--- Comment #9 from QA Administrators  ---
Dear Scott M. Sanders,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 108720] Do not render previews of symbol fonts

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108720

--- Comment #10 from QA Administrators  ---
Dear Yousuf Philips (jay) (retired),

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128310] Crash when I open a specific Libre Office Writer file (SR_P.odt) and search or modify. Other similar files in the same directory are OK (so far).

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128310

--- Comment #1 from Tobias Green  ---
I copied the URL for the bug report, but then copied the full file name to
include in my report, overwriting the bug URL.  I don't know how to find it
again, but will report it the next time this happens (unless you have a fix
before then).

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128310] New: Crash when I open a specific Libre Office Writer file (SR_P.odt) and search or modify. Other similar files in the same directory are OK (so far).

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128310

Bug ID: 128310
   Summary: Crash when I open a specific Libre Office Writer file
(SR_P.odt) and search or modify.  Other similar files
in the same directory are OK (so far).
   Product: LibreOffice
   Version: 6.2.7.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tgr...@mcn.org

Description:
I have a directory with large word processing research files in Libre Office
Writer.  For the last several weeks, when I open SR_P.odt (one of about 20 such
files) and do a search, the screen moves to within a page or two of the target,
but never the correct spot.  When I try to scroll up or down, it keeps
returning to the same place.  Sometimes I can move the right-hand slider bar
and then scroll to the proper location, but often this does not work. 
Occasionally I can modify and save the text, but usually it crashes the entire
program.  Recovery works, but the problem with that specific file persists and
may be getting worse.  The other files in that directory do not seem to be
affected, and all my other work (I am a college professor, so there are many of
them) is not affected.  I have been using Libre for about six years and, aside
from minor glitches, this is first persistent problem I have encountered

Steps to Reproduce:
1.Open C:\Users\Tobias Green\Dropbox\New folder\Dropbox\DBoxDocs\IFL
Inc\SocReg_odt\SR_P
2.Search for some text
3.

Actual Results:
The search results in going to a page near the target text, but not the correct
one.  Scrolling (usually need to go upward) lands you back on the same page. 
Moving the right-hand slider bar up or down a little lands on a nearby page and
sometimes you can then scroll back to the target text, but this works only
occasionally and seems to be working less often.

Expected Results:
Libre Office Writer crashes, necessitating a recovery.  After it has been
recovered and closed, returning later to that specific file (SR_P) produces the
same result.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Found the target text, permitted editing, then allowing me to save and close
the file.  Then, obviously, to reopen in it edit.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128276] Font names are not localized (Mac OS X) on macOS Catalina

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128276

--- Comment #9 from Tomofumi Yagi  ---
I quote a comment from Gerrit :
- start - 
Thank you for your review, Khaled Hosny.

>What happens if a document that uses a localized font name is open in a system 
>that uses the English (or other language) font name?

The document is displayed in a different font, because font fallback occurs.
I uploaded screenshots to Bugzilla, so please refer.
https://bugs.documentfoundation.org/show_bug.cgi?id=128276

>Is the localized name stored in the document?

Yes.
I uploaded Writer documents(flat odf) to Bugzilla, so please refer.
https://bugs.documentfoundation.org/show_bug.cgi?id=128276
- e n d -

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128307] EDIT: Unwanted removing of space character on save

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128307

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from V Stuart Foote  ---
(In reply to John from comment #2)
Sorry, on a different system (with 6.3.2.2 installed) still can not reproduce.

With mouse select, then a +X, or simply a  key delete--the space
remains.

Maybe you could work up a test file and steps to reproduce.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128276] Font names are not localized (Mac OS X) on macOS Catalina

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128276

--- Comment #8 from Tomofumi Yagi  ---
Created attachment 155223
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155223=edit
LocalizedFontnameTestLibO6.2.6.fodt

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128276] Font names are not localized (Mac OS X) on macOS Catalina

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128276

--- Comment #7 from Tomofumi Yagi  ---
Created attachment 155222
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155222=edit
LocalizedFontnameTestPatchedMaster.fodt

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128276] Font names are not localized (Mac OS X) on macOS Catalina

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128276

--- Comment #6 from Tomofumi Yagi  ---
Created attachment 155221
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155221=edit
a screenshot on macOS Catalina

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 107983] Extreme slow down when adding or changing Table columns and rows?

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107983

--- Comment #7 from mrbjnu  ---
On a large array of rows and columns when adding or changing rows or columns
there is an extreme slow down the Writer program. It stops goes dark and
freezes for a long time before preforming the task.  This sometimes is minutes.
 I use complex Writer tables a lot and this happens every time there is a need
to add a row. This problem did not occur on the older version 4 of LibraOffice
running Ubuntu 14.04 LTS.  It is still a problem with the current system
details listed below.

A) Current System Details
Computer: Dell Pavilion P6747 which has an AMD Athlon II x4, Graphics:
Gallium 0.4 on NVAA: 64-bit, 2Tb HD, 7.5Gb memory, gnome 3.28.2
Operating System: Ubuntu 18.04.2
Libre Office version 6.0.7.3
B) Reproduction Steps
Using an Inserted Table in a four pages ledger with various size row
(40-60 per page) and multi columns (10-20) with some row and column shading
LibreOffice becomes slow at adding rows or columns.  The ledge was built from
four or so lines with 24 columns.  It was  simple using the “add line,” “split
cell,” and “merge cell” tools, but time consuming.  I will add an example if I
can attach a LibreOffice Writer document.
C) Test cases
Every time I try to add a row and have to wait forever for all writer
documents to unfreeze.  This can be a few minutes.
D) Attached ledger EXAMPLE.odt

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 107983] Extreme slow down when adding or changing Table columns and rows?

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107983

mrbjnu  changed:

   What|Removed |Added

   Severity|minor   |normal
 Resolution|INSUFFICIENTDATA|---
 Status|RESOLVED|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from mrbjnu  ---
On a large array of rows and columns when adding or changing rows or columns
there is an extreme slow down the Writer program. It stops goes dark and
freezes for a long time before preforming the task.  This sometimes is minutes.
 I use complex Writer tables a lot and this happens every time there is a need
to add a row. This problem did not occur on the older version 4 of LibraOffice
running Ubuntu 14.04 LTS.  It is still a problem with the current system
details listed below.

A) Current System Details
Computer: Dell Pavilion P6747 which has an AMD Athlon II x4, Graphics:
Gallium 0.4 on NVAA: 64-bit, 2Tb HD, 7.5Gb memory, gnome 3.28.2
Operating System: Ubuntu 18.04.2
Libre Office version 6.0.7.3
B) Reproduction Steps
Using an Inserted Table in a four pages ledger with various size row
(40-60 per page) and multi columns (10-20) with some row and column shading
LibreOffice becomes slow at adding rows or columns.  The ledge was built from
four or so lines with 24 columns.  It was  simple using the “add line,” “split
cell,” and “merge cell” tools, but time consuming.  I will add an example if I
can attach a LibreOffice Writer document.
C) Test cases
Every time I try to add a row and have to wait forever for all writer
documents to unfreeze.  This can be a few minutes.
D) Attached ledger EXAMPLE.odt

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 107983] Extreme slow down when adding or changing Table columns and rows?

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107983

--- Comment #5 from mrbjnu  ---
Created attachment 155220
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155220=edit
An example of a large array of rows and columns

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128307] EDIT: Unwanted removing of space character on save

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128307

--- Comment #2 from John  ---
Looking on your screenshots I'm not sure you understand the description
correctly. Well, it's my fault, let me explain better.

Here is the example:

* https://google.com/[Google]

It have an asterisk, a hyperlink, and a hyperlink description. I.e.:

* hyperlink: https://google.com/
* hyperlink description: [Google]

Select the hyperlink part and cut it with Ctrl-X.

Before:
* https://google.com/[Google]

After:
*[Google]

Expected:
* [Google]

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 107983] Extreme slow down when adding or changing Table columns and rows?

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107983

--- Comment #4 from mrbjnu  ---
Created attachment 155219
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155219=edit
An example of a large array of rows and columns

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128308] Cannot open the attached document.

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128308

--- Comment #1 from Robert Kwan  ---
Created attachment 155218
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155218=edit
Screenshot

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128306] Undo clears all changes to text object rather than changes in the object

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128306

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
Can not reproduce on Windows 10 Ent 64-bit en-US with
Version: 6.3.2.2 (x64)
Build ID: 98b30e735bda24bc04ab42594c85f7fd8be07b9c
CPU threads: 8; OS: Windows 10.0; UI render: GL; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

With a new Draw document
Draw Text box created to canvas
write multiple lines of text
assign a bullet selection to each
position cursor to end bullet, and indent, appears on the 'Undo' button list
box

undo--> indent is backed out, appears on the 'Redo' button's list box

I did notice the list box of the split 'Undo' button is a little twitchy--its
selection on 'mouse over' seems a bit too quick to select and inadvertently
apply multiple undo actions.

Was that possibly the issue?

Even so, the multiple Undo's do show up on the Redo list box.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128276] Font names are not localized (Mac OS X) on macOS Catalina

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128276

--- Comment #5 from Tomofumi Yagi  ---
(In reply to Tomofumi Yagi from comment #0)

The locale was wrong.
The following version is correct.

バージョン: 6.2.6.2
Build ID: 684e730861356e74889dfe6dbddd3562aae2e6ad
CPU threads: 4; OS:Mac OS X 10.15; UI render: default; VCL: osx; 
ロケール: ja-JP (ja_JP.UTF-8); UIの言語: ja-JP
Calc: threaded

> バージョン: 6.2.6.2
> Build ID: 684e730861356e74889dfe6dbddd3562aae2e6ad
> CPU threads: 4; OS:Mac OS X 10.15; UI render: default; VCL: osx; 
> ロケール: ja-JP (zh_Hans.UTF-8); UIの言語: ja-JP
> Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128309] New: Opening Appleworks drawing: "Quicktime and a TIFF uncompressed decompressor are needed to see this picture"

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128309

Bug ID: 128309
   Summary: Opening Appleworks drawing: "Quicktime and a TIFF
uncompressed decompressor are needed to see this
picture"
   Product: Document Liberation Project
   Version: unspecified
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: erw...@alumni.beloit.edu

Just opening an old Appleworks drawing.

An image in the background gives the above error.

Also, LibreOffice opens these drawings as .odt instead of .odg, and doesn't
allow users to save as .odg.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128307] EDIT: Unwanted removing of space character on save

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128307

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
Created attachment 155217
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155217=edit
spaces present on pasted strings

Can not confirm on Windows 10 Ent 64-bit en-US with
Version: 6.3.2.2 (x64)
Build ID: 98b30e735bda24bc04ab42594c85f7fd8be07b9c
CPU threads: 8; OS: Windows 10.0; UI render: GL; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

nor with current master/6.4.0alpha1+
Version: 6.4.0.0.alpha1+ (x64)
Build ID: 3e8fb860d92160e41a1aef5a0a53e4447120eb2e
CPU threads: 8; OS: Windows 10.0 Build 18362; UI render: GL; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

The pasted string keep their spaces as noted by the NPC blue dots.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128308] New: Cannot open the attached document.

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128308

Bug ID: 128308
   Summary: Cannot open the attached document.
   Product: LibreOffice
   Version: unspecified
  Hardware: ARM
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fck...@yahoo.com

Created attachment 155216
  --> https://bugs.documentfoundation.org/attachment.cgi?id=155216=edit
The Libre Office Android viewer cannot open the attached document.

The Libre Office Android viewer cannot open the attached document.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128307] New: EDIT: Unwanted removing of space character on save

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128307

Bug ID: 128307
   Summary: EDIT: Unwanted removing of space character on save
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: johnsmithbeat...@gmail.com

Description:
1. Ensure AutoCorrect is off: Tools > AutoCorrect > While Typing = False.

2. Type: 

```
* http://google.com[Google]
```

This is AsciiDoc format for hyperlinks, but you could type something different,
e.g.

```
foo bar[baz]
```

3. Select the hyperlink (example 1) or "bar" (example 2) and cut it. 
4. Notice that there is no space now:

```
*[Google]
foo[baz]
```

Expected:

```
* [Google]
foo [baz]
```

Tested with 6.2.7.1 (x86) and 6.4.0.0.alpha0+ (x86).


Steps to Reproduce:
-

Actual Results:
-

Expected Results:
-


Reproducible: Always


User Profile Reset: Yes



Additional Info:

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128113] file Open type menu has about 155 items, please organize

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128113

--- Comment #12 from Nick Levinson  ---
I went to https://dev-builds.libreoffice.org/daily/master/ and followed
breadcrumbs but did not see an explanation distinguishing between TDF and
TDF-dbg so I assume they're identical except that one shows debugging
information that I probably don't need. As I dug down from the first URL, I
selected the latest available, and that led me to appproximately 372 choices,
roughly half for "deb" and almost all of the rest being "rpm". I can likely
figure out which of those two to choose, but, other than that, I didn't see a
file name ending with anything I recognized as meaning 'the whole thing'. If I
decide to try this, what do I do? Which file do I install? Is there a page with
instructions for this? I might get to it on Sunday.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-ux-advise] [Bug 128113] file Open type menu has about 155 items, please organize

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128113

--- Comment #12 from Nick Levinson  ---
I went to https://dev-builds.libreoffice.org/daily/master/ and followed
breadcrumbs but did not see an explanation distinguishing between TDF and
TDF-dbg so I assume they're identical except that one shows debugging
information that I probably don't need. As I dug down from the first URL, I
selected the latest available, and that led me to appproximately 372 choices,
roughly half for "deb" and almost all of the rest being "rpm". I can likely
figure out which of those two to choose, but, other than that, I didn't see a
file name ending with anything I recognized as meaning 'the whole thing'. If I
decide to try this, what do I do? Which file do I install? Is there a page with
instructions for this? I might get to it on Sunday.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise

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

2019-10-21 Thread Eike Rathke (via logerrit)
 sc/source/core/tool/interpr3.cxx |   59 +--
 1 file changed, 33 insertions(+), 26 deletions(-)

New commits:
commit 475165e431b5392e426db0de4cea50efc2513875
Author: Eike Rathke 
AuthorDate: Mon Oct 21 19:47:13 2019 +0200
Commit: Eike Rathke 
CommitDate: Tue Oct 22 01:19:04 2019 +0200

Resolves: tdf#127982 SMALL()/LARGE() rank array can be larger than data 
array

Only set error for the positions where the requested rank is out
of bounds. This also includes zero or negative rank values,
instead of setting a global error.

Regression from

commit e22ab5e6f6b0ea49231ca454a567133996306116
CommitDate: Thu Nov 15 22:12:01 2018 +0100

Resolves: i#32345 Make LARGE()/SMALL() return an array

Where previously due to the iteration in the array case single
values were returned and assembled.

Change-Id: Ic992c56cb79e80269cc7200fac5b15cb8aca3566
Reviewed-on: https://gerrit.libreoffice.org/81279
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/sc/source/core/tool/interpr3.cxx b/sc/source/core/tool/interpr3.cxx
index c545d781911b..3e41643e6c50 100644
--- a/sc/source/core/tool/interpr3.cxx
+++ b/sc/source/core/tool/interpr3.cxx
@@ -3642,48 +3642,50 @@ void ScInterpreter::CalculateSmallLarge(bool bSmall)
 
 SCSIZE nCol = 0, nRow = 0;
 auto aArray = GetTopNumberArray(nCol, nRow);
-auto aArraySize = aArray.size();
-if (aArraySize == 0 || nGlobalError != FormulaError::NONE)
+const auto nRankArraySize = aArray.size();
+if (nRankArraySize == 0 || nGlobalError != FormulaError::NONE)
 {
 PushNoValue();
 return;
 }
-assert(aArraySize == nCol * nRow);
-for (double fArg : aArray)
-{
-double f = ::rtl::math::approxFloor(fArg);
-if (f < 1.0)
-{
-PushIllegalArgument();
-return;
-}
-}
+assert(nRankArraySize == nCol * nRow);
 
 std::vector aRankArray;
-aRankArray.reserve(aArraySize);
+aRankArray.reserve(nRankArraySize);
 std::transform(aArray.begin(), aArray.end(), 
std::back_inserter(aRankArray),
-   [](double f) { return static_cast(f); });
-
-auto itMaxRank = std::max_element(aRankArray.begin(), aRankArray.end());
-assert(itMaxRank != aRankArray.end());
-SCSIZE k = *itMaxRank;
+[](double f) {
+f = rtl::math::approxFloor(f);
+// Valid ranks are >= 1.
+if (f < 1.0 || f > std::numeric_limits::max())
+return static_cast(0);
+return static_cast(f);
+});
 
 vector aSortArray;
 GetNumberSequenceArray(1, aSortArray, false );
-SCSIZE nSize = aSortArray.size();
-if (nSize == 0 || nGlobalError != FormulaError::NONE || nSize < k)
+const SCSIZE nSize = aSortArray.size();
+if (nSize == 0 || nGlobalError != FormulaError::NONE)
 PushNoValue();
-else if (aArraySize == 1)
+else if (nRankArraySize == 1)
 {
-vector::iterator iPos = aSortArray.begin() + (bSmall ? k-1 : 
nSize-k);
-::std::nth_element( aSortArray.begin(), iPos, aSortArray.end());
-PushDouble( *iPos);
+const SCSIZE k = aRankArray[0];
+if (k < 1 || nSize < k)
+PushNoValue();
+else
+{
+vector::iterator iPos = aSortArray.begin() + (bSmall ? k-1 
: nSize-k);
+::std::nth_element( aSortArray.begin(), iPos, aSortArray.end());
+PushDouble( *iPos);
+}
 }
 else
 {
 std::set aIndices;
 for (SCSIZE n : aRankArray)
-aIndices.insert(bSmall ? n-1 : nSize-n);
+{
+if (1 <= n && n <= nSize)
+aIndices.insert(bSmall ? n-1 : nSize-n);
+}
 // We can spare sorting when the total number of ranks is small enough.
 // Find only the elements at given indices if, arbitrarily, the index 
size is
 // smaller than 1/3 of the haystack array's size; just sort it 
squarely, otherwise.
@@ -3702,7 +3704,12 @@ void ScInterpreter::CalculateSmallLarge(bool bSmall)
 
 aArray.clear();
 for (SCSIZE n : aRankArray)
-aArray.push_back(aSortArray[bSmall ? n-1 : nSize-n]);
+{
+if (1 <= n && n <= nSize)
+aArray.push_back( aSortArray[bSmall ? n-1 : nSize-n]);
+else
+aArray.push_back( CreateDoubleError( FormulaError::NoValue));
+}
 ScMatrixRef pResult = GetNewMat(nCol, nRow, aArray);
 PushMatrix(pResult);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 128115] Writer less efficient with battery power than gedit

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128115

Nick Levinson  changed:

   What|Removed |Added

   Severity|normal  |enhancement

--- Comment #2 from Nick Levinson  ---
I agree that there are many differences in the feature set, but surely we can
see that faster power depletion is a disadvantage and the feature set does not
itself imply greater power consumption, which is why I hypothesized that it had
to do with segment swaps. My hypothesis may well be wrong, but then the battery
wearing out sooner should have some other explanation; features per se for
users are not that.

I've changed this from a bug report to an enhancement request: that power
consumption be reduced.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 97038] FILEOPEN DOCX Image aligned to page instead of table

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97038

--- Comment #16 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/3aaa2ec8c60330e3fdf21507a235aade4eb63d43

tdf#97038: Add unittest

It will be available in 6.4.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-10-21 Thread Xisco Fauli (via logerrit)
 sw/qa/extras/ooxmlimport/data/tdf97038.docx |binary
 sw/qa/extras/ooxmlimport/ooxmlimport2.cxx   |7 +++
 2 files changed, 7 insertions(+)

New commits:
commit 3aaa2ec8c60330e3fdf21507a235aade4eb63d43
Author: Xisco Fauli 
AuthorDate: Mon Oct 21 16:34:39 2019 +0200
Commit: Xisco Faulí 
CommitDate: Mon Oct 21 23:48:39 2019 +0200

tdf#97038: Add unittest

Fixed by e042a83843ed2573dbce9338058b3dc545dd6898

d630f69d90f15bc652a62648b05ea515de78d16a fixes the .doc part

Change-Id: Id8bb1fd1a8eb10dcdacc66601b1b5f9f9252bdee
Reviewed-on: https://gerrit.libreoffice.org/81248
Tested-by: Jenkins
Reviewed-by: Xisco Faulí 

diff --git a/sw/qa/extras/ooxmlimport/data/tdf97038.docx 
b/sw/qa/extras/ooxmlimport/data/tdf97038.docx
new file mode 100644
index ..8295d5199968
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/tdf97038.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx
index e76ba3385a76..f5ff5b3b53e8 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport2.cxx
@@ -103,6 +103,13 @@ DECLARE_OOXMLIMPORT_TEST(testTdf108849, "tdf108849.docx")
  getPages());
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf97038, "tdf97038.docx")
+{
+// Without the accompanying fix in place, this test would have failed, as 
the importer lost the
+// fLayoutInCell shape property for wrap-though shapes.
+CPPUNIT_ASSERT(getProperty(getShapeByName("Kep2"), 
"IsFollowingTextFlow"));
+}
+
 DECLARE_OOXMLIMPORT_TEST(testTdf109524, "tdf109524.docx")
 {
 uno::Reference xTablesSupplier(mxComponent, 
uno::UNO_QUERY);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 97038] FILEOPEN DOCX Image aligned to page instead of table

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97038

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.4.0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128306] Undo clears all changes to text object rather than changes in the object

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128306

--- Comment #1 from AaronPeterson  ---
I was trying to increase the indent of a bulleted item, it incorrectly did the
indent of everything, I hit undo, it borked me... 
(text area object in draw, it may happen in other applicaitons)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128282] restart manually numbering of numbered lists

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128282

--- Comment #3 from zionoto  ---
(In reply to Dieter Praas from comment #2)
> (In reply to zionoto from comment #0)
> > I'm experimenting with numbered lists in writer and I noticed that every
> > time I create a new list separated from a previous one by other text even
> > chapters away I have to tell writer that it must restart the number from 1.
> > If I don't click on the button to restart the number from 1 writer continues
> > from the previous last value of the previous list. I can't find any
> > AUTOMATIC way to restart the number in a certain style. 
> 
> Context menu => Bullet and Numbering => Number List
> Result: A new numbered list is created
> 
> => RESOLVED NOTABUG


This works but nevertheless the way LibreOffice behaves when applying the style
set as numbered list is weird because it has to create a new list directly
without the need for the user to act as you suggested: simply it isn't logic to
have a continuation of a list after paragraphs of other texts or even separated
by chapters.
A new list chapters away or paragraphs away from the previous one must created
starting from 1. Only when the user needs a continuation (that is a really rare
case) hits the button to continue from the previous list. But such a case
doesn't happen frequently so LO IMHO has to act in the most logical way: it has
to create a new numbered list starting from 1 as default behavior, not as a
continuation of a previous one.

Consequentially, IMHO, this still remains as an abnormal behavior of LO Writer:
maybe it is wanted, maybe it is not a bug, nevertheless it's the wrong way to
go.

So I beg you think again a bit longer about that. IMHO this issue deserves a
more accurate evaluation even about ergonomics, easiness and usability of the
software.

Personally I vote to keep this issue open and not as solved. So I ask to
correct it or at least to add an option to set into the style the desired
behavior so the user can customize it as needed from time to time.

Thank everybody so much for comprehension.

Cheers.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 128306] New: Undo clears all changes to text object rather than changes in the object

2019-10-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128306

Bug ID: 128306
   Summary: Undo clears all changes to text object rather than
changes in the object
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: myusualnickn...@gmail.com

I did a lot of careful cutting and pasting and hit undo and was bopped out of
the object and got the text area object before any edits...  I was very unhappy
I  had to go find the content again. and change fonts and it took less time to
write the bug report than to redo my work... so I figured it counts as a normal
severity bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

  1   2   3   4   5   >