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

2015-01-19 Thread Eike Rathke
 sc/source/core/tool/interpr6.cxx |   26 --
 1 file changed, 20 insertions(+), 6 deletions(-)

New commits:
commit 250477f8eb2b2240209bffbe1ddeb3e587e3a5cf
Author: Eike Rathke er...@redhat.com
Date:   Mon Jan 19 23:16:23 2015 +0100

in COUNT() use ConvertStringToValue() for literal string arguments

... to evaluate the string conversion configuration, instead of the hard
coded locale dependent IsNumberFormat()

This only for literals, not referenced cell values.

Change-Id: I774b52f1e258294014d8ea6a62374dd1d262f022
(cherry picked from commit b5fab0c20550b724986ad8a59973b92b181e0478)
Reviewed-on: https://gerrit.libreoffice.org/14026
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/sc/source/core/tool/interpr6.cxx b/sc/source/core/tool/interpr6.cxx
index 13c603f..7eac4eb 100644
--- a/sc/source/core/tool/interpr6.cxx
+++ b/sc/source/core/tool/interpr6.cxx
@@ -429,9 +429,19 @@ double ScInterpreter::IterateParameters( ScIterFunc eFunc, 
bool bTextAsZero )
 if( eFunc == ifCOUNT )
 {
 OUString aStr = PopString().getString();
-sal_uInt32 nFIndex = 0; // damit default 
Land/Spr.
-if ( bTextAsZero || pFormatter-IsNumberFormat(aStr, 
nFIndex, fVal))
+if ( bTextAsZero )
 nCount++;
+else
+{
+// Only check if string can be converted to number, no
+// error propagation.
+sal_uInt16 nErr = nGlobalError;
+nGlobalError = 0;
+ConvertStringToValue( aStr );
+if (!nGlobalError)
+++nCount;
+nGlobalError = nErr;
+}
 }
 else
 {
@@ -955,7 +965,6 @@ void ScInterpreter::ScCount()
 else
 {
 short nParamCount = GetByte();
-double fVal = 0.0;
 sal_uLong nCount = 0;
 ScAddress aAdr;
 ScRange aRange;
@@ -970,9 +979,14 @@ void ScInterpreter::ScCount()
 case svString:
 {
 OUString aStr = PopString().getString();
-sal_uInt32 nFIndex = 0; // damit default 
Land/Spr.
-if (pFormatter-IsNumberFormat(aStr, nFIndex, fVal))
-nCount++;
+// Only check if string can be converted to number, no
+// error propagation.
+sal_uInt16 nErr = nGlobalError;
+nGlobalError = 0;
+ConvertStringToValue( aStr );
+if (!nGlobalError)
+++nCount;
+nGlobalError = nErr;
 }
 break;
 case svDouble:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88581] VLOOKUP returns #N/A (because of Allow regular expressions in formulas option)

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88581

Kevin Suo suokunl...@126.com changed:

   What|Removed |Added

   Severity|major   |enhancement

--- Comment #5 from Kevin Suo suokunl...@126.com ---
(In reply to raal from comment #4)
Yes correct. I set this as an enhancement request.

-- 
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 74346] EDITING: Dragdrop within document: drop-location marker is laggy, sometimes unresponsive

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74346

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

   What|Removed |Added

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

--- Comment #4 from Matthew Francis fdb...@neosheffield.co.uk ---
I got a different bibisect result from this - to be taken with a pinch of salt,
the bug may not be as reproducible as it seems

# first bad commit: [5b352a8b3b7a2225e56a9143b5c0046f8eeb4a52]
source-hash-3c70c8e449253b4219c12ee4ef50384030a474ef

-- 
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 77346] FORMATTING: Calc becomes slow after selecting cells and activating font chooser with previews enabled

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77346

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

   What|Removed |Added

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

--- Comment #28 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 112513
  -- https://bugs.freedesktop.org/attachment.cgi?id=112513action=edit
Test file

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

2015-01-19 Thread Miklos Vajna
 sw/source/core/doc/textboxhelper.cxx |   31 ++-
 1 file changed, 26 insertions(+), 5 deletions(-)

New commits:
commit 0657176b3e42886c4ae14f9991c52b4d61bbe116
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Jan 18 21:17:03 2015 +0100

fdo#84714 SwTextBoxHelper::findTextBoxes: optimize unnecessary O(n^2)

(cherry picked from commit 8d758d0764beb78a49f3035c254eb085b112c2b1)

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

diff --git a/sw/source/core/doc/textboxhelper.cxx 
b/sw/source/core/doc/textboxhelper.cxx
index e051234..a6525ba 100644
--- a/sw/source/core/doc/textboxhelper.cxx
+++ b/sw/source/core/doc/textboxhelper.cxx
@@ -117,17 +117,38 @@ void SwTextBoxHelper::destroy(SwFrmFmt* pShape)
 
 std::setconst SwFrmFmt* SwTextBoxHelper::findTextBoxes(const SwDoc* pDoc)
 {
-std::setconst SwFrmFmt* aRet;
+std::setconst SwFrmFmt* aTextBoxes;
+std::mapSwNodeIndex, const SwFrmFmt* aFlyFormats, aDrawFormats;
 
 const SwFrmFmts rSpzFrmFmts = *pDoc-GetSpzFrmFmts();
 for (SwFrmFmts::const_iterator it = rSpzFrmFmts.begin(); it != 
rSpzFrmFmts.end(); ++it)
 {
-SwFrmFmt* pTextBox = findTextBox(*it);
-if (pTextBox)
-aRet.insert(pTextBox);
+const SwFrmFmt* pFormat = *it;
+
+// A TextBox in the context of this class is a fly frame that has a
+// matching (same RES_CNTNT) draw frame.
+if (!pFormat-GetAttrSet().HasItem(RES_CNTNT) || 
!pFormat-GetCntnt().GetCntntIdx())
+continue;
+
+const SwNodeIndex rIndex = *pFormat-GetCntnt().GetCntntIdx();
+
+if (pFormat-Which() == RES_FLYFRMFMT)
+{
+if (aDrawFormats.find(rIndex) != aDrawFormats.end())
+aTextBoxes.insert(pFormat);
+else
+aFlyFormats[rIndex] = pFormat;
+}
+else if (pFormat-Which() == RES_DRAWFRMFMT)
+{
+if (aFlyFormats.find(rIndex) != aFlyFormats.end())
+aTextBoxes.insert(aFlyFormats[rIndex]);
+else
+aDrawFormats[rIndex] = pFormat;
+}
 }
 
-return aRet;
+return aTextBoxes;
 }
 
 std::setconst SwFrmFmt* SwTextBoxHelper::findTextBoxes(const SwNode rNode)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88592] VIEWING: Green display bug

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88592

--- Comment #6 from Estan bugzi...@vvmail.fr ---
That is that Only not correctly shown which is the reported bug actually :-)

-- 
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 88585] Feature request: user profile synchronization across multiple LO installs

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88585

--- Comment #2 from yanjing...@gmail.com ---
Hi vstuart,

 Any reason that simply copying per-user profile from system to system is not 
 sufficient?

Copy profile is not convenient, like me, I have 3 OS in my own
computer(Linux/MacOS/Windows),and my business computer has 2 OS(Linux/Windows),
when I change my settings like color map, I have to copy it to any other OS,
and sometime I would forget to copy it, then, I have unconsistency using
habits, it's not happy.

 So, guess this would have to be per individual user, where one of their 
 systems would need to be designated to host the master profile--and then 
 other systems would have to have access to it to synchronize against it. 
 Both to upload profile changes while using slave systems, but to also 
 download user profile to slave systems needing synchronize user-profiles.

Yes, like firefox synchronization.

 Guess that might be functional--but, I don't see this as being something 
 that TDF would want to host for users. Are you suggesting that LibreOffice 
 host this as a service for users? Infrastructure for that does not exist and 
 would be prohibitive.

Maybe user can host this service by himself? But I think If TDF can host a
service is the best choice.

-- 
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 88608] New: Find bar doesn't reset message area when search box is cleared

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88608

Bug ID: 88608
   Summary: Find bar doesn't reset message area when search box is
cleared
   Product: LibreOffice
   Version: 4.3.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dhgutteri...@hotmail.com

Since the find/replace functionality was changed to remove modal dialog boxes
for informational responses and replace them with a message area in the find
bar, it doesn't keep consistent state between that message area and the input
box. If a user changes the input box in any way (clears it or enters a
different term), the message box should reset itself to match state. It
doesn't.

Steps to reproduce:

1. Enter a search term you know isn't in the document.
2. Note the find bar says Search key not found in the new message area.
3. Clear the search box and enter a new term.
4. Imagine you were distracted for a moment and forgot what you were doing.
5. Look back and see you've entered a new term where it says Search key not
found. That's not true, because you haven't searched for it yet.

Also, it consistently says Reached the end of the document when it wraps,
regardless of direction, even when a user is searching backwards and it has
reached the start of the document and wrapped to the end. It should really say
Reached the start of the document then...

(By the way, from my perspective this was an intrusive UI change which left me
wondering if search was broken, because previously I'd positioned the find bar
to the right of another bar, as it had sufficient space to fit all its buttons.
When I upgraded to 4.3 I couldn't see the text area that'd been added for
messages. After I dragged the bar around I noticed messages were being
displayed in it. This change wasn't mentioned in the release notes for 4.3. It
should've been.)

-- 
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 88602] New: FORMATTING: Paragraph loses 'Do not split paragraph' and 'Keep with next paragraph' settings when inserting a new paragraph before it.

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88602

Bug ID: 88602
   Summary: FORMATTING: Paragraph loses 'Do not split paragraph'
and 'Keep with next paragraph' settings when inserting
a new paragraph before it.
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bugzi...@justcloned.com

Created attachment 112504
  -- https://bugs.freedesktop.org/attachment.cgi?id=112504action=edit
Simple repro showcasing how the settings are lost.

Problem description:
When inserting a new paragraph before an existing paragraph, the existing
paragraph loses its 'Do not split paragraph' and 'Keep with next paragraph'
settings.

Steps to reproduce:
Load the attached .odt file. All 3 paragraphs have both options enabled.
Move cursor to the start of 'Paragraph 2'.
Insert a new (empty) paragraph between 'Paragraph 1' and 'Paragraph 2' by
hitting RETURN.

Current behavior:
'Paragraph 1' retains its settings (as expected).
The newly added 'Paragraph 1.5' inherits the settings from 'Paragraph 2' (as
expected... sort of).
'Paragraph 2' has both options deselected.
'Paragraph 3' retains its settings (as expected).

Expected behavior:
'Paragraph 2' should not lose its settings.

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


[Libreoffice-bugs] [Bug 88611] New: LENB co. wrong value for Cyrillic text

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88611

Bug ID: 88611
   Summary: LENB  co. wrong value for Cyrillic text
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: davian...@gmail.com

LENB(Проба) should return 10, as Cyrillic symbols are always 2-byte.
LO returns 5 even in FE locales.

-- 
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 88562] UI: appearance of file name field in File Properties dialog gives the idea that it can be changed there, which cannot be done

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88562

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

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
   Severity|enhancement |minor

--- Comment #4 from V Stuart Foote vstuart.fo...@utsa.edu ---
Yup, a minor quirk of the UI--would be good to correct, no UX issue here. But
in fixing we should try to retain ability to copy the file name from the
Open/Save dialogs--LibreOffice's when active as well as OS when used.

@Jacky Mary -- when filing, please research the component to use for an issue.
BASIC is the programming language/interface used within LibreOffice.  While
valid, this is pretty clearly a UI 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 88582] Features for rows, add menu Line Shift Up | Down

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88582

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||mari...@miguelangel.mobi
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---
Hi @alivedsn, thanks for reporting.

Maybe using the option in Menu/Edit/Paste-Special - Shift cells down, can help
a bit.

In any case looks fine.

-- 
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 88592] VIEWING: Green display bug

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88592

--- Comment #7 from MM plokk...@fastmail.fm ---
Well yes and no. You said it didn't decompress well. Which isn't really the
case I think. The graphics are there, but they aren't the correct size. Looks
they are stretched (a lot). If you look at the 'position and size' you'll see
that the image is shown as width 0.0 points and height 104.2 points. If you set
it to (for example) w = 104, h = 104 it looks a lot better. Only the image got
flipped. But that's another problem.

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


[Libreoffice-bugs] [Bug 88544] EDITING Tools Solver fails with 4.3.5.1 under multiple OS

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88544

--- Comment #2 from Spencer Graves spencer.gra...@effectivedefense.org ---
1.  How can I find the Java version being used?  

2.  The correct answer for A1=1, A2=2, A3=(A1-A2)^2 Solver minimize A3 by
varying A1 is approximately 2, e.g., 1.999876 (2 to within something like
1e-8).  Thanks.

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


[Libreoffice-bugs] [Bug 88592] VIEWING: Green display bug

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88592

--- Comment #4 from Estan bugzi...@vvmail.fr ---
Unfortunately I didn't produce this file, I had to fill it (and can't possibly
ask its author to modify or explain it), sorry.

-- 
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 88586] Change case does not work on date

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88586

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

   What|Removed |Added

 CC||mari...@miguelangel.mobi

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---
Hi David, thanks for reporting.

As you have comment, I think change case will never work in a format result.

Format result is language dependent, e.g. in Spanish is lowercase, English US
is first letter uppercase.

If there are not dependent cells, it's possible use TEXT() function to format
the result, and applying on it the UPPER()/PROPER()/LOWER() functions.

-- 
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: no 'object' file generated ?

2015-01-19 Thread Ashod Nakashian
On Mon, Jan 19, 2015 at 3:36 PM, Michael Stahl mst...@redhat.com wrote:
 On 19.01.2015 16:54, Michael Stahl wrote:

 the warning is printed in the next lines:

 C:/cygwin/home/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/Windows/shell/source/win32/shlxthandler/util/utilities.cxx(110)
  : warning C4996: 'GetVersionExW': was declared deprecated
 C:/PROGRA~2/WINDOW~4/8.1/include/umsysinfoapi.h(442) : see declaration of 
 'GetVersionExW'

 looks unrelated to your patch (and needs further investigation).

 perhaps commit 4500afcc1be7774b3c35ab69a20e36165ca5445a fixes this now,
 although i can't test it locally and evidently different Jenkins
 buildbots are set up with different Windows SDK versions, so not
 possible to know for sure now.


I'm suspecting env differences in Jenkins. My last build succeeded and
it doesn't include your fix for the deprecation warning (thanks, btw).
I also had seen that failure before. I expect you commit puts it to
its final rest, but differences in the SDK/environment will rear its
ugly head sooner or later.

On another build (438,) Mac failed with the following error. Not a
related error, but since we're on the topic of sporadic build
failures on Jenkins I'm including for completeness.

##Failure Location unknown## : Error
Test name: testPlausableBorder::Import_Export_Import
An uncaught exception of type com.sun.star.task.ErrorCodeIOException
- SfxBaseModel::impl_store
file:///var/folders/dk/y9bnkc_d3qgg3nj2cxshnshmgp/T/lu4gemk1.tmp
failed: 0x507

Failures !!!
Run: 106   Failure total: 1   Failures: 0   Errors: 1
2015-01-19 16:59:06.976 cppunittester[44849:507] ***
-[NSAutoreleasePool release]: This pool has already been released, do
not drain it (double release).

Error: a unit test failed, please do one of:

export DEBUGCPPUNIT=TRUE# for exception catching
export CPPUNITTRACE=lldb -- # for interactive debugging on OSX
export VALGRIND=memcheck# for memory checking

and retry using: make CppunitTest_sw_ooxmlexport

/Users/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/MacOSX/solenv/gbuild/CppunitTest.mk:81:
recipe for target
'/Users/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/MacOSX/workdir/CppunitTest/sw_ooxmlexport.test'
failed
make[1]: *** 
[/Users/tdf/lode/jenkins/workspace/lo_gerrit_master/Gerrit/Gerrit/Platform/MacOSX/workdir/CppunitTest/sw_ooxmlexport.test]
Error 1
make[1]: *** Waiting for unfinished jobs
Makefile:246: recipe for target 'build' failed
make: *** [build] Error 2
Build step 'Execute shell' marked build as failure
Finished: FAILURE



 ___
 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 88592] VIEWING: Green display bug

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88592

--- Comment #5 from MM plokk...@fastmail.fm ---
Well you can show the image correctly if you select 'edit with external tool'
or copy the image and paste it to draw, paint or any other image program. So
the image *is* actually there. Only not correctly shown in LO / Excel.

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


[Libreoffice-bugs] [Bug 88603] New: FORMATTING: 'Keep with next paragraph' should have priority over the next paragraph's 'Do not split paragraph' if that next paragraph won't fit on one page anyway.

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88603

Bug ID: 88603
   Summary: FORMATTING: 'Keep with next paragraph' should have
priority over the next paragraph's 'Do not split
paragraph' if that next paragraph won't fit on one
page anyway.
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bugzi...@justcloned.com

Created attachment 112506
  -- https://bugs.freedesktop.org/attachment.cgi?id=112506action=edit
Simple repro showcasing the splitting of two paragraphs that ought to be kept
together.

Problem description:
First, my understanding of how things work in LibreOffice... please correct me
if I'm wrong. :)

With the 'Do not split paragraph' option set, LibreOffice moves a paragraph
immediately to a new page once it figures out that this paragraph won't fit on
the current page. If the previous paragraph has the 'Keep with next paragraph'
option set, LibreOffice will try to keep those two paragraphs together, i.e. if
they both fit on the current page, they remain there, otherwise if they both
fit on a new, empty page, they will be moved to the next page. However if both
paragraphs combined will span more than one page, LibreOffice will separate
them, prioritizing the 2nd paragraph's 'Do not split' over the 1st paragraph's
'Keep with next' setting. Once the 2nd paragraph would span more than one page
by itself however, the 'Keep with next' setting should have a higher priority
again as nothing is really gained from moving only the 2nd paragraph to the
next page (as it won't completely fit there anyway).

Furthermore it might be arguable if, should paragraph 2 fit exactly on one page
by itself but would span more than one page if kept together with paragraph 1,
the 'Keep with next' option should always have a higher priority as the 1st
paragraph might e.g. serve as some kind of header to the bulk of content in the
2nd paragraph and as such should always visually remain with that content.

As far as I know LibreOffice behaves the way as Microsoft Word does, and I know
I could always disable the 2nd paragraph's 'Do not split' option manually in
this case but I am hitting this 'issue' when importing a huge auto-generated
.rtf file with dozens to hundreds of these cases... so I thought I'd raise the
issue here at least to see if I am alone in this or not. :)

Steps to reproduce:
Load the attached .odt file.

Current behavior:
'Paragraph 1' (which has the 'Keep with next' option set) ends up all alone on
page 1.
'Paragraph 2' (which has the 'Do not split' option set) ends up on page 2.

Expected behavior:
'Paragraph 2' should also end up on page 1, immediately following 'Paragraph 1'
(due to the 1st paragraph's
'Keep with next' option being set and Paragraph 2 not fitting on page 2 in its
entirety in the first place).

-- 
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 88589] Always Save As option limited to Documents

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88589

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@quipo.it
 Resolution|--- |NOTABUG

--- Comment #1 from tommy27 ba...@quipo.it ---
it does it indeed.

you have 2 drop-down menus:
- document type
- always save as

if you scroll the multiple choices of the document type you'll see that you
have an always save as option for spreadsheets, presentations, formulas etc.
etc

RESOLVED NOTABUG

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


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

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88610

Bug ID: 88610
   Summary: Incorrect rendering of some characters in Symbol font
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Drawing
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vv...@yandex.ru

Created attachment 112514
  -- https://bugs.freedesktop.org/attachment.cgi?id=112514action=edit
Test file

There several possible ways to encode characters for use with Symbol font:
1. Use 8-bit ASCII codes: U+0020..U+00FE range (λ = U+006C).
2. Use Unicode codes (λ = U+03BB).
3. Use Unicode private range: U+F020..U+F0FE (λ = U+F06C).

All this methods works fine in Ubuntu 14.10 + LibreOffice 4.3.3.2.
But with Windows 7 SP1 + LibreOffice 4.5.0.0 master @ ee21771d, half of
Symbol's ASCII range is rendered as empty rectangles.
I think it's a bug.

Attaching test file and it's screenshots.

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


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

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88610

--- Comment #1 from vv...@yandex.ru ---
Created attachment 112515
  -- https://bugs.freedesktop.org/attachment.cgi?id=112515action=edit
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 88593] Significant numbers omitted with some column widths

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88593

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

   What|Removed |Added

 CC||mari...@miguelangel.mobi

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---
Hi @matti, thanks for repporting.

Works for me with:
Win7x64
Version: 4.3.5.1
Build ID: 8fd0451cc08e6a5310bed8b7ad1c46b93c1c6889
Version: 4.3.7.0.0+
Build ID: 7a728f882b5a66d2184dcc2fbcf291b9dbba88fe
TinderBox: Win-x86@42, Branch:libreoffice-4-3, Time: 2015-01-16_11:05:28

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


[Libreoffice-bugs] [Bug 74346] EDITING: Dragdrop within document: drop-location marker is laggy, sometimes unresponsive

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74346

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

   What|Removed |Added

   Keywords||bisected
 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #5 from Matthew Francis fdb...@neosheffield.co.uk ---
Probably the below commit (again) - there was a recent commit on master
relating to this under bug 73165, and indeed when I check, this bug seems
resolved on master now

Setting RESOLVED - WORKSFORME


commit 7a5272dc29c6efdaa99f97a627e6d9b695ae32f6
Author: pkoroau pkoroau pkor...@gmail.com
Date:   Thu Dec 20 12:18:57 2012 +0100

fdo#38837: Timers must end eventually [Writer idle timer]

Change-Id: I36c6c56d7277b9b3853b846c86c1f4dd47ebdb08
Signed-off-by: Luboš Luňák l.lu...@suse.cz

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


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

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88610

vv...@yandex.ru changed:

   What|Removed |Added

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

-- 
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 82010] EDITING: Moving text with mouse causes it to repeat and also show !!br0ken!!

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82010

--- Comment #10 from tommy27 ba...@quipo.it ---
I still do not reproduce it with LO 4.3.5.2 using another machine with Win7x64

-- 
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 39440] cppcheck cleanliness

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39440

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

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

fdo#39440 reduce scope of local variables

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-bugs] [Bug 39440] cppcheck cleanliness

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39440

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

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

fdo#39440 reduce scope of local variables

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

2015-01-19 Thread Michael Weghorn
 sw/source/core/text/EnhancedPDFExportHelper.cxx |9 -
 sw/source/core/text/itradj.cxx  |3 +--
 sw/source/core/text/itrform2.cxx|3 ++-
 sw/source/core/text/txtdrop.cxx |3 +--
 sw/source/core/text/txtfrm.cxx  |3 +--
 sw/source/core/txtnode/atrftn.cxx   |2 +-
 sw/source/core/txtnode/ndtxt.cxx|6 ++
 sw/source/core/txtnode/thints.cxx   |9 ++---
 sw/source/core/undo/rolbck.cxx  |7 +++
 sw/source/core/undo/unattr.cxx  |3 +--
 sw/source/core/undo/undraw.cxx  |3 +--
 sw/source/core/undo/unins.cxx   |4 ++--
 sw/source/core/unocore/unochart.cxx |3 +--
 sw/source/core/unocore/unostyle.cxx |   18 ++
 sw/source/core/unocore/unotbl.cxx   |9 ++---
 15 files changed, 42 insertions(+), 43 deletions(-)

New commits:
commit 08f9bd504de9bcb267a0e71b07759080592bd0d8
Author: Michael Weghorn m.wegh...@posteo.de
Date:   Fri Jan 16 13:24:42 2015 +

fdo#39440 sw: reduce scope of local variables

This addresses some cppcheck warnings.

Change-Id: I2368fc0a1c6dd73125d4770d06063ea3e3d8c713
Reviewed-on: https://gerrit.libreoffice.org/13961
Reviewed-by: Noel Grandin noelgran...@gmail.com
Tested-by: Noel Grandin noelgran...@gmail.com

diff --git a/sw/source/core/text/EnhancedPDFExportHelper.cxx 
b/sw/source/core/text/EnhancedPDFExportHelper.cxx
index 78bfda4..8b16c9c 100644
--- a/sw/source/core/text/EnhancedPDFExportHelper.cxx
+++ b/sw/source/core/text/EnhancedPDFExportHelper.cxx
@@ -325,7 +325,6 @@ bool SwTaggedPDFHelper::CheckReopenTag()
 {
 const SwFrm rFrm = mpFrmInfo-mrFrm;
 const SwFrm* pKeyFrm = 0;
-void* pKey = 0;
 
 // Reopen an existing structure element if
 // - rFrm is not the first page frame (reopen Document tag)
@@ -356,7 +355,7 @@ bool SwTaggedPDFHelper::CheckReopenTag()
 
 if ( pKeyFrm )
 {
-pKey = lcl_GetKeyFromFrame( *pKeyFrm );
+void* pKey = lcl_GetKeyFromFrame( *pKeyFrm );
 
 if ( pKey )
 {
@@ -1258,10 +1257,11 @@ void SwTaggedPDFHelper::BeginBlockStructureElements()
 // FlyFrm: Figure, Formula, Control
 // fly in content or fly at page
 {
-bool bFormula = false;
 const SwFlyFrm* pFly = static_castconst SwFlyFrm*(pFrm);
 if ( pFly-Lower()  pFly-Lower()-IsNoTxtFrm() )
 {
+bool bFormula = false;
+
 const SwNoTxtFrm* pNoTxtFrm = static_castconst 
SwNoTxtFrm*(pFly-Lower());
 SwOLENode* pOLENd = 
const_castSwOLENode*(pNoTxtFrm-GetNode()-GetOLENode());
 if ( pOLENd )
@@ -1409,10 +1409,9 @@ void SwTaggedPDFHelper::BeginInlineStructureElements()
 rInf.GetIdx() - 1 :
 rInf.GetIdx();
 const SwTxtAttr* pHint = mpPorInfo-mrTxtPainter.GetAttr( nIdx 
);
-const SwField* pFld = 0;
 if ( pHint  RES_TXTATR_FIELD == pHint-Which() )
 {
-pFld = (SwField*)pHint-GetFmtFld().GetField();
+const SwField* pFld = 
(SwField*)pHint-GetFmtFld().GetField();
 if ( RES_GETREFFLD == pFld-Which() )
 {
 nPDFType = vcl::PDFWriter::Link;
diff --git a/sw/source/core/text/itradj.cxx b/sw/source/core/text/itradj.cxx
index 56302ea..2c03d19 100644
--- a/sw/source/core/text/itradj.cxx
+++ b/sw/source/core/text/itradj.cxx
@@ -194,10 +194,9 @@ static bool lcl_CheckKashidaWidth ( SwScriptInfo rSI, 
SwTxtSizeInfo rInf, SwTx
 // check kashida width
 // if width is smaller than minimal kashida width allowed by fonts in the 
current line
 // drop one kashida after the other until kashida width is OK
-bool bAddSpaceChanged;
 while (rKashidas)
 {
-bAddSpaceChanged = false;
+bool bAddSpaceChanged = false;
 sal_Int32 nIdx = rItr.GetStart();
 sal_Int32 nEnd = rItr.GetEnd();
 while ( nIdx  nEnd )
diff --git a/sw/source/core/text/itrform2.cxx b/sw/source/core/text/itrform2.cxx
index 3b5d6bc..e72a7e9 100644
--- a/sw/source/core/text/itrform2.cxx
+++ b/sw/source/core/text/itrform2.cxx
@@ -414,7 +414,6 @@ void SwTxtFormatter::BuildPortions( SwTxtFormatInfo rInf )
 sal_uInt8 nNxtActual = rInf.GetFont()-GetActual();
 sal_uInt8 nLstActual = nNxtActual;
 sal_uInt16 nLstHeight = (sal_uInt16)rInf.GetFont()-GetHeight();
-bool bAllowBefore = false;
 bool bAllowBehind = false;
 const CharClass rCC = GetAppCharClass();
 
@@ -443,6 +442,8 @@ void SwTxtFormatter::BuildPortions( SwTxtFormatInfo rInf )
 

[Libreoffice-commits] core.git: winaccessibility/source writerfilter/source xmloff/source xmlscript/source xmlsecurity/source

2015-01-19 Thread Michael Weghorn
 winaccessibility/source/UAccCOM/AccTable.cxx  |   16 
+++
 writerfilter/source/dmapper/DomainMapper_Impl.cxx |3 -
 xmloff/source/chart/SchXMLExport.cxx  |3 -
 xmloff/source/chart/SchXMLImport.cxx  |3 -
 xmloff/source/draw/shapeexport.cxx|2 
 xmloff/source/forms/eventimport.cxx   |6 --
 xmloff/source/text/XMLRedlineExport.cxx   |3 -
 xmloff/source/text/XMLTextNumRuleInfo.cxx |2 
 xmloff/source/text/txtimp.cxx |3 -
 xmlscript/source/xmldlg_imexp/xmldlg_export.cxx   |2 
 xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx |   12 +
 xmlsecurity/source/xmlsec/nss/secerror.cxx|6 --
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx |   21 
+++---
 13 files changed, 33 insertions(+), 49 deletions(-)

New commits:
commit bfe79b50bce44707cb2416e6ff6b7441491967bb
Author: Michael Weghorn m.wegh...@posteo.de
Date:   Sat Jan 17 02:00:35 2015 +0100

fdo#39440 reduce scope of local variables

This addresses some cppcheck warnings.

Change-Id: If7ad3584b3124ed0b337836071af1a5bd0451d85
Reviewed-on: https://gerrit.libreoffice.org/13972
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Noel Grandin noelgran...@gmail.com

diff --git a/winaccessibility/source/UAccCOM/AccTable.cxx 
b/winaccessibility/source/UAccCOM/AccTable.cxx
index e739300..076e92a 100644
--- a/winaccessibility/source/UAccCOM/AccTable.cxx
+++ b/winaccessibility/source/UAccCOM/AccTable.cxx
@@ -663,11 +663,11 @@ STDMETHODIMP CAccTable::selectRow(long row)
 return E_FAIL;
 
 // Select row.
-longlCol, lColumnCount, lChildIndex;
+longlCol, lColumnCount;
 lColumnCount = GetXInterface()-getAccessibleColumnCount();
 for(lCol = 0; lCol  lColumnCount; lCol ++)
 {
-lChildIndex = GetXInterface()-getAccessibleIndex(row, lCol);
+long lChildIndex = GetXInterface()-getAccessibleIndex(row, lCol);
 pRSelection.get()-selectAccessibleChild(lChildIndex);
 }
 
@@ -707,11 +707,11 @@ STDMETHODIMP CAccTable::selectColumn(long column)
 return E_FAIL;
 
 // Select column.
-longlRow, lRowCount, lChildIndex;
+longlRow, lRowCount;
 lRowCount = GetXInterface()-getAccessibleRowCount();
 for(lRow = 0; lRow  lRowCount; lRow ++)
 {
-lChildIndex = GetXInterface()-getAccessibleIndex(lRow, column);
+long lChildIndex = GetXInterface()-getAccessibleIndex(lRow, 
column);
 pRSelection.get()-selectAccessibleChild(lChildIndex);
 }
 
@@ -754,11 +754,11 @@ STDMETHODIMP CAccTable::unselectRow(long row)
 return E_FAIL;
 
 // Select column.
-longlColumn, lColumnCount, lChildIndex;
+longlColumn, lColumnCount;
 lColumnCount = GetXInterface()-getAccessibleColumnCount();
 for(lColumn = 0; lColumn  lColumnCount; lColumn ++)
 {
-lChildIndex = GetXInterface()-getAccessibleIndex(row,lColumn);
+long lChildIndex = 
GetXInterface()-getAccessibleIndex(row,lColumn);
 pRSelection.get()-deselectAccessibleChild(lChildIndex);
 }
 
@@ -801,12 +801,12 @@ STDMETHODIMP CAccTable::unselectColumn(long column)
 return E_FAIL;
 
 // Unselect columns.
-longlRow, lRowCount, lChildIndex;
+longlRow, lRowCount;
 lRowCount = GetXInterface()-getAccessibleRowCount();
 
 for(lRow = 0; lRow  lRowCount; lRow ++)
 {
-lChildIndex = GetXInterface()-getAccessibleIndex(lRow, column);
+long lChildIndex = GetXInterface()-getAccessibleIndex(lRow, 
column);
 pRSelection.get()-deselectAccessibleChild(lChildIndex);
 }
 return S_OK;
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index e97c133..a77aba6 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -2452,7 +2452,6 @@ void DomainMapper_Impl::ChainTextFrames()
 
 try
 {
-bool bIsTxbxChained = false ;
 sal_Int32 nTxbxId1  = 0 ; //holds id for the shape in outer loop
 sal_Int32 nTxbxId2  = 0 ; //holds id for the shape in inner loop
 sal_Int32 nTxbxSeq1 = 0 ; //holds seq number for the shape in outer 
loop
@@ -2465,7 +2464,7 @@ void DomainMapper_Impl::ChainTextFrames()
 for( std::vectoruno::Reference drawing::XShape  ::iterator 
outer_itr = m_vTextFramesForChaining.begin();
  outer_itr != 

[Libreoffice-bugs] [Bug 39440] cppcheck cleanliness

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39440

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

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

fdo#39440 sw: reduce scope of local variables

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


[Bug 39440] cppcheck cleanliness

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39440

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

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

fdo#39440 sw: reduce scope of local variables

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: sfx2/source

2015-01-19 Thread Trent MacAlpine
 sfx2/source/sidebar/SidebarDockingWindow.cxx |   13 ++---
 1 file changed, 2 insertions(+), 11 deletions(-)

New commits:
commit 304e2002a053e9eb54e36462165eca831da8aeb2
Author: Trent MacAlpine tmac...@gmail.com
Date:   Sun Jan 18 13:47:20 2015 -0500

fdo#87217 Inconsistent floating sidebar close behavior

Remove code that caused an undocked sidebar to reenable a docked
sidebar when you attempt to close it using the window manager.  It
should simply be closed instead.

Change-Id: Ib058d167b6c89f42df3ce4c80e4d97435b31c31d
Reviewed-on: https://gerrit.libreoffice.org/13979
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Jan Holesovsky ke...@collabora.com
Tested-by: Jan Holesovsky ke...@collabora.com

diff --git a/sfx2/source/sidebar/SidebarDockingWindow.cxx 
b/sfx2/source/sidebar/SidebarDockingWindow.cxx
index 1a39746..24206b1 100644
--- a/sfx2/source/sidebar/SidebarDockingWindow.cxx
+++ b/sfx2/source/sidebar/SidebarDockingWindow.cxx
@@ -88,19 +88,10 @@ void SidebarDockingWindow::GetFocus()
 
 
 
+// fdo#87217
 bool SidebarDockingWindow::Close (void)
 {
-if (mpSidebarController.is())
-{
-// Do not close the floating window.
-// Dock it and close just the deck instead.
-SetFloatingMode(false);
-mpSidebarController-RequestCloseDeck();
-mpSidebarController-NotifyResize();
-return false;
-}
-else
-return SfxDockingWindow::Close();
+return SfxDockingWindow::Close();
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-01-19 Thread dbeurle
 svtools/source/control/ruler.cxx |   29 -
 1 file changed, 16 insertions(+), 13 deletions(-)

New commits:
commit 0a612a5c5c2982bccfe0cd6c5a3bba8d9107e043
Author: dbeurle dbeu...@student.unimelb.edu.au
Date:   Mon Jan 19 09:47:29 2015 +1100

Ruler ticks spacing consistent with lowDPI monitors.  Draw ticks with width

Change-Id: Id636fa87ac7fd4a8c33d65bd72822768bc94b592
Reviewed-on: https://gerrit.libreoffice.org/13987
Reviewed-by: Tomaž Vajngerl qui...@gmail.com
Tested-by: Tomaž Vajngerl qui...@gmail.com

diff --git a/svtools/source/control/ruler.cxx b/svtools/source/control/ruler.cxx
index 96b6aa0..e97386c 100644
--- a/svtools/source/control/ruler.cxx
+++ b/svtools/source/control/ruler.cxx
@@ -463,13 +463,16 @@ void Ruler::ImplDrawTicks( long nMin, long nMax, long 
nStart, long nTop, long nB
 {
 double nCenter = nTop + ((nBottom - nTop) / 2);
 
-long nTickLength3 = (nBottom - nTop) * 0.5 * ruler_tab.DPIScaleFactor;
+long nTickLength3 = (nBottom - nTop) * 0.5;
 long nTickLength2 = nTickLength3 * 0.66;
 long nTickLength1 = nTickLength2 * 0.66;
 
+long nScale = ruler_tab.DPIScaleFactor;
+long DPIOffset = nScale - 1;
+
 double nTick4 = aImplRulerUnitTab[mnUnitIndex].nTick4;
 double nTick2 = 0;
-double nTickCount = aImplRulerUnitTab[mnUnitIndex].nTick1;
+double nTickCount = aImplRulerUnitTab[mnUnitIndex].nTick1 / nScale;
 double nTickUnit = 0;
 long nTickWidth;
 bool bNoTicks = false;
@@ -548,7 +551,7 @@ void Ruler::ImplDrawTicks( long nMin, long nMax, long 
nStart, long nTop, long nB
 else
 nMulti += 1000;
 
-// Overeflow - in this case don't draw ticks and exit
+// Overflow - in this case don't draw ticks and exit
 if ( nMulti  nOldMulti )
 {
 bNoTicks = true;
@@ -630,10 +633,10 @@ void Ruler::ImplDrawTicks( long nMin, long nMax, long 
nStart, long nTop, long nB
 
 if(nMin  nHorizontalLocation  nHorizontalLocation  
nMax)
 {
-ImplVDrawLine(nHorizontalLocation, nBottom, 
nHorizontalLocation,
-nBottom - 1 * ruler_tab.DPIScaleFactor);
-ImplVDrawLine(nHorizontalLocation, nTop,
nHorizontalLocation,
-nTop+ 1 * ruler_tab.DPIScaleFactor);
+ImplVDrawRect(nHorizontalLocation, nBottom, 
nHorizontalLocation + DPIOffset,
+nBottom - 1 * nScale);
+ImplVDrawRect(nHorizontalLocation, nTop,
nHorizontalLocation + DPIOffset,
+nTop+ 1 * nScale);
 }
 
 nHorizontalLocation = nStart - n;
@@ -641,10 +644,10 @@ void Ruler::ImplDrawTicks( long nMin, long nMax, long 
nStart, long nTop, long nB
 
 if(nMin  nHorizontalLocation  nHorizontalLocation  
nMax)
 {
-ImplVDrawLine( nHorizontalLocation, nBottom, 
nHorizontalLocation,
-nBottom - 1 * ruler_tab.DPIScaleFactor );
-ImplVDrawLine( nHorizontalLocation, nTop,
nHorizontalLocation,
-nTop+ 1 * ruler_tab.DPIScaleFactor );
+ImplVDrawRect( nHorizontalLocation, nBottom, 
nHorizontalLocation + DPIOffset,
+nBottom - 1 * nScale );
+ImplVDrawRect( nHorizontalLocation, nTop,
nHorizontalLocation + DPIOffset,
+nTop+ 1 * nScale );
 }
 }
 // Tick/Tick2 - Output (Strokes)
@@ -673,10 +676,10 @@ void Ruler::ImplDrawTicks( long nMin, long nMax, long 
nStart, long nTop, long nB
 nT = nStart + n;
 
 if ( nT  nMax )
-ImplVDrawLine( nT, nT1, nT, nT2 );
+ImplVDrawRect( nT, nT1, nT + DPIOffset, nT2 );
 nT = nStart - n;
 if ( nT  nMin )
-ImplVDrawLine( nT, nT1, nT, nT2 );
+ImplVDrawRect( nT, nT1, nT + DPIOffset, nT2 );
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: icon-themes/sifr

2015-01-19 Thread Matthias Freund
 icon-themes/sifr/cmd/lc_datadatapilotrun.png |binary
 icon-themes/sifr/cmd/lc_xlinecolor.png   |binary
 icon-themes/sifr/cmd/sc_datadatapilotrun.png |binary
 icon-themes/sifr/cmd/sc_xlinecolor.png   |binary
 4 files changed

New commits:
commit 6271e6400ac9f78a323e959a6a295625f08b87cc
Author: Matthias Freund matti...@secure.mailbox.org
Date:   Sun Jan 18 02:12:25 2015 +0100

fdo#75256 Improve Sifr Icon Theme

Two new icons. Linecolor and pilotrun, hope these are those in the toolbar 
in impress.

Change-Id: I8d1c9fca4d6135da908199b088b1ab6221251245
Reviewed-on: https://gerrit.libreoffice.org/13977
Reviewed-by: Jan Holesovsky ke...@collabora.com
Tested-by: Jan Holesovsky ke...@collabora.com

diff --git a/icon-themes/sifr/cmd/lc_datadatapilotrun.png 
b/icon-themes/sifr/cmd/lc_datadatapilotrun.png
new file mode 100644
index 000..29ad813
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_datadatapilotrun.png differ
diff --git a/icon-themes/sifr/cmd/lc_xlinecolor.png 
b/icon-themes/sifr/cmd/lc_xlinecolor.png
new file mode 100644
index 000..8e7cf23
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_xlinecolor.png differ
diff --git a/icon-themes/sifr/cmd/sc_datadatapilotrun.png 
b/icon-themes/sifr/cmd/sc_datadatapilotrun.png
new file mode 100644
index 000..3a972b6a
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_datadatapilotrun.png differ
diff --git a/icon-themes/sifr/cmd/sc_xlinecolor.png 
b/icon-themes/sifr/cmd/sc_xlinecolor.png
new file mode 100644
index 000..e1e975f
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_xlinecolor.png differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87217

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

   What|Removed |Added

 Whiteboard|| target:4.5.0

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


[Libreoffice-ux-advise] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87217

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

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

fdo#87217 Inconsistent floating sidebar close behavior

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-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87217

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

   What|Removed |Added

 Whiteboard|| target:4.5.0

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


[Libreoffice-bugs] [Bug 87217] the floating Sidebar moves back onto the side of the window at closing

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87217

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

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

fdo#87217 Inconsistent floating sidebar close behavior

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-commits] translations.git: Branch 'libreoffice-4-4' - source/sl

2015-01-19 Thread Andras Timar
 source/sl/cui/uiconfig/ui.po  |8 -
 source/sl/officecfg/registry/data/org/openoffice/Office/UI.po |4 
 source/sl/scp2/source/impress.po  |4 
 source/sl/sd/source/ui/app.po |   13 --
 source/sl/sfx2/uiconfig/ui.po |8 -
 source/sl/svx/uiconfig/ui.po  |   15 ++-
 source/sl/sw/source/ui/app.po |   46 +-
 source/sl/uui/uiconfig/ui.po  |4 
 8 files changed, 51 insertions(+), 51 deletions(-)

New commits:
commit 1fbe29c113fd7dac567682e1284c2ce2725e1a50
Author: Andras Timar andras.ti...@collabora.com
Date:   Mon Jan 19 09:34:36 2015 +0100

Updated Slovenian translation

Change-Id: Ied8f86a3e450a2cf23cd9f08937df5c0376724bd

diff --git a/source/sl/cui/uiconfig/ui.po b/source/sl/cui/uiconfig/ui.po
index da52f9c..162a0c5 100644
--- a/source/sl/cui/uiconfig/ui.po
+++ b/source/sl/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid 
 msgstr 
 Project-Id-Version: LibreOffice 4.4\n
 Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMEDcomponent=UI\n;
-POT-Creation-Date: 2014-12-22 21:48+0100\n
-PO-Revision-Date: 2014-12-23 00:34+0200\n
+POT-Creation-Date: 2015-01-17 22:24+0100\n
+PO-Revision-Date: 2015-01-18 00:31+0200\n
 Last-Translator: Martin Srebotnjak mi...@filmsi.net\n
 Language-Team: sl.libreoffice.org\n
 Language: sl\n
@@ -8232,8 +8232,8 @@ msgctxt 
 MoveMenuDialog\n
 title\n
 string.text
-msgid Move Menu
-msgstr Premakni meni
+msgid New Menu
+msgstr Nov meni
 
 #: movemenu.ui
 msgctxt 
diff --git a/source/sl/officecfg/registry/data/org/openoffice/Office/UI.po 
b/source/sl/officecfg/registry/data/org/openoffice/Office/UI.po
index c2e8c93..1a92c4f 100644
--- a/source/sl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,14 +3,14 @@ msgid 
 msgstr 
 Project-Id-Version: LibreOffice 4.4\n
 Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMEDcomponent=UI\n;
-POT-Creation-Date: 2014-12-22 21:48+0100\n
+POT-Creation-Date: 2015-01-06 07:41+0100\n
 PO-Revision-Date: 2014-12-23 00:31+0200\n
 Last-Translator: Martin Srebotnjak mi...@filmsi.net\n
 Language-Team: sl.libreoffice.org\n
-Language: sl\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: sl\n
 Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 X-Generator: Virtaal 0.7.1\n
 X-Accelerator-Marker: ~\n
diff --git a/source/sl/scp2/source/impress.po b/source/sl/scp2/source/impress.po
index c780956..2993f30 100644
--- a/source/sl/scp2/source/impress.po
+++ b/source/sl/scp2/source/impress.po
@@ -3,14 +3,14 @@ msgid 
 msgstr 
 Project-Id-Version: LibreOffice 4.4\n
 Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMEDcomponent=UI\n;
-POT-Creation-Date: 2014-12-22 21:48+0100\n
+POT-Creation-Date: 2015-01-06 07:40+0100\n
 PO-Revision-Date: 2014-12-23 00:30+0200\n
 Last-Translator: Martin Srebotnjak mi...@filmsi.net\n
 Language-Team: sl.libreoffice.org\n
-Language: sl\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: sl\n
 Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 X-Generator: Virtaal 0.7.1\n
 X-Accelerator-Marker: ~\n
diff --git a/source/sl/sd/source/ui/app.po b/source/sl/sd/source/ui/app.po
index 46e9961..f09836e 100644
--- a/source/sl/sd/source/ui/app.po
+++ b/source/sl/sd/source/ui/app.po
@@ -3,14 +3,14 @@ msgid 
 msgstr 
 Project-Id-Version: LibreOffice 4.4\n
 Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMEDcomponent=UI\n;
-POT-Creation-Date: 2014-12-22 21:48+0100\n
+POT-Creation-Date: 2015-01-17 22:24+0100\n
 PO-Revision-Date: 2014-12-23 00:28+0200\n
 Last-Translator: Martin Srebotnjak mi...@filmsi.net\n
 Language-Team: sl.libreoffice.org\n
-Language: sl\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: sl\n
 Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 X-Generator: Virtaal 0.7.1\n
 X-Accelerator-Marker: ~\n
@@ -893,15 +893,6 @@ msgstr Opis ...
 #: menuids_tmpl.src
 msgctxt 
 menuids_tmpl.src\n
-MN_EFFECT\n
-SID_CUSTOM_ANIMATION_PANEL\n
-menuitem.text
-msgid Custom Animation...
-msgstr Animacija po meri ...
-
-#: menuids_tmpl.src
-msgctxt 
-menuids_tmpl.src\n
 MN_ACTION\n
 SID_ANIMATION_EFFECTS\n
 menuitem.text
diff --git a/source/sl/sfx2/uiconfig/ui.po b/source/sl/sfx2/uiconfig/ui.po
index 6ac28d1..c95bc6e 100644
--- a/source/sl/sfx2/uiconfig/ui.po
+++ b/source/sl/sfx2/uiconfig/ui.po
@@ -3,14 +3,14 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - translations

2015-01-19 Thread Andras Timar
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fa26e098238476d627d59daea34b338f9c3e6e60
Author: Andras Timar andras.ti...@collabora.com
Date:   Mon Jan 19 09:34:36 2015 +0100

Updated core
Project: translations  1fbe29c113fd7dac567682e1284c2ce2725e1a50

diff --git a/translations b/translations
index 2ef7945..1fbe29c 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 2ef79455b8f8a5a8bc2161117261814887197242
+Subproject commit 1fbe29c113fd7dac567682e1284c2ce2725e1a50
___
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' - 2 commits - icon-themes/sifr

2015-01-19 Thread Matthias Freund
 icon-themes/sifr/cmd/lc_datadatapilotrun.png|binary
 icon-themes/sifr/cmd/lc_xlinecolor.png  |binary
 icon-themes/sifr/cmd/sc_datadatapilotrun.png|binary
 icon-themes/sifr/cmd/sc_xlinecolor.png  |binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png |binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png|binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png|binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png   |binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png   |binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png |binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-transition-small.png |binary
 11 files changed

New commits:
commit 5215673b42c907b80bbecff588263a47aac4e6fc
Author: Matthias Freund matti...@secure.mailbox.org
Date:   Sun Jan 18 02:12:25 2015 +0100

fdo#75256 Improve Sifr Icon Theme

Two new icons. Linecolor and pilotrun, hope these are those in the toolbar 
in impress.

Change-Id: I8d1c9fca4d6135da908199b088b1ab6221251245
Reviewed-on: https://gerrit.libreoffice.org/13977
Reviewed-by: Jan Holesovsky ke...@collabora.com
Tested-by: Jan Holesovsky ke...@collabora.com
(cherry picked from commit 6271e6400ac9f78a323e959a6a295625f08b87cc)
Reviewed-on: https://gerrit.libreoffice.org/13990

diff --git a/icon-themes/sifr/cmd/lc_datadatapilotrun.png 
b/icon-themes/sifr/cmd/lc_datadatapilotrun.png
new file mode 100644
index 000..29ad813
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_datadatapilotrun.png differ
diff --git a/icon-themes/sifr/cmd/lc_xlinecolor.png 
b/icon-themes/sifr/cmd/lc_xlinecolor.png
new file mode 100644
index 000..8e7cf23
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_xlinecolor.png differ
diff --git a/icon-themes/sifr/cmd/sc_datadatapilotrun.png 
b/icon-themes/sifr/cmd/sc_datadatapilotrun.png
new file mode 100644
index 000..3a972b6a
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_datadatapilotrun.png differ
diff --git a/icon-themes/sifr/cmd/sc_xlinecolor.png 
b/icon-themes/sifr/cmd/sc_xlinecolor.png
new file mode 100644
index 000..e1e975f
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_xlinecolor.png differ
commit 61d2cd27266237a7ea525c2a854ba1fb429d7f98
Author: Matthias Freund matti...@secure.mailbox.org
Date:   Sat Jan 17 01:34:41 2015 +0100

fdo#75256 Improve Sifr Icon Theme

Additional icons for the sidebar.

Change-Id: I27f9abde47c69618c00cf1958dd597db841fe151
Reviewed-on: https://gerrit.libreoffice.org/13970
Reviewed-by: Jan Holesovsky ke...@collabora.com
Tested-by: Jan Holesovsky ke...@collabora.com
(cherry picked from commit 07b6d618c8f541e02b8216fcf35a88e0b788da84)
Reviewed-on: https://gerrit.libreoffice.org/13988

diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png
index 869cfc7..ad1743e 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png and 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png
index eab3ad1..3170c18 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png and 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png
index cb3191b..22a2521 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png and 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png
index 6c299ab..e935efb 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png 
and b/icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png
index 32a5de9..d947262 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png 
and b/icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png
index 40487d9..f823bab 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png 
and b/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-small.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-small.png
index 3017645..50c4a69 

[Libreoffice-commits] translations.git: Branch 'libreoffice-4-4-0' - source/sl

2015-01-19 Thread Andras Timar
 source/sl/cui/uiconfig/ui.po  |8 -
 source/sl/officecfg/registry/data/org/openoffice/Office/UI.po |4 
 source/sl/scp2/source/impress.po  |4 
 source/sl/sd/source/ui/app.po |   13 --
 source/sl/sfx2/uiconfig/ui.po |8 -
 source/sl/svx/uiconfig/ui.po  |   15 ++-
 source/sl/sw/source/ui/app.po |   46 +-
 source/sl/uui/uiconfig/ui.po  |4 
 8 files changed, 51 insertions(+), 51 deletions(-)

New commits:
commit c8740ce11b9f6034ca86f1926679909bb2e9887e
Author: Andras Timar andras.ti...@collabora.com
Date:   Mon Jan 19 09:34:36 2015 +0100

Updated Slovenian translation

Change-Id: Ied8f86a3e450a2cf23cd9f08937df5c0376724bd
(cherry picked from commit 1fbe29c113fd7dac567682e1284c2ce2725e1a50)

diff --git a/source/sl/cui/uiconfig/ui.po b/source/sl/cui/uiconfig/ui.po
index da52f9c..162a0c5 100644
--- a/source/sl/cui/uiconfig/ui.po
+++ b/source/sl/cui/uiconfig/ui.po
@@ -3,8 +3,8 @@ msgid 
 msgstr 
 Project-Id-Version: LibreOffice 4.4\n
 Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMEDcomponent=UI\n;
-POT-Creation-Date: 2014-12-22 21:48+0100\n
-PO-Revision-Date: 2014-12-23 00:34+0200\n
+POT-Creation-Date: 2015-01-17 22:24+0100\n
+PO-Revision-Date: 2015-01-18 00:31+0200\n
 Last-Translator: Martin Srebotnjak mi...@filmsi.net\n
 Language-Team: sl.libreoffice.org\n
 Language: sl\n
@@ -8232,8 +8232,8 @@ msgctxt 
 MoveMenuDialog\n
 title\n
 string.text
-msgid Move Menu
-msgstr Premakni meni
+msgid New Menu
+msgstr Nov meni
 
 #: movemenu.ui
 msgctxt 
diff --git a/source/sl/officecfg/registry/data/org/openoffice/Office/UI.po 
b/source/sl/officecfg/registry/data/org/openoffice/Office/UI.po
index c2e8c93..1a92c4f 100644
--- a/source/sl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,14 +3,14 @@ msgid 
 msgstr 
 Project-Id-Version: LibreOffice 4.4\n
 Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMEDcomponent=UI\n;
-POT-Creation-Date: 2014-12-22 21:48+0100\n
+POT-Creation-Date: 2015-01-06 07:41+0100\n
 PO-Revision-Date: 2014-12-23 00:31+0200\n
 Last-Translator: Martin Srebotnjak mi...@filmsi.net\n
 Language-Team: sl.libreoffice.org\n
-Language: sl\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: sl\n
 Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 X-Generator: Virtaal 0.7.1\n
 X-Accelerator-Marker: ~\n
diff --git a/source/sl/scp2/source/impress.po b/source/sl/scp2/source/impress.po
index c780956..2993f30 100644
--- a/source/sl/scp2/source/impress.po
+++ b/source/sl/scp2/source/impress.po
@@ -3,14 +3,14 @@ msgid 
 msgstr 
 Project-Id-Version: LibreOffice 4.4\n
 Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMEDcomponent=UI\n;
-POT-Creation-Date: 2014-12-22 21:48+0100\n
+POT-Creation-Date: 2015-01-06 07:40+0100\n
 PO-Revision-Date: 2014-12-23 00:30+0200\n
 Last-Translator: Martin Srebotnjak mi...@filmsi.net\n
 Language-Team: sl.libreoffice.org\n
-Language: sl\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: sl\n
 Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 X-Generator: Virtaal 0.7.1\n
 X-Accelerator-Marker: ~\n
diff --git a/source/sl/sd/source/ui/app.po b/source/sl/sd/source/ui/app.po
index 46e9961..f09836e 100644
--- a/source/sl/sd/source/ui/app.po
+++ b/source/sl/sd/source/ui/app.po
@@ -3,14 +3,14 @@ msgid 
 msgstr 
 Project-Id-Version: LibreOffice 4.4\n
 Report-Msgid-Bugs-To: 
https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMEDcomponent=UI\n;
-POT-Creation-Date: 2014-12-22 21:48+0100\n
+POT-Creation-Date: 2015-01-17 22:24+0100\n
 PO-Revision-Date: 2014-12-23 00:28+0200\n
 Last-Translator: Martin Srebotnjak mi...@filmsi.net\n
 Language-Team: sl.libreoffice.org\n
-Language: sl\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: sl\n
 Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 X-Generator: Virtaal 0.7.1\n
 X-Accelerator-Marker: ~\n
@@ -893,15 +893,6 @@ msgstr Opis ...
 #: menuids_tmpl.src
 msgctxt 
 menuids_tmpl.src\n
-MN_EFFECT\n
-SID_CUSTOM_ANIMATION_PANEL\n
-menuitem.text
-msgid Custom Animation...
-msgstr Animacija po meri ...
-
-#: menuids_tmpl.src
-msgctxt 
-menuids_tmpl.src\n
 MN_ACTION\n
 SID_ANIMATION_EFFECTS\n
 menuitem.text
diff --git a/source/sl/sfx2/uiconfig/ui.po b/source/sl/sfx2/uiconfig/ui.po
index 6ac28d1..c95bc6e 100644
--- 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-0' - translations

2015-01-19 Thread Andras Timar
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b5023a443fbeb59be5014991241d906b908413f6
Author: Andras Timar andras.ti...@collabora.com
Date:   Mon Jan 19 09:34:36 2015 +0100

Updated core
Project: translations  c8740ce11b9f6034ca86f1926679909bb2e9887e

diff --git a/translations b/translations
index 639f763..c8740ce 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 639f763ec24474cb2ad8f6945a6c3f5db80f400e
+Subproject commit c8740ce11b9f6034ca86f1926679909bb2e9887e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88225] Formatting of Footnotes

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88225

--- Comment #2 from Timur gti...@gmail.com ---
Please check whether this is a duplicate of Bug 64026 - Footnotes and Endnotes
Get Strange Spacing (tabed) when Saving As .Doc or .Docx and whether the
problem can be reproduced with the current version of LO 4.4.0.

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


[Libreoffice-commits] core.git: svx/source vbahelper/source

2015-01-19 Thread Andrea Gelmini
 svx/source/form/fmobj.cxx   |8 
 vbahelper/source/msforms/vbacontrol.cxx |4 ++--
 vbahelper/source/msforms/vbacontrol.hxx |2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 83e8d0166d4dba92aafead49c427d5ffddd38b72
Author: Andrea Gelmini andrea.gelm...@gelma.net
Date:   Sun Jan 18 23:35:56 2015 +0100

Fix typo code Resouce-Resource

Change-Id: I6e68c13e4513c2f8cc38e237646db7dffc88fe3b
Reviewed-on: https://gerrit.libreoffice.org/13986
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Noel Grandin noelgran...@gmail.com

diff --git a/svx/source/form/fmobj.cxx b/svx/source/form/fmobj.cxx
index 6e2627e..7d7bd1b 100644
--- a/svx/source/form/fmobj.cxx
+++ b/svx/source/form/fmobj.cxx
@@ -443,14 +443,14 @@ namespace
 
 Reference XInterface   FmFormObj::ensureModelEnv(const Reference XInterface 
  _rSourceContainer, const Referencecss::form::XForms 
_rTopLevelDestContainer)
 {
-Reference XInterface   xTopLevelSouce;
-OUString sAccessPath = lcl_getFormComponentAccessPath(_rSourceContainer, 
xTopLevelSouce);
-if (!xTopLevelSouce.is())
+Reference XInterface   xTopLevelSource;
+OUString sAccessPath = lcl_getFormComponentAccessPath(_rSourceContainer, 
xTopLevelSource);
+if (!xTopLevelSource.is())
 // something went wrong, maybe _rSourceContainer isn't part of a valid 
forms hierarchy
 return Reference XInterface  ();
 
 Reference XIndexContainer   xDestContainer(_rTopLevelDestContainer, 
UNO_QUERY_THROW);
-Reference XIndexContainer   xSourceContainer(xTopLevelSouce, UNO_QUERY);
+Reference XIndexContainer   xSourceContainer(xTopLevelSource, UNO_QUERY);
 DBG_ASSERT(xSourceContainer.is(), FmFormObj::ensureModelEnv : the top 
level source is invalid !);
 
 sal_Int32 nTokIndex = 0;
diff --git a/vbahelper/source/msforms/vbacontrol.cxx 
b/vbahelper/source/msforms/vbacontrol.cxx
index 31588f4..42fc9d3 100644
--- a/vbahelper/source/msforms/vbacontrol.cxx
+++ b/vbahelper/source/msforms/vbacontrol.cxx
@@ -117,7 +117,7 @@ ScVbaControlListener::disposing( const lang::EventObject ) 
throw( uno::RuntimeE
 {
 if( pControl )
 {
-pControl-removeResouce();
+pControl-removeResource();
 pControl = NULL;
 }
 }
@@ -165,7 +165,7 @@ ScVbaControl::setGeometryHelper( 
AbstractGeometryAttributes* pHelper )
 mpGeometryHelper.reset( pHelper );
 }
 
-void ScVbaControl::removeResouce() throw( uno::RuntimeException )
+void ScVbaControl::removeResource() throw( uno::RuntimeException )
 {
 uno::Reference lang::XComponent  xComponent( m_xControl, 
uno::UNO_QUERY_THROW );
 xComponent-removeEventListener( m_xEventListener );
diff --git a/vbahelper/source/msforms/vbacontrol.hxx 
b/vbahelper/source/msforms/vbacontrol.hxx
index 34b1c02..7a6e6e1 100644
--- a/vbahelper/source/msforms/vbacontrol.hxx
+++ b/vbahelper/source/msforms/vbacontrol.hxx
@@ -101,7 +101,7 @@ public:
 virtual ::sal_Int32 SAL_CALL getMousePointer() throw 
(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
 virtual void SAL_CALL setMousePointer( ::sal_Int32 _mousepointer ) throw 
(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
 //remove resource because ooo.vba.excel.XControl is a wrapper of 
com.sun.star.drawing.XControlShape
-virtual void removeResouce() throw( css::uno::RuntimeException );
+virtual void removeResource() throw( css::uno::RuntimeException );
 virtual ::sal_Int32 SAL_CALL getForeColor() throw 
(::com::sun::star::uno::RuntimeException);
 virtual void SAL_CALL setForeColor( ::sal_Int32 _forecolor ) throw 
(::com::sun::star::uno::RuntimeException);
 //XHelperInterface
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88429] PDF signatures - RFC3161 timestamps - Add code to select the current default TSA URL

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88429

--- Comment #4 from Markus Wernig pub...@wernig.net ---
No. The code must select the one TSA URL configured as default in the Options.
Basically, it should just read in the config, get the TSA URLs (if multiple)
and select the default one. That URL is then to be used in the next step
(#88431).

-- 
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 64394] Any = operator and typelib_TypeClass_ENUM

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64394

Stephan Bergmann sberg...@redhat.com changed:

   What|Removed |Added

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

--- Comment #8 from Stephan Bergmann sberg...@redhat.com ---
(In reply to renatomauro from comment #7)
 It seems that today the = operator implementation is definitely consistent
 about the type dimension, i.e. a type is never converted to a smaller sized
 type and, in this case, the operator returns false. This is a good pattern
 and, for this overload, the reasonable input, as now, are the following
 typelib_TypeClass_* types: BYTE, SHORT, UNSIGNED_SHORT, LONG, UNSIGNED_LONG.
 So, the weakeness is already accepted about the signed/unsigned known issues.

For historic reasons, Any::operator = for numeric types (and for numeric
types only) employs some specific conversions that could be characterized as
widening modulo signedness.  Whether or not this would be considered
reasonable is somewhat irrelevant, given how much (internal and external) code
has been written against that specific behaviour over time---it's just the way
it is and practically impossible to change anyway.

 Now, what about typelib_TypeClass_ENUM? What is its size? For sure it is
 less than or equal to the bit depth of the processor, or, better, the bit

See http://www.openoffice.org/udk/common/man/typesystem.html for what an
enum's members are.  But the important thing is that an enum type is not a
numeric type, as far as UNO is concerned, and conversion from the (numeric)
value of an enum type's member to a numeric type is never considered by
Any::operator =, for better or worse.  (Just like it never considers
conversion from boolean values, or from values of a struct type with a single
numeric member field, or...)

 The idea is: as far as possible/reasonable, better doing validity checks, in
 the callee code rather than in the caller code on the returned value.

That is not necessarily a good idea.  These are not validity checks but
changes of semantics.

 Otherwise, as it is today, the user's code is interleaved not only by the
 check about the operator return value (true/false), but also, if false, by
 the check if it is a typelib_TypeClass_ENUM to then make the conversion by
 his/her-self.

Code that legitimately wants to extract from an any an enum value as an integer
value is probably very rare.

I'm closing this as NOTABUG.  If you still see need for discussion, please move
it to the mailing list, which is a better place for discussions like 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-commits] core.git: icon-themes/sifr

2015-01-19 Thread Matthias Freund
 icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png |binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png|binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png|binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png   |binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png   |binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png |binary
 icon-themes/sifr/sfx2/res/symphony/sidebar-transition-small.png |binary
 7 files changed

New commits:
commit 07b6d618c8f541e02b8216fcf35a88e0b788da84
Author: Matthias Freund matti...@secure.mailbox.org
Date:   Sat Jan 17 01:34:41 2015 +0100

fdo#75256 Improve Sifr Icon Theme

Additional icons for the sidebar.

Change-Id: I27f9abde47c69618c00cf1958dd597db841fe151
Reviewed-on: https://gerrit.libreoffice.org/13970
Reviewed-by: Jan Holesovsky ke...@collabora.com
Tested-by: Jan Holesovsky ke...@collabora.com

diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png
index 869cfc7..ad1743e 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png and 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-3d-small.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png
index eab3ad1..3170c18 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png and 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-large.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png
index cb3191b..22a2521 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png and 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-imganim-small.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png
index 6c299ab..e935efb 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png 
and b/icon-themes/sifr/sfx2/res/symphony/sidebar-template-large.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png
index 32a5de9..d947262 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png 
and b/icon-themes/sifr/sfx2/res/symphony/sidebar-template-small.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png
index 40487d9..f823bab 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png 
and b/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-large.png differ
diff --git a/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-small.png 
b/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-small.png
index 3017645..50c4a69 100644
Binary files a/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-small.png 
and b/icon-themes/sifr/sfx2/res/symphony/sidebar-transition-small.png differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 85090] Autocorrect always capitalizes small i in a cell

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85090

--- Comment #11 from tommy27 ba...@quipo.it ---
@Yerlan
did you try my workaround? did it solve your 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 80680] SOLVER crashing CALC

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80680

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

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=80647

-- 
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 80647] request to add Nelder Mead simplex to SOLVER for small dimension non-linear problems

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80647

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

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=80680

-- 
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 66412] Other: Exported PDF is not added to ~/.local/share/recently-used.xbel

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66412

--- Comment #5 from klem...@ull.at ---
Addidtional information from mc4man/ubuntuforums.org:

The sole determining factor here (ubuntu 14.04) is whether when exporting a pdf
in LO I explicitly add a .pdf extension or not
When adding .pdf to the file name it's immediately shown in 'Recent'. If I
don't, just use a filename, then it's not. (LO adds the ext but that doesn't
matter in this regard 

I can confirm this behaviour.


Reference:
http://ubuntuforums.org/showthread.php?t=2261336p=13210398#post13210398

-- 
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 70748] CONFIGURATION: Update LibreOffice to open MSO File Types

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=70748

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

   What|Removed |Added

 CC||qu...@runcibility.com
Summary|CONFIGURATION: Modify   |CONFIGURATION: Update
   |installed product to open   |LibreOffice to open MSO
   |office extensions   |File Types

-- 
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 82300] Shift+F5 = Restore Editing View doesn't work anymore

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82300

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #6 from Beluga todven...@suomi24.fi ---
With attachment 112456, cursor is not in correct position on open. Shift+F5
does nothing.
Same result from scratch.

Linux Mint 17.1 32-bit, LibO 4.2.7 and 4.3.5

Win 7 Pro 64-bit, LibO Version: 4.3.6.1
Build ID: 9629686a67dd1f357477c13325e45a66f3452bb9

Version: 4.5.0.0.alpha0+
Build ID: 5f6bdce0c0ac687f418821ce328f2987bf340cda
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2015-01-17_01:06:46

-- 
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 51132] After one success, PRINTING of #10 ENVELOPES failed to print properly, apparently due to incorrect formatting of the envelope document by the 'Insert Envelope' wizard.

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51132

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #11 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to technogeek from comment #3)
 I am experiencing this issue as well on LibreOffice Writer 4.2.2.1 for
 Windows, albeit with a different printer (specifically, a Brother MFC-7360N.
 Still with a #10 envelope, however.

(In reply to art guerra from comment #6)
 Confirmed on version 4.2.5.2. I have a brother MFC-435 and I get the same
 results when trying to print an #10 envelope.

Sounds like we have enough repro confirmation here:
Status - NEW

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


[Libreoffice-bugs] [Bug 75467] OS X integration: selecting a file in Open File dialog or merely viewing a folder in Save File dialog adds resource fork, changes size and mod date (10.6/10.7)

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75467

Peter Nowee peter.no...@gmail.com changed:

   What|Removed |Added

   Keywords||bisected

--- Comment #56 from Peter Nowee peter.no...@gmail.com ---
I picked apart the commits and found the problems are caused by calling
CFURLCreateBookmarkDataFromFile:

Offensive line from 7aa4291 (Open dialog bug)
fpicker/source/aqua/NSURL_OOoAdditions.mm

  CFDataRef rBookmark = CFURLCreateBookmarkDataFromFile( NULL, rUrl, rError );

Offensive line from aa539f6 (Save dialog bug)
sal/osl/unx/system.c

  CFDataRef cfbookmark = CFURLCreateBookmarkDataFromFile( NULL, cfurl, cferror
);

A search for CFURLCreateBookmarkDataFromFile turned up
http://www.opensource.apple.com/source/CF/CF-635/CFURL.h, which says that this
function overwrites files by adding bookmark and alias data.

But why does this not cause any problems in any other applications then? Could
it be this only goes wrong in 32-bit?

Could someone running Mac OS 10.8 or higher try to reproduce this bug with the
32-bit (x86, not x86_64) build? See comment 8 for steps to reproduce. The bug
is still present in LO 4.3.6 RC1. The 32-bit version can be downloaded here:
http://download.documentfoundation.org/libreoffice/testing/4.3.6/mac/x86/LibreOffice_4.3.6.1_MacOS_x86.dmg

Suggestions?

-- 
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 77346] FORMATTING: Calc becomes slow after selecting cells and activating font chooser with previews enabled (summary: comment 29)

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77346

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

   What|Removed |Added

   Keywords||regression
Summary|FORMATTING: Calc becomes|FORMATTING: Calc becomes
   |slow after selecting cells  |slow after selecting cells
   |and activating font chooser |and activating font chooser
   |with previews enabled   |with previews enabled
   ||(summary: comment 29)

--- Comment #29 from Matthew Francis fdb...@neosheffield.co.uk ---
There is still an issue present in at least 4.4.0.2 and 4.5 master which does
appear to date back to the range mentioned in comment 0 (which in the 43all
bibisect repo is source-hash-bcc51fb2ebdf77a1cc089857775fd742085b45b6).

Steps to reproduce:
1. Load the file from attachment 112513
2. Ensure Tools - Options - LibreOffice - View - Font Lists - Show preview of
fonts is enabled
3. Select All
4. Change to another font

Expected result:
- Interface should be as responsive as before (4) - e.g. scrolling, clicking
between cells, selecting a cell range

Actual result:
- Interface is much slower than before. Saving and reloading the file resets
the speed to normal

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


[Libreoffice-bugs] [Bug 63026] FILEOPEN: OLE-Objects cannot be opened within a Writer-Document if loaded via Java and loadComponentFromUrl

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63026

--- Comment #5 from mathias.s...@vector.com ---
Sorry, didn't test it, yet.
We currently use a workaround with the dispatch .uno:Reload.

-- 
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 82300] Shift+F5 = Restore Editing View doesn't work anymore

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82300

--- Comment #7 from Beluga todven...@suomi24.fi ---
Shift+F5 works ok with 64-bit Ubuntu.

Ubuntu 14.10 64-bit Version: 4.5.0.0.alpha0+
Build ID: 0ffa3abc7d6c0437ece30cfb1430d28ffcc9f5c1
TinderBox: Linux-rpm_deb-x86_64@46-TDF-dbg, Branch:master, Time:
2015-01-15_22:47:16

Version: 4.3.3.2
Build ID: 430m0(Build:2)

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


[Libreoffice-bugs] [Bug 77346] FORMATTING: Calc becomes slow after selecting cells and activating font chooser with previews enabled (summary: comment 29)

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77346

--- Comment #30 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 112516
  -- https://bugs.freedesktop.org/attachment.cgi?id=112516action=edit
Video capture from 4.4.0.2

The attached video capture shows the observed effect. Note that after font
preview is enabled and the font changed, the selection is much less responsive.

This effect is much more pronounced on a dbgutil build of 4.5 master (it hasn't
become slower; this just seems to be a side effect of dbgutil)

-- 
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 88598] Missing word warp for basic objects in shortcut section

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88598

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #2 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to 45g2345g23 from comment #0)
 Created attachment 112494 [details]
 The Word warp text in shape is disabled and word warp is not working.
 
 Right clicking on an ellipse and choosing Text - feature(checkbox) Word
 warp text in shape is not allowed. The checkbox is checked but word warp is
 not applied.

Hi 45g,
To make sure that we're reproducing your results as closely as possible, please
attach a test file.

Status - NEEDINFO

(please change status to UNCONFIRMED after you attach the test file. Thanks!)

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


[Libreoffice-bugs] [Bug 80138] Libreoffice Draw unable to export decent pictures

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80138

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #2 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to Regina Henschel from comment #1)
 I do not think, that the default should be a resolution for printing, which
 would be at least 300dpi. If you have got a content, which does not compress
 well, the file size will be large. For which purpose do you need such a
 large resolution?

Status - NEEDINFO

(wotan: After you reply to the question, please change status back to
UNCONFIRMED. thanks!)

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


[Libreoffice-bugs] [Bug 88544] EDITING Tools Solver fails with 4.3.5.1 under multiple OS

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88544

--- Comment #3 from raal r...@post.cz ---
(In reply to Spencer Graves from comment #2)
 1.  How can I find the Java version being used?  
 

in Menu Tools-options-LibreOffice-Advanced

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


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

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88444

--- Comment #15 from evgeniy.tyu...@intel.com ---
Yes,
the new information is the buffer is used in 2 kernels.

-- 
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 78187] FORMULAEDITOR: FEATURE REQUEST: Custom markup (shortcuts) inside editor

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78187

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #5 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to azin from comment #2)
 An auto-correct option would be perfect. Calling it that inside the formula
 editor might raise a few eyebrows though.

Sounds like a plausible and user-enabling improvement.

Status - NEW

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


[Libreoffice-bugs] [Bug 77346] FORMATTING: Calc becomes slow after selecting cells and activating font chooser with previews enabled (summary: comment 29)

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77346

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

   What|Removed |Added

   Keywords||bisected
 CC||nopo...@novell.com

--- Comment #31 from Matthew Francis fdb...@neosheffield.co.uk ---
commit bcc51fb2ebdf77a1cc089857775fd742085b45b6
Building from source confirms that the slowdown started at the below commit

Adding Cc: to nopo...@novell.com; Could you possibly take a look at this?
Thanks


Author: Noel Power noel.po...@suse.com
Date:   Thu Aug 29 17:15:33 2013 +0100

add support for in-place style preview

selecting a style in the styles dialog ( without double clicking )
will apply the style to the currently selected cell(s) You can
with the keys navigate to other styles and they in turn will
also be applied. Preview will end when you click back onto the
document.

*FIXME* - the styles dialog isn't really suitable for previewing, a
new dialog ( possibly in the toolbar ) might be nicer ( see Excel )

*FIXME* - when there is a multiple selection the highlight colour
(applied as a transparent overlay) is most annoying ( and is mixed
with any background colour applied if part of a style )
see ( ScGridWindow::UpdateSelectionOverlay() ) However my puny
attempts to make the selection use a transparent colour made all the
borders of the selected cells dissappear. I guess maybe a box/border
 around each selected cell ( or group of cells ) would also work
but I didn't try that

Change-Id: I0950e79085ffb75f60ee961835665df0c230172f

-- 
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 66540] LibreOffice slows Outlook and vice versa

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66540

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #18 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to Winfried Donkers from comment #10)
 I can reproduce the behaviour on all machines in our company, 

(In reply to Winfried Donkers from comment #3)
 Case 2 in comment #1 bothers now several users.
 

So not a 1-machine fluke...
Status - NEW

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


[Libreoffice-bugs] [Bug 75467] OS X integration: selecting a file in Open File dialog or merely viewing a folder in Save File dialog adds resource fork, changes size and mod date (10.6/10.7)

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75467

--- Comment #57 from Adriano Belletti adri...@blat.it ---
Hi @Peter, unfortunately I don't know how to help you, but your commitment is
commendable.
The only thing I know is that the version 4.1.6.2 on MacOS 10.6.8 does not have
this bug.
Thanks a lot!!!

-- 
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 70748] CONFIGURATION: Update LibreOffice to open MSO File Types

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=70748

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to mieltxo from comment #0)
 Steps to reproduce:
 1. Install Microsoft Office 2003 SP3
 2. Install LibreOffice_4.0.5_Win_x86.msi without Office file extension
 association. 

Hi mieltxo,
LO 4.0 is EOL at this point. Can you still reproduce the problem with a modern
4.3 or 4.4 build?

Status - NEEDINFO

(after you reply, please change status to UNCONFIRMED. thanks!)

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


[Libreoffice-bugs] [Bug 88592] VIEWING: Green display bug; picture with zero width [xlsx]

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88592

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Summary|VIEWING: Green display bug  |VIEWING: Green display
   ||bug;picture with zero width
   ||[xlsx]
 Ever confirmed|0   |1

--- Comment #8 from raal r...@post.cz ---
File is created in excel 14.0300, excel 2010. Picture is in tehe file, but with
zero width

Steps to reproduce in excel 2010:
- insert picture
- set width = 0 (picture disappear)
- save
- open in LO

Actual results:
picture is showed garbled

Expected results
picture not appear as in excel.

I can reproduce with excel2010, LO 4.3.5.

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


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

2015-01-19 Thread Julien Nabet
 store/source/stortree.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit ac8fdc7dd4f8ff8d896402838323c65e12c03e7c
Author: Julien Nabet serval2...@yahoo.fr
Date:   Mon Jan 19 22:45:02 2015 +0100

Suppress 1 cppcheck warning arrayIndexOutOfBounds

See 
http://nabble.documentfoundation.org/cppcheck-arrayIndexOutOfBounds-report-in-stortree-cxx-store-module-td4136432.html

Change-Id: I365befacf7d10bcbf0a159cfdcabd3eb1644d02b

diff --git a/store/source/stortree.cxx b/store/source/stortree.cxx
index 5e96a6e..a491aff 100644
--- a/store/source/stortree.cxx
+++ b/store/source/stortree.cxx
@@ -49,7 +49,10 @@ OStoreBTreeNodeData::OStoreBTreeNodeData (sal_uInt16 
nPageSize)
 T const  t;
 
 for (sal_uInt16 i = 1; i  n; i++)
+{
+// cppcheck-suppress arrayIndexOutOfBounds
 m_pData[i] = t;
+}
 }
 
 /*
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - vcl/opengl

2015-01-19 Thread Luboš Luňák
 vcl/opengl/gdiimpl.cxx |   23 ---
 1 file changed, 8 insertions(+), 15 deletions(-)

New commits:
commit fb907e83ee2339b71d0358ee9761c4ff4b384be9
Author: Luboš Luňák l.lu...@collabora.com
Date:   Mon Jan 19 22:47:01 2015 +0100

draw polypolygon outline properly (if wanted)

Again, polygons can apparently have curved edges.

Change-Id: I6519da7bb7f0dde7f1550fe6b03c09be127f77d6

diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index 19bd12e..bae5302 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -1211,18 +1211,12 @@ bool OpenGLSalGraphicsImpl::drawPolyPolygon( const 
::basegfx::B2DPolyPolygon rP
 if( UseSolid( mnFillColor, fTransparency ) )
 DrawPolyPolygon( rPolyPolygon );
 
-if( mnLineColor != mnFillColor  UseSolidAA( mnLineColor ) )
+if( mnLineColor != mnFillColor  UseSolid( mnLineColor, fTransparency ))
 {
-for( sal_uInt32 i = 0; i  rPolyPolygon.count(); i++ )
-{
-const basegfx::B2DPolygon polygon = rPolyPolygon.getB2DPolygon( i 
);
-for( sal_uInt32 j = 0; j  polygon.count(); ++j )
-{
-const basegfx::B2DPoint rPt1 = polygon.getB2DPoint( j );
-const basegfx::B2DPoint rPt2 = polygon.getB2DPoint(( j + 1 ) 
% polygon.count());
-DrawLineAA( rPt1.getX(), rPt1.getY(), rPt2.getX(), 
rPt2.getY());
-}
-}
+basegfx::B2DTrapezoidVector aB2DTrapVector;
+basegfx::tools::createLineTrapezoidFromB2DPolyPolygon( aB2DTrapVector, 
rPolyPolygon );
+for( size_t i = 0; i  aB2DTrapVector.size(); ++i )
+DrawTrapezoid( aB2DTrapVector[ i ] );
 }
 
 PostDraw();
commit bd976c2764ba8c33bf6b28b77c57dea25fb77aaf
Author: Luboš Luňák l.lu...@collabora.com
Date:   Mon Jan 19 22:36:40 2015 +0100

do not draw with SALCOLOR_NONE

Change-Id: I882a42f58ac298d333985068b2fe6ef9ac198c8b

diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index 6e9d156..19bd12e 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -406,6 +406,8 @@ bool OpenGLSalGraphicsImpl::UseSolid( SalColor nColor )
 // Like UseSolid(), but sets up for AA drawing, which uses gradients to create 
the AA.
 bool OpenGLSalGraphicsImpl::UseSolidAA( SalColor nColor, double fTransparency )
 {
+if( nColor == SALCOLOR_NONE )
+return false;
 if( !mrParent.getAntiAliasB2DDraw())
 return UseSolid( nColor );
 if( !UseProgram( textureVertexShader, linearGradientFragmentShader ) )
commit 168315e3b79f89f6e373d23419490d41f3bf5cc8
Author: Luboš Luňák l.lu...@collabora.com
Date:   Mon Jan 19 22:33:29 2015 +0100

remove needless loop

Change-Id: Iaec5aa5bd353c888a3b35a277a3618c29d9cbd67

diff --git a/vcl/opengl/gdiimpl.cxx b/vcl/opengl/gdiimpl.cxx
index 8a40f1a..6e9d156 100644
--- a/vcl/opengl/gdiimpl.cxx
+++ b/vcl/opengl/gdiimpl.cxx
@@ -1172,10 +1172,7 @@ void OpenGLSalGraphicsImpl::drawPolyPolygon( sal_uInt32 
nPoly, const sal_uInt32*
 if( UseSolid( mnFillColor ) )
 {
 if( nPoly == 1 )
-{
-for( sal_uInt32 i = 0; i  nPoly; i++ )
-DrawPolygon( pPoints[i], pPtAry[i] );
-}
+DrawPolygon( pPoints[ 0 ], pPtAry[ 0 ] );
 else
 {
 basegfx::B2DPolyPolygon polyPolygon;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: cppcheck: arrayIndexOutOfBounds report in stortree.cxx (store module)

2015-01-19 Thread julien2412
sberg wrote
 ...
 That m_pData is a flexible array member whose actual length is 
 controlled dynamically.  Cppcheck could probably make use of a heuristic 
 to treat a trailing member declared as an array of length 1 as such a 
 flexible array, as do some other static analysis tools.

Thank you Stephan.
I put a comment to suppress this warning (see
http://cgit.freedesktop.org/libreoffice/core/commit/?id=ac8fdc7dd4f8ff8d896402838323c65e12c03e7c).
However, I'm not sure to understand.
I mean, I thought there were mere array (like in C) with fixed size and
vector or other dynamic containers.
I don't know what you mean by flexible array member but above all what
about if n (so  capacityCount()) is 1?
m_pData[1] would be out of bounds, wouldn't it?
I tried to Google a bit but didn't find something relevant.

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/cppcheck-arrayIndexOutOfBounds-report-in-stortree-cxx-store-module-tp4136432p4136718.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 39052] FORMATTING single characters in titles, axis titles and other labels in charts is not possible

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39052

--- Comment #29 from christian.pietz...@gmail.com ---
It's really sad that this hasn't been enchanced after such a long time (still
not possible in 4.2.7.2) . I'm an engineer-to-be and often have to deal with
sub- or superscripted things in diagrams.
I hope someone will try to fix it.

Thanks in adavance
Christian

-- 
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 39052] FORMATTING single characters in titles, axis titles and other labels in charts is not possible

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39052

--- Comment #30 from Francisco franciscoadriansanc...@gmail.com ---
(In reply to christian.pietzsch from comment #29)
 It's really sad that this hasn't been enchanced after such a long time
 (still not possible in 4.2.7.2) . I'm an engineer-to-be and often have to
 deal with sub- or superscripted things in diagrams.
 I hope someone will try to fix it.
 
 Thanks in adavance
 Christian

Christian:

If you haven't done it already, please vote this bug in the Vote for
Enhancement page: 

https://wiki.documentfoundation.org/Vote_for_Enhancement#fdo.2339052_-_FORMATTING_single_characters_in_titles.2C_axis_titles_and_other_labels_in_charts_is_not_possible

You only need an account in the TDF wiki, and edit that page adding your reason
to vote for this bug.

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


[Libreoffice-bugs] [Bug 67538] XTypeDetection::queryTypeByDescriptor poor performance

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67538

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

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #5 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to Grigory from comment #4)
 Sorry, I don't have a computer with necessary environment to check the
 error. But the code that I attached to the ticket should reproduce the
 problem if it still exists

Stephan: Is testing the code straightforward, or is this something a dev will
need to handle?

-- 
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: vcl/source

2015-01-19 Thread Markus Mohrhard
 vcl/source/opengl/OpenGLContext.cxx |   54 ++--
 1 file changed, 40 insertions(+), 14 deletions(-)

New commits:
commit cb1af4e13b48828e41e4d13363193991ef3cdf63
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Mon Jan 19 22:57:32 2015 +0100

use a special X error handler for more GLX calls

Change-Id: I8cafc7e106bbf9ddc790d72b9399efcf76df633e

diff --git a/vcl/source/opengl/OpenGLContext.cxx 
b/vcl/source/opengl/OpenGLContext.cxx
index 4317d56..d9bf3c2 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -432,6 +432,41 @@ debug_callback(GLenum source, GLenum type, GLuint id,
 
 namespace {
 
+int unxErrorHandler(Display* dpy, XErrorEvent* event)
+{
+char errorString[256];
+XGetErrorText(dpy, event-type, errorString, 256);
+SAL_WARN(vcl.opengl, errorString);
+return 0;
+}
+
+typedef int (*errorHandler)(Display* /*dpy*/, XErrorEvent* /*evnt*/);
+
+class TempErrorHandler
+{
+private:
+errorHandler oldErrorHandler;
+Display* mdpy;
+
+public:
+TempErrorHandler(Display* dpy, errorHandler newErrorHandler):
+mdpy(dpy)
+{
+XLockDisplay(dpy);
+XSync(dpy, false);
+oldErrorHandler = XSetErrorHandler(newErrorHandler);
+}
+
+~TempErrorHandler()
+{
+// sync so that we possibly get an XError
+glXWaitGL();
+XSync(mdpy, false);
+XSetErrorHandler(oldErrorHandler);
+XUnlockDisplay(mdpy);
+}
+};
+
 static bool errorTriggered;
 int oglErrorHandler( Display* /*dpy*/, XErrorEvent* /*evnt*/ )
 {
@@ -670,6 +705,7 @@ bool OpenGLContext::init(Display* dpy, Pixmap pix, unsigned 
int width, unsigned
 bool OpenGLContext::ImplInit()
 {
 GLXContext pSharedCtx( NULL );
+TempErrorHandler(m_aGLWin.dpy, unxErrorHandler);
 
 SAL_INFO(vcl.opengl, OpenGLContext::ImplInitstart);
 
@@ -762,31 +798,19 @@ bool OpenGLContext::ImplInit()
 glXSwapIntervalProc glXSwapInterval = (glXSwapIntervalProc) 
glXGetProcAddress( (const GLubyte*) glXSwapIntervalSGI );
 if( glXSwapInterval )
 {
-int (*oldHandler)(Display* /*dpy*/, XErrorEvent* /*evnt*/);
-
-XLockDisplay(m_aGLWin.dpy);
-XSync(m_aGLWin.dpy, false);
-// replace error handler temporarily
-oldHandler = XSetErrorHandler( oglErrorHandler );
+TempErrorHandler(m_aGLWin.dpy, oglErrorHandler);
 
 errorTriggered = false;
 
 glXSwapInterval( 1 );
 
-// sync so that we possibly get an XError
-glXWaitGL();
-XSync(m_aGLWin.dpy, false);
-
 if( errorTriggered )
 SAL_WARN(vcl.opengl, error when trying to set swap 
interval, NVIDIA or Mesa bug?);
 else
 SAL_INFO(vcl.opengl, set swap interval to 1 (enable 
vsync));
-
-// restore the error handler
-XSetErrorHandler( oldHandler );
-XUnlockDisplay(m_aGLWin.dpy);
 }
 }
+
 return InitGLEW();
 }
 
@@ -1313,6 +1337,8 @@ void OpenGLContext::makeCurrent()
 #elif defined( IOS ) || defined( ANDROID )
 // nothing
 #elif defined( UNX )
+TempErrorHandler(m_aGLWin.dpy, unxErrorHandler);
+
 GLXDrawable nDrawable = mbPixmap ? m_aGLWin.glPix : m_aGLWin.win;
 if (!glXMakeCurrent( m_aGLWin.dpy, nDrawable, m_aGLWin.ctx ))
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88592] VIEWING: Green display bug

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88592

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #3 from raal r...@post.cz ---
With excel 2010 I see no image. With LO 4.5.0.0.alpha0+ I see the same broken
file as in screenshot.Can you provide steps how to reproduce this faulty file?

-- 
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 85895] FILESAVE, FILEOPEN, FORMATTING: Conditional formatting lost after copying sheet, then saving/reopening file

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85895

Umar um.tn...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---
   Assignee|libreoffice-b...@lists.free |um.tn...@gmail.com
   |desktop.org |

--- Comment #6 from Umar um.tn...@gmail.com ---
Created attachment 112502
  -- https://bugs.freedesktop.org/attachment.cgi?id=112502action=edit
Mark list

Conditional foramtting is changed after reopening the file.
In TAR sheet, i used condional formatting for AH4:AH7. It works. But when i
reopen the same file after saving, it changes to some other condition that i
used for some other cells.

-- 
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: sc/source

2015-01-19 Thread Eike Rathke
 sc/source/core/tool/interpr6.cxx |   26 --
 1 file changed, 20 insertions(+), 6 deletions(-)

New commits:
commit b5fab0c20550b724986ad8a59973b92b181e0478
Author: Eike Rathke er...@redhat.com
Date:   Mon Jan 19 23:16:23 2015 +0100

in COUNT() use ConvertStringToValue() for literal string arguments

... to evaluate the string conversion configuration, instead of the hard
coded locale dependent IsNumberFormat()

This only for literals, not referenced cell values.

Change-Id: I774b52f1e258294014d8ea6a62374dd1d262f022

diff --git a/sc/source/core/tool/interpr6.cxx b/sc/source/core/tool/interpr6.cxx
index 165401b..92a6ed3 100644
--- a/sc/source/core/tool/interpr6.cxx
+++ b/sc/source/core/tool/interpr6.cxx
@@ -426,9 +426,19 @@ double ScInterpreter::IterateParameters( ScIterFunc eFunc, 
bool bTextAsZero )
 if( eFunc == ifCOUNT )
 {
 OUString aStr = PopString().getString();
-sal_uInt32 nFIndex = 0; // damit default 
Land/Spr.
-if ( bTextAsZero || pFormatter-IsNumberFormat(aStr, 
nFIndex, fVal))
+if ( bTextAsZero )
 nCount++;
+else
+{
+// Only check if string can be converted to number, no
+// error propagation.
+sal_uInt16 nErr = nGlobalError;
+nGlobalError = 0;
+ConvertStringToValue( aStr );
+if (!nGlobalError)
+++nCount;
+nGlobalError = nErr;
+}
 }
 else
 {
@@ -952,7 +962,6 @@ void ScInterpreter::ScCount()
 else
 {
 short nParamCount = GetByte();
-double fVal = 0.0;
 sal_uLong nCount = 0;
 ScAddress aAdr;
 ScRange aRange;
@@ -967,9 +976,14 @@ void ScInterpreter::ScCount()
 case svString:
 {
 OUString aStr = PopString().getString();
-sal_uInt32 nFIndex = 0; // damit default 
Land/Spr.
-if (pFormatter-IsNumberFormat(aStr, nFIndex, fVal))
-nCount++;
+// Only check if string can be converted to number, no
+// error propagation.
+sal_uInt16 nErr = nGlobalError;
+nGlobalError = 0;
+ConvertStringToValue( aStr );
+if (!nGlobalError)
+++nCount;
+nGlobalError = nErr;
 }
 break;
 case svDouble:
___
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' - sw/source xmloff/source

2015-01-19 Thread Miklos Vajna
 sw/source/filter/xml/xmltbli.cxx |4 +++-
 xmloff/source/text/txtimp.cxx|1 +
 2 files changed, 4 insertions(+), 1 deletion(-)

New commits:
commit a4f907edbc1f6ce375bbf71c44733bb85f67a74f
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Dec 27 12:11:36 2014 +0100

fdo#84714 ODT import: read loext:table inside draw:custom-shape

A later version of ODF will hopefully allow table:table here as well,
but read loext:table in the meantime.

Change-Id: I42a461e0a6e9eff9387379acbab9660a155ecefe
(cherry picked from commit 62391c28fae5099dd1f67c322867933fcb05bc9f)
Reviewed-on: https://gerrit.libreoffice.org/13857
Tested-by: Michael Stahl mst...@redhat.com
Reviewed-by: Michael Stahl mst...@redhat.com

diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx
index a9a9a50..34adb0b 100644
--- a/sw/source/filter/xml/xmltbli.cxx
+++ b/sw/source/filter/xml/xmltbli.cxx
@@ -105,10 +105,12 @@ static SvXMLTokenMapEntry aTableElemTokenMap[] =
 XML_TOK_TABLE_HEADER_COLS },
 { XML_NAMESPACE_TABLE, XML_TABLE_COLUMNS,   XML_TOK_TABLE_COLS },
 { XML_NAMESPACE_TABLE, XML_TABLE_COLUMN,XML_TOK_TABLE_COL },
+{ XML_NAMESPACE_LO_EXT, XML_TABLE_COLUMN,   XML_TOK_TABLE_COL },
 { XML_NAMESPACE_TABLE, XML_TABLE_HEADER_ROWS,
 XML_TOK_TABLE_HEADER_ROWS },
 { XML_NAMESPACE_TABLE, XML_TABLE_ROWS,  XML_TOK_TABLE_ROWS },
 { XML_NAMESPACE_TABLE, XML_TABLE_ROW,   XML_TOK_TABLE_ROW },
+{ XML_NAMESPACE_LO_EXT, XML_TABLE_ROW,  XML_TOK_TABLE_ROW },
 { XML_NAMESPACE_OFFICE, XML_DDE_SOURCE,
 XML_TOK_OFFICE_DDE_SOURCE },
 
@@ -968,7 +970,7 @@ SvXMLImportContext 
*SwXMLTableRowContext_Impl::CreateChildContext(
 {
 SvXMLImportContext *pContext = 0;
 
-if( XML_NAMESPACE_TABLE == nPrefix )
+if( XML_NAMESPACE_TABLE == nPrefix || XML_NAMESPACE_LO_EXT == nPrefix )
 {
 if( IsXMLToken( rLocalName, XML_TABLE_CELL ) )
 {
diff --git a/xmloff/source/text/txtimp.cxx b/xmloff/source/text/txtimp.cxx
index f985cda..6c74084 100644
--- a/xmloff/source/text/txtimp.cxx
+++ b/xmloff/source/text/txtimp.cxx
@@ -87,6 +87,7 @@ static const SvXMLTokenMapEntry aTextElemTokenMap[] =
 { XML_NAMESPACE_DRAW, XML_FRAME,XML_TOK_TEXT_FRAME_PAGE },
 { XML_NAMESPACE_DRAW, XML_A,XML_TOK_DRAW_A_PAGE },
 { XML_NAMESPACE_TABLE,XML_TABLE,XML_TOK_TABLE_TABLE },
+{ XML_NAMESPACE_LO_EXT,XML_TABLE,   XML_TOK_TABLE_TABLE },
 { XML_NAMESPACE_TEXT, XML_VARIABLE_DECLS,   XML_TOK_TEXT_VARFIELD_DECLS },
 { XML_NAMESPACE_TEXT, XML_USER_FIELD_DECLS, XML_TOK_TEXT_USERFIELD_DECLS },
 { XML_NAMESPACE_TEXT, XML_SEQUENCE_DECLS,   XML_TOK_TEXT_SEQUENCE_DECLS },
___
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' - sw/qa sw/source

2015-01-19 Thread Miklos Vajna
 sw/qa/extras/odfexport/data/gerrit13858.odt |binary
 sw/qa/extras/odfexport/odfexport.cxx|   10 +++
 sw/source/core/docnode/node.cxx |3 ++
 sw/source/filter/xml/xmltble.cxx|   38 +---
 4 files changed, 37 insertions(+), 14 deletions(-)

New commits:
commit e15e4d3888c1ebd229acd8e676d28115edf622e3
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Dec 27 12:11:43 2014 +0100

fdo#84714 ODT export: write loext:table inside draw:custom-shape

(cherry picked from commit e4de5b40eb7220da2d337eb98d7905a98dc12c72)
(cherry picked from commit 80eb001e6a861c68f2915d4eebded5e36e1875f6)

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

diff --git a/sw/qa/extras/odfexport/data/gerrit13858.odt 
b/sw/qa/extras/odfexport/data/gerrit13858.odt
new file mode 100644
index 000..9b3dd37
Binary files /dev/null and b/sw/qa/extras/odfexport/data/gerrit13858.odt differ
diff --git a/sw/qa/extras/odfexport/odfexport.cxx 
b/sw/qa/extras/odfexport/odfexport.cxx
index 2a706b6..df5da9c 100644
--- a/sw/qa/extras/odfexport/odfexport.cxx
+++ b/sw/qa/extras/odfexport/odfexport.cxx
@@ -402,6 +402,11 @@ DECLARE_ODFEXPORT_TEST(testTextboxRoundedCorners, 
textbox-rounded-corners.odt)
 uno::Referencetext::XTextTable xTable(getParagraphOrTable(1, xText), 
uno::UNO_QUERY);
 uno::Referencetext::XTextRange xCell(xTable-getCellByName(A1), 
uno::UNO_QUERY);
 CPPUNIT_ASSERT_EQUAL(OUString(a), xCell-getString());
+
+// Table inside a textbox should be in the extension namespace.
+if (xmlDocPtr pXmlDoc = parseExport(content.xml))
+// This failed, as draw:custom-shape had a table:table child.
+assertXPath(pXmlDoc, //draw:custom-shape/loext:table, name, 
Table1);
 }
 
 DECLARE_ODFEXPORT_TEST(testImageWithSpecialID, 
document_with_two_images_with_special_IDs.odt)
@@ -459,6 +464,11 @@ DECLARE_ODFEXPORT_TEST(testFdo86963, fdo86963.odt)
 CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xDrawPage-getCount());
 }
 
+DECLARE_ODFEXPORT_TEST(testGerrit13858, gerrit13858.odt)
+{
+// Just make sure the output is valid.
+}
+
 #endif
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/sw/source/core/docnode/node.cxx b/sw/source/core/docnode/node.cxx
index 2103ffd..d57b18f 100644
--- a/sw/source/core/docnode/node.cxx
+++ b/sw/source/core/docnode/node.cxx
@@ -717,6 +717,9 @@ SwFrmFmt* SwNode::GetFlyFmt() const
 for( sal_uInt16 n = 0; n  rFrmFmtTbl.size(); ++n )
 {
 SwFrmFmt* pFmt = rFrmFmtTbl[n];
+// Only Writer fly frames can contain Writer nodes.
+if (pFmt-Which() != RES_FLYFRMFMT)
+continue;
 const SwFmtCntnt rCntnt = pFmt-GetCntnt();
 if( rCntnt.GetCntntIdx() 
 rCntnt.GetCntntIdx()-GetNode() == pSttNd )
diff --git a/sw/source/filter/xml/xmltble.cxx b/sw/source/filter/xml/xmltble.cxx
index 6e4b800..0460e06 100644
--- a/sw/source/filter/xml/xmltble.cxx
+++ b/sw/source/filter/xml/xmltble.cxx
@@ -50,6 +50,7 @@
 #include xmlexp.hxx
 #include boost/foreach.hpp
 #include o3tl/sorted_vector.hxx
+#include textboxhelper.hxx
 
 using namespace ::com::sun::star;
 using namespace ::com::sun::star::uno;
@@ -461,10 +462,11 @@ class SwXMLTableInfo_Impl
 const SwTable *pTable;
 Reference  XTextSection  xBaseSection;
 bool bBaseSectionValid;
+sal_uInt32 m_nPrefix;
 
 public:
 
-inline SwXMLTableInfo_Impl( const SwTable *pTbl );
+inline SwXMLTableInfo_Impl( const SwTable *pTbl, sal_uInt16 nPrefix );
 
 const SwTable *GetTable() const { return pTable; }
 const SwFrmFmt *GetTblFmt() const { return pTable-GetFrmFmt(); }
@@ -472,11 +474,14 @@ public:
 bool IsBaseSectionValid() const { return bBaseSectionValid; }
 const Reference  XTextSection  GetBaseSection() const { return 
xBaseSection; }
 inline void SetBaseSection( const Reference  XTextSection  rBase );
+/// The namespace (table or loext) that should be used for the elements.
+sal_uInt16 GetPrefix() const { return m_nPrefix; }
 };
 
-inline SwXMLTableInfo_Impl::SwXMLTableInfo_Impl( const SwTable *pTbl ) :
+inline SwXMLTableInfo_Impl::SwXMLTableInfo_Impl( const SwTable *pTbl, 
sal_uInt16 nPrefix ) :
 pTable( pTbl ),
-bBaseSectionValid( false )
+bBaseSectionValid( false ),
+m_nPrefix(nPrefix)
 {
 }
 
@@ -719,7 +724,7 @@ void SwXMLExport::ExportTableAutoStyles( const SwTableNode 
rTblNd )
 SwXMLTableColumnsSortByWidth_Impl aExpCols;
 SwXMLTableFrmFmtsSort_Impl aExpRows;
 SwXMLTableFrmFmtsSort_Impl aExpCells;
-SwXMLTableInfo_Impl aTblInfo( rTbl );
+SwXMLTableInfo_Impl aTblInfo( rTbl, XML_NAMESPACE_TABLE );
 ExportTableLinesAutoStyles( rTbl.GetTabLines(), nAbsWidth, nBaseWidth,
 

[Libreoffice-bugs] [Bug 88586] Change case does not work on date

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88586

raal r...@post.cz changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 86416] middle click paste truncates [Hard to reproduce]

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86416

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #23 from Beluga todven...@suomi24.fi ---
(In reply to Todd from comment #22)
 Verify clipit is running:
 
 $ ps ax | grep -i clipit | grep -v grep

Ok, it seems clipit wasn't running the last time I tried! Now I got the
truncated result.

Yet, ClipIt seems to be abandoned:
http://sourceforge.net/p/gtkclipit/code/ci/master/tree/
http://www.linuxgator.org/gnome/forum/viewtopic.php?p=24913
Developer switched to KDE; says he cant handle working with Gnome 3.

I don't see an easy solution as the developer doesn't want to work on it
anymore.

ClipIt forked from Parcellite, but Parcellite has been in active development
during the past couple of years:
http://parcellite.sourceforge.net/

Would you like to try Parcellite or some other manager:
https://wiki.archlinux.org/index.php/clipboard#List_of_clipboard_managers

Btw., I found your discussion about wine32 and SL 7.
I tried this HOWTO build wine 32bit on CentOS 7:
https://www.centos.org/forums/viewtopic.php?f=48t=49542
But my wine build failed because of a symbolic link issue (I posted to the
thread).

-- 
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 88576] New: functions IFNA and IFERROR second argument; export IFNA to xlsx

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88576

Bug ID: 88576
   Summary: functions IFNA and IFERROR second argument; export
IFNA to xlsx
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

Created attachment 112452
  -- https://bugs.freedesktop.org/attachment.cgi?id=112452action=edit
test documents before and after the export to xlsx

In bug 59819 functions IFNA and IFERROR was added.

According to specification is second argument of functions mandatory.

spec
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part2.html#__RefHeading__1018448_715980110

Calc allows create functions without second argument and returns results. After
export to XLSX this create incompatibility.
Also export of function IFNA to XLSX is broken (same symptoms as in bug 59819). 
Steps to reproduce Error1:
- open iferror_ifna_second argument.ods
- save as .xlsx
- open in excel

Actual results
Error message: broken file, repair. After repair:
A1 = 1 (cached value; formula lost)
A2= =_xlfn.IFNA(F1)

***
IFERROR with second argument is correctly exported to .xlsx.  
IFNA with second argument is not correctly exported to .xlsx -
=_xlfn.IFNA(E1;E2)

Tested with LO 4.3.5, win7

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


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

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88444

--- Comment #11 from Tor Lillqvist t...@iki.fi ---
Created attachment 112453
  -- https://bugs.freedesktop.org/attachment.cgi?id=112453action=edit
Replacement scopencllo.dll

-- 
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 54021] EDITING: Fields in tablecontrols of a form could not be moved/sorted

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54021

--- Comment #23 from Lionel Elie Mamane lio...@mamane.lu ---
(In reply to Julien Nabet from comment #21)
 (In reply to Lionel Elie Mamane from comment #20)
  This looks relevant:
  
  warn:legacy.osl:8027:1:svx/source/form/formcontrolfactory.cxx:207:
  lcl_getDataSourceIndirectProperties: could not determine the form!
 
 How did you retrieve this log? (with master sources? during form edition?)

With the attached reproduction example in Writer. I fixed this warning now
(in master), but it does not fix this bug. In Writer, it copies the column.
Very imperfectly I must say... no properties are copied except the data source.

Which makes me think that we have two separate bugs:

1) The drag'n drop copies instead of moving.

2) In base, nothing happens (the copy fails).

And possibly a third one:

3) The copy is partial.

Your investigations are interesting for bug 2 in the above list.

-- 
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 82300] Shift+F5 = Restore Editing View doesn't work anymore

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82300

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

   What|Removed |Added

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

--- Comment #4 from Matthew Francis fdb...@neosheffield.co.uk ---
Not reproduced on Linux (Ubuntu, 64 bit) and OSX (10.10, 64 bit) with LO
4.3.5.2, 4.4.0.2 and 4.5 master

So, just as with bug 80960, there is some confusion as to the circumstances
which would cause this.

Note that while the initial position on load (as in bug 80960) is affected by
whether you have set your name in the global configuration, when I try it,
Shift+F5 goes to the cursor position saved in the file regardless of whether a
name is set in global configuration.

-- 
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 86147] Saving a form by using save as doesn't work properly in LO Base.

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86147

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

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

fdo#86147: Do not reset r/o mode for SID_SAVETO

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 86147] Saving a form by using save as doesn't work properly in LO Base.

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86147

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

   What|Removed |Added

 Whiteboard|bibisected  |bibisected target:4.5.0

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


[Libreoffice-bugs] [Bug 88576] functions IFNA and IFERROR second argument

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88576

raal r...@post.cz changed:

   What|Removed |Added

Summary|functions IFNA and IFERROR  |functions IFNA and IFERROR
   |second argument; export |second argument
   |IFNA to xlsx|

-- 
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 88576] functions IFNA and IFERROR second argument

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=88576

--- Comment #2 from Winfried Donkers winfrieddonk...@libreoffice.org ---
I will 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 50797] FORMATTING: unexpected behavior when hiding rows

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50797

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
 OS|Linux (All) |All

--- Comment #3 from Beluga todven...@suomi24.fi ---
Image hides ok, if the row height is bigger than the image.

It seems the hiding is achieved by shrinking the height of the image?!

If the cell-anchored image is twice the height of the row, hiding the row will
squish the image to half-height.

Win 7 Pro 64-bit Version: 4.5.0.0.alpha0+
Build ID: 5f6bdce0c0ac687f418821ce328f2987bf340cda
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2015-01-17_01:06:46

Ubuntu 14.10 64-bit Version: 4.5.0.0.alpha0+
Build ID: 0ffa3abc7d6c0437ece30cfb1430d28ffcc9f5c1
TinderBox: Linux-rpm_deb-x86_64@46-TDF-dbg, Branch:master, Time:
2015-01-15_22:47:16

-- 
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 81395] Function RICERCA(x; y; z) doesn't work

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81395

Kevin Suo suokunl...@126.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88581

-- 
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 36740] Function ZÄHLENWENN does not recognize a text with a '+' character

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36740

Kevin Suo suokunl...@126.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88581

-- 
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 75757] remove inheritance to std::map and std::vector

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75757

--- Comment #54 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Michaël Lefèvre committed a patch related to this issue.
It has been pushed to master:

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

fdo#75757 Remove inheritance from std::vector

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 42097] Formula: Search criteria fail with parenthesis and bracket characters

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42097

Kevin Suo suokunl...@126.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88581

-- 
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 67633] EDITING: SEARCH function doesn't find text in cells containing hyperlinks

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67633

Kevin Suo suokunl...@126.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88581

-- 
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 43919] [ breaks vlookup

2015-01-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43919

Kevin Suo suokunl...@126.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=88581

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


  1   2   3   4   >