[Libreoffice-bugs] [Bug 89321] The (new) Document Foundation Bugzilla page needs to become more user oriented

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89321

--- Comment #2 from Robinson Tryon (qubit) qu...@runcibility.com ---
Technically speaking, bugs about Bugzilla should go to Redmine:
https://redmine.documentfoundation.org/projects/infrastructure/issues/new

(In reply to A (Andy) from comment #1)
 to understand what is for instance ci-infra,

Yep, ci-infra should also migrate to Redmine, so that the 'LibreOffice' product
can just focus on the LibreOffice suite (and nothing else).

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


[Libreoffice-bugs] [Bug 83726] Applying Styles Does Not Consistently Set Character Properties

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83726

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=50
   ||639

--- Comment #8 from A (Andy) stgohi-lob...@yahoo.de ---
(In reply to Joel Madero from comment #7)
 I am setting this to NEW and asking for ux-advise. I find this behavior to
 be consistently annoying and if a user wants a style applied, they almost
 definitely want every property of that style applied.
 
 UX - any thoughts here? Feel free to close again but please think of users
 who don't know about this direct formatting stuff (and the shortcut of ctrl
 + m to remove it). On one side we tell users to start using styles
 consistently, but on the other, when you apply a style, you don't see
 consistent results.

I agree with Joel.  In Bug 50639 I also already commented that this
local/direct formatting thing is not intuitive.

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


[Libreoffice-bugs] [Bug 89348] New: EDITING infinite loop after paste in SwCntntFrm::MakeAll

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89348

Bug ID: 89348
   Summary: EDITING infinite loop after paste in
SwCntntFrm::MakeAll
   Product: LibreOffice
   Version: 4.3.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Keywords: have-backtrace
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lio...@mamane.lu

Created attachment 113349
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113349action=edit
reproduction case

Reproduced with 4.3.3.2 (Debian x86-64 build) and master as of 2015-02-05 (my
own debug build).

Reproduction instructions

1. Open attached odt file.

2. In the table, go to the middle cell in the row that starts with
   AMN Healthcare.

3. Go to any other program (emacs, terminal, ...)

4. Select any text; copy it if you are not using X11.

5. Go back to the LibreOffice window.

6. Paste the text (with middle mouse button on X11)

Expected behaviour: the text is pasted and LibreOffice continues to function.

Actual behaviour: nearly each time, LibreOffice goes into an infinite CPU loop
(pumps 100% CPU and is completely unresponsive). Sometimes it doesn't enter
infinite loop immediately after the paste, the paste happens, but if one
presses the left arrow button on the keyboard, LibreOffice then goes into
infinite CPU loop.

I ran LibreOffice (master) under gdb to see the infinite loop. It happens in
function SwCntntFrm::MakeAll in file sw/source/core/layout/calcmove.cxx.

The overall execution pattern is:

The loop starts on line 1194:

while ( !mbValidPos || !mbValidSize || !mbValidPrtArea )
{
   
}

It executes until line 1445:

// - loop prevention
{
if ( aOldFrm_StopFormat == Frm() 
 aOldPrt_StopFormat == Prt() )
{
++nConsecutiveFormatsWithoutChange;
}
else
{
nConsecutiveFormatsWithoutChange = 0;
}
}

// Yet again an invalid value? Repeat from the start...
if ( !mbValidPos || !mbValidSize || !mbValidPrtArea )
continue;


Each time it arrives there, the state has been toggled between two states:

STATE 1
===

aOldFrm_StopFormat and aOldPrt_StopFormat look good. Frm() and Prt() have zero
height in their size.

We have !mbValidPos  !mbValidSize  !mbValidPrtArea

STATE 2
===

Frm() and Prt() look good. aOldFrm_StopFormat and aOldPrt_StopFormat have zero
height in their size.

We have mbValidPos  mbValidSize  !mbValidPrtArea



In each case, nConsecutiveFormatsWithoutChange is set to zero and the
continue is invoked since at least one flag is false.


The backtrace looks like:

#7  0x7fa2397d1d73 in SwCntntFrm::MakeAll (this=0x4035030)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/layout/calcmove.cxx:1333
#8  0x7fa2397cc546 in SwFrm::OptPrepareMake (this=this@entry=0x4035030)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/layout/calcmove.cxx:359
#9  0x7fa23982afdc in SwFrm::OptCalc (this=this@entry=0x4035030)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/inc/frame.hxx:1001
#10 0x7fa239828c70 in SwLayAction::_FormatCntnt
(this=this@entry=0x7d004180, pCntnt=pCntnt@entry=0x4035030, 
pPage=pPage@entry=0x40394f0)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/layout/layact.cxx:1818
#11 0x7fa23982810c in SwLayAction::FormatCntnt
(this=this@entry=0x7d004180, pPage=pPage@entry=0x40394f0)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/layout/layact.cxx:1649
#12 0x7fa2398246a1 in SwLayAction::InternalAction
(this=this@entry=0x7d004180)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/layout/layact.cxx:780
#13 0x7fa239822fdb in SwLayAction::Action (this=this@entry=0x7d004180)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/layout/layact.cxx:370
#14 0x7fa23982a248 in SwLayIdle::SwLayIdle (this=0x7d0043b0,
pRt=0x3fc04e0, pI=0x3fbde80)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/layout/layact.cxx:2167
#15 0x7fa239cf1a88 in SwViewShell::LayoutIdle (this=0x3fc0e80)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/view/viewsh.cxx:701
#16 0x7fa239543296 in sw::DocumentTimerManager::DoIdleJobs
(this=this@entry=0x3cdd8a0, pTimer=pTimer@entry=0x3cdd8b8)
at
/home/master/src/libreoffice/workdirs/libreoffice-4-5/sw/source/core/doc/DocumentTimerManager.cxx:120
#17 0x7fa239542fb3 in sw::DocumentTimerManager::LinkStubDoIdleJobs
(pThis=0x3cdd8a0, pCaller=0x3cdd8b8)
at

[Libreoffice-bugs] [Bug 64573] Photo Album: Add Captions feature

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64573

--- Comment #10 from Rishabh kris.kr...@gmail.com ---
I have almost completed the patch and before I submit it for review , any
suggestions if I am missing on any requirement. The patch creates a rectangular
box with attributes-
Color:Black
Transparency: Solid  20%
Any clarification, if it needs to have any default text (Click to insert
Title/Caption) and size of the rectangular box(standard or anything else)?

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


[Libreoffice-bugs] [Bug 50879] form exported as pdf does not embed all required fonts

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50879

Paolo Melchiorre pau...@paulox.net changed:

   What|Removed |Added

 CC||pau...@paulox.net

--- Comment #17 from Paolo Melchiorre pau...@paulox.net ---
Confirm bug on Ubuntu GNU/Linux 14.10

Libreoffice
Versione: 4.4.0.3
Build ID: 40m0(Build:3)
Versione locale: it_IT

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


[Libreoffice-bugs] [Bug 89327] design theme is not available in presentation

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89327

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
What do you mean with Design Theme?  Do you mean the slide layouts from the
Properties section in the sidebar or the slide designs in the Master Page
section of the sidebar or something else?

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


[Libreoffice-bugs] [Bug 89335] Internet Explorer forces oxt download to zip

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89335

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with IE 11, but is this really a bug of LO or of IE?

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


[Libreoffice-bugs] [Bug 89335] Internet Explorer forces oxt download to zip

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89335

--- Comment #2 from Michael Bauer f...@akerbeltz.org ---
I have no idea. But either way it's a problem for LO if IE messes up extensions
during the download, so it should be looked at to see if a fix can be
implemented.

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


[Libreoffice-bugs] [Bug 89314] Cannot paste pictures

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89314

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #3 from V Stuart Foote vstuart.fo...@utsa.edu ---
OP reported in PM, issues resolved with cleared user profile.

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


[Libreoffice-bugs] [Bug 89323] undo option after entering values in table is not working in Libreoffice Impress

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89323

raal r...@post.cz 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89299] Impress Enhancement - Let templates have multiple background images

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89299

raal r...@post.cz changed:

   What|Removed |Added

   Severity|normal  |enhancement

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


[Libreoffice-bugs] [Bug 77960] FILEOPEN: DOCX incorrect line and paragraph spacing

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77960

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #106848|application/octet-stream|application/pdf
  mime type||

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


[Libreoffice-bugs] [Bug 89351] New: UI: Search bar lacks throbber

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89351

Bug ID: 89351
   Summary: UI: Search bar lacks throbber
   Product: LibreOffice
   Version: 4.3.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: las...@csecsy.hu

Steps to reproduce:
1. Have a big spreadsheet open (my one has 10k+ rows in it, with 4 columns
containing data).
2. Open the search bar (eg. by pressing Ctrl+F).
3. Type a search key (preferably one which will not be found, see below).
4. Press Enter to initiate search.

Actual behavior:
I don't get any (visual) feedback about the progress of the search. If the key
is found, then the current cell will go there; if it's not found, then I will
get a message when the search completes.

Expected behavior:
I would appreciate some visual feedback about the progress of the search, at
least a throbber.

Additional steps to mitigate:
5. After an unsuccessful search, type in a different search key which will not
be found.
6. Press Enter to initiate the new search.

Actual behavior:
I don't get any (visual) feedback about the progress of the search, not even
one that tells me if it's finished. Since the previous message about the
unsuccessful previous search wasn't cleared off, and current search fails as
well, I will see the message again. The only feedback of the search is still
running or not is that the cursor does not blink while the search is running
(which is something between 4-5 secs here and now at me, but definitely varies
upon the size of the spreadsheet, the hardware, etc).

Expected behavior:
I would appreciate some visual feedback about the progress of the search, at
least a throbber. Or at least: please clear off the message about the
unsuccessful previous search when I initiate a new search.

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


[Libreoffice-bugs] [Bug 89322] in libreoffice Impress, Bullets on/off button is not working inside table

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89322

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||stgohi-lob...@yahoo.de
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.3, Win 8.1.  If you select a table in IMPRESS it is
not possible to insert a bullets/numbering to an empty table.  If you select an
empty table in WRITER and activate the Bullet and Numbering all the cells get
the bullets/numbering, but if you select an empty table in IMPRESS nothing
happens.  If you want to add bullets to a table in IMPRESS you need to insert
text first.

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


[Libreoffice-bugs] [Bug 89349] New: formating in odt brakes in the new version compared to v

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89349

Bug ID: 89349
   Summary: formating in odt brakes in the new version compared to
v
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: erik.do...@gmail.com

The formating is different in winows version 4.3.5.2 compared to 4.2.8.2 in
linux.

The old version in linux displays the document fine.

On windows with 4.4.0 there is a problem:

The last line on document is displayed on a second page. Podpis daňovníka

as i could not attach the doc here i post a link:
http://suiseki.sk/wp-content/uploads/2015/02/vyhlasenie_2perc_2014.odt

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


[Libreoffice-bugs] [Bug 82113] FILEOPEN: Text in EMF not displayed

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82113

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 CC||chris.sherloc...@gmail.com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=80
   ||503

--- Comment #8 from Jay Philips philip...@hotmail.com ---
This is likely related to bug 80503, which Chris Sherlock worked on as Miklos
stated it was an EMF+ bug.

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


[Libreoffice-bugs] [Bug 89347] New: VIEWING: Zoomed document is centered as of programm window and not visible area

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89347

Bug ID: 89347
   Summary: VIEWING: Zoomed document is centered as of programm
window and not visible area
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: obsazeny...@volny.cz

Prerequisite: Move your ToolBars on the left or right side of monitor from
their top of the monitor position. 

When document is opened in Writer and mouse-wheel scrolled to zoom in, the
document is centered as of program window. Thus part of the text can hide below
toolbars now located on the right/left side. 

Expected behaviour would be: After mouse-wheel zoom in, the text gets centered
as of available text area.

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


[Libreoffice-bugs] [Bug 83099] UI: Top area of formula bar is missing when expanding with Windows 7 default theme

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83099

Tomofumi Yagi ya...@mknada.sakura.ne.jp changed:

   What|Removed |Added

 CC||ya...@mknada.sakura.ne.jp

--- Comment #12 from Tomofumi Yagi ya...@mknada.sakura.ne.jp ---
Created attachment 113348
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113348action=edit
A workaround patch

I attached a workaround patch.
This patch modifies ToolBox::ImplFormat() method in
vcl/source/window/toolbox.cxx.
An item included a ToolBox will be prevented to place in incorrect position.

Cause of the bug is follows.
1. When the new item is added, ToolBox::ImplFormat () places it to the new
position.
  ToolBox::ImplFormat() determines whether or not the item is newly added, 
  using that the new item's Top Coordinate is 0.
  However, it seems that the non-new item's Top Coordinate is zero in some
conditions(on Windows7 with Aero,etc...).

2.Unfortunately, mnMaxItemHeight variable(used to calculate the new position)
holds the old value,immediately after the formula bar is expanded(not updated
yet).

In that reason, the item is placed in incorrect position.

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


[Libreoffice-bugs] [Bug 89326] separating a image and text is not available in libre office impress

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89326

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
This happens only if you have selected the Sub Title object before step 3
(recognizable by the squares at the frame)?

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


[Libreoffice-bugs] [Bug 89323] undo option after entering values in table is not working in Libreoffice Impress

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89323

raal r...@post.cz changed:

   What|Removed |Added

   Keywords||regression
 CC||r...@post.cz
 Whiteboard||bibisectRequest
 OS|Windows (All)   |All

--- Comment #2 from raal r...@post.cz ---
I can confirm with Version: 4.4.0.3
ID build: de093506bcdc5fafd9023ee680b8c60e3e0645d7
I can confirm with Version: 4.5.0.0.alpha0+
Build ID: 62969accf9c01b71b738424d4d643db8bfaed182
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-02-08_23:22:32

to reproduce insert table into table. 
No crash or freeze reproduced. Cannot reproduce with LibreOffice 3.5.0 
Build ID: d6cde02 - regression

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


[Libreoffice-bugs] [Bug 89321] The (new) Document Foundation Bugzilla page needs to become more user oriented

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89321

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||stgohi-lob...@yahoo.de
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
I agree that some aspects can be improved.  

From my point of view most of the fields are necessary, but not the field
Hardware, because I think most users (that are no IT specialists) do not know
what to select there.

I also agree that the naming in the Component field is not consistent as
described by the Bug Reporter.  Maybe this list can also cleaned up or/and more
information is provided to understand what is for instance ci-infra, contrib,
framework, graphics stack, Linguistic, sdk, ux-advise?

Concerning the Enhancement issue I would also agree with the Bug Reporter.  I
see again and again bug reports, where the user probably did not know that the
differentation of a normal bug and an enhancement request can be found in the
Severity field, because this is not intuitive.  This should be clearer.

The field Version is from my point of view ok.  I do not know if this can be
further improved.

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


[Libreoffice-bugs] [Bug 89294] Scanner control/access: help needs to be updated to the new menu

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89294

Stanislav Horacek stanislav.hora...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||stanislav.hora...@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Stanislav Horacek stanislav.hora...@gmail.com ---
Patch submitted:
https://gerrit.libreoffice.org/#/c/14447/

Thanks for reporting!

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


[Libreoffice-bugs] [Bug 89350] New: FILEOPEN: Excel-generated cells with formulas containing line breaks not parsed correctly

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89350

Bug ID: 89350
   Summary: FILEOPEN: Excel-generated cells with formulas
containing line breaks not parsed correctly
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@datahero.com

Created attachment 113350
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113350action=edit
excel file with multi-line formula (rows 6-9, column D)

In excel, you can insert line-breaks into your formulas to break up long
complicated formulas (on OS-X, this is done by hitting command+option+enter in
the formula editor):

http://imgur.com/qfVGywR

When you open these files in libreoffice, none of the formula after the first
line appears, and libreoffice treats it as an invalid formula:

http://imgur.com/83MIHUC

Attached is an excel file that reproduces this

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


[Libreoffice-bugs] [Bug 50639] Format Paint Brush doesn't change background highlighted text color to 'no fill'

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50639

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 77905] EDITING: Problem moving drawings/pictures with help lines enabled

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77905

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #97918|text/plain  |application/vnd.oasis.opend
  mime type||ocument.text

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


[Libreoffice-bugs] [Bug 60467] EDITING: A black Text copied from a Draw Diagram embedded in Writer directly to Writer is invisible because it uses white font colour

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60467

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #5 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3, Win 8.1.

Can anybody confirm that this bug still persists?

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


[Libreoffice-bugs] [Bug 66859] FILESAVE: File Save in xls format lost image position as background

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66859

--- Comment #8 from pierre-yves samyn pierre-yves.sa...@laposte.net ---
Created attachment 113335
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113335action=edit
ToBackground.ods

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


[Libreoffice-bugs] [Bug 89097] function CELL for external data doesn't work when data file is not opened

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89097

raal r...@post.cz changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WONTFIX |---

--- Comment #4 from raal r...@post.cz ---

(In reply to Markus Mohrhard from comment #3)
 This was discussed with Eike and we are not going to fix this one. We
 already consider the cell function unnecessary and are not going to support
 any style based conditions around that function for external files.

In this case function CELL should result #ERROR?  Now function returns bad
values.

let it fail for _all_ external references, regardless whether a file is open or
not.

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


[Libreoffice-bugs] [Bug 66859] FILESAVE: File Save in xls format lost image position as background

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66859

supersoni...@ya.ru changed:

   What|Removed |Added

Version|4.0.4.2 release |4.4.0.3 release
 OS|Windows (All)   |Mac OS X (All)

--- Comment #12 from supersoni...@ya.ru ---
Confirm this issue on 4.4.0.3

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


[Libreoffice-bugs] [Bug 89298] Vibrating Sidebar – LibreOffice not responding

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89298

--- Comment #7 from Marina Latini mar...@studiostorti.com ---
Antanas,
can you try to use TDF official packages?
You can install multiple versions of LibreOffice in parallel. 
See https://wiki.documentfoundation.org/Installing_in_parallel/Linux

You can download the packages from
http://www.libreoffice.org/download/libreoffice-fresh/ or grab them directly
from here: http://download.documentfoundation.org/libreoffice/stable/4.4.0/

Please, from the affected LibreOffice, can you copy and paste the informations
reported on 
Help-About LibreOffice. (Version, Build ID and Locale)

and the output of the command: lsb_release -a

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


[Libreoffice-bugs] [Bug 89331] New: Bad rendering of DOC document with graphs

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89331

Bug ID: 89331
   Summary: Bad rendering of DOC document with graphs
   Product: LibreOffice
   Version: 4.3.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pit...@free.fr

The following document is a compilation of real estate statistics by a French
researcher. It should display many graphs. Those graphs display incorrectly
with LibreOffice:
http://www.cgedd.fr/prix-immobilier-friggit.doc

This is with the Ubuntu 14.10 build of LibreOffice 4.3.3.2 (Build ID:
430m0(Build:2)). I'm sorry if this is already fixed in mainline.

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


[Libreoffice-bugs] [Bug 89304] Area color including space before and after paragrah

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89304

--- Comment #4 from Cor Nouws c...@nouenoff.nl ---
(In reply to Sergio Cuesta from comment #3)
 sorry for not seeing yesterday your request for more info, but as you have
 correctly marked it is a duplicate of the other one. Sorry for that too,
 even though I tryed searching for it I couldn't It's my first report...

No problem - it's not easy often for find specific bugs here ;)

Thanks  see you,
Cor

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


[Libreoffice-bugs] [Bug 77510] macro error in all 4.x.y- versions

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77510

--- Comment #4 from LeMoyne Castle lemoyne.cas...@gmail.com ---
Works in 3.5.7.2 (dialog shows up) and 
Fails on 4.5.0.0alpha built from recent master. 

Error is: BASIC runtime error. Incorrect property value.

The incorrect value is for a dialog control called datum in object oD1 (first
dialog?).  oD1 appears to be all there in watch window, although dialog has not
shown.  

Digging a little deeper (Google translating much of forum linked by raal) and 
experimenting a little bit perhaps the API has changed as the forum states.  
Replace '.date' with '.Text' on the line with the error and the dialog comes up
without error.  Error message says incorrect value - it may well be incorrect
property name.

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


[Libreoffice-bugs] [Bug 85027] [Draw] Fit page to window (like Impress)

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85027

--- Comment #2 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Rodolfo Ribeiro Gomes committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=605494fd99ae8e54611899729783d1163cf9a5ba

fix tdf#85027 Add button to StatusBar: Fit page to window

It will be available in 4.5.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 66859] FILESAVE: File Save in xls format lost image position as background

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66859

--- Comment #9 from pierre-yves samyn pierre-yves.sa...@laposte.net ---
Created attachment 113337
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113337action=edit
ToBackground1.png

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


[Libreoffice-bugs] [Bug 85027] [Draw] Fit page to window (like Impress)

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85027

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|| target:4.5.0

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


[Libreoffice-bugs] [Bug 89246] LibreOffice Writer Ää Öö Üü are missing when exporting PDF

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89246

--- Comment #3 from Watz w...@der-watz.de ---
Created attachment 113336
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113336action=edit
My Test Document The Source

In the Document, everything ist ok.

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


[Libreoffice-bugs] [Bug 66859] FILESAVE: File Save in xls format lost image position as background

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66859

--- Comment #10 from pierre-yves samyn pierre-yves.sa...@laposte.net ---
Created attachment 113338
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113338action=edit
ToBackground2.png

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


[Libreoffice-bugs] [Bug 82113] FILEOPEN: Text in EMF not displayed

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82113

Timur gti...@gmail.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 39256] Deficiencies in WMF importer implementation

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39256

Timur gti...@gmail.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 89332] FILEOPEN: WMF table text not displayed

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89332

Timur gti...@gmail.com changed:

   What|Removed |Added

   Keywords||regression
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=82
   ||113,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=39
   ||256

--- Comment #1 from Timur gti...@gmail.com ---
I mark OS: All. Please test on Linux.

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


[Libreoffice-bugs] [Bug 89246] LibreOffice Writer Ää Öö Üü are missing when exporting PDF

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89246

--- Comment #4 from Watz w...@der-watz.de ---
I' am using Acrobat 11 and PDFExchange Viewer. 
I think, what I need is a fix, workaround for the Helvetica TT font.

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


[Libreoffice-bugs] [Bug 57171] FILESAVE: Comments not saved when impress file saved as pptx

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57171

--- Comment #6 from bugquestcon...@online.de ---
Thanks to whoever fixed the bug! I am looking forward to the 4.4 version

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


[Libreoffice-bugs] [Bug 88444] :Access violation error while calculating SumIfs using OpenCL on CPU device causes crash

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88444

--- Comment #26 from Tor Lillqvist t...@iki.fi ---
For the 4.2 branch, our priority is to fix the crash. The OpenCL-generating
code is much different in the 4.3, 4.4 and master branches.

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


[Libreoffice-bugs] [Bug 77593] asterisk key * interpreted as a wildcard in autocorrect replacement table

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77593

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #97535|text/plain  |application/zip
  mime type||

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


[Libreoffice-bugs] [Bug 66859] FILESAVE: File Save in xls format lost image position as background

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66859

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #11 from raal r...@post.cz ---
(In reply to pierre-yves samyn from comment #7)
 Hi 
 
 I Reproduce on windows 7  Version: 4.3.5.2
 Build ID: 3a87456aaa6a95c63eea1c1b3201acedf0751bd5
 

Setting to NEW

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


[Libreoffice-bugs] [Bug 89295] Support for MinGW-w64 and/or MSYS2

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89295

--- Comment #5 from David Tardon dtar...@redhat.com ---
(In reply to Renato Silva from comment #2)
 This is a narrow-minded view.

Maybe, but it is a realistic view.

 The amount of contributors that would feel
 attracted would probably overcome the complexity of supporting one
 additional compiler.

Says you. Personally, I do not remember anyone showing interest in native MinGW
build on Windows since the beginning of the project. There was an attempt in
openoffice.org times, but it did not came to anything. And it was being done by
a single person.

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


[Libreoffice-bugs] [Bug 66859] FILESAVE: File Save in xls format lost image position as background

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66859

pierre-yves samyn pierre-yves.sa...@laposte.net changed:

   What|Removed |Added

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

--- Comment #7 from pierre-yves samyn pierre-yves.sa...@laposte.net ---
Hi 

I Reproduce on windows 7  Version: 4.3.5.2
Build ID: 3a87456aaa6a95c63eea1c1b3201acedf0751bd5

Steps to reproduce:

1. Open the ToBackground.ods attached

Expected  actual result: the image is set to background
See ToBackground1.png attached

2. File Save As MS Excel 97 (.xls)
3. File Reload

Expected result: the image is set to background
Actual result: the image is set to foreground

See ToBackground2.png attached

Regards
Pierre-Yves

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


[Libreoffice-bugs] [Bug 85027] [Draw] Fit page to window (like Impress)

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85027

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |rodolf...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 89252] font width affected by previous use of synthetic bold

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89252

--- Comment #2 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Martin Hosken committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=0ed14401925d16932ed98bc418d395adac047b39

Resolves: tdf#89252 Fix bold, regular font spacing bug for Graphite fonts

It will be available in 4.5.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89252] font width affected by previous use of synthetic bold

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89252

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |martin_hos...@sil.org
   |desktop.org |

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


[Libreoffice-bugs] [Bug 89252] font width affected by previous use of synthetic bold

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89252

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|prebibisect |prebibisect target:4.5.0

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


[Libreoffice-bugs] [Bug 82113] FILEOPEN: Text in EMF not displayed

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82113

Timur gti...@gmail.com changed:

   What|Removed |Added

   Keywords||regression
 CC||gti...@gmail.com
Version|4.2.5.2 release |3.6.0.4 release
 OS|Linux (All) |All

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


[Libreoffice-bugs] [Bug 60781] ASKLIBREOFFICE: Add a list to a profile with questions which commented or answered by a registered person

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60781

--- Comment #14 from bugquestcon...@online.de ---
It is fine and valuable to ask for additional information. However, when the
previous answer describes already what can be said, there is no need for asking
again for the same information.

Please have a look at comment 12 and 10.

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


[Libreoffice-bugs] [Bug 82113] FILEOPEN: Text in EMF not displayed

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82113

--- Comment #6 from Timur gti...@gmail.com ---
Reproduces on Windows, starting from 3.6. 3.5.7 was OK so regresison. I change
OS: Linux to All. 
Vertical table on the left doesn't have any text bug seems fixed with
4.4.0.3. Please test.

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


[Libreoffice-bugs] [Bug 82113] FILEOPEN: Text in EMF not displayed

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82113

--- Comment #7 from Timur gti...@gmail.com ---
I was wrong that bug was fixed with 4.4.0.3. I had EMF_PLUS_DISABLE=1 on. 
What's not clear to me is: why it was shown OK only for 4.4.0.3 and not for
previous versions, all the time with EMF_PLUS_DISABLE=1 on.

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


[Libreoffice-bugs] [Bug 77561] Table cell borders don't show in RTF import

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77561

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #97495|text/plain  |application/rtf
  mime type||

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


[Libreoffice-bugs] [Bug 89335] New: Internet Explorer forces oxt download to zip

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89335

Bug ID: 89335
   Summary: Internet Explorer forces oxt download to zip
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Extensions
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f...@akerbeltz.org

Steps to reproduce:
1) Open IE and navigate to an oxt file (e.g.
http://extensions.libreoffice.org/extension-center/an-dearbhair-beag-scottish-gaelic-spellchecker)
2) Download the oxt
3) IE will download the file as a zip a dn as a result, LO won't recognize it
as an extension

This does not happen in Firefox or Opera (don't have Chrome).

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


[Libreoffice-bugs] [Bug 89312] 'csv' Files are Opened as Text Documents if Writer is the Active Window

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89312

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz
   Severity|normal  |enhancement

--- Comment #1 from raal r...@post.cz ---
Setting as enhancement.
I disagree, leaving unconfirmed.

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


[Libreoffice-bugs] [Bug 39327] WMF object not visible in .doc with LibO

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39327

--- Comment #32 from Timur gti...@gmail.com ---
Bug seems fixed with 4.4.0.3. Please test.

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


[Libreoffice-bugs] [Bug 82719] EDITING: String with hyperlink not pasted

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82719

--- Comment #4 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Henry Castro committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=5a646f04cc40fb13f39b16ab452237e5cf324684

fdo#82719  EDITING: String with hyperlink not pasted

It will be available in 4.5.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82719] EDITING: String with hyperlink not pasted

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82719

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|BSA bibisected  |BSA bibisected target:4.5.0

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


[Libreoffice-bugs] [Bug 39327] WMF object not visible in .doc with LibO

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39327

--- Comment #33 from Timur gti...@gmail.com ---
I was wrong. Please excuse me and disregard my previous message.

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


[Libreoffice-bugs] [Bug 89333] New: EDITING: Cannot shift cells (left or up) from a non contiguous selection when deleting

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89333

Bug ID: 89333
   Summary: EDITING: Cannot shift cells (left or up) from a non
contiguous selection when deleting
   Product: LibreOffice
   Version: 4.3.3.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: postmas...@mlrennes.org

Created attachment 113339
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113339action=edit
screenshot, non-contiguous selection and contextual Delete menu (lang: FR)

Overview:
When deleting cells, Shift cells up and shift cells left (translation may
vary) options are not available as soon as the selection is more complex than a
single rectangle.

Steps to Reproduce:
1. Create new Calc sheet
2. Add content in several columns, eg. A1: One, B1: Two,... E1: Five
2. Select B1 and D1
3. Right clic  Delete... 

Actual Results:
Options Shift cells left and shift cells up are disabled (grayed out)

Expected Results:
Options should not be disabled, ie. action Shift cells left should leave
cells A1: One, B1: Three, C1: Five.

Additional Information:
It should be noted that Microsoft Excel's own shift cells works the expected
way.

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


[Libreoffice-bugs] [Bug 89334] New: Translation Print Preview wrong displayed in Italian Interface

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89334

Bug ID: 89334
   Summary: Translation Print Preview wrong displayed in Italian
Interface
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: valterm...@gmail.com
CC: cl...@documentfoundation.org, gautier.sop...@gmail.com

Created attachment 113340
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113340action=edit
Error for Print Preview

The string Print Preview is wrong displayed in the Italian UI, both in the
menu and the relative button, even if it is correctly translated in Pootle:

*wrong* result: Stampa Anteprima

(should be) *correct* result: Anteprima di stampa

Attached a screenshot of the error

Note some KeyID, to show the correct translation: zE3JE / khHQz / 5wQRf

BTW, in the 4.3 version the translation is correct

A search in OpenGrok shows only one occurrence of Stampa anteprima, not
involving the error above.

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


[Libreoffice-bugs] [Bug 89333] EDITING: Cannot shift cells (left or up) from a non contiguous selection when deleting

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89333

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1
 OS|Windows (All)   |All
   Severity|normal  |enhancement

--- Comment #1 from raal r...@post.cz ---
I can confirm with LO 4.4
Setting as enhancement

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


[Libreoffice-bugs] [Bug 89295] Support for MinGW-w64 and/or MSYS2

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89295

--- Comment #4 from David Tardon dtar...@redhat.com ---
(In reply to V Stuart Foote from comment #3)
 Believe David's perspective comes from his recent endeavors to bring a
 functional 64-bit build for Windows online with VS 2013.  That is coming to
 fruition--and that has required MSVC for reliable results and build speed of
 Windows executables.

That was David Ostrovsky :-) But it is a good example.

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


[Libreoffice-bugs] [Bug 88444] :Access violation error while calculating SumIfs using OpenCL on CPU device causes crash

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88444

--- Comment #27 from evgeniy.tyu...@intel.com ---
Thanks, Tor.
I've been looking into 4.2 milestone-7-2, and I have a suspicion that the issue
is fixed there. I will perform additional validations to be sure and update
this ticket ASAP.
I guess 4.2 milestone-7-2 doesn't differ significantly comparing to the
revision in the ticket, is that so?

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


[Libreoffice-bugs] [Bug 89246] LibreOffice Writer Ää Öö Üü are missing when exporting PDF

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89246

--- Comment #2 from Watz w...@der-watz.de ---
Created attachment 113334
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113334action=edit
Example in PDF

This is what I see, and not see after the PDF-Export.

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


[Libreoffice-bugs] [Bug 89332] New: FILEOPEN: WMF table text not displayed

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89332

Bug ID: 89332
   Summary: FILEOPEN: WMF table text not displayed
   Product: LibreOffice
   Version: 4.4.0.0.beta2
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

While reviewing attachment 113295 from Bug 89289 I noticed that WMF table text
from the first picture is not displayed properly in LO 4.4.0. 
Bug reproduced on Windows starting from beta 2. Beta 1 is OK, so I mark as
regression. Same problem happens with xlsx, ods, and newly created odt with
that WMF copied into, so I mark Component as filters.

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


[Libreoffice-bugs] [Bug 89246] LibreOffice Writer Ää Öö Üü are missing when exporting PDF

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89246

--- Comment #5 from Watz w...@der-watz.de ---
Funny, when I open my test PDF-File in the Firefox browser, 
there is only the first Ö missing. 
Everything seems to be ok than.
But I can't still not see it in my normal pdf-viewer's.

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


[Libreoffice-bugs] [Bug 37361] LibreOffice 3.5 most annoying bugs

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37361
Bug 37361 depends on bug 36681, which changed state.

Bug 36681 Summary: EDITING: after pasting/paste/insert/removal of a picture (or 
alike) view scrolls to begin/end of document
https://bugs.documentfoundation.org/show_bug.cgi?id=36681

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

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


[Libreoffice-bugs] [Bug 37361] LibreOffice 3.5 most annoying bugs

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37361
Bug 37361 depends on bug 36681, which changed state.

Bug 36681 Summary: EDITING: after pasting/paste/insert/removal of a 
picture/image (or alike) view scrolls to begin/end of document
https://bugs.documentfoundation.org/show_bug.cgi?id=36681

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 82719] EDITING: String with hyperlink not pasted

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82719

--- Comment #5 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Henry Castro committed a patch related to this issue.
It has been pushed to libreoffice-4-4:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=39c9223b933f8585ed5d1a4014596aa8d4c94db3h=libreoffice-4-4

fdo#82719  EDITING: String with hyperlink not pasted

It will be available in 4.4.2.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82719] EDITING: String with hyperlink not pasted

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82719

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|BSA bibisected target:4.5.0 |BSA bibisected target:4.5.0
   ||target:4.4.2

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


[Libreoffice-bugs] [Bug 82719] EDITING: String with hyperlink not pasted

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82719

Eike Rathke er...@redhat.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 89328] FILESAVE: PPT containing comment can't be open by MS PowerPoint

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89328

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal r...@post.cz ---
I can not confirm with LO 4.4.0.3, powerpoint2010, win7

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


[Libreoffice-bugs] [Bug 61222] EDITING: AutoCaption doesn't work when copy-pasting spreadsheets

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61222

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 OS|Linux (All) |All

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.3, Win 8.1

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


[Libreoffice-bugs] [Bug 45525] TABLES, Problem on adjust selected Row or Column to equal space

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45525

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #5 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3, Win 8.1.

Can anybody confirm that this bug still persists with the latest release of LO?

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


[Libreoffice-bugs] [Bug 77968] Changed functionality of min/max of empty array/unexpected value returned

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77968

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #98034|text/plain  |application/vnd.oasis.opend
  mime type||ocument.spreadsheet

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


[Libreoffice-bugs] [Bug 89350] FILEOPEN: Excel-generated cells with formulas containing line breaks not parsed correctly

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89350

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||mari...@miguelangel.mobi
 Resolution|--- |DUPLICATE

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---
I think this is a duplicate.

Please if you are not agree reopen it.

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

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


[Libreoffice-bugs] [Bug 79494] VIEWING: Writer hangs when opening second window of the same text

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79494

--- Comment #7 from PHM ma...@invivo.edu ---
disappears with Version: 4.3.5.2
No change within the MacOS system

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


[Libreoffice-bugs] [Bug 89153] Math formula with root not displayed correctly in Calc or Impress

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89153

--- Comment #8 from Josan josanlo...@hotmail.com ---
When writing fractions, only the line between numbers appears in presentation
mode.
example:  3 over 4 
When editing:
 3
---
 4

When presenting:

---

This worked fine in previous version.

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


[Libreoffice-bugs] [Bug 75025] LibreOffice 4.3 most annoying bugs

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75025
Bug 75025 depends on bug 89227, which changed state.

Bug 89227 Summary: CRASH: Accepting changes on Floating Frame in Writer causes 
a crash
https://bugs.documentfoundation.org/show_bug.cgi?id=89227

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 88304] Installer on Win7 in Slovenian not showing sl-SI dictionaries/UI translations checked

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88304

mi...@filmsi.net changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #3 from mi...@filmsi.net ---
Today I tried this on a fresh install of Windows 7 Pro with 4.1.1RC1 on another
system.

The OS UI language is English, but the OS locale is set to Slovenian.

All other open-source programs use Slovenian in installation process, if
available. Also, LO used Slovenian during install.

Again Slovenian dictionary was not checked, neither was Slovenian UI language.

During install I manually picked both Slovenian dictionaries and UI language.

The installed software started in English and I had to change UI language
manually to Slovenian in the LO settings' GUI.

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


[Libreoffice-bugs] [Bug 48916] FORMATTING: The clipping of EMF files are ignored.

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48916

--- Comment #3 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.3, Win 8.1,

Note: The image is only shown after a double left mouse click on it.

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


[Libreoffice-bugs] [Bug 78164] FORMATTING: Writer does not respect the specified bottom margin of paragraphs in HTML files

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78164

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #98313|text/plain  |text/html
  mime type||

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


[Libreoffice-bugs] [Bug 78144] FILEOPEN: incorrect location of page numbers in .doc file from Kingsoft Writer

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78144

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #98276|application/octet-stream|application/msword
  mime type||

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


[Libreoffice-bugs] [Bug 89350] FILEOPEN: Excel-generated cells with formulas containing line breaks not parsed correctly

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89350

--- Comment #2 from d...@datahero.com ---
76310 seems to be discussing more about edit support, while this is saying that
bringing in such an excel file causes your spreadsheet to break. 

Nevertheless, 76310 links to
https://bugs.documentfoundation.org/show_bug.cgi?id=56036, which is probably
the better dupe reference.

Thanks for catching that!

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


[Libreoffice-bugs] [Bug 56036] DATALOSS IMPORT XLSX: CRLF (newline) in formula garbles the formula

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56036

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 CC||d...@datahero.com

--- Comment #18 from m.a.riosv mari...@miguelangel.mobi ---
*** Bug 89350 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 89350] FILEOPEN: Excel-generated cells with formulas containing line breaks not parsed correctly

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89350

--- Comment #3 from m.a.riosv mari...@miguelangel.mobi ---
Right, then better we can change the duplicate bug.

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

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


[Libreoffice-bugs] [Bug 71884] Error starting 4.2RC1 (32-bit) on OS X

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71884

mi...@filmsi.net changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #17 from mi...@filmsi.net ---
I must unfortunately reopen this bug - this happened again with 4.4.1RC1, it
must be a regression of some kind!

Please do check, this is a blocker for OSX.

The only difference with the primary report is that now it is a 64-bit build
(as there are no 32-bit OS X builds anymore).

Should I change the version number (to 4.4.1RC1) and hardware (to 64-bit) in
the bug report?

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


[Libreoffice-bugs] [Bug 38187] BUG : When exporting .odt to .pdf: there is no hyperlink between main text and endnote, missing both ways

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38187

bernard bernard@gmail.com changed:

   What|Removed |Added

Summary|Functionality request: When |BUG : When exporting .odt
   |exporting .odt to .pdf: add |to .pdf: there is no
   |hyperlink for each endnote  |hyperlink between main text
   |to return back to main text |and endnote, missing both
   ||ways

--- Comment #14 from bernard bernard@gmail.com ---
I have just checked in 4.4.0.3 that for pagenote, in the generated pdf, there
is a link between main text and pagenote, but there is not the inverse link
between note and main text.

Both the links are available in LibreOffice, both for PageNote en EndNote.

The bug is really more important for endnote, specially for a large document.

I have changed the title of the report, as this is a bug and not a new feature.

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


[Libreoffice-bugs] [Bug 89352] New: Feature request FORMATTING : new feature to change all pagenotes as endnotes, or backward

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89352

Bug ID: 89352
   Summary: Feature request FORMATTING : new feature to change all
pagenotes as endnotes, or backward
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bernard@gmail.com

When writing a document, it is far easier to see the notes in each page. But
when publishing, specially for large document, it is often necessary to have
all notes as endnotes, depending on edition format.

Now, i need to change each note type 1 by 1, which is not funny. I would
apreciate a function that change the format for all notes.

Thanks !

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


[Libreoffice-bugs] [Bug 78112] Print preview displays underlined spelling errors after displaying field shadings

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78112

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #98237|text/plain  |image/png
  mime type||

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


[Libreoffice-bugs] [Bug 78091] Calc copy-paste of a cell information to commandline may result to lost of a character

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78091

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #98188|text/plain  |image/x-xcf
  mime type||

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


[Libreoffice-bugs] [Bug 89330] Cell formula converted to lowercase, including cross-references to other files when having a syntax error

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89330

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 CC||mari...@miguelangel.mobi

--- Comment #2 from m.a.riosv mari...@miguelangel.mobi ---
There is a bug reporting the same problem but it was resolved (I think
improperly) for the reported as fixed, because she/he found a workaround.

https://bugs.documentfoundation.org/show_bug.cgi?id=75617

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


[Libreoffice-bugs] [Bug 76310] ODF incompliance: Cannot use newline in formula

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76310

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 CC||d...@datahero.com

--- Comment #7 from m.a.riosv mari...@miguelangel.mobi ---
*** Bug 89350 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 78026] The specific DOCX file does not show 2nd page's header when converts to PDF

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78026

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

  Attachment #98114|text/plain  |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

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


[Libreoffice-bugs] [Bug 88111] Presentation: during slideshow screen draw, with OpenGL hardware acceleration active, rendering issues

2015-02-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88111

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 CC||jsheebamedol...@gmail.com

--- Comment #15 from V Stuart Foote vstuart.fo...@utsa.edu ---
*** Bug 89339 has been marked as a duplicate of this bug. ***

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


  1   2   3   >