[Libreoffice-bugs] [Bug 116129] Calc Cell Range method ClearContents does not work with com.sun.star.sheet.CellFlags.STYLES

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116129

--- Comment #6 from himajin100...@gmail.com ---
https://opengrok.libreoffice.org/xref/core/sc/source/core/data/column3.cxx?r=fb9a5d89#1016

What would happen if nDelFlag has STYLES only when (ATTRIB == (HARDATTR |
STYLES))?

https://opengrok.libreoffice.org/xref/core/sc/inc/global.hxx?r=a2601800#175

I first thought it could be ok if I rewrite

(nDelFlag & InsertDeleteFlags::ATTRIB) != InsertDeleteFlags::NONE

instead of 

(nDelFlag & InsertDeleteFlags::ATTRIB) == InsertDeleteFlags::ATTRIB

, but in that case it seems, at least to me , that we would not at all need
else-if section.

-- 
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 116127] Cell Range method ClearContents does not work with com.sun.star.sheet.CellFlags.EDITATTR

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116127

--- Comment #6 from himajin100...@gmail.com ---
Just a guess:

https://opengrok.libreoffice.org/xref/core/sc/source/ui/unoobj/cellsuno.cxx?r=316b07d0#1819
https://opengrok.libreoffice.org/xref/core/sc/inc/global.hxx?r=a2601800#177
https://opengrok.libreoffice.org/xref/core/sc/inc/global.hxx?r=a2601800#169

InsertDeleteFlags::ALL does not contain flags for EDITATTR
Shouldn't this be 

( static_cast(nContentFlags) & InsertDeleteFlags::EDITATTR )

instead of 

( nDelFlags & InsertDeleteFlags::EDITATTR )  

?

-- 
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 127648] LO on Linux crashes when accessing opend/locked File on SAMBA network share

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127648

Julien Nabet  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 CC||noelgran...@gmail.com,
   ||sberg...@redhat.com
 Status|NEEDINFO|UNCONFIRMED
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||3099

--- Comment #6 from Julien Nabet  ---
Thank you for your feedback.

Even if there are not argument values passed to the functions, your bt helps.

I noticed this function:
117 sal_Int32 SAL_CALL
118 XInputStream_impl::readBytes(
119  uno::Sequence< sal_Int8 >& aData,
120  sal_Int32 nBytesToRead )
121 {
122 if( ! m_nIsOpen ) throw io::IOException( THROW_WHERE );
123 
124 aData.realloc(nBytesToRead);
125 //TODO! translate memory exhaustion (if it were detectable...)
into
126 // io::BufferSizeExceededException
127 
128 sal_uInt64 nrc(0);
129 if(m_aFile.read( aData.getArray(),sal_uInt64(nBytesToRead),nrc )
130!= osl::FileBase::E_None)
131 throw io::IOException( THROW_WHERE );
132 
133 // Shrink aData in case we read less than nBytesToRead
(XInputStream
134 // documentation does not tell whether this is required, and I do
not know
135 // if any code relies on this, so be conservative---SB):
136 if (sal::static_int_cast(nrc) != nBytesToRead)
137 aData.realloc(sal_Int32(nrc));
138 return static_cast(nrc);
139 }

If nBytesToRead > max sal_Int32, we may get a negative value for nrc.

Noel/Stephan: considering git history of ucb/source/ucp/file/filinpstr.cxx,
thought you might be interested in this one.

It may be a dup of tdf#113099

-- 
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 113099] Reopening file from Samba share crashes LO

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113099

Julien Nabet  changed:

   What|Removed |Added

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

-- 
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 127651] LibreOffice calc fails to properly perform a simple sort

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127651

Julien Nabet  changed:

   What|Removed |Added

Version|6.3.1.2 release |6.0.1.1 release

--- Comment #6 from Julien Nabet  ---
It's indicated "earliest affected".
=> I reverted back the version.
For the rest, I don't know if it's a bug or not.

-- 
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 127590] [META] Application Programming Interface (API), when all scripted languages are affected

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127590

himajin100...@gmail.com changed:

   What|Removed |Added

 Depends on||116129


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116129
[Bug 116129] Calc Cell Range method ClearContents does not work with
com.sun.star.sheet.CellFlags.STYLES
-- 
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 107659] [META] Macro bugs and enhancements

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107659

himajin100...@gmail.com changed:

   What|Removed |Added

 Depends on|116129  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116129
[Bug 116129] Calc Cell Range method ClearContents does not work with
com.sun.star.sheet.CellFlags.STYLES
-- 
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 116129] Calc Cell Range method ClearContents does not work with com.sun.star.sheet.CellFlags.STYLES

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116129

himajin100...@gmail.com changed:

   What|Removed |Added

 Blocks|107659  |127590


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107659
[Bug 107659] [META] Macro bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=127590
[Bug 127590] [META] Application Programming Interface (API), when all scripted
languages are affected
-- 
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 116127] Cell Range method ClearContents does not work with com.sun.star.sheet.CellFlags.EDITATTR

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116127

himajin100...@gmail.com changed:

   What|Removed |Added

 Blocks|107659  |127590


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107659
[Bug 107659] [META] Macro bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=127590
[Bug 127590] [META] Application Programming Interface (API), when all scripted
languages are affected
-- 
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 127590] [META] Application Programming Interface (API), when all scripted languages are affected

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127590

himajin100...@gmail.com changed:

   What|Removed |Added

 Depends on||116127


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116127
[Bug 116127] Cell Range method ClearContents does not work with
com.sun.star.sheet.CellFlags.EDITATTR
-- 
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 107659] [META] Macro bugs and enhancements

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107659

himajin100...@gmail.com changed:

   What|Removed |Added

 Depends on|116127  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116127
[Bug 116127] Cell Range method ClearContents does not work with
com.sun.star.sheet.CellFlags.EDITATTR
-- 
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 127657] FIREBIRD: Query input parameter throws error when referred field is integer

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127657

--- Comment #9 from Julien Nabet  ---
Created attachment 154335
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154335=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated today, I could reproduce this.

I attached a bt from setString error.

debugging a bit indicates that dtype =  SQL_SHORT
so it goes to default case:
235 default:
236 ::dbtools::throwSQLException(
237 "Incorrect type for setString",
238 ::dbtools::StandardSQLState::INVALID_SQL_DATA_TYPE,
239 *this);

I got no idea how to fix this.
I tried to call setShort but it expects a short value and I'm not sure that
converting OUString sInput into a short is the right way.

-- 
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 127657] FIREBIRD: Query input parameter throws error when referred field is integer

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127657

Julien Nabet  changed:

   What|Removed |Added

 CC|serval2...@yahoo.fr |

--- Comment #10 from Julien Nabet  ---
uncc myself since I can't help here.

-- 
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 127678] New: LibreOffice Base: Database Form is not responding -- Search-form HANGS permanently!

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127678

Bug ID: 127678
   Summary: LibreOffice Base: Database Form is not responding --
Search-form HANGS permanently!
   Product: LibreOffice
   Version: 6.2.7.1 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rpeter...@gmail.com

Description:
NOTE:  My Split database is FULLY functional with 6.1.6.3  I just upgraded to
6.2.7 and searching using a form fails (permanently HANGS) for combo-forms.  In
fact, I never get the chance to type anything into the search form -- it is
DEAD!
Combo-form: I have tables that are linked and parts of 2 different tables are
shown in a single form.  Data is shown properly in a combo-form.  When I try do
a simple search, libreoffice HANGS before I can type anything into the
search-form.

Forms that only have information from 1 table can be searched.

I am using hsql in a split database format -- I got tired of the crashes when
hsql was internal.  See
https://www.businessprogrammer.com/create-libreoffice-base-split-database/ for
an example setup.

I am currently using hsql 2.4.1

Steps to Reproduce:
Contact me and I will send a database package that reproduces this problem.  I
will not send MY database as it has sensitive info.

Actual Results:
searching combo-forms fails.  One CANNOT type into the search form

Expected Results:
One can type into search form and execute the search!


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: FormDesign
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

-- 
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 127651] LibreOffice calc fails to properly perform a simple sort

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127651

Ted Waugh  changed:

   What|Removed |Added

Version|6.0.1.1 release |6.3.1.2 release

-- 
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 127651] LibreOffice calc fails to properly perform a simple sort

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127651

Ted Waugh  changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Ever confirmed|1   |0
 Resolution|NOTABUG |---

--- Comment #5 from Ted Waugh  ---
I agree that the sorting IF the numbers are formatted as text, not numbers.

However, the result of the sort is correct if the sort function only works on
text not numbers.

Why would the sort change the format from a number to text? If it is making
that change then why only two numbers and not all of them?

I agree that 2001 and 2005 sort correctly IF they are numbers and not text but
the  entire column was entered as numbers. Why should these two numbers not be
converted to text or why should any numbers be converted from text to numbers?

I still believe there is a bug there but don't know how to fix it unless I
never sort on a numbered field. (I can't imagine what the conversion to text
from a number would do to calculations.

-- 
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 127674] Error 1606: Unable to access network location. Windows 10 x86.

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127674

--- Comment #1 from Julien Nabet  ---
Try this
https://support.microsoft.com/en-us/help/17588/windows-fix-problems-that-block-programs-being-installed-or-removed

-- 
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 127648] LO on Linux crashes when accessing opend/locked File on SAMBA network share

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127648

Jan  changed:

   What|Removed |Added

 Attachment #154332|0   |1
is obsolete||

--- Comment #5 from Jan  ---
Created attachment 154334
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154334=edit
backtrace 6.4.0 alpha 2019-09-20_10.11.28

could not firgure out how to get ppa:libreoffice debug symbols.
I hope this helps.

-- 
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 91488] [META] RenderContext related issues

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91488

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||127676


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127676
[Bug 127676] Flickering when changing width of a line or arrow
-- 
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 127676] Flickering when changing width of a line or arrow

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127676

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 Blocks||91488, 112889

--- Comment #1 from V Stuart Foote  ---
Confirmed on Windows 10 Ent 64-bit en-US with recent master
Version: 6.4.0.0.alpha0+ (x64)
Build ID: f0c832acb53326ccc9a8c1a47401fbc9e1081feb
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@62-TDF, Branch:master, Time: 2019-09-11_05:46:53
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

and on
Version: 6.3.1.2 (x64)
Build ID: b79626edf0065ac373bd1df5c28bd630b4424273
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

The Sidebar Properties deck in the Line content panel the drop list of line
widths 'Width:' flickers continually as if being redrawn multiple cycles.

For both builds, with OpenGL rendering enabled, the line widths on the content
panel's drop list are stable.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=91488
[Bug 91488] [META] RenderContext related issues
https://bugs.documentfoundation.org/show_bug.cgi?id=112889
[Bug 112889] [META] Screen flickering when hovering on items or selecting text
with default rendering
-- 
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 112889] [META] Screen flickering when hovering on items or selecting text with default rendering

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112889

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||127676


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127676
[Bug 127676] Flickering when changing width of a line or arrow
-- 
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 127677] Consistency for properties input in Draw UI

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127677

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |INSUFFICIENTDATA

--- Comment #1 from V Stuart Foote  ---
@Arian,

Thanks for posting. But we track issues/enhancements one feature at a time.

Please write them up separately--while checking if the feature requests have
already been submitted. And the relationship of GUI elements on Toolbars,
Sidebar Deck (where your first and second requests occur), the Notebook Bar
UIs, and on the dedicated task related Dialogs.

Not saying there is no merit--just that blanket "make it better" enhancments
are not really actionable.  The devs need specific designs to work against.

Regards...

-- 
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 127651] LibreOffice calc fails to properly perform a simple sort

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127651

m.a.riosv  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg
 Resolution|--- |NOTABUG

--- Comment #4 from m.a.riosv  ---
The issue it that 2005 is a number in a number format cell, while the next are
number in cells formatted as text, so text not number, so in sort go after not
before.
Doing a clear format [Ctrl-M] makes visible what is happening.

For me not a bug, please if you are not agree reopen it.

-- 
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 127654] Extending the timeout value for a "Link to External Data"

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127654

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Please attach a sample file showing the issue.

-- 
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 127633] Relative Cells

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127633

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
BTW something can be done with Named Ranges using relative address in it.

But I can't believe even the U team spending time on 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 127592] [META] LibreOffice Basic incl."Option Compatible" modules

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127592

himajin100...@gmail.com changed:

   What|Removed |Added

 Depends on||57308


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=57308
[Bug 57308] Basic IDE: watching of variable not working if variable is
returning value of function
-- 
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 57308] Basic IDE: watching of variable not working if variable is returning value of function

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57308

himajin100...@gmail.com changed:

   What|Removed |Added

 Blocks|108908  |127592


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108908
[Bug 108908] [META] Visual Basic for Applications (VBA) macro issues
https://bugs.documentfoundation.org/show_bug.cgi?id=127592
[Bug 127592] [META] LibreOffice Basic incl."Option Compatible" modules
-- 
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 108908] [META] Visual Basic for Applications (VBA) macro issues

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108908

himajin100...@gmail.com changed:

   What|Removed |Added

 Depends on|57308   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=57308
[Bug 57308] Basic IDE: watching of variable not working if variable is
returning value of function
-- 
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 85371] Redim with function name

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85371

himajin100...@gmail.com changed:

   What|Removed |Added

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

-- 
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 57308] Basic IDE: watching of variable not working if variable is returning value of function

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57308

himajin100...@gmail.com changed:

   What|Removed |Added

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

-- 
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 127648] LO on Linux crashes when accessing opend/locked File on SAMBA network share

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127648

--- Comment #4 from Julien Nabet  ---
Would it be possible you upgrade to 6.3.1 by using LO ppa and provide a
backtrace with this version?
Indeed, investigating on an obsolete version is not very relevant.

-- 
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 127677] New: Consistency for properties input in Draw UI

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127677

Bug ID: 127677
   Summary: Consistency for properties input in Draw UI
   Product: LibreOffice
   Version: 6.3.1.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 14arianud...@gmail.com

This is a list of some of the thing that could be done to make LibreOffice more
consistent in UI design: 

-There is a transparency slider for the area fill of a shape but there is no
transparency slider for the line/outline of a shape, just a vaue input. It
would really help to add a transparency slider for ease ease of access and also
to make LibreOffice more conssitent in UI design.

-For the shadow there is also an input value for the angle unlike the position
and size  where there is a actual "circular slider" (sorry, not aware of what
the actual name is) to set the angle of the shape, this could be added to
change the orientation or angle of the shadow for an object.

-The properties for and equation (size and fonts as well as spacing ) could be
put in the properties tab, his would make tasks such as changing things like
the size more easy and quicker. It also helps newer users since when you look
for a way to change the size of the equation it is not apparent at first and
took me a while to figure out where it might be.

Hope I'm not asking too much but I strongly believe that changes like this help
improve user experience, productivity and efficiency.

-- 
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 127463] FILEOPEN DOCX Table made from grouped shapes shows up in the table

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127463

--- Comment #5 from Noel Grandin  ---
You sure about that bisection? Nothing in that commit touches anything related
to writer shapes.

-- 
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 127651] LibreOffice calc fails to properly perform a simple sort

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127651

--- Comment #3 from Ted Waugh  ---
Created attachment 154333
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154333=edit
New version still did not sort correctly.

-- 
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 127676] New: Flickering when changing width of a line or arrow

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127676

Bug ID: 127676
   Summary: Flickering when changing width of a line or arrow
   Product: LibreOffice
   Version: 6.3.1.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 14arianud...@gmail.com

When I go to change the width of a line or arrow in the properties tab, after I
click and the tab opens with the different nile widths, there is a constan
flickering that only is visible in that specific tab. So far thos doesn't
happen with any of the other properties appart from the line width.

-- 
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 127648] LO on Linux crashes when accessing opend/locked File on SAMBA network share

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127648

--- Comment #3 from Jan  ---
Created attachment 154332
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154332=edit
gdbtrace-6.0.7-0ubuntu0.18.04.9.log

I followed this guide to get all ubuntu debug symbols for Build-ID:
1:6.0.7-0ubuntu0.18.04.9:
https://wiki.ubuntu.com/Debug%20Symbol%20Packages
sudo apt install libreoffice-*-dbgsym

Then i opened ODS file by 2nd user
soffice --backtrace /mnt/locked\ for\ crash.ods

-- 
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 127675] Pasting only 65536 rows to Calc from Excel

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127675

--- Comment #4 from Mike Kaganski  ---
So the idea is to add the Biff12 Clipboard format support, which would take
precedence over the other two Biff formats on import.

-- 
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 127675] Pasting only 65536 rows to Calc from Excel

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127675

Mike Kaganski  changed:

   What|Removed |Added

 Blocks||103411


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103411
[Bug 103411] [META] Paste from MSO applications bugs and enhancements
-- 
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 103411] [META] Paste from MSO applications bugs and enhancements

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103411

Mike Kaganski  changed:

   What|Removed |Added

 Depends on||127675


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127675
[Bug 127675] Pasting only 65536 rows to Calc from Excel
-- 
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 103411] [META] Paste from MSO applications bugs and enhancements

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103411

Mike Kaganski  changed:

   What|Removed |Added

 Depends on|127675  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127675
[Bug 127675] Pasting only 65536 rows to Calc from Excel
-- 
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 127675] Pasting only 65536 rows to Calc from Excel

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127675

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
Version|6.4.0.0.alpha0+ Master  |Inherited From OOo
 Blocks|103411  |
 OS|All |Windows (All)
   Keywords||difficultyBeginner,
   ||easyHack, skillCpp

--- Comment #3 from Mike Kaganski  ---
Excel (tested with ver.2016) stores these formats to clipboard:

CF_TEXT
CF_BITMAP
CF_METAFILEPICT
CF_SYLK
CF_DIN
CF_UNICODETEXT
CF_ENHMETAFILE
Embed Source
Link Source
Object Descriptor
Link Source Descriptor
HTML Format
Rich Text Format
Hyperlink
Csv
Link
Biff8
Biff5
XML Spreadsheet
Biff12

The Biff8 is what is chosen by Calc when pasting (see
ScViewFunc::PasteFromSystem()). It is a format that is limited to 256 columns
and 65536 rows, hence it can't contain everything that Excel is capable to
store to clipboard (Biff5 has the same constraints). "XML Spreadsheet" format
seems to be the Excel 2003 XML format; and Biff12 is "Excel Binary Workbook"
(.xlsb), which is the format supported by LibreOffice (read-only) and doesn't
have the limitation of the older Biff formats.

The Biff8 clipboard format support was added in commit
https://git.libreoffice.org/core/+/f5412bb121481cf1e48af4d6dc10674bec6c095c.

Adding "easyhack" keyword.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103411
[Bug 103411] [META] Paste from MSO applications bugs and enhancements
-- 
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 127449] Edit->Find in LibreOffice Calc returns "search key not found" when the search term contains an apostrophe.

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127449

--- Comment #6 from raal  ---
Created attachment 154331
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154331=edit
apostrophe copied to text file

Looks like apostrophe  written and apostrophe in the file are not identical.

I can reproduce with Version: 6.4.0.0.alpha0+
Build ID: 0d90da9ea0a23c9c4afac62025208559b1496a0e
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3;

-- 
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 127619] [macOS][High Sierra 10.13.6]LibreOffice crash within 40s after opening app

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127619

--- Comment #10 from pjakru...@yahoo.com ---
Sorry, yes, it is enabled for once a week. I also downloaded and installed the
latest version with the same results

-- 
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 127648] LO on Linux crashes when accessing opend/locked File on SAMBA network share

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127648

Jan  changed:

   What|Removed |Added

 Attachment #154302|libreoffice crashes |libreoffice
description|immediatly aber accessing a |6.3.1~rc2-0ubuntu0.19.04.1~
   |locked file |lo1 crashes immediatly
   ||after accessing a locked
   ||file

-- 
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 97653] INSERT: woman's body not rendered in SVG

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97653

Buovjaga  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|NOTABUG |---

--- Comment #7 from Buovjaga  ---
It was already pointed out in the description:

(In reply to Yousuf Philips (jay) (retired) from comment #0)
> The image renders in a similar incorrect fashion in all browsers, but
> renders correctly in inkscape.

Two bugs don't make a 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-bugs] [Bug 88278] [META] SVG import image filter (all modules)

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88278
Bug 88278 depends on bug 97653, which changed state.

Bug 97653 Summary: INSERT: woman's body not rendered in SVG
https://bugs.documentfoundation.org/show_bug.cgi?id=97653

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|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-bugs] [Bug 127675] Pasting only 65536 rows to Calc from Excel

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127675

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
Open file from attach in Excel of course =(

-- 
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 127675] Pasting only 65536 rows to Calc from Excel

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127675

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

   What|Removed |Added

 Blocks||103411


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103411
[Bug 103411] [META] Paste from MSO applications bugs and enhancements
-- 
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 103411] [META] Paste from MSO applications bugs and enhancements

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103411

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

   What|Removed |Added

 Depends on||127675


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127675
[Bug 127675] Pasting only 65536 rows to Calc from Excel
-- 
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 127675] Pasting only 65536 rows to Calc from Excel

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127675

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 154330
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154330=edit
Example XLSX with 10 rows with data

-- 
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 127675] New: Pasting only 65536 rows to Calc from Excel

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127675

Bug ID: 127675
   Summary: Pasting only 65536 rows to Calc from Excel
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
Pasting only 65536 rows to Calc from Excel

possible a problem with selecting of right format for pasting from clipboard in
LibreOffice Calc

Steps to Reproduce:
1. Open XLSX file from attach
2. Copy cell range A1:A10
3. Try paste it into Calc => will be paste only 65536 rows instead of all
10


Actual Results:
Pasting only 65536 rows to Calc from Excel

Expected Results:
Pasting all data from Excel to Calc


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.4.0.0.alpha0+ (x64)
Build ID: 06925c1230cd6269fa5189ac3f4d608c9edf68e9
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-09-17_00:45:28
Locale: ru-RU (ru_RU); UI-Language: en-US
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 127674] New: Error 1606: Unable to access network location. Windows 10 x86.

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127674

Bug ID: 127674
   Summary: Error 1606:  Unable to access network location.
Windows 10 x86.
   Product: LibreOffice
   Version: unspecified
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cyberglen...@gmail.com

I seem to always get some kind of error with your shitty ass software.
Installation problems galore.
Now I get ERROR 1606: Unable to access network location with LibreOffice
6.3.1.2.
I can't even delete your shit from my computer. (MSI I guess)

You are by far the most incompetent software developers I have ever
encountered.

Please advise me of how I can delete your shit from my computer forever.

I am going to post my dissatisfaction all over the internet.

-- 
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 127660] Changing Units doesn't affect paper sizes in Print dialog

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127660

Oliver Brinzing  changed:

   What|Removed |Added

 CC||oliver.brinz...@gmx.de
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||6978

--- Comment #1 from Oliver Brinzing  ---
Can you please have a look at:

Bug 126978 - Measurement units for paper size in 'Print' dialog does not follow
application settings

-- 
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 126978] Measurement units for paper size in 'Print' dialog does not follow application settings

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126978

Oliver Brinzing  changed:

   What|Removed |Added

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

-- 
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 127670] LO --> insert .bmp file looks like black screen

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127670

Oliver Brinzing  changed:

   What|Removed |Added

Version|6.3.1.2 release |Inherited From OOo
 CC||oliver.brinz...@gmx.de

--- Comment #3 from Oliver Brinzing  ---
reproducible with AOO 4.1.5

-- 
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 36737] default values of string type and object type for optional parameters are not processed

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36737

himajin100...@gmail.com changed:

   What|Removed |Added

Summary|default string values for   |default values of string
   |optional parameters are not |type and object type for
   |processed   |optional parameters are not
   ||processed

-- 
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 107659] [META] Macro bugs and enhancements

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107659

himajin100...@gmail.com changed:

   What|Removed |Added

 Depends on|116676  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116676
[Bug 116676] Function insertTextPortion() of XTextPortionAppend Interface
doesn't work
-- 
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 127590] [META] Application Programming Interface (API), when all scripted languages are affected

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127590

himajin100...@gmail.com changed:

   What|Removed |Added

 Depends on||116676


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116676
[Bug 116676] Function insertTextPortion() of XTextPortionAppend Interface
doesn't work
-- 
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 116676] Function insertTextPortion() of XTextPortionAppend Interface doesn't work

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116676

himajin100...@gmail.com changed:

   What|Removed |Added

 Blocks|107659  |127590


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107659
[Bug 107659] [META] Macro bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=127590
[Bug 127590] [META] Application Programming Interface (API), when all scripted
languages are affected
-- 
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 116676] Function insertTextPortion() of XTextPortionAppend Interface doesn't work

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116676

--- Comment #7 from himajin100...@gmail.com ---
https://opengrok.libreoffice.org/xref/core/forms/source/richtext/richtextunowrapper.hxx?r=61dd9caf#40
https://opengrok.libreoffice.org/xref/core/include/editeng/unotext.hxx?r=3667031e#482
https://opengrok.libreoffice.org/xref/core/include/editeng/unotext.hxx?r=3667031e#408

-- 
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 127662] Save Remote - Remote Files - Add Service - Google Drive requests non-existent 6-digit pin

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127662

Oliver Brinzing  changed:

   What|Removed |Added

 CC||oliver.brinz...@gmx.de

--- Comment #1 from Oliver Brinzing  ---
2FA is known to be broken:

Bug 101630 - Google Drive two-factor authentication (2FA) not working again

did not know that login via username/pw is broken too ...

-- 
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 99562] Error rasterization of SVG gradients

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99562

--- Comment #14 from Xisco Faulí  ---
Created attachment 154329
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154329=edit
How the image looks like before my patch

-- 
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 125341] Crash upon exporting a specific document to PDF in Windows 10 (not always reproducible)

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125341

Dieter Praas  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
Crash report or||["mergedlo.dll"]
crash signature||
 Ever confirmed|1   |0

--- Comment #25 from Dieter Praas  ---
(In reply to Igx from comment #24)
> I don't know how you manage to generate this information, 

Copy from Help => About LibreOffice

-- 
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 127670] LO --> insert .bmp file looks like black screen

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127670

MM  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Version|6.4.0.0.alpha0+ Master  |6.3.1.2 release
 OS|Linux (All) |All
 Ever confirmed|0   |1

--- Comment #2 from MM  ---
Confirmed on windows 7 x64 with Version: 6.3.2.1 (x64)
Build ID: db810050ff08fd4774137f693d5a01d22f324dfd
CPU threads: 3; OS: Windows 6.1; UI render: default; VCL: win

Looks a bit like the problem as in bug 113814, but attachment 137733 from that
report loads fine with LO6.2+ and the one in this report still gives a black
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 125341] Crash upon exporting a specific document to PDF in Windows 10 (not always reproducible)

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125341

--- Comment #24 from Igx  ---
> Still no crash

Gasp :-(

> Version: 6.3.2.2 (x64)
> Build-ID: 98b30e735bda24bc04ab42594c85f7fd8be07b9c
> CPU-Threads: 4; BS: Windows 10.0; UI-Render: GL; VCL: win; 
> Gebietsschema: de-DE (de_DE); UI-Sprache: de-DE
> Calc: threaded

I don't know how you manage to generate this information, but here are the
differences with my installation :

- Version is 6.3.1.2
- No OpenGL, , but material acceleration checked
- localization : fr-FR (like the bug submitter himself... maybe that's a clue
?)

> As Timur wrote in comment 21: Doe you recieve a crah report?

Sometimes (not always)

> Please write link here if it does.

crashreport.libreoffice.org/stats/crash_details/a264e087-4383-4906-b2dd-dd1fee603b38

-- 
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 97539] INSERT: SVG clippath not fully supported

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97539

Xisco Faulí  changed:

   What|Removed |Added

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

-- 
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 104339] SVG file is inserted empty

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104339

Xisco Faulí  changed:

   What|Removed |Added

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

-- 
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 99562] Error rasterization of SVG gradients

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99562

--- Comment #13 from Xisco Faulí  ---
I believe the problem is



pointing to  with a child  defining the
style.
If the path style is defined in  or  the style is applied

-- 
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 125341] Crash upon exporting a specific document to PDF in Windows 10 (not always reproducible)

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125341

--- Comment #23 from Dieter Praas  ---
(In reply to Igx from comment #22)

> How to recreate the bug :
> - Open document with Libreoffice 6.3.1 on Windows 10
> - Click on the "Direct export to PDF Format" button on main bar

Still no crash

Version: 6.3.2.2 (x64)
Build-ID: 98b30e735bda24bc04ab42594c85f7fd8be07b9c
CPU-Threads: 4; BS: Windows 10.0; UI-Render: GL; VCL: win; 
Gebietsschema: de-DE (de_DE); UI-Sprache: de-DE
Calc: threaded

As Timur wrote in comment 21: Doe you recieve a crah report?
Please write link here if it does.

-- 
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 124914] Paragraph Style Selector missing in iOS

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124914

Tor Lillqvist  changed:

   What|Removed |Added

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

--- Comment #4 from Tor Lillqvist  ---
As per Nicolas's comment, resolving as fixed.

-- 
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 127673] Crash when double tap'ing a table copyed from calc to writer in iOS

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127673

--- Comment #1 from Nicolas Christener  ---
Created attachment 154328
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154328=edit
Video demonstrating the issue

-- 
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 127449] Edit->Find in LibreOffice Calc returns "search key not found" when the search term contains an apostrophe.

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127449

--- Comment #5 from txman...@yahoo.com ---
Created attachment 154327
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154327=edit
Simple Calc sheet with text cells for search, cells contain a text apostrophe

Copying the text from the cells then pasting into the search box returns the
expected result.

Typing the same text into the search box fails.

-- 
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 127673] New: Crash when double tap'ing a table copyed from calc to writer in iOS

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127673

Bug ID: 127673
   Summary: Crash when double tap'ing a table copyed from calc to
writer in iOS
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: iOS
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: iOS
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cont...@0x17.ch

Description:
Copy/paste from calc -> writer works in iOS. If one doble taps on such a table
the app crashes.

Steps to Reproduce:
1. Copy a selection from calc to writer in the iOS app
2. Double tap on the table

Actual Results:
The app crashes.

Expected Results:
The app should not crash.


Reproducible: Always


User Profile Reset: No



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 127672] DOCX Citations are not displayed properly

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127672

--- Comment #1 from Mohammed Saifullah  ---
Created attachment 154326
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154326=edit
Citation Test 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 127672] New: DOCX Citations are not displayed properly

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127672

Bug ID: 127672
   Summary: DOCX Citations are not displayed properly
   Product: LibreOffice
   Version: 6.0.1.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mohammed.saiful...@d2l.com

Description:
DOCX Citations are not displayed properly

Steps to Reproduce:
1.Open attached docx with Citation in MS Word 
2.Open attached docx with Citation in LibreOffice Writer 
3.Citation is not displayed properly in LibreOffice Writer

Actual Results:
DOCX Citations are not displayed properly

Expected Results:
DOCX Citations are expected to be displayed properly


Reproducible: Always


User Profile Reset: No



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 125341] Crash upon exporting a specific document to PDF in Windows 10 (not always reproducible)

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125341

Igx  changed:

   What|Removed |Added

 CC||jm.chall...@free.fr

--- Comment #22 from Igx  ---
Created attachment 154325
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154325=edit
1-character document that exhibits the bug.

I also witnessed the same bug, and reduced my document to the single character
that caused the probem.
Hope this helps...

How to recreate the bug :
- Open document with Libreoffice 6.3.1 on Windows 10
- Click on the "Direct export to PDF Format" button on main bar

-- 
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 127671] Popup with "cut, copy, paste" does not behave correctly on iOS

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127671

Nicolas Christener  changed:

   What|Removed |Added

Summary|Popup with "cut, copy,  |Popup with "cut, copy,
   |paste" does not show up |paste" does not behave
   |automatically on iOS after  |correctly on iOS
   |a selection was made|

-- 
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 127671] New: Popup with "cut, copy, paste" does not show up automatically on iOS after a selection was made

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127671

Bug ID: 127671
   Summary: Popup with "cut, copy, paste" does not show up
automatically on iOS after a selection was made
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: iOS
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: iOS
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cont...@0x17.ch

Description:
In iOS after text was selected a popup shows the most used actions (e.g. "cut,
copy, paste"). The iOS app doesn't show this popup automatically after some
text was selected but it should.

Futhermore, long press (near the cursor?)) when no text is selected should also
show the popup, so a user can for example paste some previously copyed/cut text
at the position of the cursor.

Steps to Reproduce:
1A. Select some text in a writer document using the iOS app

AND

1B. Long press on an empty space after some text was copyed to the clipboard

Actual Results:
1A: The popup containing the "cut, copy, paste" actions won't show up
automatically

AND

1B. The popup does not show up at all

Expected Results:
1A. The popup containing the "cut, copy, paste" actions shuld show up
automatically

AND

1B. The popup should show up above the blinking cursor


Reproducible: Always


User Profile Reset: No



Additional Info:
Apple pages does it in this way as well:

1A: show popup automatically after some text was selected

1B: after long press on an empty part of the document the popup shows above the
blinking cursor

-- 
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 126967] App hangs after trying to change line width

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126967

--- Comment #4 from Tor Lillqvist  ---
(Re: above comment, did not figure out any fix 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 97629] [META] Help Content Modernization

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97629

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||127661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127661
[Bug 127661] Make Help's text area's font size scalable
-- 
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 97629] [META] Help Content Modernization

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97629
Bug 97629 depends on bug 127661, which changed state.

Bug 127661 Summary: Make Help's text area's font size scalable
https://bugs.documentfoundation.org/show_bug.cgi?id=127661

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

-- 
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 127661] Make Help's text area's font size scalable

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127661

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||97629
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |WONTFIX
 Status|UNCONFIRMED |RESOLVED

--- Comment #3 from V Stuart Foote  ---
The F1 Help (either installed off-line or the online link @ Buovjaga lists) is
now all CSS and JavaScript based and is viewed in your default system browser. 

It will respond to your Web browser controls. Make your adjustments as with any
Web content.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97629
[Bug 97629] [META] Help Content Modernization
-- 
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 127670] LO --> insert .bmp file looks like black screen

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127670

Vera Blagoveschenskaya  changed:

   What|Removed |Added

 Blocks||47148


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=47148
[Bug 47148] [META] Image handling problems
-- 
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 47148] [META] Image handling problems

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47148

Vera Blagoveschenskaya  changed:

   What|Removed |Added

 Depends on||127670


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127670
[Bug 127670] LO --> insert .bmp file looks like black screen
-- 
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 127449] Edit->Find in LibreOffice Calc returns "search key not found" when the search term contains an apostrophe.

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127449

--- Comment #4 from raal  ---
Please attach test file. Thanks

-- 
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 127670] LO --> insert .bmp file looks like black screen

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127670

--- Comment #1 from Vera Blagoveschenskaya  ---
Created attachment 154324
  --> https://bugs.documentfoundation.org/attachment.cgi?id=154324=edit
test bmp file

-- 
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 127669] Save to different file formats using the iOS app

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127669

Nicolas Christener  changed:

   What|Removed |Added

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

-- 
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 127670] New: LO --> insert .bmp file looks like black screen

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127670

Bug ID: 127670
   Summary: LO --> insert .bmp file looks like black screen
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ver...@basealt.ru

Description:
.bmp file looks like black screen 

Steps to Reproduce:
1. Open LO document (forexample, Writer or Impress)
2. Insert picture .bmp from the attachment

Actual Results:
Black screen instead of the picture

Expected Results:
Normal view


Reproducible: Always


User Profile Reset: No



Additional Info:
Reproduced for 6.4.0.0 and older

Version: 6.4.0.0.alpha0+
Build ID: 1496a1831d1be0a2d24be9fe3ecf627b2664e938
CPU threads: 4; OS: Linux 4.19; UI render: default; VCL: kf5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2019-09-04_14:52:26
Locale: ru-RU (ru_RU.UTF-8); UI-Language: en-US
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 127449] Edit->Find in LibreOffice Calc returns "search key not found" when the search term contains an apostrophe.

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127449

--- Comment #3 from txman...@yahoo.com ---
(In reply to raal from comment #2)
> I can not reproduce with Version: 6.4.0.0.alpha0+ (x64)
> Build ID: 0d90da9ea0a23c9c4afac62025208559b1496a0e
> CPU threads: 4; OS: Windows 6.1; UI render: default; VCL: win; 
> 
> Seems to be fixed with dev version. Please could you test it with dev
> version?  You can download it here:
> http://dev-builds.libreoffice.org/daily/master/
> Thank you

I uninstalled the release version I had been using, then did a complete
shutdown and cold boot. I then installed (I believe) what you asked.  Here is
the info from "About":

Version: 6.4.0.0.alpha0+ (x64)
Build ID: 4342aaef0c4d6cd5c51fd2b74328bb4df5fb71dd
CPU threads: 8; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-09-20_06:31:38
Locale: en-US (en_US); UI-Language: en-US
Calc: CL

I used the original file where the defect was noted, as well as a much smaller
file as test files.  The newer version I installed does act different in that
when a search string is not found, the text string typed into the search box
changes to a red font. This is new, so it confirms I am running the new
install.

It still fails for me.  Here is detail.
Test string typed into a cell is:   What Doesn't Kill Her
Search for this fails. I get same "Search Key not found" return.
I also tried text "Don't Kill Her" just for fun. Same defect.
If I search for text string stopping before the apostrophe shown in the cell,
it always finds the cell.
Example:  Search for text Doesn will find the cell with "What Doesn't Kil Her".
As noted by another comment, after I type the string into a cell, if I copy
that string, and paste THAT into the search box, the search completes
successfully.

I was very careful in my test procedure, so I believe I am not introducing any
operator error.

-- 
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 127664] UX: message "PDF was saved ..." when saving document as PDF

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127664

Nicolas Christener  changed:

   What|Removed |Added

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

-- 
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 126968] Save as PDF

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126968

Nicolas Christener  changed:

   What|Removed |Added

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

-- 
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 127669] Save to different file formats using the iOS app

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127669

Nicolas Christener  changed:

   What|Removed |Added

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

-- 
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 127669] New: Save to different file formats using the iOS app

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127669

Bug ID: 127669
   Summary: Save to different file formats using the iOS app
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: iOS
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: iOS
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cont...@0x17.ch

Description:
It should be possible to export/save a file to other file formats.

So e.g. if a user edits an "odf" file it should be possible to export/save it
as "docx".

I propose to have an item in the "file" menu like we have in online. But
instead of "downloading" the file I propose to save the file in the current
working directory.



Steps to Reproduce:
1. Create a odt file using the iOS app
2. Open the file with the iOS app
3. Try to save the file as e.g. docx

Actual Results:
It's not possible to save the file in an other file format.

Expected Results:
It should be possible to save the fine in an other file format.


Reproducible: Always


User Profile Reset: No



Additional Info:
Tor implemented the PDF part in #126968, also see:
https://git.libreoffice.org/online/+/634be102c71305f0f35fe86e980ccabb381ae766%5E%21

It would be good to have a user feedback when the file is saved, see: 127664

-- 
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 126976] Make it possible to insert/edit math formulas in the iOS app

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126976

Andras Timar  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

-- 
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 127664] UX: message "PDF was saved ..." when saving document as PDF

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127664

Andras Timar  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

-- 
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 126969] Assign CSV Files with iOS app

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126969

Andras Timar  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
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 126973] iPad OS 13: menu buttons only fire the event after taping it twice

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126973

Andras Timar  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
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 126974] iPad OS 13: closing the app results in a crash

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126974

Andras Timar  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

-- 
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 126958] iOS Collabora Save Xlsx

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126958

Andras Timar  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
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 127667] Assign the usual file extensions / mime types with the iOS app

2019-09-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127667

Andras Timar  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

-- 
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   >