[Libreoffice-bugs] [Bug 100961] After inserting Fixed Date, and saving in DOC format, the date is not fixed anymore

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100961

Aron Budea  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
   Hardware|x86-64 (AMD64)  |All
Summary|Insert Fixed Date Field |After inserting Fixed Date,
   |Inserts Current Date|and saving in DOC format,
   ||the date is not fixed
   ||anymore
 OS|Windows (All)   |All

--- Comment #7 from Aron Budea  ---
Setting to NEW, as the issue has been reproduced.
So there are two, closely related issues:
-fixed date is not fixed anymore when exported to DOC,
-fixed date can come back in different language when exported to DOCX.

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


[Libreoffice-bugs] [Bug 101217] New: Setting the column width and height should not round the values causing compounding errors

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101217

Bug ID: 101217
   Summary: Setting the column width and height should not round
the values causing compounding errors
   Product: LibreOffice
   Version: 5.1.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: documentfoundat...@nathanshearer.ca

Create a spreadsheet that is 8.5x11 standard letter with no headers or footers.
Set your cell width to exactly 1.0625" (that is exactly 8 columns or 1/8 of
8.5").

Set your cell width again, notice the value is rounded. Add borders and create
a print preview. The compounding errors results in bad alignment of the cells.

Since high resolution printers (600dpi) are common, I should be able to set
arbitrarily precise measurements for my cell width and height. rounding to
1/100 of an inch is arbitrarily limited and the compounding errors are causing
alignment problems.

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


[Libreoffice-bugs] [Bug 101160] When doing Save As, there should be entries with multiple types in "Save as type" dropdown, similar to Open dialog

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101160

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Summary|When doing Save As or Open, |When doing Save As, there
   |I want to be able to see|should be entries with
   |the other filenames with|multiple types in "Save as
   |file extensions |type" dropdown, similar to
   ||Open dialog
 Ever confirmed|0   |1
   Severity|normal  |enhancement

--- Comment #2 from Aron Budea  ---
Reply I received in e-mail (reporter could not log in again with their user):
"Right but I don't want to restrict it to one. I want to see more than one.
When I'm in Writer, I want to be able to see all the files which are word
document type files Writer could open - ie. docx, doc, etc. I don't want to
only see odt files because then I can't just see all the editable files in
there. Right now, with Writer doing what it does, from Open I can't see all the
files and from Save As, I can't see what doc or docx files are already in there
so that I give the file a unique name instead of the same name with an odt
extension. If I happen to give it the same name as an old docx or doc file,
then it will look to me later like I resaved the same file in LibreOffice and I
will accidentally delete the corresponding doc or docx file when it is not the
same file and has been erroneously been given the same error name. That creates
problems for people like me who have a billion doc and docx files and are
gradually re-creating some of them to odt files when they get updated. We are
going to want to get rid of the redundant old versions of the files.

I want Writer to be able to be set so it will show all word document type files
which Writer is capable of understanding and opening.

Similarly, I want Calc to be able to be set so it will show all spreadsheet
document type files which Calc is capable of understanding and opening.

Either that, or I want it to be able to just show me ALL the filenames with all
the extensions so I have the opportunity to open whichever ones I want without
going into a file manager every time."


As I mentioned earlier, in Open dialog the dropdown next to the file name lets
you restrict shown files to types that can be opened by certain applications
(Text documents, Spreadsheets etc.).

Regarding saving, that is a valid point. However, it needs to be considered
that if an entry with multiple types are selected in "Save as type" dropdown,
then saving is a bit tricky, since the type has to be determined based on the
extension, and it has to be thought of what should happen if no extension, or
an invalid extension is given.

All in all, setting to NEW, since it is a reasonable enhancement request.

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


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

2016-07-29 Thread Justin Luth
 writerfilter/source/dmapper/PropertyMap.cxx |   21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)

New commits:
commit 4a6329badc9c8679945d1a1ec225e26e15d7bfd2
Author: Justin Luth 
Date:   Fri Jul 29 22:03:55 2016 +0300

docx - inherit FollowPage before FirstPage

GetPageStyle(bTitlePage == true) will check if the follow exists.
If not, it will create a new style - which defeats the purpose
of inheriting from the previous section if this section didn't define
a new follow.

Change-Id: I235bc9b7bc35c9875295733313a6452ba8896c4f
Reviewed-on: https://gerrit.libreoffice.org/27700
Tested-by: Jenkins 
Reviewed-by: Justin Luth 

diff --git a/writerfilter/source/dmapper/PropertyMap.cxx 
b/writerfilter/source/dmapper/PropertyMap.cxx
index 094e2b4..f36c150 100644
--- a/writerfilter/source/dmapper/PropertyMap.cxx
+++ b/writerfilter/source/dmapper/PropertyMap.cxx
@@ -1126,17 +1126,8 @@ throw ( css::beans::UnknownPropertyException,
 
 // if no new styles have been created for this section, inherit from the 
previous section,
 // otherwise apply this section's settings to the new style.
+// Ensure that FollowPage is inherited first - otherwise GetPageStyle may 
auto-create a follow when checking FirstPage.
 SectionPropertyMap* pLastContext = rDM_Impl.GetLastSectionContext();
-if( pLastContext && m_sFirstPageStyleName.isEmpty() )
-m_sFirstPageStyleName =  pLastContext->GetPageStyleName( 
/*bFirst=*/true );
-else
-{
-HandleMarginsHeaderFooter( /*bFirst=*/true, rDM_Impl );
-GetPageStyle( xPageStyles, xTextFactory, /*bFirst=*/true );
-if( rDM_Impl.IsNewDoc() && m_aFirstPageStyle.is() )
-ApplyProperties_( m_aFirstPageStyle );
-}
-
 if( pLastContext && m_sFollowPageStyleName.isEmpty() )
 m_sFollowPageStyleName = pLastContext->GetPageStyleName();
 else
@@ -1147,6 +1138,16 @@ throw ( css::beans::UnknownPropertyException,
 ApplyProperties_( m_aFollowPageStyle );
 }
 
+if( pLastContext && m_sFirstPageStyleName.isEmpty() )
+m_sFirstPageStyleName =  pLastContext->GetPageStyleName( 
/*bFirst=*/true );
+else
+{
+HandleMarginsHeaderFooter( /*bFirst=*/true, rDM_Impl );
+GetPageStyle( xPageStyles, xTextFactory, /*bFirst=*/true );
+if( rDM_Impl.IsNewDoc() && m_aFirstPageStyle.is() )
+ApplyProperties_( m_aFirstPageStyle );
+}
+
 GetPageStyle( xPageStyles, xTextFactory, /*bFirst=*/true );
 // Chain m_aFollowPageStyle to be after m_aFirstPageStyle
 m_aFirstPageStyle->setPropertyValue( "FollowStyle", 
uno::makeAny(m_sFollowPageStyleName) );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-07-29 Thread Rishabh Kumar
 svx/source/tbxctrls/PaletteManager.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 74a017e27d04be13f072d03cab3a623a6b6d43ae
Author: Rishabh Kumar 
Date:   Sat Jul 30 09:22:45 2016 +0530

Use static_cast for type casting and fix loop variant size

Change-Id: Icc41693730ec8a68e3f3d68adff57fee02b7a689
Reviewed-on: https://gerrit.libreoffice.org/27714
Tested-by: Jenkins 
Reviewed-by: Rishabh Kumar 

diff --git a/svx/source/tbxctrls/PaletteManager.cxx 
b/svx/source/tbxctrls/PaletteManager.cxx
index e14c172..74a87f7 100644
--- a/svx/source/tbxctrls/PaletteManager.cxx
+++ b/svx/source/tbxctrls/PaletteManager.cxx
@@ -228,9 +228,9 @@ void PaletteManager::AddRecentColor(const Color& 
rRecentColor)
 if( maRecentColors.size() > mnMaxRecentColors )
 maRecentColors.pop_back();
 css::uno::Sequence< sal_Int32 > aColorList(maRecentColors.size());
-for(sal_uInt16 i = 0;i < maRecentColors.size();i++)
+for(sal_uInt32 i = 0;i < maRecentColors.size();i++)
 {
-aColorList[i] = (int)maRecentColors[i].GetColor();
+aColorList[i] = static_cast(maRecentColors[i].GetColor());
 }
 std::shared_ptr 
batch(comphelper::ConfigurationChanges::create(m_context));
 officecfg::Office::Common::UserColors::RecentColor::set(aColorList, batch);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101019] Table - changing column width in a table with merged cells is effective only in one row

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101019

Joel Madero  changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #3 from Joel Madero  ---
Hi Heinrich - 

I got your email and have been really busy. Looking at this I'm sorry but I
don't have the time to dig through a bad bug report. A few points:

(1) *simple repro steps should *always* be in the bug itself, not in
attachments

(2) the steps should be really as simple as possible to demonstrate the problem

(3)) Attachments should equally be as simple as possible, no extra words,
superfluous examples, etc

You'll find way better success in terms of getting people to take the time to
triage your bug reports if they are proper. For some good examples see:
https://wiki.documentfoundation.org/QA/BugReport#Good_Reports

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


[Libreoffice-bugs] [Bug 72608] VIEWING: ODT file open from external storage opens in double-page display by default

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72608

--- Comment #10 from haim kilov  ---
The bug is still there, Mac OS 10.8.5, LO 5.1.4.2.

HOWEVER, the bug seems to be NOT present when a totally new file is created
from scratch.

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


[Libreoffice-bugs] [Bug 83513] EDITING: Spellchecker does not underline cyrillic words in English texts

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83513

--- Comment #12 from haim kilov  ---
The bug is still there -- Mac OS 10.8.5, LO 5.1.4.2

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


[Libreoffice-bugs] [Bug 51038] Error while trying to launch English LibreOffice installer

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51038

Witold Rakoczy  changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #12 from Witold Rakoczy  ---
(In reply to Buovjaga from comment #11)
> (In reply to Witold Rakoczy from comment #10)
> > According to suggestion in the Comment 6 below, I change status to
> > UNCONFIRMED, just to try to catch QA attention :-)
> 
> Well, you have weird habits..

Why?

In Comment 6 (above, not below of course) there's the following statement:
"If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed."

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


[Libreoffice-bugs] [Bug 61377] Lost characters in PDF rendering of Russian and Latvian with Times font

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61377

haim kilov  changed:

   What|Removed |Added

  Attachment #75434|0   |1
is obsolete||

--- Comment #6 from haim kilov  ---
Created attachment 126480
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126480=edit
Ugly rendering in Times

The rendering is now correct in both Russian and Latvian (nothing is missing),
BUT the PDF rendering using Times in Russian is still ugly. Please see
attachment.

Mac OS 10.8.5, LO 5.1.4.2.

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


[Libreoffice-bugs] [Bug 101216] [META] Comment bugs and enhancements

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101216

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Depends on||41921


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=41921
[Bug 41921] comment is hidden by selection block when copy/pasting
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 41921] comment is hidden by selection block when copy/pasting

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41921

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 79792] EDITING: comment bubble gets cropped when cell is selected

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79792

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101216] [META] Comment bugs and enhancements

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101216

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Depends on||79792


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=79792
[Bug 79792] EDITING: comment bubble gets cropped when cell is selected
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101215] FILESAVE: Comment formatting not saved on resave

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101215

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90577] Calc: Context menu of visible comments should give option to remove & hide comment

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90577

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83832] Tools options setting Printing Comments effecting pdf export margin setting

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83832

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 98040] Hovering over hidden comment does not display properly on Linux

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98040

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101216] [META] Comment bugs and enhancements

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101216

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 101214] Format All Comments doesnt function correctly

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101214

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84837] CALC: Add option in View menu to hide and unhide comments

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84837

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83575] COMMENT: comment does not automatically remove itself when the content becomes empty.

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83575

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101216] New: [META] Comment bugs and enhancements

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101216

Bug ID: 101216
   Summary: [META] Comment bugs and enhancements
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Depends on: 83575, 83832, 84837, 90577, 98040, 101214, 101215

Lets put them all in one place, shall we. :D


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83575
[Bug 83575] COMMENT: comment does not automatically remove itself when the
content becomes empty.
https://bugs.documentfoundation.org/show_bug.cgi?id=83832
[Bug 83832] Tools options setting Printing Comments effecting pdf export margin
setting
https://bugs.documentfoundation.org/show_bug.cgi?id=84837
[Bug 84837] CALC: Add option in View menu to hide and unhide comments
https://bugs.documentfoundation.org/show_bug.cgi?id=90577
[Bug 90577] Calc: Context menu of visible comments should give option to remove
& hide comment
https://bugs.documentfoundation.org/show_bug.cgi?id=98040
[Bug 98040] Hovering over hidden comment does not display properly on Linux
https://bugs.documentfoundation.org/show_bug.cgi?id=101214
[Bug 101214] Format All Comments doesnt function correctly
https://bugs.documentfoundation.org/show_bug.cgi?id=101215
[Bug 101215] FILESAVE: Comment formatting not saved on resave
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 90577] Calc: Context menu of visible comments should give option to remove & hide comment

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90577

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||101216


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Comment bugs and enhancements
-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 101215] New: FILESAVE: Comment formatting not saved on resave

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101215

Bug ID: 101215
   Summary: FILESAVE: Comment formatting not saved on resave
   Product: LibreOffice
   Version: 5.3.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com

Steps:
1) Open a document that already has comments formatted
2) Add another comment and 'Format All Comments' with a different font name and
size
3) Save and Reopen
4) Old comments dont have the new font name and size

Version: 5.3.0.0.alpha0+
Build ID: d2e4753c3f511cfc6b2932ce60d0bc2e09296f9f
CPU Threads: 2; OS Version: Linux 3.19; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-07-26_17:32:37
Locale: en-US (en_US.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 101214] New: Format All Comments doesnt function correctly

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101214

Bug ID: 101214
   Summary: Format All Comments doesnt function correctly
   Product: LibreOffice
   Version: 5.3.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com

Steps:
1) Open a document
2) Add a comment
3) Click down arrow in comment > Format all comments
4) Change font name and size (e.g. arial 9pt)
5) Add another comment
6) Deselect the comment and then click the down arrow in that comment
7) Notice that it selected the changed font name and size from the first
comment
8) Click OK
9) It doesnt change the second comment's font

Version: 5.3.0.0.alpha0+
Build ID: d2e4753c3f511cfc6b2932ce60d0bc2e09296f9f
CPU Threads: 2; OS Version: Linux 3.19; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-07-26_17:32:37
Locale: en-US (en_US.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 101165] Crashing on a filter selection, every time

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101165

--- Comment #3 from Tim Richardson  ---
Just in case it wasn't clear what I meant, here's a short screen recording.

https://youtu.be/TVeglW8gxhU

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


[Libreoffice-bugs] [Bug 95092] convert the ucalc performance test to an in-build performance test

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95092

Markus Mohrhard  changed:

   What|Removed |Added

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

--- Comment #3 from Markus Mohrhard  ---
I think I removed it already.

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


[Libreoffice-bugs] [Bug 101213] New Upgrade very slow in calc

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101213

mar...@gmx.us changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
Version|unspecified |5.1.5.1 rc

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


[Libreoffice-bugs] [Bug 101213] New: New Upgrade very slow in calc

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101213

Bug ID: 101213
   Summary: New Upgrade very slow in calc
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mar...@gmx.us

I just upgraded to 5.1.5.2 using Linux MInt 17.3 Rosa.
This is the first upgrade that is much slower (In all respects)than previous
versions. Screen rendering is slow as well as recalculating the spreadsheet's
downloaded and inputted data.
I'm a very big fan of LibreOffice and hope this problem can be corrected. It
has never happened before.
Thank you in advance.

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


[ANN] LibreOffice 5.1.5 RC2 available

2016-07-29 Thread Christian Lohmaier
Dear Community,

The Document Foundation is pleased to announce the second release
candidate of LibreOffice 5.1.5. The upcoming 5.1.5 will be the fifth
bugfix release of our fresh 5.1 line. Please be aware that LibreOffice
5.1.5 RC2 has not been flagged as ready for production use yet,
however feel free to give it a try instead of 5.0.6 or 5.1.4.

A work-in-progress list of new features in LibreOffice 5.1 can be
found at https://wiki.documentfoundation.org/ReleaseNotes/5.1

The release is available for Windows, Linux and Mac OS X from our QA
builds download page at

  http://www.libreoffice.org/download/pre-releases/

Windows builds are also provided in 64bit version.

Developers and QA might also be interested in the symbol server for
windows debug information (see
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg
for details)

Should you find bugs, please report them to our Bugzilla:

  https://bugs.documentfoundation.org

A good way to assess the release candidate quality is to run some
specific manual tests on it, our TCM wiki page has more details:

 
http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

For other ways to get involved with this exciting project - you can
e.g. contribute code:

  http://www.libreoffice.org/community/developers/

translate LibreOffice to your language:

  http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

or help with funding our operations:

  http://donate.libreoffice.org/

A list of known issues and fixed bugs compared to 5.1.5 rc1 is
available from our wiki:

  http://wiki.documentfoundation.org/Releases/5.1.5/RC2

Let us close again with a BIG Thank You! to all of you having
contributed to the LibreOffice project - this release would not have
been possible without your help.

On behalf of the Community,

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


[Libreoffice-qa] [ANN] LibreOffice 5.1.5 RC2 available

2016-07-29 Thread Christian Lohmaier
Dear Community,

The Document Foundation is pleased to announce the second release
candidate of LibreOffice 5.1.5. The upcoming 5.1.5 will be the fifth
bugfix release of our fresh 5.1 line. Please be aware that LibreOffice
5.1.5 RC2 has not been flagged as ready for production use yet,
however feel free to give it a try instead of 5.0.6 or 5.1.4.

A work-in-progress list of new features in LibreOffice 5.1 can be
found at https://wiki.documentfoundation.org/ReleaseNotes/5.1

The release is available for Windows, Linux and Mac OS X from our QA
builds download page at

  http://www.libreoffice.org/download/pre-releases/

Windows builds are also provided in 64bit version.

Developers and QA might also be interested in the symbol server for
windows debug information (see
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg
for details)

Should you find bugs, please report them to our Bugzilla:

  https://bugs.documentfoundation.org

A good way to assess the release candidate quality is to run some
specific manual tests on it, our TCM wiki page has more details:

 
http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

For other ways to get involved with this exciting project - you can
e.g. contribute code:

  http://www.libreoffice.org/community/developers/

translate LibreOffice to your language:

  http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

or help with funding our operations:

  http://donate.libreoffice.org/

A list of known issues and fixed bugs compared to 5.1.5 rc1 is
available from our wiki:

  http://wiki.documentfoundation.org/Releases/5.1.5/RC2

Let us close again with a BIG Thank You! to all of you having
contributed to the LibreOffice project - this release would not have
been possible without your help.

On behalf of the Community,

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

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

2016-07-29 Thread Arul Michael
 sc/source/core/data/table3.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 88a5f7d56f9e6040450fb959ce8d091a50edcfde
Author: Arul Michael 
Date:   Fri Jul 29 17:14:46 2016 +0530

tdf#88793 EDITING, subtotals don't apply formatting

Change-Id: I29f33287715ccdee758c1e17dfabad1505049e1a
Reviewed-on: https://gerrit.libreoffice.org/27680
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 

diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx
index efe0c27..6da1c7c 100644
--- a/sc/source/core/data/table3.cxx
+++ b/sc/source/core/data/table3.cxx
@@ -2142,9 +2142,10 @@ bool ScTable::DoSubTotals( ScSubTotalParam& rParam )
 aArr.AddOpCode( ocStop );
 ScFormulaCell* pCell = new ScFormulaCell(
 pDocument, ScAddress(nResCols[nResult], iEntry->nDestRow, 
nTab), aArr);
+if ( rParam.bIncludePattern )
+pCell->SetNeedNumberFormat(true);
 
 SetFormulaCell(nResCols[nResult], iEntry->nDestRow, pCell);
-
 if ( nResCols[nResult] != nGroupCol[iEntry->nGroupNo] )
 {
 ApplyStyle( nResCols[nResult], iEntry->nDestRow, *pStyle );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101212] New: Compression and cropping of images problematic

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101212

Bug ID: 101212
   Summary: Compression and cropping of images problematic
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: thms.mae...@gmail.com

Created attachment 126479
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126479=edit
File with pictures & comments describing operations & results

There are several bugs in the image handlers for cropping and compression,
especially when doing both, e.g. compressing a cropped image with downsampling.

Steps to reproduce & comments: see attachment = LO Writer .odt file,
corresponding sections:
1) Original PNG image, 254 dpi

2) Original image (1) converted to JPEG without downsampling: works OK, only
cosmetic
bug (original size displayed incorrectly in compression dialog box)

3) Original image (1) converted to JPEG with downsampling to 150 dpi: works
apparently OK, but, in addition to bug seen in (2), the "original size" of the
image is very small, whereas it should not be changed (only the resolution
should be reduced).

4) Original image (1), cropped and converted 
to JPEG without downsampling: works OK, as (2), but, in addition to incorrect
original size, indicated display resolution in compression dialog is incorrect.

5) Cropped image from (4), now compressed with downsampling to 150 dpi: strange
behaviour…

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


[Libreoffice-bugs] [Bug 101211] New: navigator action missing from customize dialog

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101211

Bug ID: 101211
   Summary: navigator action missing from customize dialog
   Product: LibreOffice
   Version: 4.2.3.3 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jasch...@wiseware.com

In the navigator dialog there are two actions (represented by: < and > and with
tooltips "Previous Page" and "Next Page"). When I click on one of these, it
puts the top of the next or previous page at the top of the view port and
that's exactly what I think Next Page and Previous Page should do. However,
this is NOT what I get when I press PgDn or PgUp on my standard windows
keyboard. Pressing either of those keys scrolls the visible text (up or down
depending on which key you pressed) for a distance roughly equal to the height
of the viewport and it moves the insertion point. "OK, I said" (when I
discovered this problem some years ago", "I'll customize my keyboard to do what
I want done then I press PgUp or PgDn. I find, in the list of functions I can
assign the PgUp and PgDn keys two sets:

Next Page and Previous Page

and

To Begin of Next Page and  To Begin of Previous Page.

The first pair does the scrolling action described above.  The second pair
moves the insertion point to the first character of the first line of the next
or previous page, but it does not put that line at the top of the view port.
The only way to achieve that (and as I said before, that is what I want to
achieve) is to use the buttons in the tiny Navigator dialog. So I conclude that
the action those buttons perform cannot be assigned to the PgUp or PgDn keys on
a standard keyboard.  Why not?  Why won't you let me do what I want to do here?
Plainly the code for the actions in question is already written and included in
the program for a very long time. It would be a trivial thing to add the
actions in question to the "Functions" list in the customize keyboard dialog,
but I raised this question for the first time perhaps five or six years ago and
nothing has ever come of it. Why can't we get this fixed. Thanks.

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


[Libreoffice-bugs] [Bug 73063] FILESAVE: LibreOffice Calc does not remember locale settings when saving as .xls or .xlsx

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73063

--- Comment #4 from Bartosz  ---
Created attachment 126478
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126478=edit
Example of .xlsx file with Serbian date (cyrilic), created with MS Excel365. It
is working correctly with Excel but not with LO

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


[Libreoffice-bugs] [Bug 73063] FILESAVE: LibreOffice Calc does not remember locale settings when saving as .xls or .xlsx

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73063

Bartosz  changed:

   What|Removed |Added

Summary|FILESAVE: LibreOffice Calc  |FILESAVE: LibreOffice Calc
   |does not remember locale|does not remember locale
   |settings when saving as |settings when saving as
   |.xls|.xls or .xlsx

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


[Libreoffice-bugs] [Bug 101210] LO52rc4 OSX: LangPack cannot install, says rc4 is not a valid install

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101210

--- Comment #1 from mi...@filmsi.net ---
The main en-US version installs fine and works, if run.
The lang-pack install however says it is not a valid install and does not want
to install the lang-pack.

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


[Libreoffice-bugs] [Bug 101210] New: LO52rc4 OSX: LangPack cannot install, says rc4 is not a valid install

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101210

Bug ID: 101210
   Summary: LO52rc4 OSX: LangPack cannot install, says rc4 is not
a valid install
   Product: LibreOffice
   Version: 5.2.0.3 rc
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mi...@filmsi.net

I am not sure what this is, it worked on rc3.
Tried with Slovenian langpack on OSX 10.11.5.

Please, test, this is a stopper, if it is true.

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


[Libreoffice-bugs] [Bug 101204] VDB function: Calc and Excel produce different results; both wrong

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101204

--- Comment #2 from JoNi  ---
workaround:
fill optional values with default values
VDB(10;2;10;7.25;7.75;2;1) returns 485,76
like excel
VDB(10;2;10;7.25;7.75;2;TRUE) returns 485,76

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


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

2016-07-29 Thread Mohammed Abdul Azeem
 sax/source/fastparser/fastparser.cxx |   50 +--
 1 file changed, 42 insertions(+), 8 deletions(-)

New commits:
commit 916a11d26cb74da9dd534e07b35737def6cbf54a
Author: Mohammed Abdul Azeem 
Date:   Thu Jul 28 23:10:12 2016 +0530

GSoC - moving FastAttributeList::clear to consumer thread:

this shares the load of clearing the attributes list with
the consumer when producer is busy.

Change-Id: I6e89858703c7af9c30b2d99fd6825dc81290b488
Reviewed-on: https://gerrit.libreoffice.org/27649
Tested-by: Jenkins 
Reviewed-by: Michael Meeks 

diff --git a/sax/source/fastparser/fastparser.cxx 
b/sax/source/fastparser/fastparser.cxx
index ab324a1..8fa9223 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -70,7 +70,11 @@ struct Entity;
 typedef std::unordered_map< OUString, sal_Int32,
 OUStringHash > NamespaceMap;
 
-typedef std::vector EventList;
+struct EventList
+{
+std::vector maEvents;
+bool mbIsAttributesEmpty;
+};
 
 enum CallbackType { INVALID, START_ELEMENT, END_ELEMENT, CHARACTERS, DONE, 
EXCEPTION };
 
@@ -531,7 +535,7 @@ EventList* Entity::getEventList()
 if (!mpProducedEvents)
 {
 mpProducedEvents = new EventList();
-mpProducedEvents->resize(mnEventListSize);
+mpProducedEvents->maEvents.resize(mnEventListSize);
 mnProducedEventsSize = 0;
 }
 }
@@ -544,7 +548,7 @@ Event& Entity::getEvent( CallbackType aType )
 return maSharedEvent;
 
 EventList* pEventList = getEventList();
-Event& rEvent = (*pEventList)[mnProducedEventsSize++];
+Event& rEvent = pEventList->maEvents[mnProducedEventsSize++];
 rEvent.maType = aType;
 return rEvent;
 }
@@ -783,6 +787,24 @@ void FastSaxParserImpl::parseStream(const InputSource& 
maStructSource)
 done = true;
 
 aGuard.reset(); // lock
+
+if ( rEntity.maPendingEvents.size() <= 
rEntity.mnEventLowWater )
+{
+aGuard.clear();
+for (auto aEventIt = pEventList->maEvents.begin();
+aEventIt != pEventList->maEvents.end(); ++aEventIt)
+{
+if (aEventIt->mxAttributes.is())
+{
+aEventIt->mxAttributes->clear();
+if( rEntity.mxNamespaceHandler.is() )
+aEventIt->mxDeclAttributes->clear();
+}
+pEventList->mbIsAttributesEmpty = true;
+}
+aGuard.reset();
+}
+
 rEntity.maUsedEvents.push(pEventList);
 }
 } while (!done);
@@ -926,8 +948,9 @@ void FastSaxParserImpl::produce( bool bForceFlush )
 bool FastSaxParserImpl::consume(EventList *pEventList)
 {
 Entity& rEntity = getEntity();
-for (EventList::iterator aEventIt = pEventList->begin();
- aEventIt != pEventList->end(); ++aEventIt)
+pEventList->mbIsAttributesEmpty = false;
+for (auto aEventIt = pEventList->maEvents.begin();
+ aEventIt != pEventList->maEvents.end(); ++aEventIt)
 {
 switch ((*aEventIt).maType)
 {
@@ -1042,17 +1065,28 @@ void FastSaxParserImpl::callbackStartElement(const 
xmlChar *localName , const xm
 }
 
 // create attribute map and process namespace instructions
-Event& rEvent = getEntity().getEvent( START_ELEMENT );
+Event& rEvent = rEntity.getEvent( START_ELEMENT );
+bool bIsAttributesEmpty = false;
+if ( rEntity.mbEnableThreads )
+bIsAttributesEmpty = rEntity.getEventList()->mbIsAttributesEmpty;
+
 if (rEvent.mxAttributes.is())
-rEvent.mxAttributes->clear();
+{
+if( !bIsAttributesEmpty )
+rEvent.mxAttributes->clear();
+}
 else
 rEvent.mxAttributes.set(
 new FastAttributeList( rEntity.mxTokenHandler,
rEntity.mpTokenHandler ) );
+
 if( rEntity.mxNamespaceHandler.is() )
 {
 if (rEvent.mxDeclAttributes.is())
-rEvent.mxDeclAttributes->clear();
+{
+if( !bIsAttributesEmpty )
+rEvent.mxDeclAttributes->clear();
+}
 else
 rEvent.mxDeclAttributes.set(
 new FastAttributeList( rEntity.mxTokenHandler,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 94327] UI: Apply current font substitutions

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94327

--- Comment #9 from Heiko Tietze  ---
(In reply to shunesburg69 from comment #8)
> Created attachment 126477 [details]
> Mockup for alert message

Isn't this control, called 'info panel' in LibO, a little bit too much warning?
And actually the info panel is usually not interactive.

But of course we need better information (talked about the issue today in the
UX meeting).

-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 94327] UI: Apply current font substitutions

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94327

--- Comment #9 from Heiko Tietze  ---
(In reply to shunesburg69 from comment #8)
> Created attachment 126477 [details]
> Mockup for alert message

Isn't this control, called 'info panel' in LibO, a little bit too much warning?
And actually the info panel is usually not interactive.

But of course we need better information (talked about the issue today in the
UX meeting).

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


[Libreoffice-bugs] [Bug 101181] Support the OOXML Glow Effect for Pictures and Shapes

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101181

--- Comment #2 from Luke  ---
Any improvement in MSO interoperability is a win.

I singled out this effect, because I've encountered it in several documents,
one where a diagram was unreadable because of our lack of support. Of the other
effects that you listed, 3/8 are shadow where we already have excellent
support. We do our best to simulate them, and as long as no changes are made we
pass the preserved OOXML values on export.

We don’t’ need to fully support this effect, just like we do not fully support
all of the OOXML shadow parameters. However rendering something, even if it’s
just a centered shadow, is better than what we do now.

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


[Libreoffice-bugs] [Bug 101209] Calc ver 5.1.5.2

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101209

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Please test changing the option for Use OpenGL in:
Menu/Tools/Options/LibreOffice/View

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


[Libreoffice-bugs] [Bug 101195] Calc cannot open large xls file with many images

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101195

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
No issue, Win10x64
Version: 5.1.5.2 (x64)
Build ID: 7a864d8825610a8c07cfc3bc01dd4fce6a9447e5
CPU Threads: 1; OS Version: Windows 6.19; UI Render: default; 
Locale: es-ES (es_ES); Calc: CL

Please test the memory set in Menu/Tools/LibreOffice/View - Memory cache, it's
not less than 48 Mb, default value 64 Mb.

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


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

2016-07-29 Thread Muhammet Kara
 sc/inc/sc.hrc  |   14 -
 sc/source/ui/src/scstring.src  |   61 +++--
 sc/source/ui/unoobj/docuno.cxx |   25 ++--
 3 files changed, 70 insertions(+), 30 deletions(-)

New commits:
commit a3e57b44b26db382b7fe3004aa0211e26c07e6db
Author: Muhammet Kara 
Date:   Fri Jul 29 17:28:47 2016 +0300

tdf#91665 l10n: Replace string list by separate strings in ScPrintUIOptions

String lists are sometimes (mis)used to group unrelated items;
the advantage(?) being that only one identifier needs to be defined
for the whole group. The items are then referenced by index,
which is rather fragile when they are used in different parts of UI.
String lists like this one should be replaced by separate strings.

Change-Id: I78a2c8d1a8e5b1fed6a2d0afefd96ec126bb79af
Reviewed-on: https://gerrit.libreoffice.org/27689
Tested-by: Jenkins 
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 

diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc
index ba1ccb4..f413f7f 100644
--- a/sc/inc/sc.hrc
+++ b/sc/inc/sc.hrc
@@ -826,6 +826,18 @@
 #define SCSTR_AUTHOR(STR_START + 113)
 #define SCSTR_UNIT  (STR_START + 114)
 
+// print options
+#define SCSTR_PRINTOPT_PAGES(STR_START + 120)
+#define SCSTR_PRINTOPT_SUPPRESSEMPTY(STR_START + 121)
+#define SCSTR_PRINTOPT_PRNTCONTENT  (STR_START + 122)
+#define SCSTR_PRINTOPT_ALLSHEETS(STR_START + 123)
+#define SCSTR_PRINTOPT_SELECTEDSHEETS   (STR_START + 124)
+#define SCSTR_PRINTOPT_SELECTEDCELLS(STR_START + 125)
+#define SCSTR_PRINTOPT_FROMWHICH(STR_START + 126)
+#define SCSTR_PRINTOPT_ALLPAGES (STR_START + 127)
+#define SCSTR_PRINTOPT_PAGES_   (STR_START + 128)
+#define SCSTR_PRINTOPT_PRODNAME (STR_START + 129)
+
 // accessibility
 
 // CSV import
@@ -886,7 +898,7 @@
 #define SCSTR_FORMULA_AUTOCORRECTION(STR_START + 214)
 
 #define SCSTR_RENAMEOBJECT  (STR_START + 215)
-#define SCSTR_PRINT_OPTIONS (STR_START + 216)
+//free slot
 #define SCSTR_WARN_ME_IN_FUTURE_CHECK   (STR_START + 217)
 
 // header of search result dialog
diff --git a/sc/source/ui/src/scstring.src b/sc/source/ui/src/scstring.src
index 2da99e2..fab1ebd 100644
--- a/sc/source/ui/src/scstring.src
+++ b/sc/source/ui/src/scstring.src
@@ -703,21 +703,54 @@ String SCSTR_MOREBTN_FEWEROPTIONS
 Text [ en-US ] = "Fewer ~Options";
 };
 
-StringArray SCSTR_PRINT_OPTIONS
+String SCSTR_PRINTOPT_PAGES
 {
-ItemList [en-US] =
-{
-< "Pages"; >;
-< "~Suppress output of empty pages"; >;
-< "Print content"; >;
-< "~All sheets"; >;
-< "~Selected sheets"; >;
-< "Selected cells"; >;
-< "From which print"; >;
-< "All ~pages"; >;
-< "Pa~ges"; >;
-< "%PRODUCTNAME %s"; >;
-};
+Text [ en-US ] = "Pages";
+};
+
+String SCSTR_PRINTOPT_SUPPRESSEMPTY
+{
+Text [ en-US ] = "~Suppress output of empty pages";
+};
+
+String SCSTR_PRINTOPT_PRNTCONTENT
+{
+Text [ en-US ] = "Print content";
+};
+
+String SCSTR_PRINTOPT_ALLSHEETS
+{
+Text [ en-US ] = "~All sheets";
+};
+
+String SCSTR_PRINTOPT_SELECTEDSHEETS
+{
+Text [ en-US ] = "~Selected sheets";
+};
+
+String SCSTR_PRINTOPT_SELECTEDCELLS
+{
+Text [ en-US ] = "Selected cells";
+};
+
+String SCSTR_PRINTOPT_FROMWHICH
+{
+Text [ en-US ] = "From which print";
+};
+
+String SCSTR_PRINTOPT_ALLPAGES
+{
+Text [ en-US ] = "All ~pages";
+};
+
+String SCSTR_PRINTOPT_PAGES_
+{
+Text [ en-US ] = "Pa~ges";
+};
+
+String SCSTR_PRINTOPT_PRODNAME
+{
+Text [ en-US ] = "%PRODUCTNAME %s";
 };
 
 String SCSTR_WARN_ME_IN_FUTURE_CHECK
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx
index 4ce35d1..442ad4c 100644
--- a/sc/source/ui/unoobj/docuno.cxx
+++ b/sc/source/ui/unoobj/docuno.cxx
@@ -242,11 +242,6 @@ ScPrintUIOptions::ScPrintUIOptions()
 sal_Int32 nContent = rPrintOpt.GetAllSheets() ? 0 : 1;
 bool bSuppress = rPrintOpt.GetSkipEmpty();
 
-ResStringArray aStrings( ScResId( SCSTR_PRINT_OPTIONS ) );
-OSL_ENSURE( aStrings.Count() >= 10, "resource incomplete" );
-if( aStrings.Count() < 10 ) // bad resource ?
-return;
-
 sal_Int32 nNumProps= 9, nIdx = 0;
 
 m_aUIProperties.resize(nNumProps);
@@ -257,34 +252,34 @@ ScPrintUIOptions::ScPrintUIOptions()
 
 // create Section for spreadsheet (results in an extra tab page in dialog)
 SvtModuleOptions aOpt;
-OUString aAppGroupname( aStrings.GetString( 9 ) );
+OUString aAppGroupname( SC_RESSTR( SCSTR_PRINTOPT_PRODNAME ) );
 aAppGroupname = aAppGroupname.replaceFirst( "%s", aOpt.GetModuleName( 
SvtModuleOptions::EModule::CALC ) );
 m_aUIProperties[nIdx++].Value = setGroupControlOpt("tabcontrol-page2", 
aAppGroupname, OUString());
 
 // show subgroup for pages
-

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

2016-07-29 Thread Giuseppe Castagno
 ucb/source/ucp/webdav-neon/DAVTypes.cxx  |   29 ++
 ucb/source/ucp/webdav-neon/DAVTypes.hxx  |   15 +++
 ucb/source/ucp/webdav-neon/webdavcontent.cxx |   54 +++
 3 files changed, 83 insertions(+), 15 deletions(-)

New commits:
commit 7f32fddb445ef1c1e17f9028f252c21dd83e03af
Author: Giuseppe Castagno 
Date:   Tue Jul 26 11:36:24 2016 +0200

tdf#101094 (19) OPTIONS: Add mechanism to manage not found Web URL: GET

Change-Id: Ie3da55d230631c50968b00cdea176f30051abf37
Reviewed-on: https://gerrit.libreoffice.org/27699
Tested-by: Jenkins 
Reviewed-by: Giuseppe Castagno 

diff --git a/ucb/source/ucp/webdav-neon/DAVTypes.cxx 
b/ucb/source/ucp/webdav-neon/DAVTypes.cxx
index 2f4feb3..8613bda 100644
--- a/ucb/source/ucp/webdav-neon/DAVTypes.cxx
+++ b/ucb/source/ucp/webdav-neon/DAVTypes.cxx
@@ -145,4 +145,33 @@ void DAVOptionsCache::addDAVOptions( DAVOptions & 
rDAVOptions, const sal_uInt32
 }
 
 
+bool DAVOptionsCache::isResourceFound( const OUString & rURL )
+{
+osl::MutexGuard aGuard( m_aMutex );
+OUString aEncodedUrl( ucb_impl::urihelper::encodeURI( NeonUri::unescape( 
rURL ) ) );
+normalizeURLLastChar( aEncodedUrl );
+
+DAVOptionsMap::iterator it;
+it = m_aTheCache.find( aEncodedUrl );
+if ( it != m_aTheCache.end() )
+{
+// first check for stale
+TimeValue t1;
+osl_getSystemTime(  );
+if( (*it).second.getStaleTime() < t1.Seconds )
+{
+m_aTheCache.erase( it );
+return true; // to force again OPTIONS method
+}
+
+// check if the resource was present on server
+return (*it).second.isResourceFound();
+}
+// this value is needed because some web server don't implement
+// OPTIONS method, so the resource is considered found,
+// until detected otherwise
+return true;
+}
+
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s 
cinkeys+=0=break: */
diff --git a/ucb/source/ucp/webdav-neon/DAVTypes.hxx 
b/ucb/source/ucp/webdav-neon/DAVTypes.hxx
index 6dbdd20..b1a97c2 100644
--- a/ucb/source/ucp/webdav-neon/DAVTypes.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVTypes.hxx
@@ -158,6 +158,21 @@ namespace webdav_ucp
 void removeDAVOptions( const OUString & rURL );
 void addDAVOptions( DAVOptions & rDAVOptions, const sal_uInt32 
nLifeTime );
 
+/** Check if the DAV options cached value was found
+by the last OPTIONS method call.
+If the cached value is found stale, it is removed.
+
+@param OUString
+   the resource URL
+
+@return bool
+true if resource was found or if the Web resource DAV 
options
+are not present (meaning the resource should be checked for
+presence anyway)
+false if resource was not found
+*/
+bool isResourceFound( const OUString & rURL );
+
 private:
 
 /// remove the last '/' in aUrl, if it exists
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx 
b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index 01eba4e..902bc76 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -2126,26 +2126,50 @@ uno::Any Content::open(
 DAVResource aResource;
 std::vector< OUString > aHeaders;
 
-uno::Reference< io::XInputStream > xIn
-= xResAccess->GET( aHeaders, aResource, xEnv );
-m_bDidGetOrHead = true;
-
+// check if the resource was present on the server
+if( aStaticDAVOptionsCache.isResourceFound( aTargetURL ) )
 {
-osl::MutexGuard aGuard( m_aMutex );
+uno::Reference< io::XInputStream > xIn
+= xResAccess->GET( aHeaders, aResource, xEnv );
+m_bDidGetOrHead = true;
 
-// cache headers.
-if ( !m_xCachedProps.get())
-m_xCachedProps.reset(
-new CachableContentProperties( 
ContentProperties( aResource ) ) );
-else
-m_xCachedProps->addProperties(
-aResource.properties );
+{
+osl::MutexGuard aGuard( m_aMutex );
 
-m_xResAccess.reset(
-new DAVResourceAccess( *xResAccess.get() ) );
+// cache headers.
+if ( !m_xCachedProps.get())
+m_xCachedProps.reset(
+new CachableContentProperties( 
ContentProperties( 

[Libreoffice-bugs] [Bug 91665] l10n: replace string lists that are groups of unrelated items by separate strings

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91665

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:5.3.0

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


[Libreoffice-bugs] [Bug 91665] l10n: replace string lists that are groups of unrelated items by separate strings

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91665

--- Comment #9 from Commit Notification 
 ---
Muhammet Kara committed a patch related to this issue.
It has been pushed to "master":

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

tdf#91665 l10n: Replace string list by separate strings in ScPrintUIOptions

It will be available in 5.3.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2016-07-29 Thread Giuseppe Castagno
 ucb/source/ucp/webdav-neon/webdavcontent.cxx |   32 +++
 1 file changed, 32 insertions(+)

New commits:
commit a5fc27e0575eab115de3714ae07fcac7481f4daf
Author: Giuseppe Castagno 
Date:   Mon Jul 25 12:56:27 2016 +0200

tdf#101094 (18) OPTIONS: Update OPTIONS cache lifetime if not found

Change-Id: I1b37bba50cd41ab5eeb960927148cf6b005f3fd4
Reviewed-on: https://gerrit.libreoffice.org/27698
Tested-by: Jenkins 
Reviewed-by: Giuseppe Castagno 

diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx 
b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index b515ea0..01eba4e 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -2109,6 +2109,7 @@ uno::Any Content::open(
 if ( xDataSink.is() )
 {
 // PULL: wait for client read
+OUString aTargetURL =  m_xIdentifier->getContentIdentifier();
 try
 {
 std::unique_ptr< DAVResourceAccess > xResAccess;
@@ -2148,6 +2149,21 @@ uno::Any Content::open(
 }
 catch ( DAVException const & e )
 {
+// check if error is SC_NOT_FOUND
+// if URL resource not found, set the corresponding 
resource
+// element in option cache and update the cache lifetime 
accordingly
+if( e.getStatus() == SC_NOT_FOUND )
+{
+DAVOptions aDAVOptions;
+if( aStaticDAVOptionsCache.getDAVOptions( aTargetURL, 
aDAVOptions ) )
+{
+// get redirected url
+aDAVOptions.setResourceFound( false );
+aStaticDAVOptionsCache.addDAVOptions( aDAVOptions,
+  
m_nOptsCacheLifeNotFound );
+}
+}
+
 cancelCommandExecution( e, xEnv );
 // Unreachable
 }
@@ -3688,6 +3704,22 @@ Content::ResourceType Content::getResourceType(
 *networkAccessAllowed = *networkAccessAllowed
 && shouldAccessNetworkAfterException(e);
 }
+if ( e.getStatus() == SC_NOT_FOUND )
+{
+// arrives here if OPTIONS is still cached for a resource 
prevously available
+// operate on the OPTIONS cache:
+// if OPTIONS was not found, do nothing
+// else OPTIONS returned on a resource not existent  
(example a server that allows lock on null resource) set
+// not found and adjust lifetime accordingly
+DAVOptions aDAVOptionsInner;
+if( aStaticDAVOptionsCache.getDAVOptions( rURL, 
aDAVOptionsInner ) )
+{
+// get redirected url
+aDAVOptionsInner.setResourceFound( false );
+aStaticDAVOptionsCache.addDAVOptions( aDAVOptionsInner,
+  
m_nOptsCacheLifeNotFound );
+}
+}
 // if the two net events below happen, something
 // is going on to the connection so break the command flow
 if ( ( e.getError() == DAVException::DAV_HTTP_TIMEOUT ) ||
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-07-29 Thread Henry Castro
 sc/qa/unit/tiledrendering/tiledrendering.cxx |   43 +++
 sc/sdi/scalc.sdi |4 +-
 sc/source/ui/view/cellsh3.cxx|   31 ++-
 3 files changed, 74 insertions(+), 4 deletions(-)

New commits:
commit ff051403381ca85724fec4f7bd2363141fa675f6
Author: Henry Castro 
Date:   Fri Jul 29 15:00:49 2016 -0400

sc lok: add parameters for column/row resize

Change-Id: I189178b6060c229dd8d93b6fdee7d4d81354ced5
Reviewed-on: https://gerrit.libreoffice.org/27701
Tested-by: Jenkins 
Reviewed-by: Henry Castro 

diff --git a/sc/qa/unit/tiledrendering/tiledrendering.cxx 
b/sc/qa/unit/tiledrendering/tiledrendering.cxx
index 314febc..093fa18 100644
--- a/sc/qa/unit/tiledrendering/tiledrendering.cxx
+++ b/sc/qa/unit/tiledrendering/tiledrendering.cxx
@@ -60,6 +60,7 @@ public:
 void testTextViewSelection();
 void testDocumentSizeChanged();
 void testViewLock();
+void testColRowResize();
 
 CPPUNIT_TEST_SUITE(ScTiledRenderingTest);
 CPPUNIT_TEST(testRowColumnSelections);
@@ -71,6 +72,7 @@ public:
 CPPUNIT_TEST(testTextViewSelection);
 CPPUNIT_TEST(testDocumentSizeChanged);
 CPPUNIT_TEST(testViewLock);
+CPPUNIT_TEST(testColRowResize);
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -539,6 +541,47 @@ void ScTiledRenderingTest::testViewLock()
 comphelper::LibreOfficeKit::setActive(false);
 }
 
+void ScTiledRenderingTest::testColRowResize()
+{
+comphelper::LibreOfficeKit::setActive();
+ScModelObj* pModelObj = createDoc("sort-range.ods");
+ScDocShell* pDocSh = dynamic_cast< ScDocShell* >( 
pModelObj->GetEmbeddedObject() );
+CPPUNIT_ASSERT(pDocSh);
+
+ScTabViewShell* pViewShell = pDocSh->GetBestViewShell(false);
+CPPUNIT_ASSERT(pViewShell);
+
+
pViewShell->registerLibreOfficeKitViewCallback(::callback, 
this);
+
+uno::Sequence aArgs(2);
+ScDocument& rDoc = pDocSh->GetDocument();
+// Col 3, Tab 0
+int nOldWidth = rDoc.GetColWidth(static_cast(2), 
static_cast(0), false);
+
+aArgs[0].Name = OUString::fromUtf8("Column");
+aArgs[0].Value <<= static_cast(3);
+aArgs[1].Name = OUString::fromUtf8("Width");
+aArgs[1].Value <<= static_cast(nOldWidth + 100);
+comphelper::dispatchCommand(".uno:ColumnWidth", aArgs);
+
+int nNewWidth = rDoc.GetColWidth(static_cast(2), 
static_cast(0), false);
+CPPUNIT_ASSERT(nNewWidth > nOldWidth);
+
+// Row 5, Tab 0
+int nOldHeight = rDoc.GetRowHeight(static_cast(4), 
static_cast(0), false);
+
+aArgs[0].Name = OUString::fromUtf8("Row");
+aArgs[0].Value <<= static_cast(5);
+aArgs[1].Name = OUString::fromUtf8("Height");
+aArgs[1].Value <<= static_cast(nOldHeight + 100);
+comphelper::dispatchCommand(".uno:RowHeight", aArgs);
+
+int nNewHeight = rDoc.GetRowHeight(static_cast(4), 
static_cast(0), false);
+CPPUNIT_ASSERT(nNewHeight > nOldHeight);
+
+comphelper::LibreOfficeKit::setActive(false);
+}
+
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(ScTiledRenderingTest);
diff --git a/sc/sdi/scalc.sdi b/sc/sdi/scalc.sdi
index d55eca4..77a582b 100644
--- a/sc/sdi/scalc.sdi
+++ b/sc/sdi/scalc.sdi
@@ -721,7 +721,7 @@ SfxInt16Item Column SID_RANGE_COL
 
 
 SfxUInt16Item ColumnWidth FID_COL_WIDTH
-
+(SfxUInt16Item Column FN_PARAM_1,SfxUInt16Item Width FN_PARAM_2)
 [
 AutoUpdate = FALSE,
 FastCall = FALSE,
@@ -4432,7 +4432,7 @@ SfxInt32Item Row SID_RANGE_ROW
 
 
 SfxUInt16Item RowHeight FID_ROW_HEIGHT
-
+(SfxUInt16Item Row FN_PARAM_1,SfxUInt16Item Height FN_PARAM_2)
 [
 AutoUpdate = FALSE,
 FastCall = FALSE,
diff --git a/sc/source/ui/view/cellsh3.cxx b/sc/source/ui/view/cellsh3.cxx
index f88cb6c..d9141fe 100644
--- a/sc/source/ui/view/cellsh3.cxx
+++ b/sc/source/ui/view/cellsh3.cxx
@@ -43,6 +43,7 @@
 #include "editable.hxx"
 #include "markdata.hxx"
 #include "scabstdlg.hxx"
+#include "columnspanset.hxx"
 
 #include 
 
@@ -538,7 +539,20 @@ void ScCellShell::Execute( SfxRequest& rReq )
 
 case FID_ROW_HEIGHT:
 {
-if ( pReqArgs )
+const SfxPoolItem* pRow;
+const SfxPoolItem* pHeight;
+
+if ( pReqArgs && pReqArgs->HasItem( FN_PARAM_1,  ) &&
+ pReqArgs->HasItem( FN_PARAM_2,  ) )
+{
+std::vector aRanges;
+SCCOLROW nRow = static_cast(pRow)->GetValue() - 1;
+sal_uInt16 nHeight = static_cast(pHeight)->GetValue();
+
+aRanges.push_back(sc::ColRowSpan(nRow, nRow));
+pTabViewShell->SetWidthOrHeight(false, aRanges, 
SC_SIZE_DIRECT, nHeight);
+}
+else if ( pReqArgs )
 {
 const SfxUInt16Item&  rUInt16Item = static_cast(pReqArgs->Get( FID_ROW_HEIGHT ));
 
@@ -621,7 +635,20 @@ void ScCellShell::Execute( SfxRequest& rReq )
 
   

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

2016-07-29 Thread Eike Rathke
 sc/source/ui/inc/viewdata.hxx  |7 +--
 sc/source/ui/view/cellsh.cxx   |   16 
 sc/source/ui/view/cellsh1.cxx  |2 +-
 sc/source/ui/view/viewdata.cxx |2 +-
 sc/source/ui/view/viewfun3.cxx |2 +-
 5 files changed, 16 insertions(+), 13 deletions(-)

New commits:
commit bb442b7ee6bf93f791cfef007c3e9375afde8655
Author: Eike Rathke 
Date:   Fri Jul 29 22:44:06 2016 +0200

rename SelectionForbidsPaste() to SelectionForbidsCellFill()

... which is more appropriate for what it does now.

Change-Id: If82420485e945598cf267b00bba2de69477671eb

diff --git a/sc/source/ui/inc/viewdata.hxx b/sc/source/ui/inc/viewdata.hxx
index 141e758..1e717cc 100644
--- a/sc/source/ui/inc/viewdata.hxx
+++ b/sc/source/ui/inc/viewdata.hxx
@@ -354,8 +354,11 @@ public:
 
 boolIsMultiMarked();
 
-/// Disallow paste on Ctrl+A all selected. We'd go DOOM.
-boolSelectionForbidsPaste();
+/** Disallow cell fill (Paste,Fill,...) on Ctrl+A all
+selected or another high amount of selected cells.
+We'd go DOOM.
+ */
+boolSelectionForbidsCellFill();
 /// Determine DOOM condition, i.e. from selected range.
 static bool SelectionFillDOOM( const ScRange& rRange );
 
diff --git a/sc/source/ui/view/cellsh.cxx b/sc/source/ui/view/cellsh.cxx
index c3b69da..9f060ef 100644
--- a/sc/source/ui/view/cellsh.cxx
+++ b/sc/source/ui/view/cellsh.cxx
@@ -129,7 +129,7 @@ void ScCellShell::GetBlockState( SfxItemSet& rSet )
 case FID_FILL_TO_BOTTOM:// fill to top / bottom
 {
 bDisable = !bSimpleArea || (nRow1 == 0 && nRow2 == 0);
-if (!bDisable && GetViewData()->SelectionForbidsPaste())
+if (!bDisable && GetViewData()->SelectionForbidsCellFill())
 bDisable = true;
 if ( !bDisable && bEditable )
 {   // do not damage matrix
@@ -141,7 +141,7 @@ void ScCellShell::GetBlockState( SfxItemSet& rSet )
 case FID_FILL_TO_TOP:
 {
 bDisable = (!bSimpleArea) || (nRow1 == MAXROW && nRow2 == 
MAXROW);
-if (!bDisable && GetViewData()->SelectionForbidsPaste())
+if (!bDisable && GetViewData()->SelectionForbidsCellFill())
 bDisable = true;
 if ( !bDisable && bEditable )
 {   // do not damage matrix
@@ -153,7 +153,7 @@ void ScCellShell::GetBlockState( SfxItemSet& rSet )
 case FID_FILL_TO_RIGHT: // fill to left / right
 {
 bDisable = !bSimpleArea || (nCol1 == 0 && nCol2 == 0);
-if (!bDisable && GetViewData()->SelectionForbidsPaste())
+if (!bDisable && GetViewData()->SelectionForbidsCellFill())
 bDisable = true;
 if ( !bDisable && bEditable )
 {   // do not damage matrix
@@ -165,7 +165,7 @@ void ScCellShell::GetBlockState( SfxItemSet& rSet )
 case FID_FILL_TO_LEFT:
 {
 bDisable = (!bSimpleArea) || (nCol1 == MAXCOL && nCol2 == 
MAXCOL);
-if (!bDisable && GetViewData()->SelectionForbidsPaste())
+if (!bDisable && GetViewData()->SelectionForbidsCellFill())
 bDisable = true;
 if ( !bDisable && bEditable )
 {   // do not damage matrix
@@ -176,7 +176,7 @@ void ScCellShell::GetBlockState( SfxItemSet& rSet )
 break;
 
 case SID_RANDOM_NUMBER_GENERATOR_DIALOG:
-bDisable = !bSimpleArea || 
GetViewData()->SelectionForbidsPaste();
+bDisable = !bSimpleArea || 
GetViewData()->SelectionForbidsCellFill();
 break;
 case SID_SAMPLING_DIALOG:
 case SID_DESCRIPTIVE_STATISTICS_DIALOG:
@@ -195,7 +195,7 @@ void ScCellShell::GetBlockState( SfxItemSet& rSet )
 else
 bDisable = (!bSimpleArea) || (nCol1 == nCol2 && nRow1 == 
nRow2);
 
-if (!bDisable && GetViewData()->SelectionForbidsPaste())
+if (!bDisable && GetViewData()->SelectionForbidsCellFill())
 bDisable = true;
 
 if ( !bDisable && bEditable && nWhich == FID_FILL_SERIES )
@@ -223,7 +223,7 @@ void ScCellShell::GetBlockState( SfxItemSet& rSet )
 case SID_PASTE_ONLY_VALUE:
 case SID_PASTE_ONLY_TEXT:
 case SID_PASTE_ONLY_FORMULA:
-bDisable = GetViewData()->SelectionForbidsPaste();
+bDisable = GetViewData()->SelectionForbidsCellFill();
 break;
 
 case FID_INS_ROW:
@@ -511,7 +511,7 @@ bool checkDestRanges(ScViewData& rViewData)
 return false;
 }
 
-if (rViewData.SelectionForbidsPaste())
+if 

[Libreoffice-bugs] [Bug 101195] Calc cannot open large xls file with many images

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101195

--- Comment #1 from MM  ---
Unconfirmed with v5.1.5.1 under windows 7 x64.
Unconfirmed with v5.2.0.3 under ubuntu 16.04 x64.

Opens reasonably fast over here.

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


[Libreoffice-bugs] [Bug 94327] UI: Apply current font substitutions

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94327

--- Comment #8 from shunesbur...@yahoo.fr ---
Created attachment 126477
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126477=edit
Mockup for alert message

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


[Libreoffice-ux-advise] [Bug 94327] UI: Apply current font substitutions

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94327

--- Comment #8 from shunesbur...@yahoo.fr ---
Created attachment 126477
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126477=edit
Mockup for alert message

-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-commits] core.git: writerfilter/qa writerfilter/source

2016-07-29 Thread Caolán McNamara
 writerfilter/qa/cppunittests/rtftok/data/pass/tablemanager-3.rtf |binary
 writerfilter/source/dmapper/DomainMapper.cxx |6 +++---
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 4e58115b2d7f80450b40e27187e45e3ac9babde0
Author: Caolán McNamara 
Date:   Fri Jul 29 21:29:03 2016 +0100

fftester: some more table manager stack checks

Change-Id: Ic8dd72da175fee656889910b55d31ea161b944cc

diff --git a/writerfilter/qa/cppunittests/rtftok/data/pass/tablemanager-3.rtf 
b/writerfilter/qa/cppunittests/rtftok/data/pass/tablemanager-3.rtf
new file mode 100644
index 000..9fd5892
Binary files /dev/null and 
b/writerfilter/qa/cppunittests/rtftok/data/pass/tablemanager-3.rtf differ
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index f6e5116..6ca8528 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -213,7 +213,7 @@ DomainMapper::~DomainMapper()
 
 void DomainMapper::lcl_attribute(Id nName, Value & val)
 {
-if (m_pImpl->getTableManager().attribute(nName, val))
+if (m_pImpl->hasTableManager() && 
m_pImpl->getTableManager().attribute(nName, val))
 return;
 
 static const int nSingleLineSpacing = 240;
@@ -414,7 +414,7 @@ void DomainMapper::lcl_attribute(Id nName, Value & val)
 else
 aSpacing.Height = 
sal_Int16(ConversionHelper::convertTwipToMM100( nIntValue ));
 
-if( m_pImpl->getTableManager().isInCell() )
+if (m_pImpl->hasTableManager() && 
m_pImpl->getTableManager().isInCell())
 {
 // direct formatting is applied for table cell data
 TablePropertyMapPtr pTblCellWithDirectFormatting(new 
TablePropertyMap);
@@ -443,7 +443,7 @@ void DomainMapper::lcl_attribute(Id nName, Value & val)
 aSpacing.Mode = style::LineSpacingMode::FIX;
 }
 
-if( m_pImpl->getTableManager().isInCell() )
+if (m_pImpl->hasTableManager() && 
m_pImpl->getTableManager().isInCell())
 {
 // If the table manager got the line rule after
 // ooxml::CT_Spacing_line, then it should get the rule
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101204] VDB function: Calc and Excel produce different results; both wrong

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101204

MM  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from MM  ---
Wrong, so new...
Also if you set the type (from the incorrect example) <= 7.2 you'll get an
'Err:502'.

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


[Libreoffice-bugs] [Bug 100870] Crash in: SfxWorkWindow::UpdateChildWindows_Impl()

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100870

--- Comment #5 from Dave Barton  ---
(In reply to Wilfried Koch from comment #4)
> The navigator probably was docked, but never on the left side.

In all my (numerous) tests where LO crashed the Navigator panel was ALWAYS
docked to the left hand side of the LO window.

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


[Libreoffice-commits] core.git: writerfilter/qa writerfilter/source

2016-07-29 Thread Caolán McNamara
 writerfilter/qa/cppunittests/rtftok/data/pass/tablemanager-2.rtf |binary
 writerfilter/source/dmapper/DomainMapper.cxx |3 ++-
 writerfilter/source/dmapper/DomainMapper_Impl.cxx|7 +--
 3 files changed, 7 insertions(+), 3 deletions(-)

New commits:
commit d00fc303bca7765762a602531b7d3b40ce8f1740
Author: Caolán McNamara 
Date:   Fri Jul 29 21:24:26 2016 +0100

fftester: another empty table manager stack

Change-Id: If3148cb6e16cff4aad28c4f86467c66ed04bcd05

diff --git a/writerfilter/qa/cppunittests/rtftok/data/pass/tablemanager-2.rtf 
b/writerfilter/qa/cppunittests/rtftok/data/pass/tablemanager-2.rtf
new file mode 100644
index 000..58328ed
Binary files /dev/null and 
b/writerfilter/qa/cppunittests/rtftok/data/pass/tablemanager-2.rtf differ
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 2db5af3..f6e5116 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -2920,7 +2920,8 @@ void DomainMapper::lcl_endShape( )
 // empty paragraph at the end of the shape text will cause problems: if
 // the shape text ends with a table, the extra paragraph will be
 // handled as an additional row of the ending table.
-m_pImpl->getTableManager().endTable();
+if (m_pImpl->hasTableManager())
+m_pImpl->getTableManager().endTable();
 
 lcl_endParagraphGroup();
 m_pImpl->PopShapeContext( );
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx 
b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 5f6e05d..1d22fa4 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -2013,8 +2013,11 @@ void DomainMapper_Impl::UpdateEmbeddedShapeProps(const 
uno::Reference< drawing::
 
 void DomainMapper_Impl::PopShapeContext()
 {
-getTableManager().endLevel();
-popTableManager();
+if (hasTableManager())
+{
+getTableManager().endLevel();
+popTableManager();
+}
 if ( m_aAnchoredStack.size() > 0 )
 {
 // For OLE object replacement shape, the text append context was 
already removed
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101035] WIKIHELP: no Search term text box on Index page

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101035

--- Comment #4 from Jean-Baptiste Faure  ---
(In reply to MediT from comment #2)
> Input "erreur ref"
> 1st result > english
> 2nd result > french but title in english
> next result > same as 2nd but with old version
> 
> If I use inner help file, I see one result: "Codes d'erreur dans LibreOffice
> Calc"

I do not reproduce. With the input "erreur ref" in the search field, I get the
following results page:
https://help.libreoffice.org/index.php?search=erreur+ref=Special%3ASearch=Lire
Each result links to a help page in French (that is with /fr at the end of the
url). Some pages are in English because currently the translation in French of
the help for master (idem 5.2 version) is not complete.

What is important here is that the search function gives results in help
subdomain of libreoffice.org and not in the entire wiki of LibreOffice.

Best regards. JBF

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


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

2016-07-29 Thread Winfried Donkers
 sc/source/core/inc/interpre.hxx  |2 +-
 sc/source/core/tool/interpr2.cxx |   26 +-
 2 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit 1ca11b55aecb18f9dcca1e9678910dc2e7593623
Author: Winfried Donkers 
Date:   Thu Jul 28 10:20:35 2016 +0200

tdf#101166 treat argument PayType for Calc function RATE as boolean.

Excel and Gnumeric treat this argument as boolean.
Financially, payment at beginning or at end of period are the only
existing options, i.e. there no other feasible options.

Change-Id: I7ba9fcdac69b9b0756cdf48abde001a44c8b4c88
Reviewed-on: https://gerrit.libreoffice.org/27612
Tested-by: Jenkins 
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 

diff --git a/sc/source/core/inc/interpre.hxx b/sc/source/core/inc/interpre.hxx
index e8f6185..33386b7 100644
--- a/sc/source/core/inc/interpre.hxx
+++ b/sc/source/core/inc/interpre.hxx
@@ -760,7 +760,7 @@ static double ScGetZw(double fZins, double fZzr, double 
fRmz,
 void ScFV();
 void ScNper();
 static bool RateIteration(double fNper, double fPayment, double fPv,
-double fFv, double fPayType, double& fGuess);
+double fFv, bool bPayType, double& fGuess);
 void ScRate();
 double ScGetCompoundInterest(double fZins, double fZr, double fZzr, double fBw,
  double fZw, bool bPayInAdvance, double& fRmz);
diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index 1723059..a8d632f 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -1970,7 +1970,7 @@ void ScInterpreter::ScNper()
 }
 
 bool ScInterpreter::RateIteration( double fNper, double fPayment, double fPv,
-   double fFv, double fPayType, double & 
fGuess )
+   double fFv, bool bPayType, double & fGuess )
 {
 // See also #i15090#
 // Newton-Raphson method: x(i+1) = x(i) - f(x(i)) / f'(x(i))
@@ -1983,9 +1983,12 @@ bool ScInterpreter::RateIteration( double fNper, double 
fPayment, double fPv,
 const sal_uInt16 nIterationsMax = 150;
 sal_uInt16 nCount = 0;
 const double fEpsilonSmall = 1.0E-14;
-// convert any fPayType situation to fPayType == zero situation
-fFv = fFv - fPayment * fPayType;
-fPv = fPv + fPayment * fPayType;
+if ( bPayType )
+{
+// payment at beginning of each period
+fFv = fFv - fPayment;
+fPv = fPv + fPayment;
+}
 if (fNper == ::rtl::math::round( fNper ))
 { // Nper is an integer value
 fX = fGuess;
@@ -2070,8 +2073,8 @@ void ScInterpreter::ScRate()
 {
 double fPv, fPayment, fNper;
 // defaults for missing arguments, see ODFF spec
-double fFv = 0, fPayType = 0, fGuess = 0.1, fOrigGuess = 0.1;
-bool bValid = true;
+double fFv = 0, fGuess = 0.1, fOrigGuess = 0.1;
+bool bPayType = false, bValid = true;
 bool bDefaultGuess = true;
 nFuncFmtType = css::util::NumberFormat::PERCENT;
 sal_uInt8 nParamCount = GetByte();
@@ -2083,7 +2086,7 @@ void ScInterpreter::ScRate()
 bDefaultGuess = false;
 }
 if (nParamCount >= 5)
-fPayType = GetDouble();
+bPayType = GetBool();
 if (nParamCount >= 4)
 fFv = GetDouble();
 fPv = GetDouble();
@@ -2094,10 +2097,7 @@ void ScInterpreter::ScRate()
 PushIllegalArgument();
 return;
 }
-// other values for fPayType might be meaningful,
-// ODFF spec is not clear yet, enable statement if you want only 0 and 1
-//if (fPayType != 0.0) fPayType = 1.0;
-bValid = RateIteration(fNper, fPayment, fPv, fFv, fPayType, fGuess);
+bValid = RateIteration(fNper, fPayment, fPv, fFv, bPayType, fGuess);
 if (!bValid)
 {
 /* TODO: try also for specified guess values, not only default? As is,
@@ -2115,11 +2115,11 @@ void ScInterpreter::ScRate()
 for (int nStep = 2; nStep <= 10 && !bValid; ++nStep)
 {
 fGuess = fX * nStep;
-bValid = RateIteration( fNper, fPayment, fPv, fFv, fPayType, 
fGuess);
+bValid = RateIteration( fNper, fPayment, fPv, fFv, bPayType, 
fGuess);
 if (!bValid)
 {
 fGuess = fX / nStep;
-bValid = RateIteration( fNper, fPayment, fPv, fFv, 
fPayType, fGuess);
+bValid = RateIteration( fNper, fPayment, fPv, fFv, 
bPayType, fGuess);
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 67/579b01b47d10f5b835dcb7f8bcce415ff9e221

2016-07-29 Thread Caolán McNamara
 67/579b01b47d10f5b835dcb7f8bcce415ff9e221 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 2d74e655b77d0cdd87a5e5ef3f33a64e9e8d4d9f
Author: Caolán McNamara 
Date:   Fri Jul 29 21:06:06 2016 +0100

Notes added by 'git notes add'

diff --git a/67/579b01b47d10f5b835dcb7f8bcce415ff9e221 
b/67/579b01b47d10f5b835dcb7f8bcce415ff9e221
new file mode 100644
index 000..7566547
--- /dev/null
+++ b/67/579b01b47d10f5b835dcb7f8bcce415ff9e221
@@ -0,0 +1 @@
+prefer: c772c8fd273d73af4734ce0ed1b4bb082dc1886c
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: download.lst external/curl

2016-07-29 Thread Caolán McNamara
 download.lst  |4 +--
 external/curl/ExternalPackage_curl.mk |2 -
 external/curl/UnpackedTarball_curl.mk |1 
 external/curl/curl-7.26.0_win-proxy.patch |   34 +++---
 external/curl/curl-freebsd.patch.1|   32 
 5 files changed, 20 insertions(+), 53 deletions(-)

New commits:
commit c772c8fd273d73af4734ce0ed1b4bb082dc1886c
Author: Caolán McNamara 
Date:   Fri Jul 29 09:02:58 2016 +0100

bump curl to 7.50.0

Change-Id: I368a18f70dfac51770afeb1f9e84ff83c19f0989
Reviewed-on: https://gerrit.libreoffice.org/27671
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/download.lst b/download.lst
index bd34039..6f716d0 100644
--- a/download.lst
+++ b/download.lst
@@ -24,8 +24,8 @@ export COLLADA2GLTF_TARBALL := 
4b87018f7fff1d054939d19920b751a0-collada2gltf-mas
 export CPPUNIT_MD5SUM := d1c6bdd5a76c66d2c38331e2d287bc01
 export CPPUNIT_TARBALL := cppunit-1.13.2.tar.gz
 export CT2N_TARBALL := 
1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt
-export CURL_MD5SUM := 11bddbb452a8b766b932f859aaeeed39
-export CURL_TARBALL := curl-7.43.0.tar.bz2
+export CURL_MD5SUM := 03940d7d4fcea1521fbbf07c1cf16f5e
+export CURL_TARBALL := curl-7.50.0.tar.gz
 export DBGHELP_DLL := 13fbc2e8b37ddf28181dd6d8081c2b8e-dbghelp.dll
 export EBOOK_MD5SUM := 6b48eda57914e6343efebc9381027b78
 export EBOOK_TARBALL := libe-book-0.1.2.tar.bz2
diff --git a/external/curl/ExternalPackage_curl.mk 
b/external/curl/ExternalPackage_curl.mk
index ed55892..2de52db 100644
--- a/external/curl/ExternalPackage_curl.mk
+++ b/external/curl/ExternalPackage_curl.mk
@@ -22,7 +22,7 @@ $(eval $(call 
gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl.4.dyli
 else ifeq ($(OS),AIX)
 $(eval $(call 
gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl.so,lib/.libs/libcurl.so.4))
 else
-$(eval $(call 
gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl.so.4,lib/.libs/libcurl.so.4.3.0))
+$(eval $(call 
gb_ExternalPackage_add_file,curl,$(LIBO_LIB_FOLDER)/libcurl.so.4,lib/.libs/libcurl.so.4.4.0))
 endif
 
 endif # $(DISABLE_DYNLOADING)
diff --git a/external/curl/UnpackedTarball_curl.mk 
b/external/curl/UnpackedTarball_curl.mk
index 154263c..4cde155 100644
--- a/external/curl/UnpackedTarball_curl.mk
+++ b/external/curl/UnpackedTarball_curl.mk
@@ -18,7 +18,6 @@ $(eval $(call gb_UnpackedTarball_fix_end_of_line,curl,\
 ))
 
 $(eval $(call gb_UnpackedTarball_add_patches,curl,\
-   external/curl/curl-freebsd.patch.1 \
external/curl/curl-msvc.patch.1 \
external/curl/curl-msvc-schannel.patch.1 \
external/curl/curl-7.26.0_mingw.patch \
diff --git a/external/curl/curl-7.26.0_win-proxy.patch 
b/external/curl/curl-7.26.0_win-proxy.patch
index 81ccc65..dff1e37 100644
--- a/external/curl/curl-7.26.0_win-proxy.patch
+++ b/external/curl/curl-7.26.0_win-proxy.patch
@@ -1,18 +1,18 @@
 --- curl-7.26.0/lib/Makefile.vc10
 +++ misc/build/curl-7.26.0/lib/Makefile.vc10
-@@ -116,7 +116,7 @@ LFLAGS = /nologo /machine:$(MACHINE)
- SSLLIBS  = libeay32.lib ssleay32.lib
+@@ -118,7 +118,7 @@
+ WINSSLLIBS   = crypt32.lib
  ZLIBLIBSDLL  = zdll.lib
  ZLIBLIBS = zlib.lib
 -WINLIBS  = ws2_32.lib wldap32.lib advapi32.lib
-+WINLIBS  = ws2_32.lib wldap32.lib advapi32.lib winhttp.lib
++WINLIBS  = ws2_32.lib wldap32.lib advapi32.lib winhttp.lib crypt32.lib
  CFLAGS   = $(CFLAGS) $(EXCFLAGS)
  
  CFGSET   = FALSE
 --- curl-7.26.0/lib/url.c
 +++ misc/build/curl-7.26.0/lib/url.c
-@@ -80,6 +80,10 @@ void idn_free (void *ptr);
- int curl_win32_idn_to_ascii(const char *in, char **out);
+@@ -78,6 +78,10 @@
+ bool curl_win32_idn_to_ascii(const char *in, char **out);
  #endif  /* USE_LIBIDN */
  
 +#ifdef _WIN32
@@ -22,20 +22,20 @@
  #include "urldata.h"
  #include "netrc.h"
  
-@@ -4111,6 +4115,21 @@ static bool check_noproxy(const char* name, const char* 
no_proxy)
+@@ -4586,6 +4590,21 @@
return FALSE;
  }
  
 +#ifdef _WIN32
-+static char* wstrToCstr( LPWSTR wStr )
++static char* wstrToCstr(LPWSTR wStr)
 +{
 +  int bufSize;
 +  char* out = NULL;
 +  if(wStr != NULL) {
 +bufSize = WideCharToMultiByte(
-+  CP_ACP,  0, wStr, -1, NULL, 0, NULL, NULL );
-+out = ( char* )malloc( bufSize * sizeof(char));
-+WideCharToMultiByte( CP_ACP, 0, wStr, -1, out, bufSize, NULL, NULL );
++  CP_ACP,  0, wStr, -1, NULL, 0, NULL, NULL);
++out = (char*)malloc(bufSize * sizeof(char));
++WideCharToMultiByte(CP_ACP, 0, wStr, -1, out, bufSize, NULL, NULL);
 +  }
 +  return out;
 +}
@@ -44,7 +44,7 @@
  /
  * Detect what (if any) proxy to use. Remember that this selects a host
  * name and is not limited to HTTP proxies only.
-@@ -4119,6 +4138,7 @@ static bool check_noproxy(const char* name, const char* 

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.1' - 11 commits - i18npool/qa i18npool/source include/opencl opencl/source readlicense_oo/license sc/source sd/inc sd/qa sd/source svgio/s

2016-07-29 Thread Caolán McNamara
 i18npool/qa/cppunit/test_breakiterator.cxx   |   16 
 i18npool/source/breakiterator/breakiterator_unicode.cxx  |2 
 include/opencl/openclwrapper.hxx |2 
 opencl/source/openclwrapper.cxx  |   37 
 readlicense_oo/license/CREDITS.fodt  | 2605 
+-
 sc/source/core/data/formulacell.cxx  |5 
 sc/source/core/opencl/op_statistical.cxx |   17 
 sc/source/core/opencl/op_statistical.hxx |1 
 sc/source/core/opencl/opinlinefun_statistical.cxx|  175 
 sd/inc/EffectMigration.hxx   |2 
 sd/qa/unit/data/sxi/ooo41061-1.sxi   |binary
 sd/qa/unit/export-tests.cxx  |   26 
 sd/qa/unit/sdmodeltestbase.hxx   |3 
 sd/source/core/EffectMigration.cxx   |   25 
 sd/source/ui/docshell/docshel4.cxx   |3 
 svgio/source/svgreader/svgimagenode.cxx  |2 
 svl/source/numbers/zforscan.cxx  |   10 
 sw/source/core/layout/flowfrm.cxx|4 
 vcl/opengl/opengl_blacklist_windows.xml  |3 
 writerfilter/qa/cppunittests/rtftok/data/fail/popstate-1.rtf |binary
 writerfilter/qa/cppunittests/rtftok/data/fail/popstate-2.rtf |1 
 writerfilter/qa/cppunittests/rtftok/data/pass/tablemanager-1.rtf |binary
 writerfilter/qa/cppunittests/rtftok/testrtftok.cxx   |4 
 writerfilter/source/dmapper/DomainMapper.cxx |3 
 writerfilter/source/rtftok/rtfdocumentimpl.hxx   |   31 
 25 files changed, 1479 insertions(+), 1498 deletions(-)

New commits:
commit f6e08a1440a6c1b7f3b5aede21f3c9bf4b58cc2c
Author: Caolán McNamara 
Date:   Thu Jul 28 13:58:33 2016 +0100

fftester: throw on empty stack access

rather than spend the rest of my life protecting each one

Change-Id: I181df33b052a0303f072ce0252d98562231569e2
(cherry picked from commit 2710211eb2333cafdb894742a8fa73fb02dc513b)

fftester: empty states stack

Change-Id: I05dfffced9a8677650a46b43f65a29e9b21c5524
(cherry picked from commit 5de2d02806669812d43e7f23db58ab7a16373ce6)

Related: tdf#75757 remove inheritance from std::deque

Change-Id: Ia50ea146052c2014ea16474186e2d15ce93581c1
(cherry picked from commit 7a887df4db129ac5222fd4068173b5a06d107a59)
Reviewed-on: https://gerrit.libreoffice.org/27640
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 
(cherry picked from commit 3e0fad77595438e1d36b94bfd6c17d8de8f8ceb0)

diff --git a/writerfilter/qa/cppunittests/rtftok/data/fail/popstate-1.rtf 
b/writerfilter/qa/cppunittests/rtftok/data/fail/popstate-1.rtf
new file mode 100644
index 000..0418917
Binary files /dev/null and 
b/writerfilter/qa/cppunittests/rtftok/data/fail/popstate-1.rtf differ
diff --git a/writerfilter/qa/cppunittests/rtftok/data/fail/popstate-2.rtf 
b/writerfilter/qa/cppunittests/rtftok/data/fail/popstate-2.rtf
new file mode 100644
index 000..273bb13
--- /dev/null
+++ b/writerfilter/qa/cppunittests/rtftok/data/fail/popstate-2.rtf
@@ -0,0 +1 @@
+\\rttt\noTidqtpúúëdôp{\"pb18}\€p{\"ptxtbr }
diff --git a/writerfilter/qa/cppunittests/rtftok/testrtftok.cxx 
b/writerfilter/qa/cppunittests/rtftok/testrtftok.cxx
index 8c31f92..b84f434 100644
--- a/writerfilter/qa/cppunittests/rtftok/testrtftok.cxx
+++ b/writerfilter/qa/cppunittests/rtftok/testrtftok.cxx
@@ -74,6 +74,10 @@ bool RtfTest::load(const OUString&,
 }
 throw;
 }
+catch (const std::exception&)
+{
+return false;
+}
 }
 
 void RtfTest::test()
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
index d1f261d..393074a 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
@@ -310,19 +310,42 @@ public:
 };
 
 /// An RTF stack is similar to std::stack, except that it has an operator[].
-struct RTFStack : public std::deque
+struct RTFStack
 {
+private:
+std::deque m_Impl;
+public:
 RTFParserState& top()
 {
-return back();
+if (m_Impl.empty())
+throw std::out_of_range("empty rtf state stack");
+return m_Impl.back();
 }
 void pop()
 {
-return pop_back();
+if (m_Impl.empty())
+throw std::out_of_range("empty rtf state stack");
+return m_Impl.pop_back();
 }
 void push(RTFParserState const& rState)
 {
-return push_back(rState);
+return m_Impl.push_back(rState);
+}
+bool empty() const
+{
+   

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

2016-07-29 Thread Winfried Donkers
 scaddins/source/analysis/financial.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5c78a453bce458afef45ec998b6dd7142f4877b9
Author: Winfried Donkers 
Date:   Thu Jul 28 12:45:08 2016 +0200

Make Calc Add-In function RECEIVED behave like Excel and Gnumeric.

EXcel and Gnumeric demand that Maturity > Settlement, Calc now does too.

Change-Id: Id02918153d5c07f438c9160330b0dc09fdf13f6c
Reviewed-on: https://gerrit.libreoffice.org/27619
Tested-by: Jenkins 
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 

diff --git a/scaddins/source/analysis/financial.cxx 
b/scaddins/source/analysis/financial.cxx
index 6b4a6fd..7a38d58 100644
--- a/scaddins/source/analysis/financial.cxx
+++ b/scaddins/source/analysis/financial.cxx
@@ -79,7 +79,7 @@ double SAL_CALL AnalysisAddIn::getAccrintm( const 
css::uno::Reference< css::bean
 double SAL_CALL AnalysisAddIn::getReceived( const css::uno::Reference< 
css::beans::XPropertySet >& xOpt,
 sal_Int32 nSettle, sal_Int32 nMat, double fInvest, double fDisc, const 
css::uno::Any& rOB ) throw( css::uno::RuntimeException, 
css::lang::IllegalArgumentException, std::exception )
 {
-if( fInvest <= 0.0 || fDisc <= 0.0 )
+if( fInvest <= 0.0 || fDisc <= 0.0 || nSettle >= nMat )
 throw css::lang::IllegalArgumentException();
 
 double fRet = fInvest / ( 1.0 - ( fDisc * GetYearDiff( GetNullDate( xOpt 
), nSettle, nMat, getDateMode( xOpt, rOB ) ) ) );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101209] New: Calc ver 5.1.5.2

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101209

Bug ID: 101209
   Summary: Calc ver 5.1.5.2
   Product: LibreOffice
   Version: 5.1.5.1 rc
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: awzana...@gmail.com

Created attachment 126476
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126476=edit
eg. error

When using a spreadsheet "Calc" disappear parts of the screen! See attached
picture!

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


[Libreoffice-bugs] [Bug 101208] New: Quickbooks Error SUPPORT number))@@ 1888~436~4111 (( QuickBooks tech Support NUmber $$$$$+USA~+18~88~436~4111 Quickbooks Support Error number Quickbooks customer c

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101208

Bug ID: 101208
   Summary: Quickbooks Error SUPPORT number))@@ 1888~436~4111
((QuickBooks tech Support NUmber
$+USA~+18~88~436~4111 Quickbooks Support Error
number Quickbooks customer care phone number
   Product: Impress Remote
   Version: 2.2.3
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: oliversmithu...@gmail.com

Created attachment 126475
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126475=edit
Live support ~+1888~436~4111 Quickbooks Error support Number Quickbooks
technical support number Quickbooks Error support Number

Quickbooks Error SUPPORT number))@@ 1888~436~4111 ((QuickBooks tech Support
NUmber $+USA~+18~88~436~4111 Quickbooks Support Error number Quickbooks
customer care phone number Quickbooks Error SUPPORT number))@@ 1888~436~4111
((QuickBooks tech Support NUmber $+USA~+18~88~436~4111 Quickbooks Support
Error number Quickbooks customer care phone number Intuit QuickBooks Error
support Number Call us @ (+1888-436-4111) for Intuit QuickBooks technical
support phone number. Call : #1888*436*4111#. 24/7. for Intuit QuickBooks Error
support Number by trained cadre for all kind of issues regarding your Intuit
QuickBooks Errors support.Quickbooks Error SUPPORT number))@@ 1888~436~4111
((QuickBooks tech Support NUmber $+USA~+18~88~436~4111 Quickbooks Support
Error number Quickbooks customer care phone number Quickbooks Error SUPPORT
number))@@ 1888~436~4111 ((QuickBooks tech Support NUmber
$+USA~+18~88~436~4111 Quickbooks Support Error number Quickbooks customer
care phone number Intuit QuickBooks Error support Number Call us @
(+1888-436-4111) for Intuit QuickBooks technical support phone number. Call :
#1888*436*4111#. 24/7. for Intuit QuickBooks Error support Number by trained
cadre for all kind of issues regarding your Intuit QuickBooks Errors
support.Quickbooks Error SUPPORT number))@@ 1888~436~4111 ((QuickBooks tech
Support NUmber $+USA~+18~88~436~4111 Quickbooks Support Error number
Quickbooks customer care phone number Quickbooks Error SUPPORT number))@@
1888~436~4111 ((QuickBooks tech Support NUmber $+USA~+18~88~436~4111
Quickbooks Support Error number Quickbooks customer care phone number Intuit
QuickBooks Error support Number Call us @ (+1888-436-4111) for Intuit
QuickBooks technical support phone number. Call : #1888*436*4111#. 24/7. for
Intuit QuickBooks Error support Number by trained cadre for all kind of issues
regarding your Intuit QuickBooks Errors support.Quickbooks Error SUPPORT
number))@@ 1888~436~4111 ((QuickBooks tech Support NUmber
$+USA~+18~88~436~4111 Quickbooks Support Error number Quickbooks customer
care phone number Quickbooks Error SUPPORT number))@@ 1888~436~4111
((QuickBooks tech Support NUmber $+USA~+18~88~436~4111 Quickbooks Support
Error number Quickbooks customer care phone number Intuit QuickBooks Error
support Number Call us @ (+1888-436-4111) for Intuit QuickBooks technical
support phone number. Call : #1888*436*4111#. 24/7. for Intuit QuickBooks Error
support Number by trained cadre for all kind of issues regarding your Intuit
QuickBooks Errors support.Quickbooks Error SUPPORT number))@@ 1888~436~4111
((QuickBooks tech Support NUmber $+USA~+18~88~436~4111 Quickbooks Support
Error number Quickbooks customer care phone number Quickbooks Error SUPPORT
number))@@ 1888~436~4111 ((QuickBooks tech Support NUmber
$+USA~+18~88~436~4111 Quickbooks Support Error number Quickbooks customer
care phone number Intuit QuickBooks Error support Number Call us @
(+1888-436-4111) for Intuit QuickBooks technical support phone number. Call :
#1888*436*4111#. 24/7. for Intuit QuickBooks Error support Number by trained
cadre for all kind of issues regarding your Intuit QuickBooks Errors
support.Quickbooks Error SUPPORT number))@@ 1888~436~4111 ((QuickBooks tech
Support NUmber $+USA~+18~88~436~4111 Quickbooks Support Error number
Quickbooks customer care phone number Quickbooks Error SUPPORT number))@@
1888~436~4111 ((QuickBooks tech Support NUmber $+USA~+18~88~436~4111
Quickbooks Support Error number Quickbooks customer care phone number Intuit
QuickBooks Error support Number Call us @ (+1888-436-4111) for Intuit
QuickBooks technical support phone number. Call : #1888*436*4111#. 24/7. for
Intuit QuickBooks Error support Number by trained cadre for all Help Intuit.@
((1-(888)-436-4111 @ QuickBooks Error support number QuickBooks pro 2014
support phone USA, payroll support here.Describe @@Tollfree
1888.436.4111.++Quickbooks phone number@@ here. +1 888, 436,
4111..Quickbook...")Help Intuit.@ ((1-(888)-436-4111 @ QuickBooks Error support
number QuickBooks pro 2014 support 

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

2016-07-29 Thread Giuseppe Castagno
 ucb/source/ucp/webdav-neon/webdavcontent.cxx |6 ++
 1 file changed, 6 insertions(+)

New commits:
commit bedae6b06c51c641c38fa7dd3e25dd2aaafb30cf
Author: Giuseppe Castagno 
Date:   Wed Jan 27 17:41:30 2016 +0100

tdf#101094 (17) OPTIONS: Options cache removal: COPY

Change-Id: Ifa60eabd0a31b66074d79b30a5be7d497585f602
4a2c233261211b13ed06d05278bf42e446330487
Reviewed-on: https://gerrit.libreoffice.org/27696
Tested-by: Jenkins 
Reviewed-by: Giuseppe Castagno 

diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx 
b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index beb5e1c..b515ea0 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -858,6 +858,8 @@ void Content::addProperty( const 
ucb::PropertyCommandArgument& aCmdArg,
 osl::Guard< osl::Mutex > aGuard( m_aMutex );
 m_xResAccess.reset( new DAVResourceAccess( *xResAccess.get() ) );
 }
+// TODO PLACEHOLDER:
+// remove target URL options from cache, since PROPPATCH may change 
them
 
 // Notify propertyset info change listeners.
 beans::PropertySetInfoChangeEvent evt(
@@ -1869,6 +1871,8 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
 {
 // Set property values at server.
 xResAccess->PROPPATCH( aProppatchValues, xEnv );
+// TODO PLACEHOLDER:
+// remove target URL options from cache, since PROPPATCH may 
change it
 
 std::vector< ProppatchValue >::const_iterator it
 = aProppatchValues.begin();
@@ -2739,6 +2743,8 @@ void Content::transfer(
 rArgs.NameClash
 == ucb::NameClash::OVERWRITE,
 Environment );
+aStaticDAVOptionsCache.removeDAVOptions( sourceURI.GetURI() );
+aStaticDAVOptionsCache.removeDAVOptions( targetURI.GetURI() );
 
 // DAV resources store all additional props on server!
 //  // Copy own and all children's Additional Core Properties.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-07-29 Thread Winfried Donkers
 sc/source/core/tool/interpr8.cxx |   16 
 1 file changed, 16 insertions(+)

New commits:
commit e43e2886effea42658f4bc3b69f46cc70c9251e0
Author: Winfried Donkers 
Date:   Fri Jul 29 09:16:34 2016 +0200

tdf#97831 follow up : remove unused arguments from stack

Intention:
Make e.g. [1+SWITCH(1;1;1;6)] work. Without this fix, the result is
7 but should be 2.

Reviewed-on: https://gerrit.libreoffice.org/27664
Tested-by: Jenkins 
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 
(cherry picked from commit 3ee2cae3a36e5d052e02c3f7b226dc3b79bd2ebc)

 Conflicts:
sc/qa/unit/data/functions/fods/Functions_Excel_2016.fods

Change-Id: I2a72e458e5458c02c3ce2f4214b86ba13f7b1d11
Reviewed-on: https://gerrit.libreoffice.org/27697
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 
Tested-by: Jenkins 

diff --git a/sc/source/core/tool/interpr8.cxx b/sc/source/core/tool/interpr8.cxx
index b62fb59..972b125 100644
--- a/sc/source/core/tool/interpr8.cxx
+++ b/sc/source/core/tool/interpr8.cxx
@@ -1897,7 +1897,15 @@ void ScInterpreter::ScIfs_MS()
 //push result :
 FormulaTokenRef xToken( PopToken() );
 if ( xToken )
+{
+// Remove unused arguments of IFS from the stack before pushing the 
result.
+while ( nParamCount > 1 )
+{
+Pop();
+nParamCount--;
+}
 PushTempToken( xToken.get() );
+}
 else
 PushError( errUnknownStackVariable );
 }
@@ -2000,7 +2008,15 @@ void ScInterpreter::ScSwitch_MS()
 // push result
 FormulaTokenRef xToken( PopToken() );
 if ( xToken )
+{
+// Remove unused arguments of SWITCH from the stack before pushing the 
result.
+while ( nParamCount > 1 )
+{
+Pop();
+nParamCount--;
+}
 PushTempToken( xToken.get() );
+}
 else
 PushError( errUnknownStackVariable );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-07-29 Thread Giuseppe Castagno
 ucb/source/ucp/webdav-neon/webdavcontent.cxx |   21 +
 1 file changed, 17 insertions(+), 4 deletions(-)

New commits:
commit 2359e5a002f4df58548803320991064e6a6d968c
Author: Giuseppe Castagno 
Date:   Wed Jan 27 17:35:36 2016 +0100

tdf#101094 (16) OPTIONS: Options cache removal: MOVE

Change-Id: I7a610003295aa174d655f1e847e6d9a19d84a197
Reviewed-on: https://gerrit.libreoffice.org/27695
Tested-by: Jenkins 
Reviewed-by: Giuseppe Castagno 

diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx 
b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index b00655e..beb5e1c 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -1908,14 +1908,18 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
 uno::Reference< ucb::XContentIdentifier > xNewId
 = new ::ucbhelper::ContentIdentifier( aNewURL );
 
+NeonUri sourceURI( xIdentifier->getContentIdentifier() );
+NeonUri targetURI( xNewId->getContentIdentifier() );
+
 try
 {
-NeonUri sourceURI( xIdentifier->getContentIdentifier() );
-NeonUri targetURI( xNewId->getContentIdentifier() );
 targetURI.SetScheme( sourceURI.GetScheme() );
 
 xResAccess->MOVE(
 sourceURI.GetPath(), targetURI.GetURI(), false, xEnv );
+aStaticDAVOptionsCache.removeDAVOptions( sourceURI.GetURI() );
+aStaticDAVOptionsCache.removeDAVOptions( targetURI.GetURI() );
+
 // @@@ Should check for resources that could not be moved
 // (due to source access or target overwrite) and send
 // this information through the interaction handler.
@@ -1949,6 +1953,8 @@ uno::Sequence< uno::Any > Content::setPropertyValues(
 }
 catch ( DAVException const & e )
 {
+aStaticDAVOptionsCache.removeDAVOptions( sourceURI.GetURI() );
+aStaticDAVOptionsCache.removeDAVOptions( targetURI.GetURI() );
 // Do not set new title!
 aNewTitle.clear();
 
@@ -2578,11 +2584,12 @@ void Content::transfer(
 xResAccess.reset( new DAVResourceAccess( *m_xResAccess.get() ) );
 }
 
+NeonUri sourceURI( rArgs.SourceURL );
+NeonUri targetURI( xIdentifier->getContentIdentifier() );
+
 OUString aTargetURI;
 try
 {
-NeonUri sourceURI( rArgs.SourceURL );
-NeonUri targetURI( xIdentifier->getContentIdentifier() );
 aTargetURI = targetURI.GetPathBaseNameUnescaped();
 
 // Check source's and target's URL scheme
@@ -2703,6 +2710,8 @@ void Content::transfer(
 rArgs.NameClash
 == ucb::NameClash::OVERWRITE,
 Environment );
+aStaticDAVOptionsCache.removeDAVOptions( sourceURI.GetURI() );
+aStaticDAVOptionsCache.removeDAVOptions( targetURI.GetURI() );
 
 if ( xSource.is() )
 {
@@ -2749,10 +2758,14 @@ void Content::transfer(
 }
 catch ( ucb::IllegalIdentifierException const & )
 {
+aStaticDAVOptionsCache.removeDAVOptions( sourceURI.GetURI() );
+aStaticDAVOptionsCache.removeDAVOptions( targetURI.GetURI() );
 // queryContent
 }
 catch ( DAVException const & e )
 {
+aStaticDAVOptionsCache.removeDAVOptions( sourceURI.GetURI() );
+aStaticDAVOptionsCache.removeDAVOptions( targetURI.GetURI() );
 // [RFC 2518] - WebDAV
 // 412 (Precondition Failed) - The server was unable to maintain
 // the liveness of the properties listed in the propertybehavior
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-07-29 Thread Giuseppe Castagno
 ucb/source/ucp/webdav-neon/webdavcontent.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 1596379bc00a32bc3b4e76a53aa884112b21764b
Author: Giuseppe Castagno 
Date:   Wed Jan 27 17:04:56 2016 +0100

tdf#101094 (15) OPTIONS: Options cache removal: MKCOL

Change-Id: I752ab44b88935da75198d27f8b490f97c863408f
Reviewed-on: https://gerrit.libreoffice.org/27694
Tested-by: Jenkins 
Reviewed-by: Giuseppe Castagno 

diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx 
b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index 67d21ab..b00655e 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -2429,7 +2429,10 @@ void Content::insert(
 xResAccess->setURL( aURL );
 
 if ( bCollection )
+{
 xResAccess->MKCOL( Environment );
+aStaticDAVOptionsCache.removeDAVOptions( aTargetUrl );
+}
 else
 {
 xResAccess->PUT( xInputStream, Environment );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100870] Crash in: SfxWorkWindow::UpdateChildWindows_Impl()

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100870

--- Comment #4 from Wilfried Koch  ---
The navigator probably was docked, but never on the left side.

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


[Libreoffice-bugs] [Bug 101207] New: $$~+1888~436~4111$$$+USA~( Quickbooks Error Support number(1-8-8-8-4-3-6-4-1-1-1)) Quickbooks Error Support number@#@#Quickbooks technical support number

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101207

Bug ID: 101207
   Summary: $$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support
number@#@#Quickbooks technical support number
   Product: libcdr
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: oliversmithu...@gmail.com

Created attachment 126474
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126474=edit
TEch Help & Support ++ UK 1888.436.4111 ++Quickbooks Technical Support Phone
Number++TEch Help & Support ++ UK 1888.436.4111 ++Quickbooks Error Support
number

$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number
$$~+1888~436~4111$$$+USA~(Quickbooks Error Support
number(1-8-8-8-4-3-6-4-1-1-1))Quickbooks Error Support number@#@#Quickbooks
technical support number

[Libreoffice-bugs] [Bug 101206] Kala Chasma 1888~436~4111Quickbooks Error Support Phone Number, QuickBooks Tech Support Number, Quickbooks Error Support Number 1888~436~4111

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101206

Oliver Smith  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Oliver Smith  ---
24x7 Quickbooks Error Support Number@ +1888~436~4111:
1)Quickbooks Error Support Number
2)Quickbooks Technical Support Number
3)Quickbooks Error Support Phone Number
4)QuickBooks Tech Support Number
5) Quickbooks Pro Support Number
6)Quickbooks Enterprise Support Number
7)Quickbooks Point of Sale Support Number
8)Quickbooks Pro Series Support Number

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


[Libreoffice-bugs] [Bug 101206] New: Kala Chasma 1888~436~4111Quickbooks Error Support Phone Number, QuickBooks Tech Support Number, Quickbooks Error Support Number 1888~436~4111

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101206

Bug ID: 101206
   Summary: Kala Chasma 1888~436~4111Quickbooks Error Support
Phone Number,QuickBooks Tech Support Number,Quickbooks
Error Support Number 1888~436~4111
   Product: Document Liberation Project
   Version: unspecified
  Hardware: IA64 (Itanium)
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: oliversmithu...@gmail.com

Created attachment 126473
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126473=edit
Kala Chasma 1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech
Support Number,Quickbooks Error Support Number 1888~436~4111

Kala Chasma 1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech
Support Number,Quickbooks Error Support Number 1888~436~4111Kala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111#1888~436~4111Quickbooks
Error Support Phone Number,QuickBooks Tech Support Number,Quickbooks Error
Support Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro
Support Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks
Point of Sale Support Number,Quickbooks Pro Series Support NumberKala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111Kala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111#1888~436~4111Quickbooks
Error Support Phone Number,QuickBooks Tech Support Number,Quickbooks Error
Support Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro
Support Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks
Point of Sale Support Number,Quickbooks Pro Series Support NumberKala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111Kala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111#1888~436~4111Quickbooks
Error Support Phone Number,QuickBooks Tech Support Number,Quickbooks Error
Support Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro
Support Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks
Point of Sale Support Number,Quickbooks Pro Series Support NumberKala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111Kala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111#1888~436~4111Quickbooks
Error Support Phone Number,QuickBooks Tech Support Number,Quickbooks Error
Support Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro
Support Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks
Point of Sale Support Number,Quickbooks Pro Series Support NumberKala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111Kala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111#1888~436~4111Quickbooks
Error Support Phone Number,QuickBooks Tech Support Number,Quickbooks Error
Support Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro
Support Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks
Point of Sale Support Number,Quickbooks Pro Series Support NumberKala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111Kala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111#1888~436~4111Quickbooks
Error Support Phone Number,QuickBooks Tech Support Number,Quickbooks Error
Support Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro
Support Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks
Point of Sale Support Number,Quickbooks Pro Series Support NumberKala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111Kala Chasma
1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number 1888~436~4111#1888~436~4111Quickbooks
Error Support Phone Number,QuickBooks Tech Support Number,Quickbooks Error
Support Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro
Support Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks

[Libreoffice-bugs] [Bug 51047] [GTK+ 2] White box around buttons in toolbars and About Dialog

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51047

Adolfo Jayme  changed:

   What|Removed |Added

Summary|[GTK] White box around  |[GTK+ 2] White box around
   |buttons in toolbars and |buttons in toolbars and
   |About Dialog|About Dialog

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


[Libreoffice-bugs] [Bug 101205] New: 24x7 Quickbooks Error Support Number@ +1888~436~4111: quickbooks Errors, quickbooks Backup, quickbooks Install & Update,

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101205

Bug ID: 101205
   Summary: 24x7 Quickbooks Error Support Number@ +1888~436~4111:
quickbooks Errors, quickbooks Backup, quickbooks
Install & Update,
   Product: cppunit
   Version: 1.12
  Hardware: x86 (IA32)
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: oliversmithu...@gmail.com

Created attachment 126472
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126472=edit
Quickbooks Error SUPPORT number))@@ 1888~436~4111 ((QuickBooks tech Support
NUmber $+USA~+18~88~436~4111 Quickbooks Support Error number Quickbooks
customer care phone number

24x7 Quickbooks Error Support Number@ +1888~436~4111:
1)Quickbooks Error Support Number
2)Quickbooks Technical Support Number
3)Quickbooks Error Support Phone Number
4)QuickBooks Tech Support Number
5) Quickbooks Pro Support Number
6)Quickbooks Enterprise Support Number
7)Quickbooks Point of Sale Support Number
8)Quickbooks Pro Series Support Number

1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech Support
Number,Quickbooks Error Support Number1888~436~4111Quickbooks Technical Support
Number,Quickbooks Pro Support Number,Quickbooks Enterprise Support
Number1888~436~4111Quickbooks Point of Sale Support Number,Quickbooks Pro
Series Support Number#1888~436~4111Quickbooks Error Support Phone
Number,QuickBooks Tech Support Number,Quickbooks Error Support
Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro Support
Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks Point of
Sale Support Number,Quickbooks Pro Series Support Number@24x7 Quickbooks Error
Support Number@ +1888~436~4111: quickbooks Errors, quickbooks Backup,
quickbooks Install & Update, quickbooks turbo tax, quickbooks Print,
Troubleshoot & fix quickbooks, quickbooks enterprise freezing on
updates.#1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech
Support Number,Quickbooks Error Support Number1888~436~4111Quickbooks Technical
Support Number,Quickbooks Pro Support Number,Quickbooks Enterprise Support
Number1888~436~4111Quickbooks Point of Sale Support Number,Quickbooks Pro
Series Support Number#1888~436~4111Quickbooks Error Support Phone
Number,QuickBooks Tech Support Number,Quickbooks Error Support
Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro Support
Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks Point of
Sale Support Number,Quickbooks Pro Series Support Number@24x7 Quickbooks Error
Support Number@ +1888~436~4111: quickbooks Errors, quickbooks Backup,
quickbooks Install & Update, quickbooks turbo tax, quickbooks Print,
Troubleshoot & fix quickbooks, quickbooks enterprise freezing on
updates.#1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech
Support Number,Quickbooks Error Support Number1888~436~4111Quickbooks Technical
Support Number,Quickbooks Pro Support Number,Quickbooks Enterprise Support
Number1888~436~4111Quickbooks Point of Sale Support Number,Quickbooks Pro
Series Support Number#1888~436~4111Quickbooks Error Support Phone
Number,QuickBooks Tech Support Number,Quickbooks Error Support
Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro Support
Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks Point of
Sale Support Number,Quickbooks Pro Series Support Number@24x7 Quickbooks Error
Support Number@ +1888~436~4111: quickbooks Errors, quickbooks Backup,
quickbooks Install & Update, quickbooks turbo tax, quickbooks Print,
Troubleshoot & fix quickbooks, quickbooks enterprise freezing on
updates.#1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech
Support Number,Quickbooks Error Support Number1888~436~4111Quickbooks Technical
Support Number,Quickbooks Pro Support Number,Quickbooks Enterprise Support
Number1888~436~4111Quickbooks Point of Sale Support Number,Quickbooks Pro
Series Support Number#1888~436~4111Quickbooks Error Support Phone
Number,QuickBooks Tech Support Number,Quickbooks Error Support
Number1888~436~4111Quickbooks Technical Support Number,Quickbooks Pro Support
Number,Quickbooks Enterprise Support Number1888~436~4111Quickbooks Point of
Sale Support Number,Quickbooks Pro Series Support Number@24x7 Quickbooks Error
Support Number@ +1888~436~4111: quickbooks Errors, quickbooks Backup,
quickbooks Install & Update, quickbooks turbo tax, quickbooks Print,
Troubleshoot & fix quickbooks, quickbooks enterprise freezing on
updates.#1888~436~4111Quickbooks Error Support Phone Number,QuickBooks Tech
Support Number,Quickbooks Error Support Number1888~436~4111Quickbooks Technical
Support Number,Quickbooks Pro Support Number,Quickbooks Enterprise Support
Number1888~436~4111Quickbooks Point of Sale Support 

[Libreoffice-bugs] [Bug 100889] Extension CADLO not working

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100889

--- Comment #3 from mount...@hotmail.com ---
(In reply to mountney from comment #2)
> > Aron
> There isn't an email address I can find for the author on the site you
> recommend...

Found the address - it's sorta hidden under the name of the site designer which
seems to imply it's the email for the site designer not the extension
developer, at least that's what I inferred at first.

The email address for the author Gerard Deneux is:

gerard.den...@free.fr

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


[Libreoffice-bugs] [Bug 101201] New: paper size and orientation cannot be changed

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101201

Bug ID: 101201
   Summary: paper size and orientation cannot be changed
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: amiable...@yahoo.com

Epson WF-3620 printer.

Print a #10 Envelope.

Select File > Print
then Properties

Paper size and orientation cannot be changed. (note that Duplex and Paper Tray
can be changed)

Workaround. Print to pdf and use evince to print. Able to change paper size and
orientation as needed in evince.

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


[Libreoffice-bugs] [Bug 101204] New: VDB function: Calc and Excel produce different results; both wrong

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101204

Bug ID: 101204
   Summary: VDB function: Calc and Excel produce different
results; both wrong
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

This is copy of bug from AOO bugzilla:
https://bz.apache.org/ooo/show_bug.cgi?id=91651  and
https://bz.apache.org/ooo/show_bug.cgi?id=109420


VDB(10;2;10;7;8) returns 971.52 (correct)
VDB(10;2;10;7.25;7.75) returns 3276.80 (incorrect - can't be more!)
Excel97 returns 0 - that's wrong too. Should be 971.52/2 I think.

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


[Libreoffice-bugs] [Bug 100889] Extension CADLO not working

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100889

mount...@hotmail.com changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |x86-64 (AMD64)
Version|5.1.4.2 release |5.0.6.3 release

--- Comment #2 from mount...@hotmail.com ---
> Aron
There isn't an email address I can find for the author on the site you
recommend...

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


[Libreoffice-commits] core.git: sc/CppunitTest_sc_opencl_test.mk

2016-07-29 Thread Markus Mohrhard
 sc/CppunitTest_sc_opencl_test.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 8590ab7e8603097de01467c8148828e98f6d0e3b
Author: Markus Mohrhard 
Date:   Fri Jul 29 17:41:43 2016 +0200

add missing uui dependency for opencl test

Change-Id: I897e5ae6ed0fea89c1f1b9e30bd6cc6505318a17
Reviewed-on: https://gerrit.libreoffice.org/27692
Reviewed-by: Tor Lillqvist 
Tested-by: Tor Lillqvist 

diff --git a/sc/CppunitTest_sc_opencl_test.mk b/sc/CppunitTest_sc_opencl_test.mk
index ee1d050..ff0532e 100644
--- a/sc/CppunitTest_sc_opencl_test.mk
+++ b/sc/CppunitTest_sc_opencl_test.mk
@@ -97,6 +97,7 @@ $(eval $(call gb_CppunitTest_use_components,sc_opencl_test,\
 ucb/source/core/ucb1 \
 ucb/source/ucp/file/ucpfile1 \
 ucb/source/ucp/tdoc/ucptdoc1 \
+   uui/util/uui \
 unotools/util/utl \
 unoxml/source/rdf/unordf \
 unoxml/source/service/unoxml \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: sw/inc sw/source

2016-07-29 Thread Miklos Vajna
 sw/inc/undobj.hxx   |8 +++-
 sw/source/core/doc/doc.cxx  |4 ++--
 sw/source/core/doc/docbm.cxx|2 +-
 sw/source/core/doc/docdraw.cxx  |8 
 sw/source/core/doc/docfmt.cxx   |2 +-
 sw/source/core/doc/docftn.cxx   |4 ++--
 sw/source/core/doc/doclay.cxx   |4 ++--
 sw/source/core/doc/docnum.cxx   |2 +-
 sw/source/core/docnode/ndtbl.cxx|4 ++--
 sw/source/core/inc/SwUndoTOXChange.hxx  |4 +++-
 sw/source/core/inc/UndoAttribute.hxx|7 ---
 sw/source/core/inc/UndoBookmark.hxx |4 +++-
 sw/source/core/inc/UndoDraw.hxx |   11 ++-
 sw/source/core/inc/UndoInsert.hxx   |4 +++-
 sw/source/core/inc/UndoNumbering.hxx|2 +-
 sw/source/core/inc/UndoTable.hxx|4 ++--
 sw/source/core/undo/SwUndoField.cxx |2 +-
 sw/source/core/undo/SwUndoFmt.cxx   |   12 ++--
 sw/source/core/undo/SwUndoPageDesc.cxx  |7 ---
 sw/source/core/undo/SwUndoTOXChange.cxx |4 ++--
 sw/source/core/undo/unattr.cxx  |   32 
 sw/source/core/undo/unbkmk.cxx  |6 +++---
 sw/source/core/undo/undel.cxx   |2 +-
 sw/source/core/undo/undobj.cxx  |   22 +-
 sw/source/core/undo/undobj1.cxx |4 ++--
 sw/source/core/undo/undoflystrattr.cxx  |2 +-
 sw/source/core/undo/undraw.cxx  |   22 +++---
 sw/source/core/undo/unfmco.cxx  |2 +-
 sw/source/core/undo/unins.cxx   |   13 +++--
 sw/source/core/undo/unmove.cxx  |4 ++--
 sw/source/core/undo/unnum.cxx   |   23 +--
 sw/source/core/undo/unoutl.cxx  |2 +-
 sw/source/core/undo/unovwr.cxx  |4 ++--
 sw/source/core/undo/unredln.cxx |6 +++---
 sw/source/core/undo/unsect.cxx  |6 +++---
 sw/source/core/undo/unsort.cxx  |4 ++--
 sw/source/core/undo/unspnd.cxx  |2 +-
 sw/source/core/undo/untbl.cxx   |   32 
 sw/source/core/undo/untblk.cxx  |2 +-
 39 files changed, 164 insertions(+), 125 deletions(-)

New commits:
commit d60708c5116b4c48b30b94095aafd3e77de46f6a
Author: Miklos Vajna 
Date:   Fri Jul 29 17:58:19 2016 +0200

sw undo: implement SfxUndoAction::GetViewShellId() interface

With this, it's possible to tell which view shell created which undo
actions. It's visible only in the doc model xml dump only, though.

Change-Id: Ia76d218a1d8b578aaad00ab733c772b10dda39f0
Reviewed-on: https://gerrit.libreoffice.org/27693
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins 

diff --git a/sw/inc/undobj.hxx b/sw/inc/undobj.hxx
index 79d890c..14e099f 100644
--- a/sw/inc/undobj.hxx
+++ b/sw/inc/undobj.hxx
@@ -49,6 +49,7 @@ class SwUndo
 {
 SwUndoId const m_nId;
 sal_uInt16 nOrigRedlineMode;
+sal_Int32 m_nViewShellId;
 
 protected:
 bool bCacheComment;
@@ -81,6 +82,8 @@ public: // should not be public, but ran into trouble in 
untbl.cxx
 virtual void RedoImpl( ::sw::UndoRedoContext & ) = 0;
 
 private:
+/// Try to obtain the view shell ID of the current view.
+static sal_Int32 CreateViewShellId(const SwDoc* pDoc);
 // SfxUndoAction
 virtual void Undo() override;
 virtual void Redo() override;
@@ -90,7 +93,7 @@ private:
 virtual bool CanRepeat(SfxRepeatTarget &) const override;
 
 public:
-SwUndo(SwUndoId const nId);
+SwUndo(SwUndoId const nId, const SwDoc* pDoc);
 virtual ~SwUndo();
 
 /**
@@ -104,6 +107,9 @@ public:
 */
 virtual OUString GetComment() const override;
 
+/// See SfxUndoAction::GetViewShellId().
+sal_Int32 GetViewShellId() const override;
+
 // UndoObject remembers which mode was turned on.
 // In Undo/Redo/Repeat this remembered mode is switched on.
 sal_uInt16 GetRedlineMode() const { return nOrigRedlineMode; }
diff --git a/sw/source/core/doc/doc.cxx b/sw/source/core/doc/doc.cxx
index 63075b8..9d7c40d 100644
--- a/sw/source/core/doc/doc.cxx
+++ b/sw/source/core/doc/doc.cxx
@@ -1651,7 +1651,7 @@ void SwDoc::AppendUndoForInsertFromDB( const SwPaM& rPam, 
bool bIsTable )
 const SwTableNode* pTableNd = 
rPam.GetPoint()->nNode.GetNode().FindTableNode();
 if( pTableNd )
 {
-SwUndoCpyTable* pUndo = new SwUndoCpyTable;
+SwUndoCpyTable* pUndo = new SwUndoCpyTable(this);
 pUndo->SetTableSttIdx( pTableNd->GetIndex() );
 GetIDocumentUndoRedo().AppendUndo( pUndo );
 }
@@ -1670,7 +1670,7 @@ void SwDoc::ChgTOX(SwTOXBase & rTOX, const SwTOXBase & 
rNew)
 {
 GetIDocumentUndoRedo().DelAllUndoObj();
 
-SwUndo * pUndo = new SwUndoTOXChange(, rNew);
+SwUndo * pUndo = new SwUndoTOXChange(this, , rNew);
 

[Libreoffice-bugs] [Bug 101203] New: centered style lost them export docx to html

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101203

Bug ID: 101203
   Summary: centered style lost them export docx to html
   Product: LibreOffice
   Version: 5.1.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: akaku...@emdev.ru

Created attachment 126471
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126471=edit
simplest docx with centered line

Open simplest docx (attached) with one centered line in Writer - everything is
ok.
Save it as HTML and open in browser - line will not be centered.
It happens because writer saved in head -> style tag default styles for p
(looks like generated from default paragraph style defined in original docx
file.
In styles there are text-align: center is defined for p element.
Later in body ___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101202] New: File – desktophelp =?UTF-8?Q?er=20really=20useful?=?

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101202

Bug ID: 101202
   Summary: File – desktophelper really useful?
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 21na...@gmail.com

This file at LIBREOFFICE_PROGRAMFILES\program\desktophelper.txt
is really useful?

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


[Libreoffice-bugs] [Bug 101200] New: Two objects are not deleted after the uninstallation

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101200

Bug ID: 101200
   Summary: Two objects are not deleted after the uninstallation
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 21na...@gmail.com

LibreOffice 5.1.4 x64, Windows
(Tested on Windows Seven)
After the uninstallation, these objects are remaining:

C:\Windows\Microsoft.NET\assembly\GAC_64\cli_cppuhelper
HKLM\SOFTWARE\Microsoft\Fusion\GACChangeNotification\Default\cli_cppuhelper,1.0.22.0,,ce2cb7e279207b9e,AMD64

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


[Libreoffice-bugs] [Bug 101199] stupid typos on Dutch Download>Fresh web page.

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101199

Cor Nouws  changed:

   What|Removed |Added

Summary|stupid typos on main Dutch  |stupid typos on Dutch
   |web page. no wonder that|Download>Fresh web page.
   |free Office progs are   |
   |mistrusted! |

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


[Libreoffice-bugs] [Bug 101105] Conditional Formatting Icons Set Defaults to Percent

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101105

--- Comment #2 from Daniel Collins  ---
I'm afraid that reasoning is totally opaque to me. The most common use-case I
can imagine is to compare values to some outside fixed criteria (for example:
passing marks in academia), not to compare on a relative scale only to the
other data points (as the "Percent" formatting does). I'd be interested if you
could describe or link to a use-case like that, because I can't see what the
value would be.

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


[Libreoffice-bugs] [Bug 101199] stupid typos on main Dutch web page. no wonder that free Office progs are mistrusted!

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101199

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||c...@nouenoff.nl
 Resolution|--- |FIXED

--- Comment #1 from Cor Nouws  ---
Thanks for reporting the issues here. mcrepe.

please report if you see more problems - the translation is a voluntary job and
together we can really make it rock :) !

I've resolved 'extenties' and 'platvormen' - the latter will be shown later,
since translation goes via Pootle, which causes some delay.

vr. groeten,
Cor

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


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

2016-07-29 Thread Winfried Donkers
 sc/qa/unit/data/functions/fods/Functions_Excel_2016.fods | 1174 +++
 sc/source/core/tool/interpr8.cxx |   16 
 2 files changed, 632 insertions(+), 558 deletions(-)

New commits:
commit 3ee2cae3a36e5d052e02c3f7b226dc3b79bd2ebc
Author: Winfried Donkers 
Date:   Fri Jul 29 09:16:34 2016 +0200

tdf#97831 follow up : remove unused arguments from stack

Intention:
Make e.g. [1+SWITCH(1;1;1;6)] work. Without this fix, the result is
7 but should be 2.

Change-Id: I2a72e458e5458c02c3ce2f4214b86ba13f7b1d11
Reviewed-on: https://gerrit.libreoffice.org/27664
Tested-by: Jenkins 
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 

diff --git a/sc/qa/unit/data/functions/fods/Functions_Excel_2016.fods 
b/sc/qa/unit/data/functions/fods/Functions_Excel_2016.fods
index bb526b2..eb51715 100644
--- a/sc/qa/unit/data/functions/fods/Functions_Excel_2016.fods
+++ b/sc/qa/unit/data/functions/fods/Functions_Excel_2016.fods
@@ -1,13 +1,13 @@
 
 
 http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
- 
2016-05-02T17:35:29nl-NL2016-06-15T11:45:50.28041404433PT2H34M2SLibreOfficeDev/5.3.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/0f258538b842e3a8639efc8c2c7afc16a1b0819e
+ 
2016-05-02T17:35:29nl-NL2016-07-29T12:52:54.35360479634PT2H36M54SLibreOfficeDev/5.3.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/eccf9a9095093a1771c5a2a5c4d235a36e64257c
  
   
0
0
26597
-   26190
+   27093

 
  view1
@@ -28,10 +28,11 @@
100
60
true
+   false
   
   
-   7
-   55
+   3
+   32
0
2
0
@@ -40,11 +41,12 @@
0
0
0
-   32
+   17
0
100
60
true
+   false
   
   
0
@@ -62,10 +64,11 @@
100
60
true
+   false
   
  
  Sheet2
- 926
+ 1210
  0
  100
  60
@@ -86,6 +89,7 @@
  1
  1
  true
+ false
 

   
@@ -132,7 +136,7 @@
true
1
true
-   iwH+/3Bybl9BbGdlbWVlbgAAQ1VQUzpwcm5fQWxnZW1lZW4WAAMAsQAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9cHJuX0FsZ2VtZWVuCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUKAERVUExFWF9PRkY=
+   

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

2016-07-29 Thread Giuseppe Castagno
 ucb/source/ucp/webdav-neon/webdavcontent.cxx |   12 
 1 file changed, 12 insertions(+)

New commits:
commit e0eb85785b68867f1476553723dbfc6dc407106b
Author: Giuseppe Castagno 
Date:   Mon Jan 11 11:11:19 2016 +0100

tdf#101094 (14) OPTIONS: Options cache removal: PUT

Change-Id: I251bbb101b4be851deaab66cbe4e10ff1fa3376e
Reviewed-on: https://gerrit.libreoffice.org/27691
Tested-by: Jenkins 
Reviewed-by: Giuseppe Castagno 

diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx 
b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index 81c015c..67d21ab 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -2422,6 +2422,8 @@ void Content::insert(
 
 aURL += aEscapedTitle;
 
+// save the URL to clean cache
+OUStringaTargetUrl = aURL;
 try
 {
 xResAccess->setURL( aURL );
@@ -2431,6 +2433,9 @@ void Content::insert(
 else
 {
 xResAccess->PUT( xInputStream, Environment );
+// remove options from cache, PUT may change it
+// it will be refreshed when needed
+aStaticDAVOptionsCache.removeDAVOptions( aTargetUrl );
 }
 // no error , set the resourcetype to unknown type
 // the resource may have transitioned from NOT FOUND or UNKNOWN to 
something else
@@ -2441,6 +2446,7 @@ void Content::insert(
 }
 catch ( DAVException const & except )
 {
+aStaticDAVOptionsCache.removeDAVOptions( aTargetUrl );
 if ( bCollection )
 {
 if ( except.getStatus() == SC_METHOD_NOT_ALLOWED )
@@ -2528,12 +2534,18 @@ void Content::insert(
 // Unreachable
 }
 
+// save the URL since it may change due to redirection
+OUStringaTargetUrl = xResAccess->getURL();
 try
 {
 xResAccess->PUT( xInputStream, Environment );
+// remove options from cache, PUT may change it
+// it will be refreshed when needed
+aStaticDAVOptionsCache.removeDAVOptions( aTargetUrl );
 }
 catch ( DAVException const & e )
 {
+aStaticDAVOptionsCache.removeDAVOptions( aTargetUrl );
 cancelCommandExecution( e, Environment, true );
 // Unreachable
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: ucb/qa ucb/source

2016-07-29 Thread Giuseppe Castagno
 ucb/qa/cppunit/webdav/webdav_options.cxx |8 
 ucb/source/ucp/webdav-neon/DAVTypes.cxx  |3 +++
 ucb/source/ucp/webdav-neon/DAVTypes.hxx  |7 +++
 ucb/source/ucp/webdav-neon/NeonSession.cxx   |   12 
 ucb/source/ucp/webdav-neon/webdavcontent.cxx |   26 +-
 5 files changed, 55 insertions(+), 1 deletion(-)

New commits:
commit dfb714183f31d8a235797ef1ad3c517966ed4985
Author: Giuseppe Castagno 
Date:   Sun Jul 24 12:12:35 2016 +0200

tdf#101094 (13) OPTIONS: Options cache removal: LOCK, UNLOCK

Change-Id: Ib5e52973252b3af7b0fbe440806eb1e669670299
Reviewed-on: https://gerrit.libreoffice.org/27686
Tested-by: Jenkins 
Reviewed-by: Giuseppe Castagno 

diff --git a/ucb/qa/cppunit/webdav/webdav_options.cxx 
b/ucb/qa/cppunit/webdav/webdav_options.cxx
index 7c0ec7b..6c89623 100644
--- a/ucb/qa/cppunit/webdav/webdav_options.cxx
+++ b/ucb/qa/cppunit/webdav/webdav_options.cxx
@@ -58,6 +58,7 @@ namespace
 CPPUNIT_ASSERT_EQUAL( false, aDavType.isClass1() );
 CPPUNIT_ASSERT_EQUAL( false, aDavType.isClass2() );
 CPPUNIT_ASSERT_EQUAL( false, aDavType.isClass3() );
+CPPUNIT_ASSERT_EQUAL( false, aDavType.isLocked() );
 CPPUNIT_ASSERT_EQUAL( true, aDavType.getAllowedMethods().isEmpty() );
 CPPUNIT_ASSERT_EQUAL( false, aDavType.isLockAllowed() );
 CPPUNIT_ASSERT_EQUAL( true, aDavType.getURL().isEmpty() );
@@ -191,6 +192,7 @@ namespace
 CPPUNIT_ASSERT_EQUAL( false, aDavOpt.isClass1() );
 CPPUNIT_ASSERT_EQUAL( false, aDavOpt.isClass2() );
 CPPUNIT_ASSERT_EQUAL( false, aDavOpt.isClass3() );
+CPPUNIT_ASSERT_EQUAL( false, aDavOpt.isLocked() );
 CPPUNIT_ASSERT_EQUAL( true, aDavOpt.getAllowedMethods().isEmpty() );
 CPPUNIT_ASSERT_EQUAL( false, aDavOpt.isLockAllowed() );
 CPPUNIT_ASSERT_EQUAL( true, aDavOpt.getURL().isEmpty() );
@@ -204,6 +206,7 @@ namespace
 aDavOpt.setClass1();
 aDavOpt.setClass2();
 aDavOpt.setClass3();
+aDavOpt.setLocked();
 aDavOpt.setAllowedMethods( aAllowedMethods );
 aDavOpt.setStaleTime( 1234567 );
 aDavOpt.setURL( aURL );
@@ -230,6 +233,11 @@ namespace
 aDavOpt.setClass3( false );
 CPPUNIT_ASSERT_EQUAL( true , aDavOpt == aDavOptTarget );
 
+aDavOpt.setLocked();
+CPPUNIT_ASSERT_EQUAL( false , aDavOpt == aDavOptTarget );
+aDavOpt.setLocked( false );
+CPPUNIT_ASSERT_EQUAL( true , aDavOpt == aDavOptTarget );
+
 aDavOpt.setResourceFound();
 CPPUNIT_ASSERT_EQUAL( false , aDavOpt == aDavOptTarget );
 aDavOpt.setResourceFound( false );
diff --git a/ucb/source/ucp/webdav-neon/DAVTypes.cxx 
b/ucb/source/ucp/webdav-neon/DAVTypes.cxx
index c0eb4ea..2f4feb3 100644
--- a/ucb/source/ucp/webdav-neon/DAVTypes.cxx
+++ b/ucb/source/ucp/webdav-neon/DAVTypes.cxx
@@ -24,6 +24,7 @@ DAVOptions::DAVOptions() :
 m_isClass1( false ),
 m_isClass2( false ),
 m_isClass3( false ),
+m_isLocked( false ),
 m_aAllowedMethods(),
 m_nStaleTime( 0 ),
 m_sURL(),
@@ -37,6 +38,7 @@ DAVOptions::DAVOptions( const DAVOptions & rOther ) :
 m_isClass1( rOther.m_isClass1 ),
 m_isClass2( rOther.m_isClass2 ),
 m_isClass3( rOther.m_isClass3 ),
+m_isLocked( rOther.m_isLocked ),
 m_aAllowedMethods( rOther.m_aAllowedMethods ),
 m_nStaleTime( rOther.m_nStaleTime ),
 m_sURL( rOther.m_sURL ),
@@ -57,6 +59,7 @@ bool DAVOptions::operator==( const DAVOptions& rOpts ) const
 m_isClass1 == rOpts.m_isClass1 &&
 m_isClass2 == rOpts.m_isClass2 &&
 m_isClass3 == rOpts.m_isClass3 &&
+m_isLocked == rOpts.m_isLocked &&
 m_aAllowedMethods == rOpts.m_aAllowedMethods &&
 m_nStaleTime == rOpts.m_nStaleTime &&
 m_sURL == rOpts.m_sURL &&
diff --git a/ucb/source/ucp/webdav-neon/DAVTypes.hxx 
b/ucb/source/ucp/webdav-neon/DAVTypes.hxx
index f9bbb1f..6dbdd20 100644
--- a/ucb/source/ucp/webdav-neon/DAVTypes.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVTypes.hxx
@@ -81,6 +81,9 @@ namespace webdav_ucp
 boolm_isClass1;
 boolm_isClass2;
 boolm_isClass3;
+// Internally used to maintain locked stated of the resource, only
+// if it's a Class 2 resource
+boolm_isLocked;
 // contains the methods allowed on this resource
 OUStringm_aAllowedMethods;
 
@@ -122,11 +125,15 @@ namespace webdav_ucp
 bool isLockAllowed() { return ( m_aAllowedMethods.indexOf( "LOCK" ) != 
-1 ); };
 bool isUnlockAllowed() { return ( m_aAllowedMethods.indexOf( "UNLOCK" 
) != -1 ); };
 
+void setLocked( bool locked = true ) { m_isLocked = locked; } ;
+bool isLocked() { return m_isLocked; };
+
 void reset() {
 m_isResourceFound = false;
 m_isClass1 = false;
 

[Libreoffice-bugs] [Bug 98984] Mailmerge ignores 'Exchange database'

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98984

--- Comment #6 from royerjy  ---
Created attachment 126470
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126470=edit
ExampleLetterWithPicturesDatabaseExchangeForm

I made few tests with today's master 3.0.0 alpha on Mageia. The bug continue to
exist as showed in attached document.

During this tests I don't have hang of LiBo.

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


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

2016-07-29 Thread Eike Rathke
 sc/source/ui/view/viewdata.cxx |   15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

New commits:
commit 5cf5975cef114870268bee792e44570ddfdaafe8
Author: Eike Rathke 
Date:   Fri Jul 29 18:18:01 2016 +0200

limit SelectionFillDOOM to 24117248 cells, tdf#60021 tdf#60056 related

Change-Id: Idabf5e51b7f423d7d58094ad1caef166728c3bed

diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx
index dc31056..f87fda6 100644
--- a/sc/source/ui/view/viewdata.cxx
+++ b/sc/source/ui/view/viewdata.cxx
@@ -864,11 +864,16 @@ bool ScViewData::SelectionForbidsPaste()
 // static
 bool ScViewData::SelectionFillDOOM( const ScRange& rRange )
 {
-/* TODO: it is still possible to select one row less than the entire sheet
- * and fool around. We could narrow this down to some "sane" value, just
- * what would be sane? At least this helps against the Ctrl+A cases. */
-return  rRange.aStart.Col() == 0 && rRange.aEnd.Col() == MAXCOL &&
-rRange.aStart.Row() == 0 && rRange.aEnd.Row() == MAXROW;
+// Assume that more than 23 full columns (23M cells) will not be
+// successful.. Even with only 10 bytes per cell that would already be
+// 230MB, formula cells would be 100 bytes and more per cell.
+// rows * columns > 23m => rows > 23m / columns
+// to not overflow in case number of available columns or rows would be
+// arbitrarily increased.
+// We could refine this and take some actual cell size into account,
+// evaluate available memory and what not, but..
+const sal_Int32 kMax = 23 * 1024 * 1024;// current MAXROWCOUNT is 
1024*1024=1048576
+return (rRange.aEnd.Row() - rRange.aStart.Row() + 1) > (kMax / 
(rRange.aEnd.Col() - rRange.aStart.Col() + 1));
 }
 
 void ScViewData::SetFillMode( SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, 
SCROW nEndRow )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 99324] Accelerator underlines dont show when pressing Alt (Sidebar, Dialogs, Start Center)

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99324

--- Comment #8 from Commit Notification 
 ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to "master":

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

Related: tdf#99324 get backingwindow to honour auto mnemonic on mod key change

It will be available in 5.3.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2016-07-29 Thread Caolán McNamara
 sfx2/source/dialog/backingwindow.cxx |   18 +-
 sfx2/source/dialog/backingwindow.hxx |1 +
 2 files changed, 18 insertions(+), 1 deletion(-)

New commits:
commit 1203bf57dea230cd6de7bb5fe359d8fcd3e033dc
Author: Caolán McNamara 
Date:   Fri Jul 29 16:29:03 2016 +0100

Related: tdf#99324 get backingwindow to honour auto mnemonic on mod key 
change

Change-Id: I533232729db4a6ad5812d18bb63c36f7401066c0

diff --git a/sfx2/source/dialog/backingwindow.cxx 
b/sfx2/source/dialog/backingwindow.cxx
index 24f3bf0..6059ca1 100644
--- a/sfx2/source/dialog/backingwindow.cxx
+++ b/sfx2/source/dialog/backingwindow.cxx
@@ -163,8 +163,19 @@ BackingWindow::BackingWindow( vcl::Window* i_pParent ) :
 
 // init background
 SetBackground();
+
+GetParent()->AddEventListener(LINK(this, BackingWindow, 
WindowEventListener));
 }
 
+IMPL_LINK_TYPED(BackingWindow, WindowEventListener, VclWindowEvent&, rEvent, 
void)
+{
+if (rEvent.GetId() != VCLEVENT_WINDOW_COMMAND)
+return;
+CommandEvent* pCmdEvt = static_cast(rEvent.GetData());
+if (pCmdEvt->GetCommand() != CommandEventId::ModKeyChange)
+return;
+Accelerator::ToggleMnemonicsOnHierarchy(*pCmdEvt, this);
+}
 
 BackingWindow::~BackingWindow()
 {
@@ -173,6 +184,7 @@ BackingWindow::~BackingWindow()
 
 void BackingWindow::dispose()
 {
+GetParent()->RemoveEventListener(LINK(this, BackingWindow, 
WindowEventListener));
 // deregister drag helper
 if (mxDropTargetListener.is())
 {
@@ -405,7 +417,7 @@ void BackingWindow::Paint(vcl::RenderContext& 
rRenderContext, const Rectangle&)
   *pVDev.get());
 }
 
-bool BackingWindow::PreNotify( NotifyEvent& rNEvt )
+bool BackingWindow::PreNotify(NotifyEvent& rNEvt)
 {
 if( rNEvt.GetType() == MouseNotifyEvent::KEYINPUT )
 {
@@ -462,6 +474,10 @@ bool BackingWindow::PreNotify( NotifyEvent& rNEvt )
 if ((aCommand != "vnd.sun.star.findbar:FocusToFindbar") && pEvt && 
mpAccExec->execute(rKeyCode))
 return true;
 }
+else if (rNEvt.GetType() == MouseNotifyEvent::COMMAND)
+{
+Accelerator::ToggleMnemonicsOnHierarchy(*rNEvt.GetCommandEvent(), 
this);
+}
 
 return Window::PreNotify( rNEvt );
 }
diff --git a/sfx2/source/dialog/backingwindow.hxx 
b/sfx2/source/dialog/backingwindow.hxx
index abb68e9..2a12b84 100644
--- a/sfx2/source/dialog/backingwindow.hxx
+++ b/sfx2/source/dialog/backingwindow.hxx
@@ -106,6 +106,7 @@ class BackingWindow : public vcl::Window, public 
VclBuilderContainer
 DECL_LINK_TYPED(CreateContextMenuHdl, ThumbnailViewItem*, void);
 DECL_LINK_TYPED(OpenTemplateHdl, ThumbnailViewItem*, void);
 DECL_LINK_TYPED(EditTemplateHdl, ThumbnailViewItem*, void);
+DECL_LINK_TYPED(WindowEventListener, VclWindowEvent&, void);
 
 void initControls();
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100900] [Enhancement] inform user when a font style doesn't exist ( bold, italic, ...)

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100900

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #2 from Jean-Baptiste Faure  ---
Valid enhancement request. Set to new.

Could be very useful for high quality typographic work.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 101159] Want to be able to make having no header or footer in the default template file

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101159

--- Comment #3 from m.a.riosv  ---
On the top there is Forgot password option.

If it doesn't work Pleaae post your question about bugzilla access in the QA
MailList.
http://nabble.documentfoundation.org/QA-f3613148.html

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


[Libreoffice-bugs] [Bug 101164] Drag and drop from bibliography database does not insert any data

2016-07-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101164

Alex Thurgood  changed:

   What|Removed |Added

   Keywords||regression

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


  1   2   3   >