[Libreoffice-bugs] [Bug 89495] New: one for setting the color gradient in the sidebar instead of two

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

Bug ID: 89495
   Summary: one for setting the color gradient in the sidebar
instead of two
   Product: LibreOffice
   Version: 4.3.6.2 rc
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Created attachment 113542
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113542action=edit
One color for gradient on Sidebar

Версия: 4.3.6.2
ID сборки: d50a87b2e514536ed401c18000dad4660b6a169e
OS: Windows 7 Home Basic x86

Sidebar Properties section, subsection Area to configure the gradient is only
one color instead of two (see screenshot)

-- 
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 60885] FILESAVE: File button and relevant Help not same

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

gawie...@gmail.com changed:

   What|Removed |Added

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

-- 
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 50699] Template Changer: Allow ability to change a document's associated template

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

--- Comment #31 from Patrick Smits batav...@gmail.com ---
I just entered into a few related items

a) Normally if you create a document on template_1 by double clicking on it,
the macro's stored in template_1 are available in the newly created document.

However if you create macro's in a second template_2 and replace template_1
with template_2 with Template Changer, the macro's in template_2 are not
available to the document.

b) The same thing applies to keyboard shortcuts linked to macro's in templates.
I guess this is because you cannot store keyboard shortcuts in templates.

I am not sure if I should file them as bugs or feature requests though, since 
a) Template Changer is not an official part of the LO project.
b) I'm not sure if this is by design or just a missing feature, since it may
have security related consequences, p.e. you could link a malicious macro
operation to a widely used keyboard shortcut. Any thoughts on that?

P.S. not being able to install Template Changer at my work computer is solved.
It was a permission 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 82610] DEC2HEX function not working in macro, Affects Analysis AddIn functions.

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

--- Comment #7 from raal r...@post.cz ---
(In reply to Jacques Guilleron from comment #6)
 Did you try to use DECHEX, function name into LibreOffice, instead of
 DEC2HEX?

Hello,
I doesn't see DECHEX in list of available functions. Lo 4.4.0.3

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


[Libreoffice-commits] core.git: android/experimental

2015-02-20 Thread Michael Meeks
 
android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
   |2 +-
 
android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
 |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 6cdd02a7fd582af7b10c8ffc4d88589e77d1228d
Author: Michael Meeks michael.me...@collabora.com
Date:   Fri Feb 20 11:42:25 2015 +

android: protect against a crash with an empty sdcard.

If you mis-configure your emulator - that's what you get.
Unfortunate that this affects 2x places.

Change-Id: I0b281d96b22ec3ac793c687ee7f3ba1a78784ace

diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
index 9307851..fd4d7b2 100644
--- 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
+++ 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
@@ -62,7 +62,7 @@ public class GridItemAdapter extends BaseAdapter {
 }
 
 public int getCount() {
-return filePaths.size();
+return filePaths != null ? filePaths.size() : 0;
 }
 
 public Object getItem(int position) {
diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
index 9435c092..e12141b 100644
--- 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
+++ 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
@@ -602,7 +602,7 @@ public class LibreOfficeUIActivity extends LOAbout 
implements ActionBar.OnNaviga
 }
 
 public int getCount() {
-return filePaths.size();
+return filePaths != null ? filePaths.size() : 0;
 }
 
 public Object getItem(int arg0) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


AW: Error building Visual Studio 2013 project file for LibreOffice on Windows

2015-02-20 Thread Juergen Funk Mailinglist
Hi Jesper,

I have the same problem with the Visual Studio Solutions.

A lot of thanks too David Ostrovsky he has found a solution for that.
The solution is:

The make version 4.0 do it wrong, I build ONLY the VS-Solution with make 
version 3.82
The size is 517.746 Bytes when you have trouble to found, call me, I have 
forget where I downloaded.

I have make a small script calling mvs: (mvs = make VS)
mvs-- start -- 
#!/usr/bin/bash

echo remove old files
rm -fr *.sdf *.sln *.v11* *.vcxproj* *.opensdf *.v12*

echo Generate VS Files
/opt/lo/bin/make_o -npf Makefile.gbuild all | ./bin/gbuild-to-ide --ide vs2013
mvs--end-

make_o == make old

And for the normal build I use mco: (mco = make color)
mcostart
#!/usr/bin/bash

/opt/lo/bin/make gb_COLOR=1 $1 $2 $3 $4 $5 $6 $7 $8 $9
mco-end


You should first generate the core in the CORE, and then you call the script 
for build the VS-Solution, all from the core directory


I use the VAssistx it is better as VS-IntelliSense, but it is not free
I debug with the loaded project in VS, it not a problem
When you need to debug the start phase, for that I have a solution too with VS

And last here my autogen.input
--enable-pch
--disable-ccache
--enable-dbgutil
--with-external-tar=/cygdrive/d/src/lo/externalsrc
--with-ant-home=/cygdrive/d/src/lo/apache-ant-1.9.4
--with-junit=/cygdrive/d/src/lo/junit-4.10.jar
--with-visual-studio=2013
--disable-activex 
--disable-atl
--with-jpeg-turbo=0
--with-lang=de en-GB



Hope that help

Juergen

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


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

2015-02-20 Thread Caolán McNamara
 sw/source/core/undo/unnum.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c6f09d55596c3e872133f319984bff20b1399407
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Feb 11 14:02:08 2015 +

Resolves: tdf#89179 fix Undo of Numbering Level change crash

regression from long paras presumably

Change-Id: Ib89169e52e42fcbe6f8e1ab0a2eb9871d38ff06d
(cherry picked from commit 29d2666d92e1105473f339609ba59e54a286b71c)
Reviewed-on: https://gerrit.libreoffice.org/14420
Tested-by: Michael Stahl mst...@redhat.com
Reviewed-by: Michael Stahl mst...@redhat.com
(cherry picked from commit f70bfb28c396dcd9184f1c0c8ad4644e38394bce)
Reviewed-on: https://gerrit.libreoffice.org/14425
Reviewed-by: Eike Rathke er...@redhat.com
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/sw/source/core/undo/unnum.cxx b/sw/source/core/undo/unnum.cxx
index cb7e6f6..27456c98 100644
--- a/sw/source/core/undo/unnum.cxx
+++ b/sw/source/core/undo/unnum.cxx
@@ -52,7 +52,7 @@ SwUndoInsNum::SwUndoInsNum( const SwPosition rPos, const 
SwNumRule rRule,
 sReplaceRule( rReplaceRule ), nLRSavePos( 0 )
 {
 // No selection!
-nEndNode = 0, nEndCntnt = USHRT_MAX;
+nEndNode = 0, nEndCntnt = COMPLETE_STRING;
 nSttNode = rPos.nNode.GetIndex();
 nSttCntnt = rPos.nContent.GetIndex();
 }
@@ -224,7 +224,7 @@ void SwUndoMoveNum::UndoImpl(::sw::UndoRedoContext  
rContext)
 {
 sal_uLong nTmpStt = nSttNode, nTmpEnd = nEndNode;
 
-if( nEndNode || USHRT_MAX != nEndCntnt )// section?
+if (nEndNode || nEndCntnt != COMPLETE_STRING)// section?
 {
 if( nNewStt  nSttNode )// moved forwards
 nEndNode = nEndNode - ( nSttNode - nNewStt );
___
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-1' - sw/source

2015-02-20 Thread Caolán McNamara
 sw/source/uibase/misc/redlndlg.cxx |   18 ++
 1 file changed, 14 insertions(+), 4 deletions(-)

New commits:
commit 2190facc78a9e882558be7a9ffdd35f4df6222c1
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Feb 12 21:18:29 2015 +

Resolves: tdf#89227 if no SwView then disable accept/reject change buttons

e.g. if the context is an embedded draw ole then we don't have a SwView

Change-Id: I6ba07f0ecf1c419e45f7e0ac628a82e6bd486668
(cherry picked from commit 25dd3d277e9b90a59e7b2a03202ef0cba7799b68)
Reviewed-on: https://gerrit.libreoffice.org/14456
Reviewed-by: Eike Rathke er...@redhat.com
Reviewed-by: Michael Stahl mst...@redhat.com
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/sw/source/uibase/misc/redlndlg.cxx 
b/sw/source/uibase/misc/redlndlg.cxx
index fc993a8..550b692 100644
--- a/sw/source/uibase/misc/redlndlg.cxx
+++ b/sw/source/uibase/misc/redlndlg.cxx
@@ -95,7 +95,6 @@ SwModelessRedlineAcceptDlg::SwModelessRedlineAcceptDlg(
 void SwModelessRedlineAcceptDlg::Activate()
 {
 SwView *pView = ::GetActiveView();
-
 if (!pView) // can happen when switching to another app, when a Listbox in 
dialog
 return; // had the focus previously (actually THs Bug)
 
@@ -158,6 +157,7 @@ SwRedlineAcceptDlg::SwRedlineAcceptDlg(Dialog *pParent, 
bool bAutoFmt) :
 {
 aTabPagesCTRL.SetHelpId(HID_REDLINE_CTRL);
 pTPView = aTabPagesCTRL.GetViewPage();
+
 pTable = pTPView-GetTableControl();
 
 pTPView-InsertWriterHeader();
@@ -166,6 +166,11 @@ SwRedlineAcceptDlg::SwRedlineAcceptDlg(Dialog *pParent, 
bool bAutoFmt) :
 pTPView-SetRejectClickHdl(LINK(this, SwRedlineAcceptDlg, RejectHdl));
 pTPView-SetRejectAllClickHdl(LINK(this, SwRedlineAcceptDlg, 
RejectAllHdl));
 pTPView-SetUndoClickHdl(LINK(this, SwRedlineAcceptDlg, UndoHdl));
+//tdf#89227 default to disabled, and only enable if possible to 
accept/reject
+pTPView-EnableAccept(false);
+pTPView-EnableReject(false);
+pTPView-EnableAcceptAll(false);
+pTPView-EnableRejectAll(false);
 
 aTabPagesCTRL.GetFilterPage()-SetReadyHdl(LINK(this, SwRedlineAcceptDlg, 
FilterChangedHdl));
 
@@ -354,9 +359,14 @@ void SwRedlineAcceptDlg::Activate()
 return;
 
 SwView *pView = ::GetActiveView();
-
-if (!pView) // can happen when switching to another app, when a Listbox in 
the dialog
-return; // had the focus previously (actually THs Bug)
+if (!pView) // can happen when switching to another app
+{
+pTPView-EnableAccept(false);
+pTPView-EnableReject(false);
+pTPView-EnableAcceptAll(false);
+pTPView-EnableRejectAll(false);
+return; // had the focus previously
+}
 
 SwWait aWait( *pView-GetDocShell(), false );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89496] New: Unable to open rtf document

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

Bug ID: 89496
   Summary: Unable to open rtf document
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: se...@riseup.net

The attached RTF document created on windows platform with some windows tools
(MS office or wordpad I'm not sure) doesn't open with Libreoffice on Ubuntu.

LO 4.2.7.2 from Ubuntu reps reports Input/output error.
Nightly build from 17.02 (4.5.0.0) crashes on open attempt.

I've also checked abiword and wine wordpad. Abiword crashes, but Wine wordpad
manages to show the document, though there is of course some formatting loses.

-- 
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 89496] Unable to open rtf document

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

--- Comment #1 from se...@riseup.net ---
Created attachment 113543
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113543action=edit
the document that LO fails to open

-- 
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 83927] EDITING: Pasted object position still differs from the original one

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

--- Comment #4 from pafal pa...@centrum.cz ---
As this is pretty annoying I have performed following additional steps:

1) Complete wipe of ANY libre/open office traces in system (uninstall, delete
program/data directories)
2) Clean instal of LO 4.4.1.1 (msi downloaded from 
   http://dev-builds.libreoffice.org/pre-releases/win/x86/
3) Testing of following shapes in default setup is OK: 
   - rectangle, 
   - ellipse, 
   - heart!. 
   The bubble is weird even in the default setup, it adds 1.03cm to y
coordinate.
4) Change settings from default to my values (due to localization I would try
to guess the original english equivalents):
   - general, measurement units : centimeters - millimeters
   - grid, main spacing (both)  : 10.00mm - 5.00mm
   - grid, aux spacing (both)   : 10  - 5

This is the setup the described copy/paste behaviour occurs. I'm starting to
suspect the code of some wrongly handled floating point arithmetics and
rounding problems...

Could you please apply these details and try to reproduce?

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


Print-Preview in Calc

2015-02-20 Thread Juergen Funk Mailinglist
Hi,

In Calc the Save button and the SaveAs are enable, but when i change to the 
Print-Preview, both button are disable, under Writer it works.

I've changed it but when I click nothing happens.

Gived a reason of that manner, when not I open a bug-report an want fixed.

Is that okay??

Juergen




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


[Libreoffice-bugs] [Bug 65351] Sidebar: open pane that was active when last used

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

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

(In reply to Timur from comment #16)
 In my last post, I marked this as dependent on 73071. But, please confirm,
 although it would be useful

Yes, I think too

Regards
Pierre-Yves

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


[Libreoffice-bugs] [Bug 82610] DEC2HEX function not working in macro, Affects Analysis AddIn functions.

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

--- Comment #5 from Jacques Guilleron guillero...@aol.com ---
Hello oligo92, raal,

You a

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


[Libreoffice-bugs] [Bug 82610] DEC2HEX function not working in macro, Affects Analysis AddIn functions.

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

--- Comment #6 from Jacques Guilleron guillero...@aol.com ---
Hello oligo92, raal,

Did you try to use DECHEX, function name into LibreOffice, instead of DEC2HEX?
The same I think for DECOCT a

Regards,

Jacques

-- 
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 85063] EDITING: Excel structured references returns error 508 on Calc

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

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

   What|Removed |Added

   Priority|medium  |high
 Status|NEW |ASSIGNED
   Hardware|Other   |All
   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |

--- Comment #9 from Eike Rathke er...@redhat.com ---
The Table feature's structured references need to be implemented in the
formula compiler, plus the necessary table definitions to actually make them
work.

See also OOXML Part 1, 18.5 Tables and following, though the actual formula
syntax is *not* defined there.
Also
https://support.office.com/en-US/Article/Using-structured-references-with-Excel-tables-f5ed2452-2337-4f71-bed3-c8ae6d2b276e

I'm working on this.

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


[Libreoffice-bugs] [Bug 89497] EDITING, FORMATTING: Text frame gets lower, sometimes making text invisible, when switching templates

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

Joop Kiefte iko...@gmail.com changed:

   What|Removed |Added

Summary|EDITING, FORMATTING: Text   |EDITING, FORMATTING: Text
   |gets lost when switching|frame gets lower, sometimes
   |templates   |making text invisible, when
   ||switching templates

-- 
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 89497] EDITING, FORMATTING: Text gets lost when switching templates

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

--- Comment #1 from Joop Kiefte iko...@gmail.com ---
When creating the reproduction steps it turned out the text doesn't go lost,
but invisible because it's white (so no data loss, that's already a good
point), it's merely a weird text frame shift 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 60885] FILESAVE: File button and relevant Help not same

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

--- Comment #3 from gawie...@gmail.com ---
LibreOffice 4.4.0.3 in Windows 7 64 bit. Problem solved.

-- 
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 89497] EDITING, FORMATTING: Text gets lost when switching templates

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

Joop Kiefte iko...@gmail.com changed:

   What|Removed |Added

   Keywords||regression
 CC||iko...@gmail.com
Summary|EDITING, FORMATTING: Text   |EDITING, FORMATTING: Text
   |gets lost when switching|gets lost when switching
   |templates (regression?) |templates

-- 
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 89497] New: EDITING, FORMATTING: Text gets lost when switching templates (regression?)

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

Bug ID: 89497
   Summary: EDITING, FORMATTING: Text gets lost when switching
templates (regression?)
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: iko...@gmail.com

Reproduce:
- start a blank impress file
- open the template sidebar, take the 13th; this one opens shifted down
- fill in the title here
- change to 14th template: shifts back up, title is gone

-- 
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 86493] Writer crashes when increasing Zoom factor in Web layout view

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

--- Comment #27 from levy.jeanm...@hotmail.fr ---
It also crashes with libo-master 2015-12-18

-- 
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 89468] automatically create defaults for hyperlinks based on cell contents

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

raal r...@post.cz changed:

   What|Removed |Added

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

--- Comment #1 from raal r...@post.cz ---
Hello,
please provide example. Works form me with string in cell
https://bugs.documentfoundation.org/show_bug.cgi?id=89468; and LO 4.4.0.3

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested information is provided.

-- 
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 'feature/opengl-canvas-rework' - slideshow/source

2015-02-20 Thread Michael Jaumann
 slideshow/source/engine/shapes/viewshape.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 97353530ff457b005b6df54880efdba8751177cb
Author: Michael Jaumann meta_...@yahoo.com
Date:   Fri Feb 20 08:40:35 2015 +

polite query the canvas backend

throw no more exception, check if xinterface is supportet

Change-Id: I18bbb672ad60c5cb6b5a88ac5cc1d8d597a47947

diff --git a/slideshow/source/engine/shapes/viewshape.cxx 
b/slideshow/source/engine/shapes/viewshape.cxx
index 5e29d29..0c57efd 100644
--- a/slideshow/source/engine/shapes/viewshape.cxx
+++ b/slideshow/source/engine/shapes/viewshape.cxx
@@ -854,8 +854,10 @@ namespace slideshow
 
 // Shall we render to a sprite, or to a plain canvas?
 // Hack, force use of Sprites in case of ogl canvas
-uno::Reference lang::XServiceInfo   
xServiceInfo(mpViewLayer-getCanvas()-getUNOCanvas(),uno::UNO_QUERY_THROW);
-if( xServiceInfo-getImplementationName() == 
com.sun.star.comp.rendering.SpriteCanvas.OGL ||  isBackgroundDetached() )
+const uno::Reference rendering::XCanvas  xCanvas( 
mpViewLayer-getCanvas()-getUNOCanvas() );
+const uno::Reference lang::XServiceInfo   xServiceInfo(xCanvas 
,uno::UNO_QUERY);
+if(xServiceInfo.is()  xServiceInfo-getImplementationName() == 
com.sun.star.comp.rendering.SpriteCanvas.OGL
+   || isBackgroundDetached() )
 {
 return renderSprite( mpViewLayer,
  rMtf,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: error during build of mork_helper, on illumos/xstreamos

2015-02-20 Thread Gabriele Bulfon
Great Michael,
I had to double patch, both to have LDFLAGS with 
-Wl,-z,defs and to enable some X11 linking
in vcl/Library_vcl.mk.
Specifically I borrowed the ifeq ($(OS),LINUX) various linkings, and added 
them into
the ifeq ($(OS),SOLARIS), before checking for SPARC or not.
Now, I get this stupid single one...:
Undefined   first referenced
symbol in file
main/usr/lib/libcups.so
??? looking for a main in libcups.so???
here is what it's trying to do:
[build LNK] Library/libvcllo.so
S=/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3
  I=$S/instdir  W=$S/workdir   mkdir -p $W/Dep/LinkTarget/Library/  
RESPONSEFILE=/tmp/gbuild.OgyDJO  
LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}$I/ure/lib:$I/program   
$W/LinkTarget/Executable/concat-deps 
${RESPONSEFILE}$W/Dep/LinkTarget/Library/libvcllo.so.d.tmp  rm -f 
${RESPONSEFILE}
mv 
/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3/workdir/Dep/LinkTarget/Library/libvcllo.so.d.tmp
 
/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3/workdir/Dep/LinkTarget/Library/libvcllo.so.d
S=/sources/sonicle/xstream-desktop-gate/components/libreoffice/libreoffice/libreoffice-4.4.0.3
  I=$S/instdir  W=$S/workdir   /usr/gcc/4.7/bin/g++ -shared 
-Wl,-M/usr/lib/ld/map.noexstk -mimpure-text   -Wl,-z,origin 
'-Wl,-rpath,$ORIGIN:$ORIGIN/../ure-link/lib' -L$I/ure/lib -L$I/program 
-L/usr/gcc/4.7/lib -L/lib -L/usr/lib -Wl,-z,combreloc 
-L$W/LinkTarget/StaticLibrary -L$I/sdk/lib -L$I/ure/lib -L$I/program 
-Wl,-z,defs -L/usr/lib -L/lib  -R/usr/sfw/lib  
$W/CObject/vcl/source/filter/jpeg/transupp.o 
$W/CxxObject/vcl/opengl/DeviceInfo.o $W/CxxObject/vcl/opengl/gdiimpl.o 
$W/CxxObject/vcl/opengl/salbmp.o $W/CxxObject/vcl/opengl/scale.o 
$W/CxxObject/vcl/opengl/framebuffer.o $W/CxxObject/vcl/opengl/program.o 
$W/CxxObject/vcl/opengl/texture.o 
$W/CxxObject/vcl/source/opengl/OpenGLContext.o 
$W/CxxObject/vcl/source/opengl/OpenGLHelper.o 
$W/CxxObject/vcl/source/window/openglwin.o 
$W/CxxObject/vcl/source/window/settings.o 
$W/CxxObject/vcl/source/window/paint.o 
$W/CxxObject/vcl/source/window/resource.o 
$W/CxxObject/vcl/source/window/abstdlg.o $W/CxxObject/vcl/source/window/accel.o 
$W/CxxObject/vcl/source/window/accmgr.o $W/CxxObject/vcl/source/window/brdwin.o 
$W/CxxObject/vcl/source/window/accessibility.o 
$W/CxxObject/vcl/source/window/legacyaccessibility.o 
$W/CxxObject/vcl/source/window/clipping.o 
$W/CxxObject/vcl/source/window/stacking.o 
$W/CxxObject/vcl/source/window/debug.o 
$W/CxxObject/vcl/source/window/globalization.o 
$W/CxxObject/vcl/source/window/btndlg.o 
$W/CxxObject/vcl/source/window/builder.o 
$W/CxxObject/vcl/source/window/cmdevt.o $W/CxxObject/vcl/source/window/cursor.o 
$W/CxxObject/vcl/source/window/debugevent.o 
$W/CxxObject/vcl/source/window/decoview.o 
$W/CxxObject/vcl/source/window/dialog.o 
$W/CxxObject/vcl/source/window/dlgctrl.o 
$W/CxxObject/vcl/source/window/dndevdis.o 
$W/CxxObject/vcl/source/window/dndlcon.o 
$W/CxxObject/vcl/source/window/dockingarea.o 
$W/CxxObject/vcl/source/window/dockmgr.o 
$W/CxxObject/vcl/source/window/dockwin.o $W/CxxObject/vcl/source/window/event.o 
$W/CxxObject/vcl/source/window/floatwin.o 
$W/CxxObject/vcl/source/window/introwin.o 
$W/CxxObject/vcl/source/window/keycod.o 
$W/CxxObject/vcl/source/window/keyevent.o 
$W/CxxObject/vcl/source/window/layout.o $W/CxxObject/vcl/source/window/menu.o 
$W/CxxObject/vcl/source/window/menubarwindow.o 
$W/CxxObject/vcl/source/window/menufloatingwindow.o 
$W/CxxObject/vcl/source/window/menuitemlist.o 
$W/CxxObject/vcl/source/window/menuwindow.o 
$W/CxxObject/vcl/source/window/mnemonic.o 
$W/CxxObject/vcl/source/window/mnemonicengine.o 
$W/CxxObject/vcl/source/window/mouse.o 
$W/CxxObject/vcl/source/window/mouseevent.o 
$W/CxxObject/vcl/source/window/msgbox.o 
$W/CxxObject/vcl/source/window/popupmenuwindow.o 
$W/CxxObject/vcl/source/window/printdlg.o 
$W/CxxObject/vcl/source/window/scrwnd.o $W/CxxObject/vcl/source/window/seleng.o 
$W/CxxObject/vcl/source/window/split.o 
$W/CxxObject/vcl/source/window/splitwin.o 
$W/CxxObject/vcl/source/window/status.o 
$W/CxxObject/vcl/source/window/syschild.o 
$W/CxxObject/vcl/source/window/syswin.o $W/CxxObject/vcl/source/window/tabdlg.o 
$W/CxxObject/vcl/source/window/tabpage.o 
$W/CxxObject/vcl/source/window/taskpanelist.o 
$W/CxxObject/vcl/source/window/toolbox2.o 
$W/CxxObject/vcl/source/window/toolbox.o 
$W/CxxObject/vcl/source/window/window2.o 
$W/CxxObject/vcl/source/window/window3.o 
$W/CxxObject/vcl/source/window/window.o 
$W/CxxObject/vcl/source/window/winproc.o 
$W/CxxObject/vcl/source/window/wrkwin.o 
$W/CxxObject/vcl/source/control/button.o 
$W/CxxObject/vcl/source/control/combobox.o 
$W/CxxObject/vcl/source/control/ctrl.o $W/CxxObject/vcl/source/control/edit.o 
$W/CxxObject/vcl/source/control/field2.o 

[Libreoffice-bugs] [Bug 89402] EDITING: Column/Rows label are not updating when inserting a row/column, needs save and reload the file.

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

--- Comment #7 from Wolfgang j...@psilosoph.de ---
From comment 5 (Matthew Francis): The first issue demonstrated in attachment
113416 is inherited from OOo (it's already present in OOo 3.3.0)

This behaviour (first issue) was already as described in StarOffice 5.2. I also
tested OOo 3.2.0 with the same result.

The issue should be caused by not triggering a complete update of automatic
ranges on insertion of rows/columns peripheral to an existing automatic range.
While the concept of automatic ranges may be doubtable from the beginning, it
must, if introduced at all, be implemented putting reliability over efficiency.

-- 
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 55786] FILEOPEN: read error for unsupported Lotus123 .wk3, .wk4

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

David Tardon dtar...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||dtar...@redhat.com
  Component|Calc|filters and storage
   Assignee|libreoffice-b...@lists.free |alo...@loria.fr
   |desktop.org |

--- Comment #15 from David Tardon dtar...@redhat.com ---
Let's mark this as assigned then. We will close it when the new libwps is
integrated to LibreOffice.

-- 
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 89480] LibreOffice freeze with increasing the size of the sidebar

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

--- Comment #5 from kompilainenn 79045_79...@mail.ru ---
Version: 4.4.2.0.0+
ID build: 6fe2cd8bde3a3cb7a22885962ea62a4fd8a7ee9f
TinderBox: Win-x86@51-TDF, Branch:libreoffice-4-4, Time: 2015-02-19_22:50:31
Locale: ru_RU
OS: Windows 7 Home Basic x86

bug is not reproduced

ps: to repair itself? =)

-- 
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 34242] COUNTIF gives inconsistent counts of empty arrays

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

Winfried Donkers winfrieddonk...@libreoffice.org changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=85
   ||258
   Assignee|libreoffice-b...@lists.free |winfrieddonkers@libreoffice
   |desktop.org |.org

--- Comment #18 from Winfried Donkers winfrieddonk...@libreoffice.org ---
Found new possibilities as there are some relations with bug 85258.

-- 
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 83927] EDITING: Pasted object position still differs from the original one

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

pafal pa...@centrum.cz changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from pafal pa...@centrum.cz ---
- Using millimeters as the main units, but centimeters behave the same.
- Testing snap to grid and grid granularity, no influence on the offset.

Opening the attached ODG with various shapes LOv4322 in OO 4.4.1.1 on Win7 64
bit and using following steps:

- select (click) the shape, 
- ctrl-c, 
- ctrl-v, 
- check the position of the pasted one (expecting the exact same position and
size as the original)

1) Rectangle: *same as the original*
2) Circle   : x+0.01 mm, y+0.01 mm
3) Cylinder : x+0.01 mm, y+0.01 mm
4) Heart: x+0.01 mm (y unchanged!)
5) LArrow   : x+0.01 mm, y+0.01 mm
6) Flag : x+0.01 mm, y+0.01 mm
7) Bubble   : x+0.01 mm, y+5.43 mm (WTF?)
8) Star : x+0.01 mm, y+0.01 mm
9) RArrow   : *same as the original*

-- 
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 83672] FILEOPEN: PNG image not rotated in XLSX file created with MSO 2010

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

--- Comment #10 from Sushil Shinde sushilshi...@libreoffice.org ---
** I have reverted previous changes and added unit test for it.
Please review : https://gerrit.libreoffice.org/#/c/13090/

-- 
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 67776] FILEOPEN: Some SmartArt shapes have wrong direction (.xlsx)

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

--- Comment #4 from Sushil Shinde sushilshi...@libreoffice.org ---
I have reverted previous changes and added unit test for it.
Please review : https://gerrit.libreoffice.org/#/c/13090/

-- 
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 86493] Writer crashes when increasing Zoom factor in Web layout view

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

--- Comment #28 from levy.jeanm...@hotmail.fr ---
Created attachment 113540
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113540action=edit
backtrace_libo-master~2015-02-18.txt

-- 
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 35151] Print comments at the end of the page doesn't work

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

--- Comment #5 from papayes jy...@free.fr ---
Hello,
Naturally, this issue persists with version 4.4.0

In fact, it has existed for OOo 2: The help integrated in version 2:
End of page
Indicates that the notes should be printed on one extra page after each page
containing notes. 

I think it is trying to help to print the comments on the same page if there is
space (which is not easy)
either the option name is changed:
instead of End of page to Page after page or After each page
and add using the old F1 indication notes should be printed on one extra page
after each page containing notes
A+

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


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

2015-02-20 Thread Caolán McNamara
 sw/source/core/layout/tabfrm.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8a8734b582b756476f74cd046268c7fd117e46f7
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Feb 13 09:50:15 2015 +

Resolves: tdf#76636 crash on merging certain cells imported from a .doc

Change-Id: I61d5088a6f2e0b444b2943a2f9ce9feeb2e09c11
(cherry picked from commit e1f4022b9ea7ae99a31773c445d8229ba3bdea93)
Reviewed-on: https://gerrit.libreoffice.org/14465
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Reviewed-by: Adolfo Jayme Barrientos fit...@ubuntu.com

diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index 76b6be8..ad4f02e 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -4964,7 +4964,7 @@ long SwCellFrm::GetLayoutRowSpan() const
 if ( nRet  1 )
 {
 const SwFrm* pRow = GetUpper();
-const SwTabFrm* pTab = static_castconst SwTabFrm*(pRow-GetUpper());
+const SwTabFrm* pTab = pRow ? static_castconst 
SwTabFrm*(pRow-GetUpper()) : NULL;
 
 if ( pTab  pTab-IsFollow()  pRow == 
pTab-GetFirstNonHeadlineRow() )
 nRet = -nRet;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - stoc/inc stoc/Library_bootstrap.mk stoc/Library_stocservices.mk stoc/source stoc/util

2015-02-20 Thread Jan Holesovsky
 stoc/Library_bootstrap.mk |5 
 stoc/Library_stocservices.mk  |6 
 stoc/inc/stocservices.hxx |   85 
--
 stoc/source/stocservices/stocservices.cxx |   82 
-
 stoc/source/typeconv/convert.cxx  |   38 +---
 stoc/source/uriproc/ExternalUriReferenceTranslator.cxx|   32 ---
 stoc/source/uriproc/UriReferenceFactory.cxx   |   28 ---
 stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTexpand.cxx |   33 ---
 stoc/source/uriproc/UriSchemeParser_vndDOTsunDOTstarDOTscript.cxx |   34 
 stoc/source/uriproc/VndSunStarPkgUrlReferenceFactory.cxx  |   34 
 stoc/util/stocservices.component  |   23 +-
 11 files changed, 62 insertions(+), 338 deletions(-)

New commits:
commit e1879e6a377fba9ec0f21554de16be8a983553da
Author: Jan Holesovsky ke...@collabora.com
Date:   Thu Feb 19 21:21:41 2015 +0100

stocservices.component: The rest of the services + cleanup.

Change-Id: I5156318afde0f56cf3eb8d1c74c6db8d5e378600

diff --git a/stoc/Library_bootstrap.mk b/stoc/Library_bootstrap.mk
index 6c68a7f..1080cc95 100644
--- a/stoc/Library_bootstrap.mk
+++ b/stoc/Library_bootstrap.mk
@@ -19,11 +19,6 @@ $(eval $(call gb_Library_add_defs,bootstrap,\
 
 endif
 
-$(eval $(call gb_Library_set_include,bootstrap,\
--I$(SRCDIR)/stoc/inc \
-$$(INCLUDE) \
-))
-
 $(eval $(call gb_Library_use_external,bootstrap,boost_headers))
 
 $(eval $(call gb_Library_use_internal_bootstrap_api,bootstrap,\
diff --git a/stoc/Library_stocservices.mk b/stoc/Library_stocservices.mk
index 3c5dc90..aa71d9e 100644
--- a/stoc/Library_stocservices.mk
+++ b/stoc/Library_stocservices.mk
@@ -9,11 +9,6 @@
 
 $(eval $(call gb_Library_Library,stocservices))
 
-$(eval $(call gb_Library_set_include,stocservices,\
--I$(SRCDIR)/stoc/inc \
-$$(INCLUDE) \
-))
-
 $(eval $(call gb_Library_use_udk_api,stocservices))
 
 $(eval $(call gb_Library_use_libraries,stocservices,\
@@ -28,7 +23,6 @@ $(eval $(call 
gb_Library_use_external,stocservices,boost_headers))
 $(eval $(call 
gb_Library_set_componentfile,stocservices,stoc/util/stocservices))
 
 $(eval $(call gb_Library_add_exception_objects,stocservices,\
-stoc/source/stocservices/stocservices \
 stoc/source/typeconv/convert \
 stoc/source/uriproc/ExternalUriReferenceTranslator \
 stoc/source/uriproc/UriReference \
diff --git a/stoc/inc/stocservices.hxx b/stoc/inc/stocservices.hxx
deleted file mode 100644
index e79e551..000
--- a/stoc/inc/stocservices.hxx
+++ /dev/null
@@ -1,85 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the License); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef INCLUDED_STOC_INC_STOCSERVICES_HXX
-#define INCLUDED_STOC_INC_STOCSERVICES_HXX
-
-#include rtl/ustring.hxx
-#include com/sun/star/uno/Sequence.hxx
-#include com/sun/star/uno/Reference.hxx
-#include com/sun/star/uno/RuntimeException.hpp
-
-namespace com { namespace sun { namespace star { namespace uno {
-class XInterface;
-class XComponentContext;
-} } } }
-
-namespace stoc_services
-{
-// typeconv
-css::uno::Reference css::uno::XInterface  SAL_CALL 
TypeConverter_Impl_CreateInstance(
-const css::uno::Reference css::uno::XComponentContext   )
-throw( css::uno::RuntimeException );
-css::uno::Sequence OUString  tcv_getSupportedServiceNames();
-OUString tcv_getImplementationName();
-
-namespace ExternalUriReferenceTranslator
-{
-css::uno::Reference css::uno::XInterface  SAL_CALL create(
-css::uno::Reference css::uno::XComponentContext  const  context);
-OUString SAL_CALL getImplementationName();
-css::uno::Sequence OUString  SAL_CALL getSupportedServiceNames();
-}
-
-namespace UriReferenceFactory
-{
-css::uno::Reference css::uno::XInterface  SAL_CALL create(
-css::uno::Reference css::uno::XComponentContext   const  context);
-OUString SAL_CALL getImplementationName();
-css::uno::Sequence OUString  SAL_CALL getSupportedServiceNames();
-}
-
- 

[Libreoffice-bugs] [Bug 88359] CSV import could recognize ISO 8601 date/time fields without having to check Detect special numbers on

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

--- Comment #5 from Nemo_bis federicol...@tiscali.it ---
Thanks for figuring it out and sorry for jumping to conclusions based on docs.

I'm still not sure what steps I'm supposed to follow, this is what I tried now:
0) LibreOffice 4.2.8.2-2.fc20; it-IT interface, locale and default document
language
1) libreoffice campaign-vs-amount.csv
2) In the import window select UTF-8, check detect special numbers, confirm

I. Observed: The table is there, as is in the CSV.

3) Apply a cell format of any date kind to the date columns

II. Expected: dates are displayed in the chosen format.
III. Observed: dates remain in their native CSV format.

4) Apply any date function to any of the date cells, e.g. DATA.DIFF(E4;I4)

III. Expected: the date function gives an output.
IV. Observed: Err:511

5) Repeat steps 3-4 after changing locale to fr-FR in Tools  Options 
Language settings  Language  Locale (but not interface, nor default document
language, nor this document's language).

V. Observed: the date patterns in the same options panel vary.
III and IV again.

Am I still doing something wrong?

-- 
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 89493] New: PRINTING: paper size doesn't respect printer's default settings

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

Bug ID: 89493
   Summary: PRINTING: paper size doesn't respect printer's default
settings
   Product: LibreOffice
   Version: 4.3.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: paolobe...@gmail.com

printer Panasonic DP-c262 with pxlmono driver; I'm in Italy.

I installed this new printer, and set default page to A4.

However, when I print a new or old document, US letter size is shown and used;
even if I set A4, US letter is used in printing.

In order to get A4 accepted I must set it and print the doc to file: after that
A4 is saved.

I think this bug arose with 4.3 release

-- 
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 'aoo/trunk' - extras/source

2015-02-20 Thread Herbert Dürr
 extras/source/palettes/standard.soc |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit acd376b1e3e54279111dc177d698915566165ed1
Author: Herbert Dürr h...@apache.org
Date:   Fri Feb 20 09:15:45 2015 +

#i125897# fix color palette entry for Sky Blue 1

Patch-by: Erik Engstrom engstro...@g.cofc.edu
Suggested-by: V Stuart Foote vstuart.fo...@utsa.edu
Found-by: Jay Philips philip...@hotmail.com
Reviewed-by: Herbert Duerr h...@apache.org

diff --git a/extras/source/palettes/standard.soc 
b/extras/source/palettes/standard.soc
index 4f1c9b3..03cea3a 100644
--- a/extras/source/palettes/standard.soc
+++ b/extras/source/palettes/standard.soc
@@ -37,7 +37,7 @@
   draw:color draw:name=Magenta 1 draw:color=#ff99ff/
   draw:color draw:name=Purple 1 draw:color=#cc66ff/
   draw:color draw:name=Blue 1 draw:color=#ff/
-  draw:color draw:name=Sky blue 1 draw:color=#ff/
+  draw:color draw:name=Sky blue 1 draw:color=#66ccff/
   draw:color draw:name=Cyan 1 draw:color=#99/
   draw:color draw:name=Turquoise 1 draw:color=#66ff99/
   draw:color draw:name=Green 1 draw:color=#99ff99/
@@ -195,4 +195,4 @@
   draw:color draw:name=Chart 10 draw:color=#ff950e/
   draw:color draw:name=Chart 11 draw:color=#c5000b/
   draw:color draw:name=Chart 12 draw:color=#0084d1/
-/office:color-table
\ No newline at end of file
+/office:color-table
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 55702] FORMATTING: Not displaying formula in bullet list at page break

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

--- Comment #3 from sze...@o2.pl ---
Reproductible in LO 4.4.0.3, although bit tricky to replicate using attached
document.

Corrected steps (with default formatting of freshly installed Writer):
1. create empty bullet list with positions up to last line of page
2. on last member of list enter formula: sum left ( a over b over c over d
right ), it should move itself to new page
3. place your cursor before formula and start placing at (@) symbol
repeatedly
4. after 35th character, last line will move back to first page and break
occurs between characters and formula. However, formula is not visible on 2nd
page.

-- 
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 83672] FILEOPEN: PNG image not rotated in XLSX file created with MSO 2010

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

--- Comment #9 from Sushil Shinde sushilshi...@libreoffice.org ---
I have reverted previous changes and unit test for it.
Please review : https://gerrit.libreoffice.org/#/c/13090/

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


Sailesh Choyal License Statement

2015-02-20 Thread Sailesh Choyal
All of my past  future contributions to LibreOffice may be licensed under
the MPLv2/LGPLv3+ dual license. Anyone is free to use,copy,modify or
distribute this code without requiring my permission.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 88835] Formatting: Default scientific format should contains fewer digits in exponent

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

Laurent BP jumbo4...@yahoo.fr changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |jumbo4...@yahoo.fr
   |desktop.org |

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


[Libreoffice-bugs] [Bug 54717] FILESAVE: vertical text became horizontal when saving in MS 2000/xp (.doc) format

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

fa...@cadit.it changed:

   What|Removed |Added

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

--- Comment #5 from fa...@cadit.it ---
In the current Libreoffice version 4.4.0.3 on Debian Linux amd64
the bug is solved.

-- 
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 89494] New: PRINTING: missing Cpage formats

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

Bug ID: 89494
   Summary: PRINTING: missing Cpage formats
   Product: LibreOffice
   Version: 4.3.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: paolobe...@gmail.com

I have to print to C6 envelope, but

-- 
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 55741] PRINTING check box and option box without color of background area

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

--- Comment #7 from Pierre C pierre.choffar...@free.fr ---
Hi With LO 4.5.0alpha+ 

The behaviour as changed a little

When print preview, I don't see the background colour
On printed doc, the background colour isn't present to

Both should be present as in exported PDF

-- 
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 88835] Formatting: Default scientific format should contains fewer digits in exponent

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

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

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1

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


[Bug 55786] FILEOPEN: read error for unsupported Lotus123 .wk3, .wk4

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

David Tardon dtar...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||dtar...@redhat.com
  Component|Calc|filters and storage
   Assignee|libreoffice-b...@lists.free |alo...@loria.fr
   |desktop.org |

--- Comment #15 from David Tardon dtar...@redhat.com ---
Let's mark this as assigned then. We will close it when the new libwps is
integrated to LibreOffice.

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


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

2015-02-20 Thread Miklos Vajna
 editeng/source/editeng/editdoc.cxx |7 ---
 editeng/source/editeng/editeng.cxx |2 --
 2 files changed, 9 deletions(-)

New commits:
commit 8f5eff2210dc96fa9da8775db5c4d117b63c1f78
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Fri Feb 20 09:12:07 2015 +0100

editeng: remove references to dead tools/string.hxx

Change-Id: Ia22f17648225307b75310332d756da9018fd1279

diff --git a/editeng/source/editeng/editdoc.cxx 
b/editeng/source/editeng/editdoc.cxx
index c7ae62d..9e0f657 100644
--- a/editeng/source/editeng/editdoc.cxx
+++ b/editeng/source/editeng/editdoc.cxx
@@ -160,13 +160,6 @@ bool IsScriptItemValid( sal_uInt16 nItemId, short 
nScriptType )
 return bValid;
 }
 
-
-
-
-// Should later be moved to TOOLS/STRING (Current: 303)
-// for Grep: WS_TARGET
-
-
 const SfxItemInfo aItemInfos[EDITITEMCOUNT] = {
 { SID_ATTR_FRAMEDIRECTION, SFX_ITEM_POOLABLE }, // 
EE_PARA_WRITINGDIR
 { 0, SFX_ITEM_POOLABLE },   // 
EE_PARA_XMLATTRIBS
diff --git a/editeng/source/editeng/editeng.cxx 
b/editeng/source/editeng/editeng.cxx
index 78a997e..1889439 100644
--- a/editeng/source/editeng/editeng.cxx
+++ b/editeng/source/editeng/editeng.cxx
@@ -80,8 +80,6 @@
 #endif
 #include basegfx/polygon/b2dpolygon.hxx
 
-// later - TOOLS\STRING.H (for Grep: WS_TARGET)
-
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::linguistic2;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 54912] BASIC: Array function forces the lower boundary for arrays as 0 in spite of option base 1

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

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

Still occurs on Windows 7/64  Version: 4.4.1.1
Build ID: b5ac74bf8683a92078a2bc8aff97d4b436af63cb
Locale : fr_FR

Regards
Pierre-Yves

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


[Libreoffice-bugs] [Bug 89494] PRINTING: missing Cpage formats

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

Paolo Benvenuto paolobe...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

-- 
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 80923] FILEOPEN: LO problem open file in Win Server 2008

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

--- Comment #9 from Beluga todven...@suomi24.fi ---
MarcoG: bug 67534 seems to be the same as yours and it got fixed. The fix will
be in 4.4.1. Please test and report here. You can close this as duplicate, if
you notice the problem is gone in 4.4.1

Thanks to Matthew Francis for spotting the dupe.

-- 
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 89432] CRASH: Invalid vector T subscript - creating Table of Contents including a comment

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

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk

--- Comment #5 from Matthew Francis fdb...@neosheffield.co.uk ---
This bug case is a multi-vehicle pileup. There are at least 3(!) independent
crashes involved - probably not including the original report, because I can't
see any of them involving Invalid vector T subscript

After (1) the index dialog starts crashing randomly on open
After (2) adding the index starts to produce the vector::_M_range_check error
dialog mentioned in comment 3
After (3) LO exits while trying to display the above error dialog 

This needs splitting up into multiple reports, and the original report
reinvestigating as a duplicate of bug 89400 on the basis that it's possibly
Windows only.


(1)
commit 2f84b420e0428693fb2d45b68afdc9023dfc08bc
Author: Jan Holesovsky ke...@collabora.com
Date:   Wed Jan 29 08:38:50 2014 +0100

writer shadow: Avoid a whole load of unnecessary scaling.

Instead of always scaling the bitmap to the right dimensions, only enlarge
it
when necessary, and crop it while painting by using DrawBitmapEx() that
accepts the source size.

Also use BMP_SCALE_FAST, it is enough here.

Change-Id: I702ea5c9f119257ab83d49cf050ce8840e50b196

(2)
commit 9088a4c2d18f59c22fceb81829441b704603415d
Author: Tobias Lippert d...@fastmail.fm
Date:   Fri Jun 6 00:04:24 2014 +0200

fdo#30732 Retain selected character attributes for table of contents

The text and selected attributes are copied from the source text node
and added to the target node at the corresponding positions.

(3)
commit 3d3fc58a32211cf56c5238f2d9f0e86a1eb7ae7e
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Fri Jun 13 03:56:40 2014 +0900

Avoid possible memory leaks in case of exceptions

Change-Id: I986805143615f053b918fb1e64b0b24d6f76f2de

-- 
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 64439] Add Backup Reset Profile Button to Advanced Options

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

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

   What|Removed |Added

 CC||f...@libreoffice.org
Version|4.0.2.2 release |Inherited From OOo

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


[Bug 30425] Making Icon Themes is Far too Difficult

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

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

   What|Removed |Added

Version|unspecified |Inherited From OOo

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


[Libreoffice-bugs] [Bug 89498] EDITING: VLOOKUP does not find match if lookup value contains parentesis () or +.

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

Bernard du Toit bernarddt+b...@gmail.com changed:

   What|Removed |Added

Version|unspecified |4.4.0.3 release

-- 
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 75217] Dialogues can't be handled nor evaluated any more

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

Niklas Johansson sleeping.pil...@gmail.com changed:

   What|Removed |Added

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

--- Comment #3 from Niklas Johansson sleeping.pil...@gmail.com ---
I can not reproduce this problem with either of LibreOffice 4.2.8 or
LibreOffice 4.4.0 using Windows. So I will close this as resolved works for me.

Just in case I misunderstood something and the problem still exist, please feel
free to reopen.

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


[Bug 39468] translate German comments, removing redundant ones

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

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

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

fdo#39468 translated german comments

It will be available in 4.5.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


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

2015-02-20 Thread Michael Jaumann
 sc/source/ui/view/viewfun3.cxx |  108 -
 1 file changed, 54 insertions(+), 54 deletions(-)

New commits:
commit a33f97bae6edd1cac4df8cdb3d4fb3996f29a82e
Author: Michael Jaumann meta_...@yahoo.com
Date:   Wed Feb 18 12:51:42 2015 +

fdo#39468 translated german comments

Change-Id: I693e26cc8ce45bc246d0d039d39d81f17ebcbbe6
Reviewed-on: https://gerrit.libreoffice.org/14555
Tested-by: Michael Stahl mst...@redhat.com
Reviewed-by: Michael Stahl mst...@redhat.com

diff --git a/sc/source/ui/view/viewfun3.cxx b/sc/source/ui/view/viewfun3.cxx
index ee1d23a..f1ce4fe 100644
--- a/sc/source/ui/view/viewfun3.cxx
+++ b/sc/source/ui/view/viewfun3.cxx
@@ -72,7 +72,7 @@ using namespace com::sun::star;
 
 // STATIC DATA ---
 
-//  GlobalName der Writer-DocShell kommt jetzt aus comphelper/classids.hxx
+//  GlobalName of writer-DocShell from comphelper/classids.hxx
 
 //  C U T
 
@@ -87,7 +87,7 @@ void ScViewFunc::CutToClip( ScDocument* pClipDoc, bool 
bIncludeObjects )
 return;
 }
 
-ScRange aRange; // zu loeschender Bereich
+ScRange aRange; // delete this range
 if ( GetViewData().GetSimpleArea( aRange ) == SC_MARK_SIMPLE )
 {
 ScDocument* pDoc = GetViewData().GetDocument();
@@ -105,9 +105,9 @@ void ScViewFunc::CutToClip( ScDocument* pClipDoc, bool 
bIncludeObjects )
 MarkDataChanged();
 }
 
-CopyToClip( pClipDoc, true, false, bIncludeObjects );   // Ab 
ins Clipboard
+CopyToClip( pClipDoc, true, false, bIncludeObjects );   // 
copy to clipboard
 
-ScAddress aOldEnd( aRange.aEnd );   // Zusammengefasste Zellen im 
Bereich?
+ScAddress aOldEnd( aRange.aEnd );   //  combined cells in this 
range?
 pDoc-ExtendMerge( aRange, true );
 
 ScDocument* pUndoDoc = NULL;
@@ -135,7 +135,7 @@ void ScViewFunc::CutToClip( ScDocument* pClipDoc, bool 
bIncludeObjects )
 if ( !AdjustRowHeight( aRange.aStart.Row(), aRange.aEnd.Row() ) )
 pDocSh-PostPaint( aRange, PAINT_GRID, nExtFlags );
 
-if ( bRecord )  // erst jetzt ist Draw-Undo 
verfuegbar
+if ( bRecord )  // Draw-Undo now available
 pDocSh-GetUndoManager()-AddUndoAction(
 new ScUndoCut( pDocSh, aRange, aOldEnd, rMark, pUndoDoc ) );
 
@@ -360,7 +360,7 @@ bool ScViewFunc::CopyToClip( ScDocument* pClipDoc, const 
ScRangeList rRanges, b
 
 ScChangeTrack* pChangeTrack = pDoc-GetChangeTrack();
 if ( pChangeTrack )
-pChangeTrack-ResetLastCut();   // kein CutMode mehr
+pChangeTrack-ResetLastCut();   // no more cut-mode
 
 {
 ScDocShell* pDocSh = GetViewData().GetDocShell();
@@ -475,8 +475,8 @@ void ScViewFunc::PasteFromSystem()
 sal_uLong nBiff8 = 
SotExchange::RegisterFormatName(OUString(Biff8));
 sal_uLong nBiff5 = 
SotExchange::RegisterFormatName(OUString(Biff5));
 
-//  als erstes SvDraw-Model, dann Grafik
-//  (Grafik darf nur bei einzelner Grafik drinstehen)
+//  first SvDraw-model, then drawing
+//  (only one drawing is allowed)
 
 if (aDataHelper.HasFormat( SOT_FORMATSTR_ID_DRAWING ))
 {
@@ -547,8 +547,8 @@ void ScViewFunc::PasteFromSystem()
 PasteFromSystem( SOT_FORMATSTR_ID_LINK_SOURCE_OLE );
 }
 }
-//  keine Fehlermeldung, weil SID_PASTE in der idl das FastCall-Flag hat,
-//  also auch gerufen wird, wenn nichts im Clipboard steht (#42531#)
+//  no exception- SID_PASTE has FastCall-flag from idl
+//  will be called in case of empty clipboard (#42531#)
 }
 
 void ScViewFunc::PasteFromTransferable( const 
uno::Referencedatatransfer::XTransferable rxTransferable )
@@ -593,8 +593,8 @@ void ScViewFunc::PasteFromTransferable( const 
uno::Referencedatatransfer::XTran
 sal_uLong nBiff8 = 
SotExchange::RegisterFormatName(OUString(Biff8));
 sal_uLong nBiff5 = 
SotExchange::RegisterFormatName(OUString(Biff5));
 sal_uLong nFormatId = 0;
-//  als erstes SvDraw-Model, dann Grafik
-//  (Grafik darf nur bei einzelner Grafik drinstehen)
+//  first SvDraw-model, then drawing
+//  (only one drawing is allowed)
 
 if (aDataHelper.HasFormat( SOT_FORMATSTR_ID_DRAWING ))
 nFormatId = SOT_FORMATSTR_ID_DRAWING;
@@ -776,9 +776,9 @@ static bool lcl_SelHasAttrib( ScDocument* pDoc, SCCOL 
nCol1, SCROW nRow1, SCCOL
 return false;
 }
 
-//  Einfuegen auf Tabelle:
+//  paste into sheet:
 
-//  internes Paste
+//  internal paste
 
 namespace {
 
@@ -824,13 +824,13 @@ bool ScViewFunc::PasteFromClip( InsertDeleteFlags nFlags, 

[Libreoffice-bugs] [Bug 39468] translate German comments, removing redundant ones

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

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

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

fdo#39468 translated german comments

It will be available in 4.5.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 89498] EDITING: VLOOKUP does not find match if lookup value contains parentesis () or +.

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

--- Comment #1 from Bernard du Toit bernarddt+b...@gmail.com ---
Created attachment 113545
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113545action=edit
Failed Result

-- 
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 58132] : Button “Reset” in Option Dialogs does not Work as expected

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

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

   What|Removed |Added

Summary|: Button “Revert” in Option |: Button “Reset” in Option
   |Dialogs does not Work as|Dialogs does not Work as
   |expected|expected

-- 
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 89498] EDITING: VLOOKUP does not find match if lookup value contains parentesis () or +.

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

--- Comment #2 from Bernard du Toit bernarddt+b...@gmail.com ---
Created attachment 113546
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113546action=edit
Failed Result showing formulas

-- 
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-1' - vcl/source

2015-02-20 Thread Caolán McNamara
 vcl/source/window/menu.cxx |   72 ++---
 1 file changed, 48 insertions(+), 24 deletions(-)

New commits:
commit 21e6d5e42204e5a3e10de43a2b3ef880f4934aa0
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Feb 12 17:35:17 2015 +

Resolves: tdf#87663 update checker tries to add icon to toc preview toolbar

i.e. CRASH when attempting to add ToC to document if the updatechecker fires
while this dialog is activating/active because the preview has hidden 
menubars
which have no associated window

Change-Id: I45a254dba647910d7743f6d8173c2547dd82c791
(cherry picked from commit c6b40488c07149a2fcc8023dce4e9efb9e2fdf89)
Reviewed-on: https://gerrit.libreoffice.org/14446
Reviewed-by: Eike Rathke er...@redhat.com
Reviewed-by: Michael Stahl mst...@redhat.com
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index 546725a..8a6fa57 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -2381,13 +2381,13 @@ void Menu::HighlightItem( sal_uInt16 nItemPos )
 }
 
 // - MenuBar -
-
 IMenuBarWindow* MenuBar::getMenuBarWindow()
 {
 // so far just a dynamic_cast, hopefully to be turned into something saner
 // at some stage
 IMenuBarWindow *pWin = dynamic_castIMenuBarWindow*(pWindow);
-assert(pWin);
+//either there is no window (fdo#87663) or it is an IMenuBarWindow
+assert(!pWindow || pWin);
 return pWin;
 }
 
@@ -2419,15 +2419,19 @@ MenuBar::~MenuBar()
 
 void MenuBar::ClosePopup(Menu *pMenu)
 {
-getMenuBarWindow()-PopupClosed(pMenu);
+IMenuBarWindow* pMenuWin = getMenuBarWindow();
+if (!pMenuWin)
+return;
+pMenuWin-PopupClosed(pMenu);
 }
 
 sal_uLong MenuBar::DeactivateMenuBar(sal_uLong nFocusId)
 {
-nFocusId = getMenuBarWindow()-GetFocusId();
+IMenuBarWindow* pMenuWin = getMenuBarWindow();
+nFocusId = pMenuWin ? pMenuWin-GetFocusId() : 0;
 if (nFocusId)
 {
-getMenuBarWindow()-SetFocusId(0);
+pMenuWin-SetFocusId(0);
 ImplGetSVData()-maWinData.mbNoDeactivate = false;
 }
 
@@ -2453,7 +2457,9 @@ void MenuBar::ShowButtons( bool bClose, bool bFloat, bool 
bHide )
 mbCloseBtnVisible = bClose;
 mbFloatBtnVisible = bFloat;
 mbHideBtnVisible = bHide;
-getMenuBarWindow()-ShowButtons(bClose, bFloat, bHide);
+IMenuBarWindow* pMenuWin = getMenuBarWindow();
+if (pMenuWin)
+pMenuWin-ShowButtons(bClose, bFloat, bHide);
 }
 }
 
@@ -2462,7 +2468,9 @@ void MenuBar::SetDisplayable( bool bDisplayable )
 if( bDisplayable != mbDisplayable )
 {
 mbDisplayable = bDisplayable;
-getMenuBarWindow()-LayoutChanged();
+IMenuBarWindow* pMenuWin = getMenuBarWindow();
+if (pMenuWin)
+pMenuWin-LayoutChanged();
 }
 }
 
@@ -2495,7 +2503,9 @@ void MenuBar::ImplDestroy( MenuBar* pMenu, bool bDelete )
 vcl::Window *pWindow = pMenu-ImplGetWindow();
 if (pWindow  bDelete)
 {
-pMenu-getMenuBarWindow()-KillActivePopup();
+IMenuBarWindow* pMenuWin = pMenu-getMenuBarWindow();
+if (pMenuWin)
+pMenuWin-KillActivePopup();
 delete pWindow;
 }
 pMenu-pWindow = NULL;
@@ -2512,29 +2522,34 @@ bool MenuBar::ImplHandleKeyEvent( const KeyEvent 
rKEvent, bool bFromMenu )
 
 // check for enabled, if this method is called from another window...
 vcl::Window* pWin = ImplGetWindow();
-if ( pWin  pWin-IsEnabled()  pWin-IsInputEnabled()   ! 
pWin-IsInModalMode() )
-bDone = getMenuBarWindow()-HandleKeyEvent( rKEvent, bFromMenu );
+if (pWin  pWin-IsEnabled()  pWin-IsInputEnabled()   
!pWin-IsInModalMode())
+{
+IMenuBarWindow* pMenuWin = getMenuBarWindow();
+bDone = pMenuWin ? pMenuWin-HandleKeyEvent(rKEvent, bFromMenu) : 
false;
+}
 return bDone;
 }
 
 void MenuBar::SelectItem(sal_uInt16 nId)
 {
-IMenuBarWindow* pMenuWin = getMenuBarWindow();
-
 if (pWindow)
 {
 pWindow-GrabFocus();
 nId = GetItemPos( nId );
 
-// #99705# popup the selected menu
-pMenuWin-SetAutoPopup( true );
-if (ITEMPOS_INVALID != pMenuWin-GetHighlightedItem())
+IMenuBarWindow* pMenuWin = getMenuBarWindow();
+if (pMenuWin)
 {
-pMenuWin-KillActivePopup();
-pMenuWin-ChangeHighlightItem( ITEMPOS_INVALID, false );
+// #99705# popup the selected menu
+pMenuWin-SetAutoPopup( true );
+if (ITEMPOS_INVALID != pMenuWin-GetHighlightedItem())
+{
+pMenuWin-KillActivePopup();
+pMenuWin-ChangeHighlightItem( ITEMPOS_INVALID, false );
+}
+if (nId != ITEMPOS_INVALID)
+pMenuWin-ChangeHighlightItem( nId, false );
 }
-if (nId != ITEMPOS_INVALID)

[Libreoffice-bugs] [Bug 72040] TABLE: Add Date-Time-Format YYYY-MM-DDThh:mm:ss to Predifined Formats

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

--- Comment #4 from Eike Rathke er...@redhat.com ---
Of course all formats that are added to locale data (or generated internally
which I'd recommend here as the format is identical for all locales) are
visible to the user in the number formats dialogue.

-- 
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-1' - sw/source

2015-02-20 Thread Caolán McNamara
 sw/source/core/undo/untbl.cxx |   25 +
 1 file changed, 13 insertions(+), 12 deletions(-)

New commits:
commit dd925ae885eea0fa84730196d4df64ca9b9584d1
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Feb 13 10:33:37 2015 +

Resolves: tdf#79569 crash undoing tricky cell merge

Change-Id: I68d774d0d3758cdb67864d7939a7e1167dd9a7df
(cherry picked from commit 21796a5fb92fd9773017b782a654a8b5a190cc66)
Reviewed-on: https://gerrit.libreoffice.org/14469
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Reviewed-by: Michael Meeks michael.me...@collabora.com
Tested-by: Michael Meeks michael.me...@collabora.com

diff --git a/sw/source/core/undo/untbl.cxx b/sw/source/core/undo/untbl.cxx
index aafa683..178cd03 100644
--- a/sw/source/core/undo/untbl.cxx
+++ b/sw/source/core/undo/untbl.cxx
@@ -1350,21 +1350,22 @@ void _SaveBox::CreateNew( SwTable rTbl, SwTableLine 
rParent, _SaveTable rSTbl
 {
 // search box for StartNode in old table
 SwTableBox* pBox = rTbl.GetTblBox( nSttNode );
-OSL_ENSURE( pBox, Where is my TableBox? );
-
-SwFrmFmt* pOld = pBox-GetFrmFmt();
-pBox-RegisterToFormat( *pFmt );
-if( !pOld-GetDepends() )
-delete pOld;
+if (pBox)
+{
+SwFrmFmt* pOld = pBox-GetFrmFmt();
+pBox-RegisterToFormat( *pFmt );
+if( !pOld-GetDepends() )
+delete pOld;
 
-pBox-setRowSpan( nRowSpan );
+pBox-setRowSpan( nRowSpan );
 
-SwTableBoxes* pTBoxes = pBox-GetUpper()-GetTabBoxes();
-pTBoxes-erase( std::find( pTBoxes-begin(), pTBoxes-end(), pBox ) );
+SwTableBoxes* pTBoxes = pBox-GetUpper()-GetTabBoxes();
+pTBoxes-erase( std::find( pTBoxes-begin(), pTBoxes-end(), pBox 
) );
 
-pBox-SetUpper( rParent );
-pTBoxes = rParent.GetTabBoxes();
-pTBoxes-push_back( pBox );
+pBox-SetUpper( rParent );
+pTBoxes = rParent.GetTabBoxes();
+pTBoxes-push_back( pBox );
+}
 }
 
 if( pNext )
___
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-1' - sw/source

2015-02-20 Thread Miklos Vajna
 sw/source/core/layout/paintfrm.cxx |   13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

New commits:
commit be3f5f82719930f415b5ca38451e8aa4bcd02027
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Tue Feb 17 12:16:54 2015 +0100

tdf#82661 SwFrm::PaintBackground: handle fill attrs when comparing 
background

Regression from 7d9bb549d498d6beed2c4050c402d09643febdfa (Related:
i#124638 Second step of DrawingLayer FillAttributes..., 2014-06-02),
should be good enough till SdrAllFillAttributesHelper gets its own
operator ==().

Change-Id: I03f847bc1589e3771790427d9894cc330a7b8dc6
(cherry picked from commit 1e33cd8355eb1d856a1439b4a095e379b3acf0bd)
Reviewed-on: https://gerrit.libreoffice.org/14537
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com
(cherry picked from commit 010cd7e81ef0f8c524ff764eed80e746caa1d94c)
Reviewed-on: https://gerrit.libreoffice.org/14564

diff --git a/sw/source/core/layout/paintfrm.cxx 
b/sw/source/core/layout/paintfrm.cxx
index 0dc99f5..84dfcf6 100644
--- a/sw/source/core/layout/paintfrm.cxx
+++ b/sw/source/core/layout/paintfrm.cxx
@@ -6436,6 +6436,15 @@ void SwFrm::PaintBaBo( const SwRect rRect, const 
SwPageFrm *pPage,
 pOut-Pop();
 }
 
+static bool lcl_compareFillAttributes(const 
drawinglayer::attribute::SdrAllFillAttributesHelperPtr pA, const 
drawinglayer::attribute::SdrAllFillAttributesHelperPtr pB)
+{
+if (pA == pB)
+return true;
+if (!pA || !pB)
+return false;
+return pA-getFillAttribute() == pB-getFillAttribute();
+}
+
 /// OD 05.09.2002 #102912#
 /// Do not paint background for fly frames without a background brush by
 /// calling PaintBaBo at the page or at the fly frame its anchored
@@ -6540,8 +6549,8 @@ void SwFrm::PaintBackground( const SwRect rRect, const 
SwPageFrm *pPage,
 ::lcl_CalcBorderRect( aRect, this, rAttrs, false );
 if ( (IsTxtFrm() || IsTabFrm())  GetPrev() )
 {
-if ( GetPrev()-GetAttrSet()-GetBackground() ==
- GetAttrSet()-GetBackground() )
+if ( GetPrev()-GetAttrSet()-GetBackground() == 
GetAttrSet()-GetBackground() 
+ 
lcl_compareFillAttributes(GetPrev()-getSdrAllFillAttributesHelper(), 
getSdrAllFillAttributesHelper()))
 {
 aRect.Top( Frm().Top() );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 82014] BASIC Removing conditional formatting by API no longer works

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

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

   What|Removed |Added

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

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

(In reply to Commit Notification from comment #7)
 Matúš Kukan committed a patch related to this issue.
 It has been pushed to master:
...
 Affected users are encouraged to test the fix and report feedback.

Verified on Windows 7/64  Version: 4.5.0.0.alpha0+
Build ID: c14ed48c65f20a63da930a526c2a6294d3a3f565
TinderBox: Win-x86@42, Branch:master, Time: 2015-02-20_01:20:20
Locale: fr_FR

Thank you :)

Regards
Pierre-Yves

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


[Libreoffice-bugs] [Bug 84294] Wrong frame-background in exported PDF

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

--- Comment #24 from Timur gti...@gmail.com ---
(In reply to Matthew Francis from comment #23)
 this may be beyond the level of effort available/reasonable in the remaining 
 life of the 4.3 branch)

Hope not, but even if so, because there's only 4.3.7 left, that should be
decided and not just left reopened.

-- 
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 'distro/collabora/viewer' - android/experimental

2015-02-20 Thread Michael Meeks
 
android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
   |2 +-
 
android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
 |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 039ad4b49c3d6e8b7a6c613c902d483214500c50
Author: Michael Meeks michael.me...@collabora.com
Date:   Fri Feb 20 11:03:26 2015 +

android: protect against a crash with an empty sdcard.

If you mis-configure your emulator - that's what you get.
Unfortunate that this affects 2x places.

Change-Id: I0b281d96b22ec3ac793c687ee7f3ba1a78784ace

diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
index 13e8732..47fa245 100644
--- 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
+++ 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/GridItemAdapter.java
@@ -59,7 +59,7 @@ public class GridItemAdapter extends BaseAdapter {
 }
 
 public int getCount() {
-return filePaths.length;
+return filePaths != null ? filePaths.length : 0;
 }
 
 public Object getItem(int position) {
diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
index 3e154e0..494c02b 100644
--- 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
+++ 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java
@@ -430,7 +430,7 @@ public class LibreOfficeUIActivity extends LOAbout 
implements ActionBar.OnNaviga
 
 public int getCount() {
 // TODO Auto-generated method stub
-return filePaths.length;
+return filePaths != null ? filePaths.length : 0;
 }
 
 public Object getItem(int arg0) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88359] CSV import could recognize ISO 8601 date/time fields without having to check Detect special numbers on

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

--- Comment #6 from Eike Rathke er...@redhat.com ---
Strange, import works with other locales (you could change in step 2 above),
but not with it-IT. Also manual input of 2014-11-23T12:34:56 is not accepted as
date in it-IT, but is in other locales.
That's a bug, I'll investigate.

-- 
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 73919] Language choice switches from English english to American English

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

brendel bren...@nancy.inra.fr changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from brendel bren...@nancy.inra.fr ---
Yes, the problem is still there in version 4.3.5.2
I'm not sure that I can give exact steps to follow but I can describe my set-up
and my observations : 
My computer uses a French Windows 7 system, however my keyboard has a German
layout. I guess this is why after every upgrade of LO, I get only French and
German as language options, e.g. in writer when setting the language for a
text.
After the upgrade, when I want to write in English, I choose Tools/Language/for
the whole text/more languages (I'm translating from the French menu points
here, so that might not be quite correct) and I see French and German as
language options options. I then chose more languages to chose as default
language for this text British English (in my case that is called
Anglais(Royaume-Uni). I get then Anglais(Royaume-Uni) shown in the status
bar at the bottom and I can spellcheck my text.
When I then close LO and open up a new Writer document, again write some text
in English, and then go to the menu point Tools/Language/for the whole text, I
get as options (see also the attached screen-shot) : 
French
German
English(USA) 

So English has been added as a language option, however for some reason always
the US English will be shown, not British English !

And it is always like this : I chose British English as the option I want to
have, and I get American English as a standard language choice. I can chose
British English as often as I want, it won't stick in the menu for language
choices.
I guess you need a computer that has not an English (British or American)
system installed to reproduce this.

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


[Libreoffice-bugs] [Bug 75471] New windows stay in background, don't get focus

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

--- Comment #18 from Murz mur...@gmail.com ---
Got the same problem on Kubuntu 14.10 with LibreOffice 4.4 release. Is there
any workaround exists for this 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 59513] : /usr/bin/ links are likely placed in wrong package and unversioned link is missing

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

--- Comment #16 from sergio.calleg...@gmail.com ---
The bug is still present as of 4.4.0.3 and has *worsened*. In the following
point 1 is new, while the other two points are confirmed from the past.

1) A symbolic link, in /usr/local/bin/libreoffice4.4 is created by the
libreoffice4.4-debian-menus.  This is a very evident violation of the
debian policy. Deb packages *must not* place any files in /usr/local, either by
putting them in the file system archive to be unpacked by dpkg or by
manipulating them in their maintainer scripts (Debian policy manual Section
9.1.2 Site-specific programs). It is also in violation of the Linux Filesystem
Hierachy Standard, that states The /usr/local hierarchy is for use by the
system administrator when installing software locally. *It needs to be safe
from being overwritten when the system software is updated*. Note that up to
version 4.3, libreoffice was putting a link in /usr/bin, which was OK with the
policy.

2) The link to libreoffice4.4 should likely not be managed/created by the
libreoffice4.4-debian-menus package as it is. In fact, the debian-menus package
should have to do with the /desktop integration/. The link to have libreoffice
on the path should be provided even if one choses not to install the desktop
integration, because it has to do with the ability to start the program at all
which is needed even without desktop integration (e.g. in installations where
libreoffice is used as a server for document conversion with no desktop
integration at all).

3) The system lacks a libreoffice executable (namely, something like
/usr/bin/libreoffice, rather than /usr/bin/libreoffice4.4). This should be
present and managed by the debian alternatives system. Otherwise, when one
upgrades libreoffice (e.g. from 4.3 to 4.4) all the scripts that need to call
libreoffice break and need to be manually updated (or a manually created link
needs manual updating).  If the alternative system is not feasible (due to
chance of breaking if debian decides to implement a similar scheme for its own
deb files of libreoffice), the idea in #9 of having a package to provide the
default version to invoke would be a step forward. Another possibility would be
to use the alternative mechanism with name libreoffice-default not to
conflict with debian. But, please, provide something to call that is stable
between upgrades.

-- 
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-1' - sw/source

2015-02-20 Thread Caolán McNamara
 sw/source/filter/html/htmlgrin.cxx |   63 ++---
 1 file changed, 38 insertions(+), 25 deletions(-)

New commits:
commit f2c562a64da925d96260939181574770224dadad
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Feb 10 09:49:16 2015 +

Resolves: tdf#83073 use loaded graphic's width/height as defaults

(cherry picked from commit 4327ee505f8507f653c8f4db9ac7503db2e15c3a)

Conflicts:
sw/source/filter/html/htmlgrin.cxx

Change-Id: Idad25f82d884c40c55b886fd7634a6c6e51693c4
Reviewed-on: https://gerrit.libreoffice.org/14394
Tested-by: Michael Stahl mst...@redhat.com
Reviewed-by: Michael Stahl mst...@redhat.com
(cherry picked from commit dd53735c5fe98fa4f8da4bf214a04b7883bf73c8)
Reviewed-on: https://gerrit.libreoffice.org/14426
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk
Reviewed-by: Michael Meeks michael.me...@collabora.com
Reviewed-by: Adolfo Jayme Barrientos fit...@ubuntu.com

diff --git a/sw/source/filter/html/htmlgrin.cxx 
b/sw/source/filter/html/htmlgrin.cxx
index 6986200..bf2e17a 100644
--- a/sw/source/filter/html/htmlgrin.cxx
+++ b/sw/source/filter/html/htmlgrin.cxx
@@ -312,6 +312,7 @@ void SwHTMLParser::InsertImage()
 OUString sGrfNm;
 sal_Int16 eVertOri = text::VertOrientation::TOP;
 sal_Int16 eHoriOri = text::HoriOrientation::NONE;
+bool bWidthProvided=false, bHeightProvided=false;
 long nWidth=0, nHeight=0;
 long nVSpace=0, nHSpace=0;
 
@@ -361,6 +362,7 @@ void SwHTMLParser::InsertImage()
 bPrcWidth = (rOption.GetString().indexOf('%') != -1);
 if( bPrcWidth  nWidth100 )
 nWidth = 100;
+bWidthProvided = true;
 break;
 case HTML_O_HEIGHT:
 // erstmal nur als Pixelwerte merken!
@@ -368,6 +370,7 @@ void SwHTMLParser::InsertImage()
 bPrcHeight = (rOption.GetString().indexOf('%') != -1);
 if( bPrcHeight  nHeight100 )
 nHeight = 100;
+bHeightProvided = true;
 break;
 case HTML_O_VSPACE:
 nVSpace = rOption.GetNumber();
@@ -461,6 +464,38 @@ IMAGE_SETEVENT:
 }
 }
 
+Graphic aGraphic;
+INetURLObject aGraphicURL( sGrfNm );
+if( aGraphicURL.GetProtocol() == INET_PROT_DATA )
+{
+std::unique_ptrSvMemoryStream const pStream(aGraphicURL.getData());
+if (pStream)
+{
+if (GRFILTER_OK == 
GraphicFilter::GetGraphicFilter().ImportGraphic(aGraphic, , *pStream))
+sGrfNm = ;
+}
+}
+// sBaseURL is empty if the source is clipboard
+else if (sBaseURL.isEmpty())
+{
+if (GRFILTER_OK == 
GraphicFilter::GetGraphicFilter().ImportGraphic(aGraphic, aGraphicURL))
+sGrfNm = ;
+}
+
+if (!sGrfNm.isEmpty())
+{
+aGraphic.SetDefaultType();
+}
+
+if (!bHeightProvided || !bWidthProvided)
+{
+Size aPixelSize = 
aGraphic.GetSizePixel(Application::GetDefaultDevice());
+if (!bWidthProvided)
+nWidth = aPixelSize.Width();
+if (!bHeightProvided)
+nHeight = aPixelSize.Height();
+}
+
 SfxItemSet aItemSet( pDoc-GetAttrPool(), pCSS1Parser-GetWhichMap() );
 SvxCSS1PropertyInfo aPropInfo;
 if( HasStyleOptions( aStyle, aId, aClass ) )
@@ -694,28 +729,6 @@ IMAGE_SETEVENT:
 aFrmSize.SetHeightPercent( nPrcHeight );
 aFrmSet.Put( aFrmSize );
 
-Graphic aGraphic;
-INetURLObject aGraphicURL( sGrfNm );
-if( aGraphicURL.GetProtocol() == INET_PROT_DATA )
-{
-std::unique_ptrSvMemoryStream const pStream(aGraphicURL.getData());
-if (pStream)
-{
-if (GRFILTER_OK == 
GraphicFilter::GetGraphicFilter().ImportGraphic(aGraphic, , *pStream))
-sGrfNm = ;
-}
-}
-// sBaseURL is empty if the source is clipboard
-else if (sBaseURL.isEmpty())
-{
-if (GRFILTER_OK == 
GraphicFilter::GetGraphicFilter().ImportGraphic(aGraphic, aGraphicURL))
-sGrfNm = ;
-}
-if (!sGrfNm.isEmpty())
-{
-aGraphic.SetDefaultType();
-}
-
 // passing empty sGrfNm here, means we don't want the graphic to be linked
 SwFrmFmt *pFlyFmt = pDoc-getIDocumentContentOperations().Insert( *pPam, 
sGrfNm, aEmptyOUStr, aGraphic,
   aFrmSet, NULL, NULL );
@@ -739,10 +752,10 @@ IMAGE_SETEVENT:
 if( !sAltNm.isEmpty() )
 pGrfNd-SetTitle( sAltNm );
 
-if( bSetTwipSize )
-pGrfNd-SetTwipSize( aGrfSz );
+if( bSetTwipSize )
+pGrfNd-SetTwipSize( aGrfSz );
 
-pGrfNd-SetChgTwipSize( bChangeFrmSize, bChangeFrmSize );
+pGrfNd-SetChgTwipSize( bChangeFrmSize, bChangeFrmSize );
 
 if( bSetScaleImageMap )
 pGrfNd-SetScaleImageMap( true );

Ask for help, Young developer request

2015-02-20 Thread Bartłomiej Mikos PrimeSoft Polska

Good Morning,

I have problem with use of java LibreOffice Api 4.3

Is a possible way to close XComponent (xlsx type) in save way?.

I have converting to pdf method. I use XStorable.storeToURL() The 
converting works fine, but when I try to close like this:


if (xStorable != null) {
XCloseable closeable = 
UnoRuntime.queryInterface(XCloseable.class, xStorable);

if (closeable != null) {
try {
closeable.close(true);
} catch (CloseVetoException closeVetoException) {
//problem with xlsx files, always occure
}
} else {
XComponent xComp = 
UnoRuntime.queryInterface(XComponent.class, xStorable);

xComp.dispose();
}
}

I tried to dispose a XController and the XFrame. In that case window is 
closed, but in next time XComponentLoader cannot load the XComponent, 
problem with socket etc.


Can You tell me what i should do to make it work fine?. Maybe i should 
know more about something or You had some simillar problems?.


I hope You will find time to answer,
Have a nice day.


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


[Libreoffice-bugs] [Bug 59513] : /usr/bin/ links are likely placed in wrong package and unversioned link is missing

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

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

   What|Removed |Added

   Priority|medium  |low

--- Comment #17 from Björn Michaelsen bjoern.michael...@canonical.com ---
TBH, I dont think it is a high priority goal of the generic upstream TDF
packages to conform to details of various distro policies. There are nicely
packaged versions of LibreOffice provided by Debian, Ubuntu etc. for that.

Nonetheless, your patches wrt this are of course welcome (if they not violently
break policies of other distros).

-- 
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 79138] Calc crash

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

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

   What|Removed |Added

  Component|LibreOffice |Calc

-- 
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 89498] New: EDITING: VLOOKUP does not find match if lookup value contains parentesis () or +.

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

Bug ID: 89498
   Summary: EDITING: VLOOKUP does not find match if lookup value
contains parentesis () or +.
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bernarddt+b...@gmail.com

Created attachment 113544
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113544action=edit
ODS with sample VLOOKUP that fails.

Hi Guys,

I just noticed that CALC fails to find a match in a VLOOKUP function if the
values contain parentesis () or +. It does however work with # so it is
not all special characters.

I've attached a sample ods file and screenshots of values and formulas.

-- 
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 65138] [META] Sidebar feature related issues

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

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

   What|Removed |Added

 Depends on||89495

-- 
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 89495] one for setting the color gradient in the sidebar instead of two

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

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

   What|Removed |Added

 Blocks||65138

-- 
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 89480] LibreOffice freeze with increasing the size of the sidebar

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

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

   What|Removed |Added

   Severity|critical|normal

--- Comment #6 from V Stuart Foote vstuart.fo...@utsa.edu ---
I watched the video--no question something is wrong.

But, on Linux (Fedora 21 32-bit w/LXDE DE) guest on VMWare Workstation 10.0.5
Intel i7 920, w/nVidia GTX 260--Win7 sp1 64-bit host  

I can not reproduce with a gradient filled Draw object on

Version: 4.3.6.2
Build ID: d50a87b2e514536ed401c18000dad4660b6a169e

nor with an older build of master on hand...

Version: 4.5.0.0.alpha0+
Build ID: 84c69550bcb8139669de9cf98b51c35f21fe853d
TinderBox: Linux-rpm_deb-x86@45-TDF, Branch:master, Time: 2015-01-13_08:57:42

so, still kind of suggesting a graphics hardware issue.

@kompilainenn, @Anatoliy  
would you please provide details on system graphics driver and GPU?

Any change if you check or uncheck the Tools - Options - View: User hardware
acceleration feature?

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


[Libreoffice-bugs] [Bug 89228] Allow to use Apache OpenOffice 4.0+ extensions

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

--- Comment #2 from Adolfo Jayme f...@libreoffice.org ---
Can you be more specific on the APIs and/or the extensions that are now
unusable, or that should be proritized according to you? 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


Re: Ask for help, Young developer request

2015-02-20 Thread Andrew Pitonyak
First use XModifiable and if
isModified is true call
setModified to set to false.

See of that helps.

On Feb 20, 2015 3:12 AM, =?UTF-8?Q?Bart=C5=82omiej_Mikos_PrimeSoft_Polska?= 
bartlomiej.mi...@primesoft.pl wrote:

 Good Morning, 

 I have problem with use of java LibreOffice Api 4.3 

 Is a possible way to close XComponent (xlsx type) in save way?. 

 I have converting to pdf method. I use XStorable.storeToURL() The 
 converting works fine, but when I try to close like this: 

  if (xStorable != null) { 
  XCloseable closeable = 
 UnoRuntime.queryInterface(XCloseable.class, xStorable); 
  if (closeable != null) { 
  try { 
  closeable.close(true); 
  } catch (CloseVetoException closeVetoException) { 
  //problem with xlsx files, always occure 
  } 
  } else { 
  XComponent xComp = 
 UnoRuntime.queryInterface(XComponent.class, xStorable); 
  xComp.dispose(); 
  } 
  } 

 I tried to dispose a XController and the XFrame. In that case window is 
 closed, but in next time XComponentLoader cannot load the XComponent, 
 problem with socket etc. 

 Can You tell me what i should do to make it work fine?. Maybe i should 
 know more about something or You had some simillar problems?. 

 I hope You will find time to answer, 
 Have a nice day. 


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


[Libreoffice-bugs] [Bug 86624] FILEOPEN: Manually placed legend is moved to top left corner

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

--- Comment #14 from Peter Hartmann pe1hartm...@yahoo.de ---
Hello,
The bug is still there on version 4.4.1.1
I'm using Windows XP

-- 
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 89500] New: ISO 8601 combined date and time input not recognized in locales with a time separator other than ':'

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

Bug ID: 89500
   Summary: ISO 8601 combined date and time input not recognized
in locales with a time separator other than ':'
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: framework
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: er...@redhat.com

Split-off from bug 88359, an ISO 8601 combined date and time like
2014-11-23T12:34:56 is not recognized in locales that use a time separator
other than ':' colon, for example it-IT Italian that uses '.' dot.

-- 
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 88359] CSV import could recognize ISO 8601 date/time fields without having to check Detect special numbers on

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

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

   What|Removed |Added

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

--- Comment #7 from Eike Rathke er...@redhat.com ---
Split-off bug 89500 for this.

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


[Libreoffice-bugs] [Bug 89499] New: hard to select table from list

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

Bug ID: 89499
   Summary: hard to select table from list
   Product: LibreOffice
   Version: 4.2.7.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: atimo...@online.ru

When iserting table from HTML page using Web Page Query you get a list of
tables numbered ftom 1 to some max number.
It's hard to find table you need by seq number.
Would be nice if to see additional fields from HTML like id and class for
each table.

-- 
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 89495] one for setting the color gradient in the sidebar instead of two

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1
   Severity|normal  |enhancement

--- Comment #1 from V Stuart Foote vstuart.fo...@utsa.edu ---
Hmmm, yes as displayed in the Sidebar's Area content panel, a selection of
gradient fills shows only one swatch of the gradient.

The more options button top-right, launches the Area dialog, where on the
Gradient tab (shown in attachement 113542), two color bars of the gradient are
provided the start From and end To--as well as a larger view of the color
sample.

Point is the Sidebar content panel shows the the sample swatch--not the start
and end colors of a gradient.  But since the same widget shows a sample swatch
for each Area fill--Color, Gradient, Hatching, Bitmap, from UX perspective
showing only the swatch is probably correct.

But some folks might like more convenient way to change the start/end values of
the gradient than the Area dialog panel.  

Perhaps making the swatch itself (at least in Gradient fill mode) a button that
launches the Area dialog open to the Gradients tab?

-- 
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 89500] ISO 8601 combined date and time input not recognized in locales with a time separator other than ':'

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

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

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |
 Ever confirmed|0   |1

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


[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - include/svx sd/source svx/source

2015-02-20 Thread Miklos Vajna
 include/svx/svdmodel.hxx |7 +++
 sd/source/ui/inc/ViewShell.hxx   |9 -
 sd/source/ui/unoidl/unomodel.cxx |2 +-
 sd/source/ui/view/sdwindow.cxx   |2 +-
 sd/source/ui/view/viewshel.cxx   |   14 --
 svx/source/svdraw/svdmodel.cxx   |   14 ++
 6 files changed, 23 insertions(+), 25 deletions(-)

New commits:
commit 2cf3cb5905cc3458bcba1fe2718a94053dd9b06c
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Fri Feb 20 14:51:06 2015 +0100

sd::ViewShell - SdrModel for LOK callback

One one hand, this fixes missing invalidations after typing characters
in editeng on Android. Previously it was assumed that there is only one
sd::ViewShell for one Impress document, but that's obviously not true.

On the other hand, this will be handy when later svx code wants to
invoke the LOK callback as well, when it was stored in sd, that wasn't
possible.

Change-Id: Id467be01ad008aecaaabdd85b2a6b29a14f1eb86

diff --git a/include/svx/svdmodel.hxx b/include/svx/svdmodel.hxx
index cdad8a1..e5f1ffb 100644
--- a/include/svx/svdmodel.hxx
+++ b/include/svx/svdmodel.hxx
@@ -37,6 +37,7 @@
 #include svx/xtable.hxx
 #include svx/pageitem.hxx
 #include vcl/field.hxx
+#include vcl/ITiledRenderable.hxx
 
 #include boost/shared_ptr.hpp
 
@@ -173,6 +174,8 @@ protected:
 OutputDevice*   pRefOutDev; // ReferenceDevice for the EditEngine
 /// Set if we are doing tiled rendering.
 bool mbTiledRendering;
+LibreOfficeKitCallback mpLibreOfficeKitCallback;
+void* mpLibreOfficeKitData;
 sal_uIntPtr   nProgressAkt;   // for the
 sal_uIntPtr   nProgressMax;   // ProgressBar-
 sal_uIntPtr   nProgressOfs;   // -Handler
@@ -340,6 +343,10 @@ public:
 void setTiledRendering(bool bTiledRendering);
 /// Are we doing tiled rendering?
 bool isTiledRendering() const;
+/// The actual implementation of the 
vcl::ITiledRenderable::registerCallback() API.
+void registerLibreOfficeKitCallback(LibreOfficeKitCallback pCallback, 
void* pLibreOfficeKitData);
+/// Invokes the registered callback, if there are any.
+void libreOfficeKitCallback(int nType, const char* pPayload) const;
 // If a new MapMode is set on the RefDevice (or similar)
 void RefDeviceChanged(); // not yet implemented
 // default font heigth in logical units
diff --git a/sd/source/ui/inc/ViewShell.hxx b/sd/source/ui/inc/ViewShell.hxx
index e5f082c..b4bd333 100644
--- a/sd/source/ui/inc/ViewShell.hxx
+++ b/sd/source/ui/inc/ViewShell.hxx
@@ -23,7 +23,6 @@
 #include rtl/ref.hxx
 
 #include vcl/field.hxx
-#include vcl/ITiledRenderable.hxx
 #include sfx2/viewsh.hxx
 #include vcl/prntypes.hxx
 #include svtools/transfer.hxx
@@ -444,11 +443,6 @@ public:
 SdPage* pPage,
 const sal_Int32 nInsertPosition = -1);
 
-/// The actual implementation of the 
vcl::ITiledRenderable::registerCallback() API for Impress.
-void registerLibreOfficeKitCallback(LibreOfficeKitCallback pCallback, 
void* pLibreOfficeKitData);
-/// Invokes the registered callback, if there are any.
-void libreOfficeKitCallback(int nType, const char* pPayload) const;
-
 class Implementation;
 
 protected:
@@ -582,9 +576,6 @@ private:
 /** Create the rulers.
 */
 void SetupRulers (void);
-
-LibreOfficeKitCallback mpLibreOfficeKitCallback;
-void* mpLibreOfficeKitData;
 };
 
 SdrView* ViewShell::GetDrawView (void) const
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx
index e939d3b..7193fbc 100644
--- a/sd/source/ui/unoidl/unomodel.cxx
+++ b/sd/source/ui/unoidl/unomodel.cxx
@@ -2358,7 +2358,7 @@ void SdXImpressDocument::initializeForTiledRendering()
 void SdXImpressDocument::registerCallback(LibreOfficeKitCallback pCallback, 
void* pData)
 {
 SolarMutexGuard aGuard;
-mpDocShell-GetViewShell()-registerLibreOfficeKitCallback(pCallback, 
pData);
+mpDoc-registerLibreOfficeKitCallback(pCallback, pData);
 }
 
 uno::Reference i18n::XForbiddenCharacters  
SdXImpressDocument::getForbiddenCharsTable()
diff --git a/sd/source/ui/view/sdwindow.cxx b/sd/source/ui/view/sdwindow.cxx
index 8222f38..076cba5 100644
--- a/sd/source/ui/view/sdwindow.cxx
+++ b/sd/source/ui/view/sdwindow.cxx
@@ -992,7 +992,7 @@ void Window::LogicInvalidate(const ::vcl::Region* pRegion)
 sRectangle = EMPTY;
 else
 sRectangle = pRegion-GetBoundRect().toString();
-mpViewShell-libreOfficeKitCallback(LOK_CALLBACK_INVALIDATE_TILES, 
sRectangle.getStr());
+
mpViewShell-GetDoc()-libreOfficeKitCallback(LOK_CALLBACK_INVALIDATE_TILES, 
sRectangle.getStr());
 }
 
 } // end of namespace sd
diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx
index f728131..83dc9ca 100644
--- a/sd/source/ui/view/viewshel.cxx
+++ b/sd/source/ui/view/viewshel.cxx
@@ -137,8 +137,6 @@ ViewShell::ViewShell( SfxViewFrame*, vcl::Window* 
pParentWindow, ViewShellBase
 

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

2015-02-20 Thread Eike Rathke
 svl/source/numbers/zforfind.cxx |   33 ++---
 1 file changed, 26 insertions(+), 7 deletions(-)

New commits:
commit 5d572e673dec3396487b14bb1f9e86aa8ab86786
Author: Eike Rathke er...@redhat.com
Date:   Fri Feb 20 15:11:36 2015 +0100

Resolves: tdf#89500 catch ISO 8601 datetime in all locales

Change-Id: I906ebdc6aa5c365df98a29e9e0f319f89f6833c6

diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx
index 9449874..5011fe80 100644
--- a/svl/source/numbers/zforfind.cxx
+++ b/svl/source/numbers/zforfind.cxx
@@ -2451,16 +2451,35 @@ bool ImpSvNumberInputScan::ScanMidString( const 
OUString rString,
 SkipBlanks( rString, nPos );
 }
 }
-else if (nStringPos == 5  nPos == 0  rString.getLength() == 1 

- rString[ 0 ] == 'T'  MayBeIso8601())
+else if (nPos == 0  rString.getLength() == 1  MayBeIso8601())
 {
-// ISO 8601 combined date and time, -mm-ddThh:mm
-++nPos;
+if (nStringPos == 5  rString[0] == 'T')
+{
+// ISO 8601 combined date and time, -mm-ddThh:mm
+++nPos;
+}
+else if (nStringPos == 7  rString[0] == ':')
+{
+// ISO 8601 combined date and time, the time part; we reach
+// here if the locale's separator is not ':' so it couldn't
+// be detected above in the time block.
+if (nAnzNums = 5)
+eScannedType = NUMBERFORMAT_DATETIME;
+++nPos;
+}
 }
 break;
-#if NF_RECOGNIZE_ISO8601_TIMEZONES
 case NUMBERFORMAT_DATETIME:
-if (nPos == 0  rString.getLength() == 1  nStringPos = 9  
MayBeIso8601())
+if (nPos == 0  rString.getLength() == 1  MayBeIso8601())
+{
+if (nStringPos == 9  rString[0] == ':')
+{
+// ISO 8601 combined date and time, the time part 
continued.
+++nPos;
+}
+}
+#if NF_RECOGNIZE_ISO8601_TIMEZONES
+else if (nPos == 0  rString.getLength() == 1  nStringPos = 9 
 MayBeIso8601())
 {
 // ISO 8601 timezone offset
 switch (rString[ 0 ])
@@ -2487,8 +2506,8 @@ bool ImpSvNumberInputScan::ScanMidString( const OUString 
rString,
 break;
 }
 }
-break;
 #endif
+break;
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89480] LibreOffice freeze with increasing the size of the sidebar

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

--- Comment #7 from kompilainenn 79045_79...@mail.ru ---
(In reply to V Stuart Foote from comment #6)
 I watched the video--no question something is wrong.

I do not understand this sentence.

I think that you are wrong to try to reproduce the problem =(

 so, still kind of suggesting a graphics hardware issue.
 
 @kompilainenn, @Anatoliy  
 would you please provide details on system graphics driver and GPU?

1 komp: Intel Pentium G840 with Nvidia GT640, Windows 7 Home Basic x86
2 komp: AMD Athlon II x2 270 with AMD 7750, Windows 7 Home Basic x86-64 (the
most recent stable driver)

 Any change if you check or uncheck the Tools - Options - View: User
 hardware acceleration feature?

if uncheck the Tools - Options - View: User  hardware acceleration feature
- Sidebar still twitching, but slower

-- 
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 89480] LibreOffice freeze with increasing the size of the sidebar

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

--- Comment #8 from V Stuart Foote vstuart.fo...@utsa.edu ---
(In reply to kompilainenn from comment #7)
 (In reply to V Stuart Foote from comment #6)
  I watched the video--no question something is wrong.
  
 I do not understand this sentence.
 
 I think that you are wrong to try to reproduce the problem =(
  

Sorry if I was not clear, in viewing the video you posted I do agree there is
an issue with your system(s).

But I am following your steps exactly and can not reproduce the issue with
Windows or Linux with my nVidia GPU based systems.

I will test on AMD ATI based systems in a moment, but thus far I simply can not
reproduce the 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 73749] search for text in Impress via ctrl-f crashes LibreOffice

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

JPJ ja...@joines.org changed:

   What|Removed |Added

 Resolution|DUPLICATE   |FIXED

--- Comment #18 from JPJ ja...@joines.org ---
I somehow missed comment 15 and lost track of this bug.  I can confirm that the
bug disappeared in 4.3.x and is not present in 4.4.0.3.  It was not a duplicate
bug though.  The crash occurred even when the search term was present.

-- 
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 86793] [Regression] Hang when moving pointer when document contains Zotero references

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

--- Comment #3 from Milan Bouchet-Valat nalimi...@club.fr ---
Is there anything I can do to help? Is there any possibility this would be a
bug in Zotero rather than in LO?

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


[Libreoffice-bugs] [Bug 89501] New: Finalized configuration items set in Windows Registry can be overridden by user and can cause crashes

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

Bug ID: 89501
   Summary: Finalized configuration items set in Windows Registry
can be overridden by user and can cause crashes
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: haste...@gmail.com

Since LibreOffice 4.2 configuration items can be set with the Windows Registry,
it is possible to set the value and set if it's a finalized item.

== Example ==

Add a reg entry in the Windows Registry (.reg file) :

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\LibreOffice\org.openoffice.Office.Common\Undo\Steps]
Value=42
Final=dword:0001

This file set the value 42 for max undo steps and also finalize the property.
A reboot is needed to apply the registry modification.

== Problem ==
In the user interface the field is not locked, it's possible to edit it. When
the modification is applied LibreOffice makes an obvious fatal error:
configmgr modification of finalized item.

There is the same lock visualization problem with some checkboxes like in the
Tools - Options - LibreOffice - General - Help menu with Tips and
Extended tips checkboxes. But unlike the precedent case, their modification
does not affect LibreOffice stability.

Of course I made some research to see if this bug is already known, it was was
fixed in previous versions, but the problem still subsist.

Previous identical bug (with registrymodifications.xcu file) :
https://bugs.documentfoundation.org/show_bug.cgi?id=69027

-- 
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: error during build of mork_helper, on illumos/xstreamos

2015-02-20 Thread Stephan Bergmann

On 02/19/2015 07:13 PM, Gabriele Bulfon wrote:

At the beginning it looks like libstdc++.so.6 is looked under
/usr/sfw/lib: wrong, should be under /usr/gcc/4.7/lib, as stated during
link via -L/usr/gcc/4.7/lib.


-L switches only tell the linker where to look for files specified by -l 
arguments.  They are irrelevant for how the loader finds shared 
libraries at runtime.

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


AW: Print-Preview in Calc

2015-02-20 Thread Juergen Funk Mailinglist


 from: Kohei Yoshida [mailto:libreoffice@kohei.
 send: Freitag, 20. Februar 2015 15:02
 
 It's disabled at 2 different levels; at the icon level, and at the code 
 level, just to
 make sure a clever user can't try to circumvent that by modifying the UI.

I have switch on the ScPreviewShell::Execute and Call the 
pTabView-ExecuteSave  

 
 Previously, Calc allowed to save directly from the preview window. But when
 the document was saved from the preview window, it would skip storing many
 crucial view data that Calc expected to see when loading that document
 again. Such crucial view data might include active sheet, cursor position, 
 zoom
 level etc at the time of last document save. There were one or several bug
 reports that were directly or indirectly caused by this lack of view data 
 stored in
 the document.
 
 I investigated this, and initially I tried to find a way to transfer the view 
 data
 from the main Calc window to the preview window so that the data would be
 available when the user wished to save the document from the preview window.

That is my problem the ViewData are not present, and I look for a solution too.
When call of constructor ScPreviewShell:: ScPreviewShell(.., SFXViewShell* 
pOldSh)
the ScTabViewShell pointer is the same when call in Normal-View, but only the
GetViewData() is not valid.
That I can not really understand why it lost. 

 So, if you think it's a bug and wants it fixed, I can't stop you, but you'd 
 have to
 also keep the above fact in mind and make sure that when it is re-enabled,
 whatever funny things Calc used to do when the document was saved from the
 preview window and reloaded would no longer happen.

I am here in LHM and the user want to show is the print right, then he want to 
save it.

In the eyes of user it that a bug.
Do you mean that can't be solvable?
 
Thanks for your response
Juergen

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


[Libreoffice-bugs] [Bug 86793] [Regression] Hang when moving pointer when document contains Zotero references

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

--- Comment #4 from Milan Bouchet-Valat nalimi...@club.fr ---
I've just found a thread on Zotero forums with people reporting the same
problem on both Windows and Linux, using LO 4.4. The bug apparently also
affects Mendeley.

A workaround is to completely disable tooltips in LO.

https://forums.zotero.org/discussion/46393/citation-styles-that-include-the-authors-names-freeze-libreoffice/

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