[Libreoffice-bugs] [Bug 89058] VIEWING: Horizontal Scoll Bar Arrows located to extreme right

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

--- Comment #4 from Jorendc jore...@libreoffice.org ---
Created attachment 113064
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113064action=edit
Original document in Excel

-- 
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 89058] VIEWING: Horizontal Scoll Bar Arrows located to extreme right

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

--- Comment #5 from Jorendc jore...@libreoffice.org ---
Created attachment 113065
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113065action=edit
roundtripped document in excel.

-- 
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 89042] FILESAVE: Lost ROUNDUP formula when save and load it in MSO2013

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Eike Rathke er...@redhat.com ---
In Excel the second parameter of ROUND, ROUNDUP and ROUNDDOWN is not optional.
Give it 0.

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

-- 
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 89042] FILESAVE: Lost ROUNDUP formula when save and load it in MSO2013

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

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

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
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-commits] core.git: 7 commits - basic/source chart2/source cui/source editeng/source framework/source include/basic sc/inc sc/source sd/source sfx2/source sw/source unusedcode.easy

2015-02-02 Thread Caolán McNamara
 basic/source/classes/sbxmod.cxx   |5 
 chart2/source/view/charttypes/BarChart.cxx|3 --
 cui/source/dialogs/sdrcelldlg.cxx |4 ---
 cui/source/inc/sdrcelldlg.hxx |3 --
 editeng/source/editeng/impedit2.cxx   |2 -
 framework/source/uielement/toolbarsmenucontroller.cxx |2 -
 include/basic/sbmod.hxx   |1 
 sc/inc/attrib.hxx |4 ---
 sc/inc/grouparealistener.hxx  |2 -
 sc/source/core/data/attrib.cxx|   20 --
 sc/source/core/tool/grouparealistener.cxx |   10 -
 sc/source/ui/app/uiitems.cxx  |   20 --
 sc/source/ui/dbgui/PivotLayoutTreeListData.cxx|   10 +
 sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx   |   10 +
 sc/source/ui/docshell/docsh2.cxx  |8 ---
 sc/source/ui/inc/docsh.hxx|4 ---
 sc/source/ui/inc/uiitems.hxx  |5 
 sd/source/ui/func/fuexpand.cxx|2 -
 sfx2/source/dialog/tplcitem.cxx   |8 +--
 sw/source/filter/html/htmlbas.cxx |9 ++--
 unusedcode.easy   |   15 -
 21 files changed, 21 insertions(+), 126 deletions(-)

New commits:
commit 1746c886362b8525b04365dd6b7203b8098b99ba
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Feb 2 21:04:28 2015 +

Related: fdo#88455 crash using delete in available fields

Change-Id: I4ac5fe6f42b425ee96124b2dde39ff397a081638

diff --git a/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx 
b/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
index 3b9b4f1..3e65370 100644
--- a/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
+++ b/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
@@ -253,12 +253,14 @@ void ScPivotLayoutTreeListData::KeyInput(const KeyEvent 
rKeyEvent)
 vcl::KeyCode aCode = rKeyEvent.GetKeyCode();
 sal_uInt16 nCode = aCode.GetCode();
 
-switch (nCode)
+if (nCode == KEY_DELETE)
 {
-case KEY_DELETE:
-GetModel()-Remove(GetCurEntry());
-return;
+const SvTreeListEntry* pEntry = GetCurEntry();
+if (pEntry)
+GetModel()-Remove(pEntry);
+return;
 }
+
 SvTreeListBox::KeyInput(rKeyEvent);
 }
 
diff --git a/sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx 
b/sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx
index 1780161..3644f84 100644
--- a/sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx
+++ b/sc/source/ui/dbgui/PivotLayoutTreeListLabel.cxx
@@ -80,12 +80,14 @@ void ScPivotLayoutTreeListLabel::KeyInput(const KeyEvent 
rKeyEvent)
 vcl::KeyCode aCode = rKeyEvent.GetKeyCode();
 sal_uInt16 nCode = aCode.GetCode();
 
-switch (nCode)
+if (nCode == KEY_DELETE)
 {
-case KEY_DELETE:
-GetModel()-Remove(GetCurEntry());
-return;
+const SvTreeListEntry* pEntry = GetCurEntry();
+if (pEntry)
+GetModel()-Remove(pEntry);
+return;
 }
+
 SvTreeListBox::KeyInput(rKeyEvent);
 }
 
commit 7ca0d2d8e174225d93a8b9d91d45192c75d1f56c
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Feb 2 20:57:08 2015 +

coverity#1267657 Logically dead code

Change-Id: I50bb5d47c5f430818237308a691306dc097d245e

diff --git a/chart2/source/view/charttypes/BarChart.cxx 
b/chart2/source/view/charttypes/BarChart.cxx
index c75b1a6..168fab6 100644
--- a/chart2/source/view/charttypes/BarChart.cxx
+++ b/chart2/source/view/charttypes/BarChart.cxx
@@ -87,8 +87,7 @@ drawing::Direction3D 
BarChart::getPreferredDiagramAspectRatio() const
 {
 aRet = drawing::Direction3D(1.0,-1.0,1.0);
 BarPositionHelper* pPosHelper = dynamic_castBarPositionHelper*(( 
this-getPlottingPositionHelper( MAIN_AXIS_INDEX) ) );
-assert(pPosHelper);
-if(pPosHelper)
+if (pPosHelper)
 {
 drawing::Direction3D aScale( pPosHelper-getScaledLogicWidth() );
 if(aScale.DirectionX!=0.0)
commit 3e05f9844b538529307ac9cc18b06daf7e777abf
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Feb 2 20:53:49 2015 +

coverity#1267655 Logically dead code

Change-Id: I2d4f2c1049302eb488e2c6ef3a7142c42c7cb8e9

diff --git a/editeng/source/editeng/impedit2.cxx 
b/editeng/source/editeng/impedit2.cxx
index da28934..d294ef3 100644
--- a/editeng/source/editeng/impedit2.cxx
+++ b/editeng/source/editeng/impedit2.cxx
@@ -3019,7 +3019,7 @@ EditPaM ImpEditEngine::GetPaM( Point aDocPos, bool bSmart 
)
 nPortion++;
 pPortion = GetParaPortions().SafeGetObject( nPortion );
 }
-assert(pPortion); //No visible paragraph found: GetPaM
+

[Libreoffice-bugs] [Bug 88985] Writer crashes document if closed while macro running

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

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

Summary|Writer chrashes document if |Writer crashes document if
   |closed while macro running  |closed while macro running

-- 
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 89061] New: Recent bug fix 66766 has not resolved all issues re import of tables

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

Bug ID: 89061
   Summary: Recent bug fix 66766 has not resolved all issues re
import of tables
   Product: libmspub
   Version: unspecified
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gjr...@xtra.co.nz

Created attachment 113068
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113068action=edit
MS Pub file using formatted tables

MS Publisher file import contains tables. Latest fix now retrieves data (text)
but row/column sizes are incorrect (totally out of format)

-- 
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 89034] Justified in Persian

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

--- Comment #5 from Jay Philips philip...@hotmail.com ---
Created attachment 113070
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113070action=edit
linux screenshot

Justification look fine to on linux even after installed the font from
http://openfontlibrary.org/en/font/xb-niloofar.

Version: 4.5.0.0.alpha0+
Build ID: d1c9bd13ec7af93f5368dfda6d6d3c955f0b0816
TinderBox: Linux-rpm_deb-x86@45-TDF, Branch:master, Time: 2015-01-28_00:25:56

-- 
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 89011] When activating OpenGL rendering, UI elements become black

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

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

 CC||jore...@libreoffice.org,
   ||markus.mohrhard@googlemail.
   ||com

--- Comment #3 from Jorendc jore...@libreoffice.org ---
@Moggi: not sure if intrested.

-- 
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 89063] New: importing pub files containing formatted tables not resolving border formatting correctly

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

Bug ID: 89063
   Summary: importing pub files containing formatted tables not
resolving border formatting correctly
   Product: libmspub
   Version: unspecified
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gjr...@xtra.co.nz

Created attachment 113069
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113069action=edit
Pedigree Certificate

Pub files use borders of table cells to highlight or create family tree effect.
This information is not brought through with last bug fix.

-- 
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 89066] New: Not only Templates are Displayed in Template Dialogue of the Start Center

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

Bug ID: 89066
   Summary: Not only Templates are Displayed in Template Dialogue
of the Start Center
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: harald.koes...@mail.de

Steps in order to reproduce the bug:

[1] Start LibreOffice. 
[2] Add additional path for Templates: Tools  Options…  LibreOffice  Paths 
Templates  Edit …
[3] Add a folder of your system which contains files that are not templates.
Then OK and OK again. Only the Start Center should be displayed now. 
[4] Close LibreOffice.
[5] Start LibreOffice again.
[6] Click on “Templates” and then on “My Templates”. All files inside the
folder chosen in step [3] are displayed with names but without icons. Expected:
Only templates should be displayed.

Steps [4] and [5] are necessary because changes made in step [3] take effect
only if LibreOffice is started again. This is also not correct, but this is
another problem.

-- 
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-commits] core.git: external/python3

2015-02-02 Thread Robert Antoni Buj i Gelonch
 external/python3/ExternalProject_python3.mk |4 
 1 file changed, 4 insertions(+)

New commits:
commit 40432ac6caa478474d73786f95b808c14e106ff2
Author: Robert Antoni Buj i Gelonch robert@gmail.com
Date:   Sun Nov 2 16:42:47 2014 +0100

pyhon: add lib-dynload libs to fixinstallnames (OS X)

Change-Id: Iab76060952ae8c1b64d3ff32e5ae8f5212e016b0
Signed-off-by: Stephan Bergmann sberg...@redhat.com

diff --git a/external/python3/ExternalProject_python3.mk 
b/external/python3/ExternalProject_python3.mk
index 045892e..12a88c1 100644
--- a/external/python3/ExternalProject_python3.mk
+++ b/external/python3/ExternalProject_python3.mk
@@ -128,6 +128,10 @@ $(call 
gb_ExternalProject_get_state_target,python3,fixinstallnames) : $(call gb_

$(python3_fw_prefix)/Versions/$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)/LibreOfficePython
 \
@executable_path/../../../../LibreOfficePython \

$(python3_fw_prefix)/Versions/$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)/Resources/Python.app/Contents/MacOS/LibreOfficePython
+   for file in $(shell find 
$(python3_fw_prefix)/Versions/$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)/lib/python$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)/lib-dynload
 -name *.so) ; do \
+   $(INSTALL_NAME_TOOL) -change \
+   
$(python3_fw_prefix)/Versions/$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)/LibreOfficePython
 \
+   @loader_path/../../../LibreOfficePython $$file ; done
touch $@
 
 # also delete binaries that are symlinked in scp2
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - wizards/source

2015-02-02 Thread Jean-Pierre Ledure
 wizards/source/access2base/Control.xba |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

New commits:
commit aafb2fd9c7580a0de98f2d60657576c62175a5ee
Author: Jean-Pierre Ledure j...@ledure.be
Date:   Sun Feb 1 15:00:08 2015 +0100

Access2Base - Patch#2 Bug in Control.RemoveItem

Removing last item of a Listbox produces an Index out of rande run-time 
error
Bug reported in user forum 
https://forum.openoffice.org/en/forum/viewtopic.php?f=47t=75008

Change-Id: Iee760d1910db193ad53908141cbfa2920afb52fe
Reviewed-on: https://gerrit.libreoffice.org/14270
Reviewed-by: Lionel Elie Mamane lio...@mamane.lu
Tested-by: Lionel Elie Mamane lio...@mamane.lu

diff --git a/wizards/source/access2base/Control.xba 
b/wizards/source/access2base/Control.xba
index 66705d9..d150c87 100644
--- a/wizards/source/access2base/Control.xba
+++ b/wizards/source/access2base/Control.xba
@@ -690,21 +690,24 @@ Dim vRowSource() As Variant, iCount As Integer, i As 
Integer, j As integer, bFou
For j = i To iCount - 1
vRowSource(j) = vRowSource(j + 
1)
Next j
-   ReDim Preserve vRowSource(0 To iCount - 
1)
bFound = True
Exit Forapos;  Remove only 1st 
occurrence of string
End If
Next i
Case Else
If pvIndex lt; 0 Or pvIndex gt; iCount Then Goto 
Error_Index
-   bFound = True
For i = pvIndex To iCount - 1
vRowSource(i) = vRowSource(i + 1)
Next i
-   ReDim Preserve vRowSource(0 To iCount - 1)
+   bFound = True
End Select

If bFound Then
+   If iCount gt; 0 Then   apos;  
https://forum.openoffice.org/en/forum/viewtopic.php?f=47amp;t=75008
+   ReDim Preserve vRowSource(0 To iCount - 1)
+   Else
+   vRowSource = Array()
+   End If
If _ParentType lt;gt; CTLPARENTISDIALOG Then
ControlModel.ListSource = vRowSource()
End If
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89058] VIEWING: Horizontal Scoll Bar Arrows located to extreme right

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

--- Comment #6 from Mateo ms...@senecamedical.com ---
The issues does not exist in either version of 4.3.4 or 4.3.5

-- 
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 89058] VIEWING: Horizontal Scoll Bar Arrows located to extreme right

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

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

   Keywords||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 89051] Paragraph justification not working for pdf exports

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

Jean-Baptiste Faure jbfa...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jbfa...@libreoffice.org
 Resolution|--- |DUPLICATE

--- Comment #1 from Jean-Baptiste Faure jbfa...@libreoffice.org ---
Seems to be a duplicate of bug 88941 (OSX only).

Feel free to reopen if I am wrong.

Best regards. JBF

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

-- 
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 44089] Calc FILEOPEN: Problem with opening file xml 2003 with DateTime value (data shown correctly, but time zeroed)

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

--- Comment #9 from Peter pbak...@iccontrols.com ---
The bug is confirmed using Win 7 Home Premium SP1 64-bit with LibreOffice
4.4.0.3. The date is correct but the time is 0:00 for all entries. Opening the
same file in MS office does display the correct time of day.

-- 
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 88826] Clean up MM100toEMU()

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

Miklos Vajna vmik...@collabora.co.uk changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |jumap...@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-qa] Some issues about password protection of OOXML and doc files

2015-02-02 Thread Zeki Bildirici
Hi,

I just searched bugzilla ut couldn't find a bug report - but i
remember the issue was talked -

1- OOXML files (docx, xlsx, pptx) can be saved as password protected
both opening and editing. But as i see, saving them with editing
password does not work. File opens with asking password but it is
editable i/o read-only and asking dor editing password.

Is there any bug report you know, otherwise i will submit a new one.

2- Another issue:

With LO 4.4 we have a read-only mode status bar
https://wiki.documentfoundation.org/ReleaseNotes/4.4#Edit_.2F_Read-only_mode

But this bar does not seen on doc files

Can you confirm this issue?

Best regards
Zeki
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 85231] Unclear HTML export

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

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #3 from Robinson Tryon (qubit) qu...@runcibility.com ---
On Mon, Feb 2, 2015 at 11:00 PM, bugzilla-dae...@bugs.documentfoundation.org
wrote:
Rezonansowy changed bug 85231
What Removed Added
Severity enhancement normal

If you don't consider this an enhancement, then you need to justify why it's a
defect

Status - NEEDINFO

It would also be helpful to have the version set, just in case someone makes
changes to HTML export in the future.

-- 
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 88961] Table line styles are not visible

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

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.

Weird thing is loading line styles from an table on Writer is ok whereas both,
Draw and Writer, use SvxBorderTabPage::FillLineListBox_Impl
See
http://opengrok.libreoffice.org/xref/core/cui/source/tabpages/border.cxx#1029

-- 
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 88610] Incorrect rendering of some characters in Symbol font

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

--- Comment #6 from Jay Philips philip...@hotmail.com ---
What is the difference between the three lines of text, as they all show as if
they are formatted as Symbol 26pt, but line 2 has to be something different
than the others.

-- 
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 86984] UI:Line Numbering. Include header or footer not preserved and has no effect on counting in locales other than EN_US

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

--- Comment #14 from Cor Nouws c...@nouenoff.nl ---
Hi mutu,

Thanks!
The most recent daily for me is d1c9bd13ec7af93f5368dfda6d6d3c955f0b0816 so I'm
not yet able to check.
Will do later again,
Ciao,

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 88972] Record navigation Bar icons not visible in Form on opening

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

--- Comment #9 from Julien Nabet serval2...@yahoo.fr ---
2 evenings to try to understand all this by diving in this kind of bt:
#0  ImplImageTree::doLoadImage (this=0x2559fb0,
name=cmd/sc_absoluterecord.png, style=tango, bitmap=..., localized=true)
at
/home/julien/compile-libreoffice/libreoffice/vcl/source/gdi/impimagetree.cxx:168
#1  0x2aaab1d1369d in ImplImageTree::loadImage (this=0x2559fb0,
name=cmd/sc_absoluterecord.png, style=tango, bitmap=..., localized=true,
loadMissing=false)
at
/home/julien/compile-libreoffice/libreoffice/vcl/source/gdi/impimagetree.cxx:125
#2  0x2aaab1cf574a in ImageAryData::Load (this=0x2d879e0,
rPrefix=cmd/sc_) at
/home/julien/compile-libreoffice/libreoffice/vcl/source/gdi/image.cxx:387
#3  0x2aaab1cf6b0f in ImageList::GetImage (this=0x2dc4bd0,
rImageName=absoluterecord.png) at
/home/julien/compile-libreoffice/libreoffice/vcl/source/gdi/image.cxx:570
#4  0x2aaac66dced9 in framework::CmdImageList::getImageFromCommandURL
(this=0x282d4f0, nImageType=0, rCommandURL=.uno:AbsoluteRecord)
at
/home/julien/compile-libreoffice/libreoffice/framework/source/uiconfiguration/imagemanagerimpl.cxx:286
#5  0x2aaac66dd257 in framework::GlobalImageList::getImageFromCommandURL
(this=0x282d4f0, nImageType=0, rCommandURL=.uno:AbsoluteRecord)
at
/home/julien/compile-libreoffice/libreoffice/framework/source/uiconfiguration/imagemanagerimpl.cxx:327
#6  0x2aaac66e063f in framework::ImageManagerImpl::getImages
(this=0x2c8e910, nImageType=0, aCommandURLSequence=uno::Sequence of length 19 =
{...})
at
/home/julien/compile-libreoffice/libreoffice/framework/source/uiconfiguration/imagemanagerimpl.cxx:895
#7  0x2aaac66f2b0e in framework::ModuleImageManager::getImages
(this=0x2c90970, nImageType=0, aCommandURLSequence=uno::Sequence of length 19 =
{...})
at
/home/julien/compile-libreoffice/libreoffice/framework/source/uiconfiguration/moduleimagemanager.cxx:128
#8  0x2aaad4c0fff3 in frm::DocumentCommandImageProvider::getCommandImages
(this=0x2f680c0, _rCommandURLs=uno::Sequence of length 19 = {...},
_bLarge=false)
at
/home/julien/compile-libreoffice/libreoffice/forms/source/helper/commandimageprovider.cxx:138
#9  0x2aaad4c76d5c in frm::NavigationToolBar::implUpdateImages
(this=0x2fa5a60)
at
/home/julien/compile-libreoffice/libreoffice/forms/source/solar/control/navtoolbar.cxx:375
#10 0x2aaad4c768fc in frm::NavigationToolBar::implInit (this=0x2fa5a60) at
/home/julien/compile-libreoffice/libreoffice/forms/source/solar/control/navtoolbar.cxx:340
#11 0x2aaad4c75c40 in frm::NavigationToolBar::NavigationToolBar
(this=0x2fa5a60, _pParent=0x2c12300, _nStyle=0, _pImageProvider=
  boost::shared_ptr {_vptr.ICommandImageProvider = 0x2aaad510b390 vtable for
frm::DocumentCommandImageProvider+16}, _pDescriptionProvider=
  boost::shared_ptr {_vptr.ICommandDescriptionProvider = 0x2aaad510b310 vtable
for frm::DefaultCommandDescriptionProvider+16})
at
/home/julien/compile-libreoffice/libreoffice/forms/source/solar/control/navtoolbar.cxx:144

and nothing found, I give up :-(

-- 
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 89031] EDITING - Calc Function suggestion too agressive

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

--- Comment #3 from a...@patternjugglers.co.nz ---
Thanks Cor.
As you note, it can be worked around relatively easily, but this is at odd with
my decades-old editing habits.
That's likely to be the case for other users too, but mostly sits at the level
of petty annoyance, where I make an edit without thinking, realise the formula
is borked and have to go back to change.
Your suggestion of No autocomplete if there is no space after the cursor sounds
good -probably best if it could still show the suggestion so user can select if
they want, but not insert automatically.  THat way anyone with old habits is
not impeded, which is better for switchers (and those upgrading from older LO
releases.)
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 88610] Incorrect rendering of some characters in Symbol font

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

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

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #5 from Jay Philips philip...@hotmail.com ---
Works fine for me on Windows 7.

Version: 4.5.0.0.alpha0+
Build ID: 802b80fcd378d5788adff1c7c98af526651a30c2
TinderBox: Win-x86@39, Branch:master, Time: 2015-01-25_10:20:28

-- 
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 89053] Property Height value returned from BoundRect from TableShape is incorrect.

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

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Björn Michaelsen bjoern.michael...@canonical.com ---
Do you have an example docs and code (ideally StarBasic in the document, I
guess) demonstrating this issue? (e.g. returning the expected value on
LibreOffice 3.x but not on 4.2.x)

Also: Which version of LibreOffice 3.x was the latest you tested to be 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 89055] Unable to set XChart YAxis NumberFormat.

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

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Björn Michaelsen bjoern.michael...@canonical.com ---
Do you have an example docs and code (ideally StarBasic in the document, I
guess) demonstrating this issue? (e.g. returning the expected value on
LibreOffice 3.x but not on 4.2.x)

Also: Which version of LibreOffice 3.x was the latest you tested to be 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 89060] New: Editing: Text spacing changes when click in textbox imported from PowerPoint

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

Bug ID: 89060
   Summary: Editing:  Text spacing changes when click in textbox
imported from PowerPoint
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Presentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ck...@troy.edu

Created attachment 113066
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113066action=edit
PowerPoint Slide with 2 textboxes.  Clicking in either changes the character
spacing in that textbox.

A slide imported from PowerPoint contains a textbox.  (The font in the
attachment is Linux Libertine; also observed with the default font, Calibri
Light.)  After importing into Impress, the spacing between characters changes
when you click in the textbox, then changes back when you click outside the
textbox.  I expected the spacing to not change during editing.

Steps to reproduce:
Import a slide containing text in a textbox from PowerPoint.  Click in the
textbox, then click outside the textbox.

What's observed:
The text spacing changes when entering and leaving the textbox.

What's expected:
The text spacing is expected to remain constant, whether the text is being
edited 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-commits] core.git: RepositoryModule_host.mk

2015-02-02 Thread Matúš Kukan
 RepositoryModule_host.mk |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 7b32c5f80fa6a2408e1e30713e59adaffdf8ec58
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sat Jan 31 18:57:13 2015 +0100

Fix circular dependency with libmerged, finally

It was there for a long time. Not a fatal error.

Change-Id: I7804de7494ad027eac6434a542ae55f8d42953e9

diff --git a/RepositoryModule_host.mk b/RepositoryModule_host.mk
index 76bcea2..2d7fcb8 100644
--- a/RepositoryModule_host.mk
+++ b/RepositoryModule_host.mk
@@ -191,9 +191,9 @@ $(eval $(call repositorymodule_serialize,\
$(call gb_Helper_optional,DESKTOP,swui) \
sw sd \
$(call gb_Helper_optional,DBCONNECTIVITY,dbu) \
-   writerfilter cui chartcontroller chartcore oox svx \
-   $(if $(MERGELIBS),merged,svxcore) \
-   xo sfx fwk svt vcl \
+   writerfilter cui chartcontroller chartcore oox \
+   $(if $(MERGELIBS), merged, \
+   svx svxcore xo sfx fwk svt vcl) \
 ))
 endif
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88974] [RTL] Outline numbering not shown correctly

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

--- Comment #3 from Oribasht tobias_ripper...@yahoo.fr ---
Mathematically speaking, numbering should always be LTR.

But the problem is when you use numbers to indicate titles and subtitles. In
english, it is LTR indeed. 
But in RTL languages, numbering SHOULD BE RTL, or it will lead to confusion
(2nd title and 1st subtitle, or 1st title and 2nd subtitle?).

I totally agree that in mathematics, numbers and operations are always LTR. But
I am talking about subtitling, which is completely a different aspect.

Thank you for your understanding.

-- 
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-commits] core.git: Branch 'libreoffice-4-4' - sc/inc sc/source

2015-02-02 Thread László Németh
 sc/inc/address.hxx  |5 +
 sc/source/core/tool/address.cxx |  128 +---
 sc/source/filter/excel/xeroot.cxx   |1 
 sc/source/filter/excel/xestream.cxx |   10 +-
 sc/source/filter/excel/xetable.cxx  |   13 +--
 sc/source/filter/excel/xeview.cxx   |6 -
 sc/source/filter/inc/xeroot.hxx |5 +
 sc/source/filter/inc/xestream.hxx   |5 -
 8 files changed, 105 insertions(+), 68 deletions(-)

New commits:
commit 86df2b436d387ff1282089267e1837f17aff5cda
Author: László Németh laszlo.nem...@collabora.com
Date:   Mon Feb 2 08:52:53 2015 +0100

tdf#88810 avoid unnecessary massive O(U)String allocations in XLSX export

ToOString(XclAddress/ScAddress) functions are replaced with
ToOString(OStringBuffer, XclAddress/ScAddress) ones, using
the new shared OStringBuffer variable of XclExpRootData

Cherry-picked from master:

b2df899dbb038acfe3c47eef303345ceaf3725b8 (build fix)
99674f754323ca78ac45499439b9983b31ebd444 (append() for number to string 
conv.)
f0152b737d9a196e83752a546154735efee5c2be (more cleanup)
cc724c37232b721537d66c997a66c0d7866948ea (cleanup)
779581feed4886313746a71e9e738d736977be1b (original)

Change-Id: I06b705e2159a1ef5990f9eb0ffedd20fe277c616
Signed-off-by: Michael Meeks michael.me...@collabora.com

diff --git a/sc/inc/address.hxx b/sc/inc/address.hxx
index 06c450b..6bf55340 100644
--- a/sc/inc/address.hxx
+++ b/sc/inc/address.hxx
@@ -22,6 +22,7 @@
 
 #include tools/stream.hxx
 #include rtl/ustrbuf.hxx
+#include rtl/strbuf.hxx
 #include osl/endian.h
 
 #include limits
@@ -325,6 +326,10 @@ public:
 ExternalInfo* pExtInfo = NULL,
 const css::uno::Sequencecss::sheet::ExternalLinkInfo* 
pExternalLinks = NULL );
 
+SC_DLLPUBLIC void Format( OStringBuffer r, sal_uInt16 nFlags = 0,
+  const ScDocument* pDocument = NULL,
+  const Details rDetails = detailsOOOa1) 
const;
+
 SC_DLLPUBLIC OUString Format( sal_uInt16 nFlags = 0,
   const ScDocument* pDocument = NULL,
   const Details rDetails = detailsOOOa1) 
const;
diff --git a/sc/source/core/tool/address.cxx b/sc/source/core/tool/address.cxx
index 1efcac7..06e49b7 100644
--- a/sc/source/core/tool/address.cxx
+++ b/sc/source/core/tool/address.cxx
@@ -1672,50 +1672,81 @@ sal_uInt16 ScRange::ParseRows( const OUString rStr, 
ScDocument* pDoc,
 return (p != NULL  *p == '\0') ? nRes : 0;
 }
 
-static inline void lcl_a1_append_c ( OUStringBuffer rString, int nCol, bool 
bIsAbs )
+templatetypename T  static inline void lcl_ScColToAlpha( T rBuf, SCCOL nCol 
)
+{
+if (nCol  26*26)
+{
+if (nCol  26)
+rBuf.append( static_castchar( 'A' + nCol ));
+else
+{
+rBuf.append( static_castchar( 'A' + nCol / 26 - 1 ));
+rBuf.append( static_castchar( 'A' + nCol % 26 ));
+}
+}
+else
+{
+sal_Int32 nInsert = rBuf.getLength();
+while (nCol = 26)
+{
+SCCOL nC = nCol % 26;
+rBuf.insert(nInsert, static_castchar ( 'A' + nC ));
+nCol = sal::static_int_castSCCOL( nCol - nC );
+nCol = nCol / 26 - 1;
+}
+rBuf.insert(nInsert, static_castchar ( 'A' + nCol ));
+}
+}
+
+void ScColToAlpha( OUStringBuffer rBuf, SCCOL nCol)
+{
+lcl_ScColToAlpha(rBuf, nCol);
+}
+
+template typename T  static inline void lcl_a1_append_c ( T rString, int 
nCol, bool bIsAbs )
 {
 if( bIsAbs )
 rString.append($);
-ScColToAlpha( rString, sal::static_int_castSCCOL(nCol) );
+lcl_ScColToAlpha( rString, sal::static_int_castSCCOL(nCol) );
 }
 
-static inline void lcl_a1_append_r ( OUStringBuffer rString, int nRow, bool 
bIsAbs )
+template typename T  static inline void lcl_a1_append_r ( T rString, 
sal_Int32 nRow, bool bIsAbs )
 {
 if ( bIsAbs )
 rString.append($);
-rString.append(OUString::number( nRow+1 ));
+rString.append( nRow + 1 );
 }
 
-static inline void lcl_r1c1_append_c ( OUStringBuffer rString, int nCol, bool 
bIsAbs,
+template typename T  static inline void lcl_r1c1_append_c ( T rString, 
sal_Int32 nCol, bool bIsAbs,
const ScAddress::Details rDetails )
 {
 rString.append(C);
 if (bIsAbs)
 {
-rString.append(OUString::number( nCol + 1 ));
+rString.append( nCol + 1 );
 }
 else
 {
 nCol -= rDetails.nCol;
 if (nCol != 0) {
-rString.append([).append(OUString::number( nCol )).append(]);
+rString.append([).append(nCol).append(]);
 }
 }
 }
 
-static inline void lcl_r1c1_append_r ( OUStringBuffer rString, int nRow, bool 
bIsAbs,
+template typename T  static inline void lcl_r1c1_append_r ( T rString, 
sal_Int32 nRow, bool bIsAbs,

[Libreoffice-bugs] [Bug 88610] Incorrect rendering of some characters in Symbol font

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

--- Comment #7 from Urmas davian...@gmail.com ---
Looks similar to #88021. Maybe the Russian locale is to blame?

-- 
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 88611] LENB co. wrong value for Cyrillic text

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

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|REOPENED|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-commits] core.git: sw/uiconfig

2015-02-02 Thread Miklos Vajna
 sw/uiconfig/swriter/ui/optcomparison.ui |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit fbf7b31f17243b58097aedd2a990ecaf301b341f
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Feb 2 21:21:26 2015 +0100

sw: don't expose RSID as-is in optcomparison

Probably most users have no idea what an RSID is, try to describe it
instead.

Change-Id: I60e9d3729c55646b7877411614346b75e7e2c8d2

diff --git a/sw/uiconfig/swriter/ui/optcomparison.ui 
b/sw/uiconfig/swriter/ui/optcomparison.ui
index f204294..4de04a2 100644
--- a/sw/uiconfig/swriter/ui/optcomparison.ui
+++ b/sw/uiconfig/swriter/ui/optcomparison.ui
@@ -143,7 +143,7 @@
 /child
 child
   object class=GtkCheckButton id=useRSID
-property name=label translatable=yesUse 
_RSID/property
+property name=label translatable=yesTake it into 
account when comparing/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
@@ -176,7 +176,7 @@
 /child
 child
   object class=GtkCheckButton id=storeRSID
-property name=label translatable=yesStore 
RSID/property
+property name=label translatable=yesStore it when 
changing the document/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultFalse/property
@@ -204,7 +204,7 @@
   object class=GtkLabel id=setting
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=label translatable=yesSettings/property
+property name=label translatable=yesRandom number to improve 
accuracy of document comparision/property
 attributes
   attribute name=weight value=bold/
 /attributes
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88941] LO 4.4 Writer loses PDF formatting

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

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

   What|Removed |Added

 Blocks||42082

-- 
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 87643] SIDEBAR: New Shapes Tab and content panels

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

--- Comment #9 from Cor Nouws c...@nouenoff.nl ---
Hi Jay,

thanks for the examples.

I guess I've already indicated that IMO an advantage of the floating toolbars
is the flexibility in positioning of the relatively tiny elements.

Apart from that: when implementing them in the side bar, pls don't forget the
functionality with Ctrl and double click.

Then when we are that far it's fine for me how happy we are with possibly
removing current tool bar.
Ciao,

-- 
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 88811] FILEOPEN: Drawing lines not imported from RTF

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

Miklos Vajna vmik...@collabora.co.uk changed:

   What|Removed |Added

 CC||vmik...@collabora.co.uk

--- Comment #3 from Miklos Vajna vmik...@collabora.co.uk ---
Created attachment 113067
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113067action=edit
Reproducer document

With ASCII-only characters and a single missing line. :-)

-- 
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 89051] Paragraph justification not working for pdf exports

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

Chris Tapp opensou...@keylevel.com changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #2 from Chris Tapp opensou...@keylevel.com ---
Thanks, that does indeed look like the same issue.

I'll close this one and keep an eye on the other one instead ;-)

-- 
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-commits] core.git: Branch 'libreoffice-4-3' - wizards/source

2015-02-02 Thread Jean-Pierre Ledure
 wizards/source/access2base/Control.xba |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

New commits:
commit f1d572d1518fcfc83c0302c2a06f7de8bf224b5e
Author: Jean-Pierre Ledure j...@ledure.be
Date:   Sun Feb 1 15:19:08 2015 +0100

Access2Base - Patch#2 Bug in Control.RemoveItem

Removing last item of a Listbox produces an Index out of range run-time 
error
Bug reported in user forum 
https://forum.openoffice.org/en/forum/viewtopic.php?f=47t=75008

Change-Id: I713e7b6c29286c3774652a9a06c9392fdbe858fd
Reviewed-on: https://gerrit.libreoffice.org/14271
Reviewed-by: Lionel Elie Mamane lio...@mamane.lu
Tested-by: Lionel Elie Mamane lio...@mamane.lu

diff --git a/wizards/source/access2base/Control.xba 
b/wizards/source/access2base/Control.xba
index 7e15a1d..0575732 100644
--- a/wizards/source/access2base/Control.xba
+++ b/wizards/source/access2base/Control.xba
@@ -682,21 +682,24 @@ Dim vRowSource() As Variant, iCount As Integer, i As 
Integer, j As integer, bFou
For j = i To iCount - 1
vRowSource(j) = vRowSource(j + 
1)
Next j
-   ReDim Preserve vRowSource(0 To iCount - 
1)
bFound = True
Exit Forapos;  Remove only 1st 
occurrence of string
End If
Next i
Case Else
If pvIndex lt; 0 Or pvIndex gt; iCount Then Goto 
Error_Index
-   bFound = True
For i = pvIndex To iCount - 1
vRowSource(i) = vRowSource(i + 1)
Next i
-   ReDim Preserve vRowSource(0 To iCount - 1)
+   bFound = True
End Select

If bFound Then
+   If iCount gt; 0 Then   apos;  
https://forum.openoffice.org/en/forum/viewtopic.php?f=47amp;t=75008
+   ReDim Preserve vRowSource(0 To iCount - 1)
+   Else
+   vRowSource = Array()
+   End If
If _ParentType lt;gt; CTLPARENTISDIALOG Then
ControlModel.ListSource = vRowSource()
End If
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88941] LO 4.4 Writer loses PDF formatting

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

Jean-Baptiste Faure jbfa...@libreoffice.org changed:

   What|Removed |Added

 CC||opensou...@keylevel.com

--- Comment #6 from Jean-Baptiste Faure jbfa...@libreoffice.org ---
*** Bug 89051 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 89034] Justified in Persian

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

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

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

-- 
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 88976] Justification problem with Persian (Farsi) script in LO Writer 4.4

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

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||034

-- 
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 89064] New: FILEOPEN .pptx slide with a comment has no view of notes

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

Bug ID: 89064
   Summary: FILEOPEN .pptx slide with a comment has no view of
notes
   Product: LibreOffice
   Version: 4.3.3.2 release
  Hardware: x86 (IA32)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Presentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: royden.ya...@gmail.com

Created attachment 113071
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113071action=edit
test .pptx file

From at least 4.3.3.2 and still present in 4.4.0.3

Problem description: FILEOPEN, VIEWING

Opening a .pptx file that contains slides with notes and comments (inserted
with MS PowerPoint) will result in the slides with the comment not displaying
either the slide or the notes in note view. Slides without a comment display
the slide and notes just fine in note view. Deleting the comment does not
result in notes displaying. 

Steps to reproduce:
1. Open the .pptx file in attachment.
2. See the result in notes mode: slide 2 will display neither slide nor notes
in note view. Slide 3 without a comment displays notes just fine

Current behavior: No slide image displayed in note view if slide has comment

Expected behavior: slide image displayed in note view if slide has comment

Comment: this is a collaboration blocker for me and so I must work in Windows

-- 
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 88974] [RTL] Outline numbering not shown correctly

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||aalhar...@kacst.edu.sa
 Ever confirmed|0   |1

--- Comment #4 from Jay Philips philip...@hotmail.com ---
Please show an example from another source that arabic numbering is shown in
the way that you describe.

-- 
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 89065] New: Text in Fade In animations is not smooth

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

Bug ID: 89065
   Summary: Text in Fade In animations is not smooth
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Presentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ck...@troy.edu

Created attachment 113072
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113072action=edit
Text fad in on click to show change in resolution during animation

Text in a textbox that is shown with the Fade-in animation does not display
as smoothly as expected.  It looks like the text is faded in at a low
resolution (perhaps without anti-aliasing), then, at the end, it jumps to a
higher resolution.

Steps to reproduce:
Create a couple of textboxes on a slide in Impress.  Add some text to them. 
Make the font large (like, 60 points) so it is easy to see.  Select the Fade
In animation appearance effect (under special).  Set the animation speed to
medium, and, to make it easier to observe, for Start, select On Click.

Run the animation

What's observed:
Each textbox fades in, then at the end of the animation, the resolution
increases.  (This is especially evident with a lower-case e.)

What's expected:  The whole animation is expected to take place at high
resolution.  (That is the case with PowerPoint on my computer.) 

Without hardware acceleration turned on, the animation is atrocious, so this
could be related to the amount of memory on the graphics card.

This may seem like a minor matter, but import of animations from my PowerPoint
file into Impress results in a very jerky presentation.  This bug seems like a
reasonable place to start on that problem.

-- 
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 42082] [META] Make LibreOffice shine and glow on OS X

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

Bug 88765 Summary: OS X 10.10.1 - current daily builds 4.4.1 and 4.5.0 crashing 
-- liblnglo or libpyuno
https://bugs.documentfoundation.org/show_bug.cgi?id=88765

   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 89058] VIEWING: Horizontal Scoll Bar Arrows located to extreme right

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

--- Comment #2 from Mateo ms...@senecamedical.com ---
Yes. All spreadsheets created with LO Calc version 4.4.03 have this problem. It
works fine when viewing within 4.4.03.

-- 
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 43808] Meta bug for Most Annoying RTL related issues

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

Bug 88974 Summary: [RTL] Outline numbering not shown correctly
https://bugs.documentfoundation.org/show_bug.cgi?id=88974

   What|Removed |Added

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

-- 
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 88974] [RTL] Outline numbering not shown correctly

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

Oribasht tobias_ripper...@yahoo.fr changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 89049] Data Bar on merged cells

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

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Summary|Data Bar issues |Data Bar on merged cells
 Ever confirmed|0   |1

--- Comment #2 from raal r...@post.cz ---
(In reply to berndnewsreader from comment #0)
 Second: when merging Cells the Databar only fills the first cell and ignores
 the rest of the merged cells.

I can confirm with Version: 4.5.0.0.alpha0+
Build ID: 60143f4f7bc50054dcef923218b8c7c3bc154933
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-01-21_04:58:34

-- 
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 85231] Unclear HTML export

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

Rezonansowy lukas.ce...@gmail.com changed:

   What|Removed |Added

   Severity|enhancement |normal

-- 
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 88924] LoImpress crashes after second start of presentation

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

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 CC||qu...@runcibility.com

--- Comment #1 from Robinson Tryon (qubit) qu...@runcibility.com ---
TESTING with Ubuntu 14.04 + LO 4.4.0.3

 Steps to reproduce:
 - open a fresh loimpress
 - press F5 (start presentation)
 - cancel it (ESC)
 - start the slideshow again
 -- crash

Testing with just the laptop: No Crash
Testing with external monitor connected: (had display problems; I'll try to
return to this one later)

-- 
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 88810] FILESAVE: avoid unnecessary massive OUString/OString allocations in XLSX export

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

László Németh nem...@numbertext.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
 Whiteboard| target:4.5.0   | target:4.5.0 target:4.4.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 65925] FILESAVE: Ugly HTML code when changing capital letters and bold text

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

--- Comment #7 from Rev. Bob b...@thehandbasket.com ---
(In reply to Michael Stahl from comment #5)
 you seriously care about what the HTML code produced by Writer looks like,
 as opposed to how the HTML document is rendered by Web browsers?

Absolutely. Bad code is bad code.

 and don't mind the many elements that it inserts that no application other
 than Writer can read?

When I save a copy of a Writer ODT file as HTML, this is by far the biggest
problem I have with the output. Most of the other issues I have with that
output pipeline amount to deleting the HTML  HEAD  STYLE element and tweaking
the BODY tag.

Incidentally, this behavior persists in LO Writer 4.4.0.3, and I suspect that
it's related to revision tracking. Steps to replicate:

1. Create a new Writer document. (If a template comes up, select everything,
apply the Text Body paragraph style, and delete everything.)
2. Type the following line as the document's only content:

Take a look at this bug.

3. Highlight everything and use Ctrl-M to clear direct formatting, just to
ensure a clean slate.
4. Select the word this and use Ctrl-I to italicize it.
5. Click in a random place to clear the selection, then replace the letters
is in this with at - Take a look at _that_ bug.
6. File  Save a copy  HTML format.

Open the file, and you'll see the paragraph rendered thus:

p class=westernTake a look at ith/iiat/i bug./p

-- 
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 89067] New: Irish language interface

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

Bug ID: 89067
   Summary: Irish language interface
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Extensions
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: computaqu...@googlemail.com

Irish language interface is inoperative.  When selecting Irish for the
interface after restart Libre Office always reverts to English (USA) after
restart.  Product is Libre Office Portable.

-- 
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 88979] EDITING. The sheet portion of label ref are always absolute. Relative sheet ref not supported.

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

--- Comment #7 from dwyo...@mail.com ---
m.a.riosv, thank you for investigating.

1. Whether it's a bug or missing functionality, it would be good if labels
could be referenced as relative references. Labels for identifying rows and
columns (and individual cells as well), are important for building spreadsheets
that are structured in a manner that makes them more understandable and
maintainable. Calc supports copying sheets. When a sheet is designed for
analysis of a single entity (e.g. economic output of a nation), the obvious way
to analyze multiple instances of the same type of entity (i.e. to analyze a
number of nations) is to copy the spreadsheet for one instance of the entity
and then change the data for that second instance, but doing the same analysis
of the data for each instance of the entity. In such a case, the formulas in
the second instance that use column and row headings would likely desire for
the labels they reference to refer to the column and row headings on their own
sheet. So when the sheet copy is done, it would be good if the labels on the
first sheet to be treated as relative references. Labels are better for this
than names because a formula using a label is more understandable than a
formula using a name since a labels that are column or row headings are
conspicuous in their presence. On the other hand, the existence of names is
determined by doing Insert  Names  Manage, which is inconvenient.

2. I'm sorry I'm not understanding your comment. It seems like your comment
says that it's acceptable for the state of a sheet to be changed by the process
of saving and then opening the file - and I would be surprised for someone to
say that. Can you explain more explicitly?

3. It's a bug for the state of the file to be changed by doing a file save
followed by a file open. Also, it's clear to me that absolute and relative
references should be supported for labels the same as they are for names.

Thank you for your consideration.

-- 
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 89068] Cannot copy and paste from one sheet to another

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

--- Comment #1 from Katie Guyot buzzard_fl...@yahoo.com ---
No matter what I copy, or which way I choose to copy, the paste option is
greyed out showing nothing to paste.

-- 
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 49917] Replace Print File Directly button by the non-direct print button as a default setting

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

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #6 from Joel Madero jmadero@gmail.com ---
I'm pretty sure that this has been done in 4.4. Marking as WFM - if you can
test 4.4 and verify. If it's not correct please set back to NEW. 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 85231] Unclear HTML export

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

--- Comment #4 from Rezonansowy lukas.ce...@gmail.com ---
(In reply to Robinson Tryon (qubit) from comment #3)
 On Mon, Feb 2, 2015 at 11:00 PM,
 bugzilla-dae...@bugs.documentfoundation.org wrote:
 Rezonansowy changed bug 85231
 What  Removed Added
 Severity  enhancement normal
 
 If you don't consider this an enhancement, then you need to justify why it's
 a defect
 
 Status - NEEDINFO
 
 It would also be helpful to have the version set, just in case someone makes
 changes to HTML export in the future.

See above:

 The current problem is that there's no clear way to save/export document to  
  HTML.
 We have:
 * save dialog - olde HTML4 Transitional as one and only option to save docs 
 in HTML
 * export dialog - XHTML 1.1 plus MathML 2.0 in exporting

-- 
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 89068] New: Cannot copy and paste from one sheet to another

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

Bug ID: 89068
   Summary: Cannot copy and paste from one sheet to another
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: buzzard_fl...@yahoo.com

Cannot copy and paste from one sheet to another. For example, I am working on
my monthly budget, yet cannot create a new monthly budget without needing to
type out the entire thing.

-- 
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 89068] Cannot copy and paste from one sheet to another

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

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #2 from Joel Madero jmadero@gmail.com ---
Please provide a test document, your exact operating system, and reproducible
steps. For good bug reporting methods please review:
https://wiki.documentfoundation.org/QA/BugReport#Good_Reports

Marking as NEEDINFO - once the above is done please set the bug to UNCONFIRMED.
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 88974] [RTL] Outline numbering not shown correctly

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

--- Comment #5 from Jay Philips philip...@hotmail.com ---
I just tested word 2013 and it acts the same way. I checked with my arab friend
he said that arabs normally use '1.a, 1.b, 1.c' (of course a, b and c are in
the arabic alphabet) instead of '1.1, 1.2, 1.3' to work around this issue.

-- 
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 65925] FILESAVE: Ugly HTML code when changing capital letters and bold text

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

--- Comment #8 from Rev. Bob b...@thehandbasket.com ---
Comment 11 to bug 76021 appears to stem from the same issue:

Moreover, if I take exactly the same document and add some text, then all
these classes change!  Also note the strange duplication of classes that do
exactly the same thing (.T13,.T14,.T15,.T18)

This is notable in that 76021 relates to export as XHTML whereas 65925
involves save as HTML - implying that the root problem is in Writer rather
than either of those 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 89069] New: FORMATTING, FILESAVE: HTML output removes bold/italic from open-quote characters

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

Bug ID: 89069
   Summary: FORMATTING, FILESAVE: HTML output removes bold/italic
from open-quote characters
   Product: LibreOffice
   Version: 4.2.1.1 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: b...@thehandbasket.com

(First: I'm new to this community and to Bugzilla. I apologize if lumping the
two issues described below into one entry is incorrect. If it is and they need
to be split, please feel free to do so; if one needs to be ignored, ignore the
latter issue.)

I have two issues with Writer and HTML. I know these go back to at least
4.2.1.1, but I can't speak to earlier versions. I use LibreOffice Writer to
create/edit documents as ODT files, then Save a Copy with HTML Document
(Writer) to export an HTML copy, which is intended for use in an XHTML
environment. (The Export as XHTML code is far messier and harder to clean up,
but I should note that it does NOT exhibit these specific bugs. Hence, these
are most likely save-as-HTML filter issues rather than Writer bugs.)
Furthermore, I am using smart quotes and UTF-8 encoding.

1. When a paragraph begins with an open-single-quote or open-double-quote
character, and that character has certain direct formatting applied to it, the
character does not retain said formatting in the HTML file. For instance,
consider this line of dialogue:

“That seems strange.”

If the first five characters are italicized, the expected output would be:

p class=westerni“That/i seems strange.”/p

...but the generated output is:

p class=western“iThat/i seems strange.”/p

...with the open-double-quote rendered as plain text, not italicized.
Single-quote dialogue shows the same behavior, but this bug does NOT happen
with formatted closing quotes at the end of a paragraph, or with any sort of
quotes in mid-paragraph. Thus, italicizing the first two words of this line
would save correctly:

Oops. “That seems strange.”
p class=westerniOops. “That/i seems strange.”/p

In my testing, only the bold and italic formats are affected by this bug.
Applying bold, italic, underline, superscript, and strike to the selection (in
that order) results in the following:

p class=westernstrikesupu“ibThat/b/u/i/sup/strike
seems strange.”/p

2. Although it's more of a stylistic preference than a true bug, the saved HTML
contains hard line breaks (based on about a 70-72 character line, not counting
HTML tags) instead of reserving those for breaks between block-level elements.
An enhancement to the HTML save filter to allow user configuration of that
behavior (no breaks, hard line breaks, breaks between block-level) would be
rather helpful. Save a Copy  HTML breaks at every line, Export...  XHTML has
no breaks, and I'm advocating something in between.

-- 
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 88313] master page named Impress shows Click to Add Text out of page range

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

--- Comment #5 from Rodolfo rodolf...@gmail.com ---
At master branch, Alizarin preview is shift down, but when one clicks on it, it
shows fine.

Impress template is the opposite case: preview is OK on sidebar, but when one
clicks, it appears shifted down.

-- 
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 88979] EDITING. The sheet portion of label ref are always absolute. Relative sheet ref not supported.

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

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

   What|Removed |Added

 Status|REOPENED|NEW

--- Comment #8 from m.a.riosv mari...@miguelangel.mobi ---
1) I think perhaps it's not so easy to implement, but who knows, report a new
bug and set the status as enhancement.

2) Sorry if I have not explain well, only that saving and reopening helps but
of course the bug is there.


Changed status to new for:

2. On the new sheet Sheet1_2, the cell B2 is evaluated to #NAME?. The
reference to 'label1' seems to be the problem even though Insert  Names 
Labels shows that 'label1' is defined as column label $Sheet1.$A$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 88970] Incorrect Extended-tips in Export to PDF dialog

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

--- Comment #4 from Caolán McNamara caol...@redhat.com ---
I think the bug is actually in the helpcompiler 

The help for this page is in
helpcontent2/source/text/shared/01/ref_pdf_export.xhp

and we look at the hunk of code of

bookmark xml-lang=en-US branch=hid/filter/ui/pdfgeneralpage/range
id=bm_id2618793 localize=false/
bookmark xml-lang=en-US branch=hid/filter/ui/pdfgeneralpage/pages
id=bm_id2676778 localize=false/
paragraph xml-lang=en-US id=hd_id3154673 role=heading level=3
l10n=CHG oldref=6Pages/paragraph
  paragraph xml-lang=en-US id=par_id3147571 role=paragraph l10n=U
oldref=7ahelp hid=filter/ui/pdfgeneralpage/pagesExports the pages you
type in the box./ahelp/paragraph

then in the source of helpcompiler/source/HelpCompiler.cxx 
myparser::traverse the hid attribute of the ahelp tag is apparently ignored
and instead it assigns the ahelp extended tip to the contents of
extendedHelpText which is every bookmark seen to date with a branch that
starts with 'hid' and then empties that list.

so that's a complete horror if I'm reading this right

-- 
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-commits] core.git: embeddedobj/source

2015-02-02 Thread Stephan Bergmann
 embeddedobj/source/commonembedding/xfactory.hxx |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

New commits:
commit c33c309f13dee335d81eb0e00363d4ae2d7c911a
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Feb 2 13:38:30 2015 +0100

OOoEmbeddedObjectFactory does implement optional XLinkFactory

regression from 251f1b0b38be7d1267339898e44e320f05849e22 fdo#46808, Adapt
embed::*EmbeddedObjectCreator UNO services to new style

Change-Id: Id8b49c04183d3bc98f22398a8e43c80909c1ea11

diff --git a/embeddedobj/source/commonembedding/xfactory.hxx 
b/embeddedobj/source/commonembedding/xfactory.hxx
index 0635f8b..672eb6c 100644
--- a/embeddedobj/source/commonembedding/xfactory.hxx
+++ b/embeddedobj/source/commonembedding/xfactory.hxx
@@ -21,13 +21,15 @@
 #define INCLUDED_EMBEDDEDOBJ_SOURCE_COMMONEMBEDDING_XFACTORY_HXX
 
 #include com/sun/star/embed/XEmbeddedObjectCreator.hpp
+#include com/sun/star/embed/XLinkFactory.hpp
 #include com/sun/star/lang/XServiceInfo.hpp
 #include osl/diagnose.h
-#include cppuhelper/implbase2.hxx
+#include cppuhelper/implbase.hxx
 #include comphelper/mimeconfighelper.hxx
 
-class OOoEmbeddedObjectFactory : public ::cppu::WeakImplHelper2
+class OOoEmbeddedObjectFactory : public ::cppu::WeakImplHelper
 
::com::sun::star::embed::XEmbeddedObjectCreator,
+css::embed::XLinkFactory,
 
::com::sun::star::lang::XServiceInfo 
 {
 ::com::sun::star::uno::Reference ::com::sun::star::uno::XComponentContext 
 m_xContext;
@@ -64,7 +66,7 @@ public:
 virtual ::com::sun::star::uno::Reference 
::com::sun::star::uno::XInterface  SAL_CALL createInstanceLink( const 
::com::sun::star::uno::Reference ::com::sun::star::embed::XStorage  
xStorage, const OUString sEntName, const ::com::sun::star::uno::Sequence 
::com::sun::star::beans::PropertyValue  aMediaDescr, const 
::com::sun::star::uno::Sequence ::com::sun::star::beans::PropertyValue  
lObjArgs ) throw (::com::sun::star::lang::IllegalArgumentException, 
::com::sun::star::io::IOException, ::com::sun::star::uno::Exception, 
::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
 
 // XLinkFactory
-::com::sun::star::uno::Reference ::com::sun::star::uno::XInterface  
SAL_CALL createInstanceLinkUserInit( const ::com::sun::star::uno::Sequence 
sal_Int8  aClassID, const OUString aClassName, const 
::com::sun::star::uno::Reference ::com::sun::star::embed::XStorage  
xStorage, const OUString sEntName, const ::com::sun::star::uno::Sequence 
::com::sun::star::beans::PropertyValue  lArguments, const 
::com::sun::star::uno::Sequence ::com::sun::star::beans::PropertyValue  
lObjArgs ) throw (::com::sun::star::lang::IllegalArgumentException, 
::com::sun::star::io::IOException, ::com::sun::star::uno::Exception, 
::com::sun::star::uno::RuntimeException);
+::com::sun::star::uno::Reference ::com::sun::star::uno::XInterface  
SAL_CALL createInstanceLinkUserInit( const ::com::sun::star::uno::Sequence 
sal_Int8  aClassID, const OUString aClassName, const 
::com::sun::star::uno::Reference ::com::sun::star::embed::XStorage  
xStorage, const OUString sEntName, const ::com::sun::star::uno::Sequence 
::com::sun::star::beans::PropertyValue  lArguments, const 
::com::sun::star::uno::Sequence ::com::sun::star::beans::PropertyValue  
lObjArgs ) throw (::com::sun::star::lang::IllegalArgumentException, 
::com::sun::star::io::IOException, ::com::sun::star::uno::Exception, 
::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
 
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName() throw 
(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
@@ -73,7 +75,7 @@ public:
 
 };
 
-class OOoSpecialEmbeddedObjectFactory : public ::cppu::WeakImplHelper2
+class OOoSpecialEmbeddedObjectFactory : public ::cppu::WeakImplHelper
 
::com::sun::star::embed::XEmbedObjectFactory,
 
::com::sun::star::lang::XServiceInfo 
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libvisio.git: configure.ac

2015-02-02 Thread David Tardon
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1605e1a10b0769f9991280a58b3b40d042ede1df
Author: David Tardon dtar...@redhat.com
Date:   Mon Feb 2 13:53:15 2015 +0100

remove bashism

Change-Id: Iab654b8c82add951fa0d39a57695eeb21b21c332

diff --git a/configure.ac b/configure.ac
index ff289be..40747e9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -193,7 +193,7 @@ AS_CASE([$host],
 AC_MSG_RESULT([$platform_win32])
 AM_CONDITIONAL([PLATFORM_WIN32], [test x$platform_win32 = xyes])
 
-AS_IF([test $platform_win32 == yes],
+AS_IF([test $platform_win32 = yes],
 [],
 [
 AC_MSG_CHECKING([for -fvisibility=hidden compiler flag])
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89014] SIDEBAR: Adaptive Sidebar behaviour based on window size (e.g. while working with two LO sessions side by side)

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

--- Comment #6 from Jay Philips philip...@hotmail.com ---
(In reply to Ajinkya Dahale from comment #5)
 Thanks Jay for expressing my point more clearly and in more details.
 However, I would like to point out that there's nothing special in
 particular about a half-maximize, but the sidebar(s) should be adaptive
 depending on the available vertical and horizontal space. For example, in a
 tablet like surface, there might already be too limited space for the
 sidebar to come up by default even when maximized.

Because of smaller resolutions that the sidebar isnt opened fully by default
and in a maximized view on a tablet (as that is the only way an app can be),
the user has the option to open the sidebar fully or not.

http://gs.statcounter.com/#tablet-resolution-ww-monthly-201411-201501

 I'll extend this problem a bit more by suggesting a case where the space is
 not strictly speaking limited, but an adaptive sidebar can be of use
 nonetheless. When using book view or two-page view in Writer (at ~75% zoom),
 opening the sidebar abruptly forces the document into one-page view.
 Instead, the sidebar could be drawn over the pages, leaving the viewport
 shape unchanged. Further, the sidebar could be drawn on the opposite side of
 the page where the cursor currently is, so that that page is left unhindered.

Two-page view is incorrectly labelled when it actually is automatic view. In
Book view, it does not behave this way.

 This discussion can go on, adding further design problems as they come up.
 So if you believe I should file a separate bug for each of them, or discuss
 it somewhere else, like the Redmine, please let me know.

Well bug reports are intended to address one problem and solve it, so if you
have additional issues you want to address, then they would need to be in
different bug reports. If you want to brainstorm an idea, redmine would be good
for 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 89045] New: Options - Load/Save: text wrong translated in Dutch: Automatically save the document too

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

Bug ID: 89045
   Summary: Options - Load/Save: text wrong translated in Dutch:
Automatically save the document too
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: roe...@nijenzee.nl

Created attachment 113050
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113050action=edit
photo of the wrongly translated text

Automatically save the document too is translated as Het document
automatisch opslaan naar

Too needs to be translated as also, in Dutch ook, but this requires a
slight different sentence, like: Het document óók automatisch opslaan,
referring to the option above.

I could not find if this was reported already, so submitted.

-- 
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 88955] Hyperlink OK Button partially hidden when window resized small

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

bugzilla...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from bugzilla...@gmail.com ---
I am running Windows 7 Enterprise 64-bit Service Pack 1.  Machine has a Intel
Core i7-3740 processor.

LibreOffice Version:  4.4.0.3 
Build ID:  de093506bcdc5fafd9023ee680b8c60e3e0645d7.  

I haven't done any testing on the nightly, I don't normally do any real
testing, I just really like LibreOffice so I figured I would report anything I
do find during my normal use.  Thank you all again for your work on this
awesome product by the way.

My display setting is set to Smaller-100% which is normally defaulted to
Medium-125% to my understanding, so I don't know if that has anything to do
with it.  I will try and test changing that a little later today, but I don't
think I will download the nightly just because this is a work machine... 

Thanks,
Mark

-- 
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 89047] New: Read-Only ComboBox doesn't allow selection in PDF export

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

Bug ID: 89047
   Summary: Read-Only ComboBox doesn't allow selection in PDF
export
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bz...@florian-schmitt.net

Setting a ComboBox in a LO Writer form to Read-Only (right-click - Control
- General - Read-Only: Yes) doesn't work when exporting the Form to
PDF. Instead of restricting the selection to the ComboBox entries, it prevents
selecting any entry completely.

Expected Behaviour:
---

According to the docs, setting a ComboBox in a Writer Form to Read-Only (as
described above) prevents the user from entering arbitrary content into the
combobox, restricting her to the pre-defined values. This works fine when using
the form inside LO Writer. I expected this to work also when exporting the LO
Writer document to PDF, generating a PDF Form.

Current behaviour:
--

Instead of restricting the user to the pre-defined combobox values, he/she
can't select _any_ value from the combobox if that control was set Read-only
in Writer.

How to reproduce:
-
1. Create a new odt file;
2. Insert a ComboBox;
3. Set the combobox read-only (either using the Control button in the toolbar
or by selecting Control from the context menu).
4. Enter some list entries;
5. Set a default list entry;
6. Optionally, add a Text Box to verify if the form is editable;
7. Disable design mode to check the form functionality: 
  - entering arbitrary content in the text box works;
  - selecting a combobox entry works;
  - entering arbitrary content in the combobox doesn't work (this is ok, since
it's read-only), 
8. Export the form as PDF (with PDF form generation enabled and PDF 1/A
disabled);
9. Open the resulting PDF and check functionality:
  - entering arbitrary content in the text field works;
  - selecting a combobox entry doesn't work (!);
  - entering arbitrary content in the combobox doesn't work, too.

-- 
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 32248] FILEOPEN SVG no TEXT visible

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

Maarten Hoes hoes.maar...@gmail.com changed:

   What|Removed |Added

 Whiteboard|Confirmed:4.1.3.2:OSX   |Confirmed:4.1.3.2:OSX
   |Confirmed:4.3.0.0alpha0+:OS |Confirmed:4.3.0.0alpha0+:OS
   |X   |X
   |Confirmed:3.6.4.3:WindowsXP |Confirmed:3.6.4.3:WindowsXP
   |Confirmed:4.0.4.2:Windows7  |Confirmed:4.0.4.2:Windows7
   |Confirmed:4.2.0.0.alpha0+:W |Confirmed:4.2.0.0.alpha0+:W
   |indows7 filter:svgOpen  |indows7
   ||Confirmed:4.5.0.0.alpha0+:W
   ||indows8.1 filter:svgOpen

--- Comment #48 from Maarten Hoes hoes.maar...@gmail.com ---
I can reproduce this error (no text displayed when opening the 1st attachment
'bugtest.svg') on Windows 8.1, with LibreOffice: 
'libo-master~2015-02-01_13.19.39_LibreOfficeDev_4.5.0.0.alpha0_Win_x86.msi' 
Build ID: 'bfceafa67ed1cc3e4e03f8f214a2716f57b2d1e7'.

-- 
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 88964] SOUNDEX() function in Calc - for handling data entry errors

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

--- Comment #6 from zaxebo zaxebo zaxe...@gmail.com ---
here are people  IMPLEMENTING the widely needed 
soundex() and levenshtein_distance() functions between two words 

http://wiki.lessthandot.com/index.php/Comparing_Words%3A_Levenshtein_Distance


http://wiki.lessthandot.com/index.php/Soundex

When these functions are so much widely used (reference=
http://stackoverflow.com/a/1610941 ) for LOOSE MATCHING OF TWO STRINGS, then
why not implement them inbuilt.   :-)

-- 
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 86636] Menu totally black when opening LO - also when opening database-file - summary circumstances -as far as possible- in comment 23

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

--- Comment #27 from carsten.n...@tu-dortmund.de ---
Created attachment 113048
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113048action=edit
RHEL-6 (Scientific Linux 6.6) black menu, system details

System details for screenshot RHEL-6.6-LO-88686.jpg

-- 
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 89025] Elements dock has alot of flickering

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

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

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

--- Comment #1 from Adolfo Jayme f...@libreoffice.org ---
Please do a search before…

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

-- 
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 65584] Elements Dock windows flickers on mouse over

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

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #6 from Adolfo Jayme f...@libreoffice.org ---
*** Bug 89025 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 89034] Justified in Persian

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Beluga todven...@suomi24.fi ---
Is this the same problem as bug 88976?

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the information.

-- 
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 89042] FILESAVE: Lost ROUNDUP formula when save and load it in MSO2013

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

raal r...@post.cz changed:

   What|Removed |Added

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

--- Comment #2 from raal r...@post.cz ---
I can confirm with LO 4.4, win7 and excel2010

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


RE: help asked for Calc jump function with empty arguments

2015-02-02 Thread Winfried Donkers
Hi Eike,

 With IFERROR and IFNA these situation should return an empty value to be 
 compatible with Excel.
AFAIK also Excel does not allow a null argument for IFERROR() second 
parameter, but I'm not sure, I'd have to check.


Excel replaces an empty argument with an empty value, that is to say, the 
function description says 
'If value or value_if_error is an empty cell, IFERROR treats it as an empty 
string value ().'
and =IFERROR(1/0;) returns an empty cell, not an error message.

 With IF, the behaviour is described in ODFF1.2.
 Note that there seems to be a typo in the spec, IfFalse is mentioned twice to 
 be considered to be 0, the first (two consecutive ;; case) probably should be 
 IfTrue.

ODFF1.2 syntax is ' IF( Logical Condition [ ; [ Any IfTrue ] [ ; [ Any IfFalse 
] ] ] )' and in semantics the handling of null arguments is described, but 
-IF(1;;) return an error in Calc.

 My question is, where should this behaviour best be put in the code?

 I think the right place would be ScInterpreter::Interpret() at the end where 
 the final result is obtained. There's a check
 if( pCur-GetOpCode() == ocPush )
 and if not an error is set. An ocMissing here could be propagated through to 
 the ScFormulaResult, then
 bool isValue( formula::StackVar sv )
 in sc/source/core/tool/formularesult.cxx would need to handle 
 formula::svMissing as well, the ScFormulaResult::GetDouble() already returns 
 0.0 in such case.

I will try. The problem so far with SCInterpreter::Interpret was that I need to 
know what the function was, as IFERROR and IF have different responses to null 
arguments (in the case of IF I also need to know the values of the first 
argument as that is to be the result).

 And as these functions are jump functions, how best to access/modify the 
 stack or FormulaToken?
 Don't ;-)
I won't ;-)

Winfried
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] libcdr.git: configure.ac

2015-02-02 Thread David Tardon
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 80c7842c7a79c0e3b66962d5c54ef89ff759723d
Author: David Tardon dtar...@redhat.com
Date:   Mon Feb 2 13:48:53 2015 +0100

remove bashism

Change-Id: I795bf489517e6cadb5efa0e6a80072d1063ff50b

diff --git a/configure.ac b/configure.ac
index e5f51aa..2bbf072 100644
--- a/configure.ac
+++ b/configure.ac
@@ -184,7 +184,7 @@ AS_CASE([$host],
 AC_MSG_RESULT([$platform_win32])
 AM_CONDITIONAL([PLATFORM_WIN32], [test x$platform_win32 = xyes])
 
-AS_IF([test $platform_win32 == yes],
+AS_IF([test $platform_win32 = yes],
 [],
 [
 AC_MSG_CHECKING([for -fvisibility=hidden compiler flag])
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: officecfg/registry sw/inc sw/qa sw/source sw/uiconfig

2015-02-02 Thread Miklos Vajna
 officecfg/registry/schema/org/openoffice/Office/Writer.xcs |5 ++
 sw/inc/modcfg.hxx  |   12 ++
 sw/qa/extras/uiwriter/uiwriter.cxx |   26 +
 sw/source/core/doc/docfmt.cxx  |8 
 sw/source/ui/config/optpage.cxx|   10 +
 sw/source/uibase/config/modcfg.cxx |8 +++-
 sw/source/uibase/inc/optpage.hxx   |1 
 sw/uiconfig/swriter/ui/optcomparison.ui|   19 +
 8 files changed, 87 insertions(+), 2 deletions(-)

New commits:
commit d334dd956a594c2fdda43706417ebf4d489f206a
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Feb 2 11:59:04 2015 +0100

tdf#68183 sw: config option for disabling the creation of automatic RSID 
marks

It was a problem since the initial commit
062eaeffe7cb986255063bb9b0a5f3fb3fc8e34c (sw: Improved document
comparison based on RSIDs., 2011-12-22) that this new feature -- which
is annoying for some use-cases -- could not be disabled, let's allow
that.

Change-Id: I33fa77382919586fb00198246f737caa68dcbd85
Reviewed-on: https://gerrit.libreoffice.org/14277
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Jenkins c...@libreoffice.org

diff --git a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
index 4127fd7..a43cbc6 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
@@ -2669,6 +2669,11 @@
   descDefines the length of ignored pieces./desc
 /info
   /prop
+  prop oor:name=StoreRSID oor:type=xs:boolean
+info
+  descSpecifies whether RSIDs are stored in the document 
model./desc
+/info
+  /prop
 /group
 group oor:name=Insert
   info
diff --git a/sw/inc/modcfg.hxx b/sw/inc/modcfg.hxx
index 1e36115..a506db9 100644
--- a/sw/inc/modcfg.hxx
+++ b/sw/inc/modcfg.hxx
@@ -74,6 +74,8 @@ class SwCompareConfig : public utl::ConfigItem
 
 sal_uInt16  eCmpMode;  //Compare/CompareDocuments;
 boolbUseRsid;   //Compare/Settings/Use RSID
+/// Compare/Settings/Store RSID
+boolm_bStoreRsid;
 boolbIgnorePieces;  //Compare/Settings/Ignore pieces of length
 sal_uInt16  nPieceLen; //Compare/Settings/Ignore pieces of 
length
 
@@ -350,6 +352,16 @@ public:
 voidSetPieceLen( sal_uInt16 nLen ) { aCompareConfig.nPieceLen = 
nLen;
  aCompareConfig.SetModified(); 
}
 
+bool IsStoreRsid() const
+{
+return aCompareConfig.m_bStoreRsid;
+}
+void SetStoreRsid(bool bStoreRsid)
+{
+aCompareConfig.m_bStoreRsid = bStoreRsid;
+aCompareConfig.SetModified();
+}
+
 };
 #endif
 
diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx 
b/sw/qa/extras/uiwriter/uiwriter.cxx
index 047d0b0..0fb6c82 100644
--- a/sw/qa/extras/uiwriter/uiwriter.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter.cxx
@@ -26,6 +26,8 @@
 #include view.hxx
 #include hhcwrp.hxx
 #include swacorr.hxx
+#include swmodule.hxx
+#include modcfg.hxx
 #include editeng/acorrcfg.hxx
 #include unotools/streamwrap.hxx
 #include test/mtfxmldump.hxx
@@ -76,6 +78,7 @@ public:
 void testBookmarkUndo();
 void testFdo85876();
 void testFdo87448();
+void testTdf68183();
 
 CPPUNIT_TEST_SUITE(SwUiWriterTest);
 CPPUNIT_TEST(testReplaceForward);
@@ -106,6 +109,7 @@ public:
 CPPUNIT_TEST(testBookmarkUndo);
 CPPUNIT_TEST(testFdo85876);
 CPPUNIT_TEST(testFdo87448);
+CPPUNIT_TEST(testTdf68183);
 
 CPPUNIT_TEST_SUITE_END();
 
@@ -805,6 +809,28 @@ void SwUiWriterTest::testFdo87448()
 CPPUNIT_ASSERT_MESSAGE(aMsg.getStr(), abs(nFirstEnd - nSecondEnd)  10);
 }
 
+void SwUiWriterTest::testTdf68183()
+{
+// First disable RSID and check if indeed no such attribute is inserted.
+SwDoc* pDoc = createDoc();
+SW_MOD()-GetModuleConfig()-SetStoreRsid(false);
+SwWrtShell* pWrtShell = pDoc-GetDocShell()-GetWrtShell();
+pWrtShell-Insert2(X);
+
+SwNodeIndex aIdx(pDoc-GetNodes().GetEndOfContent(), -1);
+SwPaM aPaM(aIdx);
+SwTxtNode* pTxtNode = aPaM.GetNode().GetTxtNode();
+CPPUNIT_ASSERT_EQUAL(false, 
pTxtNode-GetSwAttrSet().HasItem(RES_PARATR_RSID));
+
+// Then enable storing of RSID and make sure that the attribute is 
inserted.
+SW_MOD()-GetModuleConfig()-SetStoreRsid(true);
+
+pWrtShell-DelToStartOfLine();
+pWrtShell-Insert2(X);
+
+CPPUNIT_ASSERT_EQUAL(true, 
pTxtNode-GetSwAttrSet().HasItem(RES_PARATR_RSID));
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(SwUiWriterTest);
 CPPUNIT_PLUGIN_IMPLEMENT();
 
diff --git a/sw/source/core/doc/docfmt.cxx b/sw/source/core/doc/docfmt.cxx
index 68c28ea..0dcaa3e 100644
--- 

Re: unused XLinkFactory stuff

2015-02-02 Thread Stephan Bergmann

On 02/02/2015 12:37 PM, Caolán McNamara wrote:

unusedcode.easy has an
OooEmbeddedObjectFactory::createInstanceLinkUserInit after the recent
devirtualization allowed callcatcher to determine that its unused. On
investigation the embeddedobj/source/commonembedding/xfactory.hxx used
to explicitly list implementing XLinkFactory until

251f1b0b38be7d1267339898e44e320f05849e22
Date:   Tue Jan 8 14:29:06 2013 +0200
 fdo#46808, Adapt embed::*EmbeddedObjectCreator UNO services to new
style

interface XEmbeddedObjectCreator
{
 interface XEmbedObjectCreator;
 interface XEmbedObjectFactory;
 interface XLinkCreator;
 [optional] interface XLinkFactory;
};

so I assume the problem here is the [optional] thing. What's the right
way to fix this within the new style uno foo ?


I guess it was a plain oversight in 
embeddedobj/source/commonembedding/xfactory.hxx to go from



class OOoEmbeddedObjectFactory : public ::cppu::WeakImplHelper5

::com::sun::star::embed::XEmbedObjectCreator,

::com::sun::star::embed::XEmbedObjectFactory,

::com::sun::star::embed::XLinkCreator,

::com::sun::star::embed::XLinkFactory,

::com::sun::star::lang::XServiceInfo 


to


class OOoEmbeddedObjectFactory : public ::cppu::WeakImplHelper2

::com::sun::star::embed::XEmbeddedObjectCreator,

::com::sun::star::lang::XServiceInfo 


instead of


class OOoEmbeddedObjectFactory : public ::cppu::WeakImplHelper3

::com::sun::star::embed::XEmbeddedObjectCreator,

::com::sun::star::embed::XLinkFactory,

::com::sun::star::lang::XServiceInfo 


as optional UNOIDL superinterfaces are simply erased in the C++ language 
binding.  Fixed now with 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=c33c309f13dee335d81eb0e00363d4ae2d7c911a 
OOoEmbeddedObjectFactory does implement optional XLinkFactory.

___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] libmspub.git: configure.ac

2015-02-02 Thread David Tardon
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 94bf061ac508a9fcd7921f56c5100b03c5729608
Author: David Tardon dtar...@redhat.com
Date:   Mon Feb 2 13:50:46 2015 +0100

remove bashism

Change-Id: I524ffd52b4b5cdace12590fd7879a221d3e9ebd9

diff --git a/configure.ac b/configure.ac
index 5c614d6..22aaac1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -162,7 +162,7 @@ AS_CASE([$host],
 AC_MSG_RESULT([$platform_win32])
 AM_CONDITIONAL([PLATFORM_WIN32], [test x$platform_win32 = xyes])
 
-AS_IF([test $platform_win32 == yes],
+AS_IF([test $platform_win32 = yes],
 [],
 [
 AC_MSG_CHECKING([for -fvisibility=hidden compiler flag])
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice-qa] Keywords

2015-02-02 Thread Rob Snelders

Hi,

Also changing the discriptions if possible would be great.

On 2015-02-01 19:47, Florian Reisinger wrote:

Hi Joel,
Add:
Janitor
Love
I18n l10n - We have a category for that
Notourbug (we have a status)

Liebe Grüße / Yours,
Florian Reisinger

Am 01.02.2015 um 19:17 schrieb Joel Madero jmadero@gmail.com:


Hi All,

Getting ready to purge some of the keywords below. I suggest
starting with removing CLEANUP0407, BISECT_PENDING, MOVETOXKC,
NEEDINFO, X12. Unless I hear objections in the next few days I'm
going to just move forward with deleting them.

EDIT KEYWORD...
DESCRIPTION
BUGS

bisected [1]
The bug has been successfully connected to a code commit that
introduced the bug (such as with git bisect).
272 [2]

bisect_pending [3]
The bug seems likely to benefit from bisecting, (such as easy to
reproduce, etc.), but the bisect has not yet been performed. See
also the bisected keyword.
0 [4]

cleanup0407 [5]
April 2007 bug cleanup.
2 [6]

have-backtrace [7]
bugs that have a useful backtrace
236 [8]

i18n [9]
Xorg Internationalisation issues (i18n)
26 [10]

janitor [11]
Cleanup bugs, usually trivial.
9 [12]

l10n [13]
Xorg/X11 Localisation issues
51 [14]

licence [15]
Files with licence problems (e.g. mixing incompatible licences,
missing/non-permissive copyrights, et al)
2 [16]

love [17]
Marking a bug with this keyword means that you're willing to
help someone fix the bug, or that it should be fixable by a beginner
without any help. This should ONLY be set by a maintainer or people
familiar with the code base, and ONLY when it looks like a project
suitable for a new developer looking for a task.
8 [18]

movetoxkc [19]
Bugs that should be moved to xkeyboard-config, if still
applicable.
0 [20]

NEEDINFO [21]
The bug does not have enough information in order to solve the
problem. Please read the comments and add the relevant information
required to aid in solving the problem.
51 [22]

notourbug [23]
It's not really our bug, but we might work around it anyway.
2 [24]

patch [25]
Bugs with a valid patch.
21 [26]

regression [27]
Xorg bug regressions (issues previously fixed but somehow broken
again)
3406 [28]

security [29]
Security-sensitive bugs
6 [30]

want-backtrace [31]
Bugs whose triage could be greatly accelerated with the addition
of a backtrace from the crash.
14 [32]

x12 [33]
Bugs that require a protocol version bump.
0 [34]



___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings:
http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa [35]
Problems?


http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/

[36]
Posting guidelines + more:
http://wiki.documentfoundation.org/Netiquette [37]
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/
[38]



Links:
--
[1] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=16

[2] https://bugs.documentfoundation.org/buglist.cgi?keywords=bisected
[3] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=17
[4] 
https://bugs.documentfoundation.org/buglist.cgi?keywords=bisect_pending
[5] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=12
[6] 
https://bugs.documentfoundation.org/buglist.cgi?keywords=cleanup0407
[7] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=5
[8] 
https://bugs.documentfoundation.org/buglist.cgi?keywords=have-backtrace
[9] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=1

[10] https://bugs.documentfoundation.org/buglist.cgi?keywords=i18n
[11] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=6

[12] https://bugs.documentfoundation.org/buglist.cgi?keywords=janitor
[13] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=2

[14] https://bugs.documentfoundation.org/buglist.cgi?keywords=l10n
[15] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=8

[16] https://bugs.documentfoundation.org/buglist.cgi?keywords=licence
[17] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=15

[18] https://bugs.documentfoundation.org/buglist.cgi?keywords=love
[19] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=10

[20] https://bugs.documentfoundation.org/buglist.cgi?keywords=movetoxkc
[21] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=14

[22] https://bugs.documentfoundation.org/buglist.cgi?keywords=NEEDINFO
[23] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=11

[24] https://bugs.documentfoundation.org/buglist.cgi?keywords=notourbug
[25] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=9

[26] https://bugs.documentfoundation.org/buglist.cgi?keywords=patch
[27] 
https://bugs.documentfoundation.org/editkeywords.cgi?action=editamp;id=3
[28] 
https://bugs.documentfoundation.org/buglist.cgi?keywords=regression
[29] 

[Libreoffice-bugs] [Bug 89044] Android: Are users being prompted to install new updates from Google Play?

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

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl,
   ||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #1 from Robinson Tryon (qubit) qu...@runcibility.com ---
Cor: Here's some info from miklos:
Last build was on Friday i think. in the about dialog, you can find the git
hash, then 'git show hash' shows the exact date (just like for desktop
builds)

If your builds is older than last Friday, but hasn't prompted for an update,
I'll do some checking with other Android users.

-- 
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 88824] Open/Create a report in Base causes LO to freeze (Windows)

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

 CC||h...@ziggo.nl

--- Comment #24 from Alex Thurgood ipla...@yahoo.co.uk ---
*** Bug 89038 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 89038] crash in odb file

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

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

--- Comment #1 from Alex Thurgood ipla...@yahoo.co.uk ---


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

-- 
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 56959] libvisio: Draw does not import properly MS Visio connectors

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

--- Comment #16 from David Tardon dtar...@redhat.com ---
(In reply to Maarten Hoes from comment #15)
 I can no longer reproduce this error when opening the 1st attachment (69920)
 'Connector.svg' on Windows 8.1, with LibreOffice: 

Are you quite sure? Nobody has implemented support for connectors yet...

-- 
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 82509] damaged files with PDF export - fonts are not correct

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

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Attachment #104493|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-commits] core.git: bridges/source

2015-02-02 Thread Andras Timar
 bridges/source/cpp_uno/msvc_win32_x86-64/mscx.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b154f4cf2e7462f04f96eb01f859cd46925c715e
Author: Andras Timar andras.ti...@collabora.com
Date:   Mon Feb 2 05:37:27 2015 -0800

add back typedef (regression from fe480d8136b204c8dc6c68916cce7e816f8b9c48)

Change-Id: Ia367fcd3b204b9dd96f5fa6d3a52d0895bd9c0c9

diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/mscx.hxx 
b/bridges/source/cpp_uno/msvc_win32_x86-64/mscx.hxx
index 74fcfd9..297afba 100644
--- a/bridges/source/cpp_uno/msvc_win32_x86-64/mscx.hxx
+++ b/bridges/source/cpp_uno/msvc_win32_x86-64/mscx.hxx
@@ -36,7 +36,7 @@ namespace CPPU_CURRENT_NAMESPACE
 const DWORD MSVC_ExceptionCode = 0xe06d7363;
 const long MSVC_magic_number = 0x19930520L;
 
-
+typedef enum { REGPARAM_INT, REGPARAM_FLT } RegParamKind;
 
 type_info * mscx_getRTTI( OUString const  rUNOname );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89012] REPORTBUILDER : Use Report in Base seem impossible - Release 4.4.0.3

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Alex Thurgood ipla...@yahoo.co.uk ---


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

-- 
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 88824] Open/Create a report in Base causes LO to freeze (Windows)

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

 CC||christian.carrouge@wanadoo.
   ||fr

--- Comment #23 from Alex Thurgood ipla...@yahoo.co.uk ---
*** Bug 89012 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 89046] New: Options - Load/Save: text wrong translated in Dutch: Automatically save the document too

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

Bug ID: 89046
   Summary: Options - Load/Save: text wrong translated in Dutch:
Automatically save the document too
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: roe...@nijenzee.nl

Created attachment 113051
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113051action=edit
photo of the wrongly translated text

Automatically save the document too is translated as Het document
automatisch opslaan naar

Too needs to be translated as also, in Dutch ook, but this requires a
slight different sentence, like: Het document óók automatisch opslaan,
referring to the option above.

I could not find if this was reported already, so submitted.

-- 
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 89000] The

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

--- Comment #4 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to V Stuart Foote from comment #3)
 @Robinson,
 
 Once this was identified as invalid, with no substance at all, I moved it to
 deletionrequest to dump it.

Ok, but...

 deletionrequest ::
 
 Select this Component for bugs what have been created only for testing
 Bugzilla or Bug Submission Assistant. Bugs with this component will be
 deleted from time to time.

...as the label says, this is (currently) just for test bugs, not for other
random stuff that ends up in the bug tracker.

 Is that not the workflow we are looking for?
 

https://wiki.documentfoundation.org/QA/Bugzilla/Administration#Deleting_Bugs

I think that eventually we may want to delete stuff other than bugs created
just for testing, but to avoid having a discussion about what's in and what's
out, I tossed the 3-5 non-test bugs out of the deletionrequest component so I
could clear out 66 'conforming' bugs.

Feel free to open a thread on the mailing list or open a ticket in redmine, and
we can discuss a policy.

-- 
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-commits] core.git: accessibility/inc accessibility/source cui/source dbaccess/source embeddedobj/source include/sfx2 include/svx sc/source sd/source sfx2/source svx/source sw/inc sw/sourc

2015-02-02 Thread Caolán McNamara
 accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx |5 -
 accessibility/source/standard/vclxaccessiblelist.cxx|   24 ---
 cui/source/dialogs/newtabledlg.cxx  |4 -
 cui/source/inc/newtabledlg.hxx  |1 
 dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx   |7 --
 dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx   |1 
 embeddedobj/source/commonembedding/miscobj.cxx  |   10 ---
 embeddedobj/source/inc/commonembobj.hxx |3 
 include/sfx2/objsh.hxx  |2 
 include/svx/fontwork.hxx|1 
 sc/source/filter/excel/xeescher.cxx |   17 -
 sc/source/filter/inc/xeescher.hxx   |1 
 sc/source/ui/docshell/docsh4.cxx|2 
 sc/source/ui/inc/docsh.hxx  |3 
 sd/source/ui/accessibility/AccessibleOutlineView.cxx|6 -
 sd/source/ui/inc/AccessibleOutlineView.hxx  |3 
 sd/source/ui/inc/SlideSorter.hxx|1 
 sd/source/ui/inc/SlideSorterViewShell.hxx   |2 
 sd/source/ui/sidebar/MasterPagesSelector.cxx|7 --
 sd/source/ui/sidebar/MasterPagesSelector.hxx|1 
 sd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx|1 
 sd/source/ui/slidesorter/shell/SlideSorter.cxx  |   15 
 sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx |7 --
 sfx2/source/appl/appdde.cxx |8 --
 sfx2/source/dialog/templdlg.cxx |   20 --
 sfx2/source/inc/templdgi.hxx|1 
 svx/source/dialog/fontwork.cxx  |5 -
 sw/inc/docsh.hxx|2 
 sw/source/uibase/app/docsh2.cxx |   32 
--
 unusedcode.easy |   14 
 writerfilter/source/ooxml/OOXMLFastContextHandler.cxx   |   10 ---
 writerfilter/source/ooxml/OOXMLFastContextHandler.hxx   |2 
 32 files changed, 15 insertions(+), 203 deletions(-)

New commits:
commit 52c2111e4f466edf77e3eee17fc9c283f3b69100
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Feb 2 11:26:11 2015 +

callcatcher: remove some unused methods

Change-Id: Id3ca991e9ede13512a39865496429aabb7e71088

diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx 
b/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx
index 21f2f3e..d96ffc6 100644
--- a/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx
+++ b/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx
@@ -110,11 +110,6 @@ public:
 virtual sal_Int16 SAL_CALL getAccessibleRole (void)
 throw (::com::sun::star::uno::RuntimeException, std::exception) 
SAL_OVERRIDE;
 
-// XAccessibleComponent
-bool SAL_CALL contains (const ::com::sun::star::awt::Point aPoint)
-throw (::com::sun::star::uno::RuntimeException);
-
-
 // XServiceInfo
 virtual OUString SAL_CALL getImplementationName (void)
 throw (::com::sun::star::uno::RuntimeException, std::exception) 
SAL_OVERRIDE;
diff --git a/accessibility/source/standard/vclxaccessiblelist.cxx 
b/accessibility/source/standard/vclxaccessiblelist.cxx
index 6b85039..f9aed93 100644
--- a/accessibility/source/standard/vclxaccessiblelist.cxx
+++ b/accessibility/source/standard/vclxaccessiblelist.cxx
@@ -600,7 +600,6 @@ sal_Int32 SAL_CALL 
VCLXAccessibleList::getAccessibleChildCount (void)
 return nCount;
 }
 
-
 ReferenceXAccessible SAL_CALL VCLXAccessibleList::getAccessibleChild 
(sal_Int32 i)
 throw (IndexOutOfBoundsException, RuntimeException, std::exception)
 {
@@ -624,7 +623,6 @@ ReferenceXAccessible SAL_CALL 
VCLXAccessibleList::getAccessibleChild (sal_Int3
 return xChild;
 }
 
-
 Reference XAccessible  SAL_CALL VCLXAccessibleList::getAccessibleParent(  )
 throw (RuntimeException, std::exception)
 {
@@ -633,7 +631,6 @@ Reference XAccessible  SAL_CALL 
VCLXAccessibleList::getAccessibleParent(  )
 return m_xParent;
 }
 
-
 sal_Int32 SAL_CALL VCLXAccessibleList::getAccessibleIndexInParent (void)
 throw (::com::sun::star::uno::RuntimeException, std::exception)
 {
@@ -643,33 +640,12 @@ sal_Int32 SAL_CALL 
VCLXAccessibleList::getAccessibleIndexInParent (void)
 return VCLXAccessibleComponent::getAccessibleIndexInParent();
 }
 
-
 sal_Int16 SAL_CALL VCLXAccessibleList::getAccessibleRole (void)
 throw (RuntimeException, std::exception)
 {
 return AccessibleRole::LIST;
 }
 
-
-//=  XAccessibleComponent  

[Libreoffice-bugs] [Bug 89044] New: Android: Are users being prompted to install new updates from Google Play?

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

Bug ID: 89044
   Summary: Android: Are users being prompted to install new
updates from Google Play?
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: qu...@runcibility.com

Cor mentioned that he hasn't seen any update notifications for the Android
Viewer (which he's installed via Google Play).

If there haven't been any updates recently, then this may not be an issue.
Because of the limitations on what metadata is provided, perhaps we can list
when builds are made available.

-- 
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 89013] Regular expressions doesn't work with MATCH and VLOOKUP when searched range is in other file.

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

raal r...@post.cz changed:

   What|Removed |Added

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

--- Comment #2 from raal r...@post.cz ---
I can confirm with LO 4.4, 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


  1   2   3   4   >