[Libreoffice-bugs] [Bug 61972] FILEOPEN: ENHANCEMENT - Support reference to document directory for back end database location

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61972

tommy27  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 97330] Enable support for 'portable split databases' in Base

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97330

tommy27  changed:

   What|Removed |Added

 CC||ba...@quipo.it
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=61
   ||972

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


[Libreoffice-bugs] [Bug 97331] Crash conditional formatting, when scrolling on Icon set

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97331

--- Comment #5 from m.a.riosv  ---
Created attachment 122172
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122172=edit
Screenshot crash scrolling mouse wheel.

Same crash scrolling with the mouse wheel in the style list box.

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


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

2016-01-23 Thread Julien Nabet
 sc/source/core/data/conditio.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a0a4ea3c636fc18cca6a3b2f9391996fb909e81f
Author: Julien Nabet 
Date:   Fri Jan 22 20:18:33 2016 +0100

tdf#97308: fix logic with conditional "ends with"

Change-Id: Ib9f9ed627dc37b11d8c3911aa4fe62141ff471c2
Reviewed-on: https://gerrit.libreoffice.org/21723
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/sc/source/core/data/conditio.cxx b/sc/source/core/data/conditio.cxx
index d2402a3..8b8b4bc 100644
--- a/sc/source/core/data/conditio.cxx
+++ b/sc/source/core/data/conditio.cxx
@@ -1112,12 +1112,12 @@ bool ScConditionEntry::IsValid( double nArg, const 
ScAddress& rPos ) const
 {
 OUString aStr = OUString::number(nVal1);
 OUString aStr2 = OUString::number(nArg);
-bValid = !aStr2.endsWith(aStr);
+bValid = aStr2.endsWith(aStr);
 }
 else
 {
 OUString aStr2 = OUString::number(nArg);
-bValid = !aStr2.endsWith(aStrVal1);
+bValid = aStr2.endsWith(aStrVal1);
 }
 break;
 case SC_COND_CONTAINS_TEXT:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-23 Thread aybuke
 sfx2/source/control/unoctitm.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit beea0484de87709da0814b4acd19527c8824f9b3
Author: aybuke 
Date:   Tue Jan 19 01:34:09 2016 +0200

tdf#96434 Activate usage data collection from commandline.

Possible env variable: $ export LO_COLLECT_USAGE=1

Change-Id: Ic253850ca73551bad8b44072164881c5039615c9
Reviewed-on: https://gerrit.libreoffice.org/21596
Tested-by: jan iversen 
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx
index 7a2616c..6e63bc7 100644
--- a/sfx2/source/control/unoctitm.cxx
+++ b/sfx2/source/control/unoctitm.cxx
@@ -674,7 +674,7 @@ class theUsageInfo : public rtl::Static {};
 /// Extracts information about the command + args, and stores that.
 void collectUsageInformation(const util::URL& rURL, const 
uno::Sequence& rArgs)
 {
-bool bCollecting = 
officecfg::Office::Common::Misc::CollectUsageInformation::get();
+bool bCollecting = getenv("LO_COLLECT_USAGE") || 
officecfg::Office::Common::Misc::CollectUsageInformation::get();
 theUsageInfo::get().setCollecting(bCollecting);
 if (!bCollecting)
 return;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - filter/source sysui/desktop

2016-01-23 Thread Sean Young
 filter/source/config/fragments/types/writer_MS_Write.xcu |2 -
 sysui/desktop/debian/postinst|1 
 sysui/desktop/macosx/Info.plist.in   |   24 +++
 sysui/desktop/menus/writer.desktop   |2 -
 4 files changed, 27 insertions(+), 2 deletions(-)

New commits:
commit f63fc6a723e0325cd9e78432d02e91bbb9de80b8
Author: Sean Young 
Date:   Thu Jan 14 20:13:45 2016 +

Set file association for MS Write files on linux and Mac

Other mime types used for MS Write are application/x-wri,
application/mswrite and application/wri. I think these were
pretty rare though.

Change-Id: I2bf48ab7a2fb1d979db38774ae0547c5ab6040d4
Reviewed-on: https://gerrit.libreoffice.org/21552
Tested-by: Jenkins 
Reviewed-by: jan iversen 
Signed-off-by: Adolfo Jayme Barrientos 

diff --git a/filter/source/config/fragments/types/writer_MS_Write.xcu 
b/filter/source/config/fragments/types/writer_MS_Write.xcu
index f42dca6..48ae04b 100644
--- a/filter/source/config/fragments/types/writer_MS_Write.xcu
+++ b/filter/source/config/fragments/types/writer_MS_Write.xcu
@@ -19,7 +19,7 @@
 com.sun.star.comp.Writer.MSWorksImportFilter
 
 wri
-
+application/x-mswrite
 true
 MS_Write
 
diff --git a/sysui/desktop/debian/postinst b/sysui/desktop/debian/postinst
index b9b6f24..715403f 100755
--- a/sysui/desktop/debian/postinst
+++ b/sysui/desktop/debian/postinst
@@ -176,6 +176,7 @@ application/x-wordperfect; %PREFIX -view %s
 application/wordperfect; %PREFIX -view %s
 application/vnd.lotus-wordpro; %PREFIX -view %s
 application/wpwin; %PREFIX -view %s
+application/x-mswrite; %PREFIX -view %s
 application/vnd.openofficeorg.extension; %PREFIX %s
 END
 
diff --git a/sysui/desktop/macosx/Info.plist.in 
b/sysui/desktop/macosx/Info.plist.in
index 604a356..bd10c26 100755
--- a/sysui/desktop/macosx/Info.plist.in
+++ b/sysui/desktop/macosx/Info.plist.in
@@ -1142,6 +1142,29 @@
 public.content
 
 UTTypeDescription
+Microsoft Write
+UTTypeIdentifier
+org.libreoffice.wri-document
+UTTypeTagSpecification
+
+public.filename-extension
+
+wri
+
+public.mime-type
+
+application/x-mswrite
+
+
+
+
+
+UTTypeConformsTo
+
+public.data
+public.content
+
+UTTypeDescription
 Data Interchange Format
 UTTypeIdentifier
 org.libreoffice.dif-document
@@ -1782,6 +1805,7 @@
 org.libreoffice.wpd-document
 org.libreoffice.hwp-document
 org.libreoffice.wks-document
+org.libreoffice.wri-document
 org.libreoffice.dif-document
 org.libreoffice.slk-document
 org.libreoffice.csv-document
diff --git a/sysui/desktop/menus/writer.desktop 
b/sysui/desktop/menus/writer.desktop
index 1df1b49..68ec858 100644
--- a/sysui/desktop/menus/writer.desktop
+++ b/sysui/desktop/menus/writer.desktop
@@ -22,7 +22,7 @@ Icon=writer
 Type=Application
 
Categories=Office;WordProcessor;X-Red-Hat-Base;X-MandrivaLinux-Office-Wordprocessors;
 Exec=${UNIXBASISROOTNAME} --writer %%FILE%%
-MimeType=application/vnd.oasis.opendocument.text;application/vnd.oasis.opendocument.text-template;application/vnd.oasis.opendocument.text-web;application/vnd.oasis.opendocument.text-master;application/vnd.oasis.opendocument.text-master-template;application/vnd.sun.xml.writer;application/vnd.sun.xml.writer.template;application/vnd.sun.xml.writer.global;application/msword;application/vnd.ms-word;application/x-doc;application/x-hwp;application/rtf;text/rtf;application/vnd.wordperfect;application/wordperfect;application/vnd.lotus-wordpro;application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/vnd.ms-word.document.macroenabled.12;application/vnd.openxmlformats-officedocument.wordprocessingml.template;application/vnd.ms-word.template.macroenabled.12;application/vnd.ms-works;application/vnd.stardivision.writer-global;application/x-extension-txt;application/x-t602;text/plain;application/vnd.oasis.opendocument.text-flat-xml;application/x-fictionbook+xml;applicatio
 
n/macwriteii;application/x-aportisdoc;application/prs.plucker;application/vnd.palm;application/clarisworks;application/x-sony-bbeb;application/x-abiword;application/x-iwork-pages-sffpages;

[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #14 from Ofir  ---
OpenGL ON/OFF has no effect.

Can you please try to reproduce it with Windows 7 or Ubuntu 14.04 and
LibreOffice 5.1.0.2?

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


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

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

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

tdf#96434 Activate usage data collection from commandline.

It will be available in 5.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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


[Bug 96434] Activate usage data collection from commandline

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

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

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

tdf#96434 Activate usage data collection from commandline.

It will be available in 5.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

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


[Bug 96434] Activate usage data collection from commandline

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

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


[Libreoffice-bugs] [Bug 97331] Crash conditional formatting, when scrolling on Icon set

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97331

--- Comment #3 from Yan Pashkovsky  ---
LO crashes, so I guess this bug must be marked as CRITICAL

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


[Libreoffice-bugs] [Bug 97331] Crash conditional formatting, when scrolling on Icon set

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97331

--- Comment #4 from Julien Nabet  ---
Sorry I forgot to pinpoint something:
it crashes in acceptableWheelScrollTarget method so
shouldReusePreviousMouseWindow must return true.
Reading this part:
   1320 //If the last event at the same absolute screen position was handled by
a
   1321 //different window then reuse that window if the event occurs within
1/2 a
   1322 //second, i.e. so scrolling down something like the calc sidebar that
contains
   1323 //widgets that respond to wheel events will continue to send the event
to the
   1324 //scrolling widget in favour of the widget that happens to end up under
the
   1325 //mouse.
   1326 static bool shouldReusePreviousMouseWindow(const SalWheelMouseEvent&
rPrevEvt, const SalWheelMouseEvent& rEvt)
   1327 {
   1328 return (rEvt.mnX == rPrevEvt.mnX && rEvt.mnY == rPrevEvt.mnY &&
rEvt.mnTime-rPrevEvt.mnTime < 500/*ms*/);
   1329 }
it means you must scroll fast enough to reproduce the crash (less than 0.5s
between each scroll)
Indeed, if I wait, let's say 1 sec for example, between each scroll, I got no
crash.

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


[Libreoffice-bugs] [Bug 96614] Not possible to re-anchor the picture with footer involved

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96614

szots...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from szots...@gmail.com ---
I use openSUSE Leap 42.1 x64 Linux with KDE 5.

1.) Click on the picture above the footer (anchor is invisible)
2.) Select the frame in the footer -> the anchor appears above the picture
where a new line begins
3.) Click on the anchor -> the anchor disappears immediately and the blinking
cursor takes over

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - scp2/source

2016-01-23 Thread Sean Young
 scp2/source/writer/registryitem_writer.scp |9 +
 1 file changed, 9 insertions(+)

New commits:
commit 91c708955435503b1ec95b68a4fa234b949b335f
Author: Sean Young 
Date:   Fri Dec 11 12:41:24 2015 +

Register LibreOffice as able to open MS Write files

Change-Id: I9d2962214e048e489c063b9a364dbfa207740949
Reviewed-on: https://gerrit.libreoffice.org/20643
Reviewed-by: jan iversen 
Tested-by: jan iversen 
Signed-off-by: Adolfo Jayme Barrientos 

diff --git a/scp2/source/writer/registryitem_writer.scp 
b/scp2/source/writer/registryitem_writer.scp
index 80cbbdd..a1db1ef 100644
--- a/scp2/source/writer/registryitem_writer.scp
+++ b/scp2/source/writer/registryitem_writer.scp
@@ -1577,6 +1577,15 @@ RegistryItem gid_Regitem_OpenOffice_WPS_OpenWith_Writer
 Value = " ";
 End
 
+// .WRI
+RegistryItem gid_Regitem_OpenOffice_WRI_OpenWith_Writer
+ParentID = PREDEFINED_HKEY_CLASSES_ROOT;
+Subkey = ".wri\OpenWithProgIDs";
+ModuleID = gid_Module_Prg_Wrt_Bin;
+Name = "LibreOffice.WriterDocument.1";
+Value = " ";
+End
+
 // .HWP
 RegistryItem gid_Regitem_OpenOffice_HWP_OpenWith_Writer
 ParentID = PREDEFINED_HKEY_CLASSES_ROOT;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97328] Calc Compare Document (Spreadsheet Compare) doesn't compare Sheets names.

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97328

Francisco José Cañizares Santofimia  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 97327] Calc Compare Document (Spreadsheet Compare) doesn't works well when comparing documents with different number of Sheets.

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97327

Francisco José Cañizares Santofimia  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 90407] AutoFit option not exported in PowerPoint

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90407

raal  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #5 from raal  ---
duplicate bug 96409 with test file, setting to NEW

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


[Libreoffice-bugs] [Bug 97312] FILEOPEN: Table in a DOC file displayed outside of page border

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97312

MM  changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
Version|5.1.0.2 rc  |4.1.6.2 release
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #2 from MM  ---
Unconfirmed with v3.3.4 under windows 7 x64.
Confirmed with v4.1.6.2 under mint 16 x64.
Confirmed with v5.1.0.2 under ubuntu 14.04 x64.

That's not the only problem with this doc. From v4.2 there's a blank page
added, which wasn't there with v4.1.

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


[Libreoffice-bugs] [Bug 58344] FORMATTING: new presentation inherits 'Tasks-Pane - Masters Used - Background preview'

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58344

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #10 from Jean-Baptiste Faure  ---
Based on comment #6 I do not reproduce with LibreOffice 5.1.1.0.0+ nor
5.0.5.0.0+ both built at home under Ubuntu 15.10 x86-64.

Closing as WorksForMe. Please feel free to reopen if you disagree.

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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97324] EDITING: unwanted insertion/change of letters while typing ("Record Changes" and "Show Changes" ON)

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97324

tommy27  changed:

   What|Removed |Added

Summary|Editing |EDITING: unwanted
   ||insertion/change of letters
   ||while typing ("Record
   ||Changes" and "Show Changes"
   ||ON)

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


[Libreoffice-bugs] [Bug 97324] Editing

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97324

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@quipo.it
 Ever confirmed|0   |1

--- Comment #6 from tommy27  ---
@JIM7
please tell the exact LibO version you are using and the exact Window version
of your PC (including 32 or 64 bit)

last available LibO release in 5.0.4.2 so if you are not up to date, download
it and install it.

if you are already using that release, please try reetting the user profile
https://wiki.documentfoundation.org/UserProfile

then tell if this fix things or issue persists.

status -> NEEDINFO

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


[Libreoffice-bugs] [Bug 90407] AutoFit option not exported in PowerPoint

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90407

--- Comment #4 from 2460...@gmail.com ---
Hello, I am not the OP but I posted a very similar bug report with attatchments
reference no. 96409. My bug was marked a dupe and closed while this one has
been abandoned by the OP.

Please could you consider my post as a follow up to this one (in response the
NEEDINFO request). The bug is a real kiler for compatiblity with Powerpoint, as
you can imagine - the Autofit is not exported to doc format and hence all the
text boxes are mis-sized!

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

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


[Libreoffice-bugs] [Bug 97183] Blacked Toolbar Icon Background When Using Breeze Theme

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97183

--- Comment #3 from thanosshad...@yahoo.com ---
Can I add something I just found out yesterday? This issue is present in most
linux distributions I have tested except Kubuntu (and probably other Ubuntu
flavours - not sure about derivatives though)...

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


[Libreoffice-bugs] [Bug 97333] New: impossible to create chart

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97333

Bug ID: 97333
   Summary: impossible to create chart
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sharck...@yahoo.com

Created attachment 122171
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122171=edit
file to replicate the mentined problem

Hi,

I'm trying to create a chart based on a imported TXT file.

After formatting the columns I select the data and use Insert->Chart ...
The program freezes ... 

We can say that we have 50K lines of data ... sure, but we also have 8 cores @
4GHz and 16G of RAM ... the whole file is just a little over 1 Mbyte ...
something is wrong here.

The same data with a M$ product ... graph is instant ...

I'm really trying to use open software and promote this in my organization ...
but man ... it's hard sometime ... sorry, but I just had to say this.

Attached you can find the txt file for you to try.

Thanks and Regards,
George

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #13 from tommy27  ---
does turning OpenGL ON/OFF from the "Tools/Options/View" menu make any
difference?

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


[Libreoffice-bugs] [Bug 97331] Crash conditional formatting, when scrolling on Icon set

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97331

Yan Pashkovsky  changed:

   What|Removed |Added

 CC||yanp...@gmail.com
Version|5.2.0.0.alpha0+ Master  |5.0.1.2 release

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


[Libreoffice-commits] core.git: qadevOOo/runner qadevOOo/tests swext/mediawiki

2016-01-23 Thread jan iversen
 qadevOOo/runner/util/utils.java |3 
 qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java|   14 +-
 qadevOOo/tests/java/ifc/drawing/_DrawingDocumentDrawView.java   |3 
 swext/mediawiki/src/com/sun/star/wiki/MainThreadDialogExecutor.java |   54 
+-
 4 files changed, 41 insertions(+), 33 deletions(-)

New commits:
commit 77031644f16b63c794c1eef0ec4456d37e34fe23
Author: jan iversen 
Date:   Fri Jan 22 15:04:25 2016 +0100

cid#1326434, 1326446, 1326248, 1326254

null pointer dereferencing, added null check

Change-Id: I78f3ee1eb5d5bd4ebe7b3a6775db4884859dbcf6
Reviewed-on: https://gerrit.libreoffice.org/21712
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/qadevOOo/runner/util/utils.java b/qadevOOo/runner/util/utils.java
index c3f3458..8582f5f 100644
--- a/qadevOOo/runner/util/utils.java
+++ b/qadevOOo/runner/util/utils.java
@@ -587,7 +587,8 @@ public class utils {
 } catch (com.sun.star.uno.Exception e) {
 }
 
-xTrans.parseStrict(rUrl);
+if (xTrans != null)
+xTrans.parseStrict(rUrl);
 
 return rUrl[0];
 }
diff --git a/qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java 
b/qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java
index 971dab8..d766c96 100644
--- a/qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java
+++ b/qadevOOo/tests/java/ifc/awt/tree/_XTreeNode.java
@@ -137,12 +137,18 @@ public class _XTreeNode extends MultiMethodTest {
 }
 
 log.println("try to get parrent of children");
-XTreeNode xParrent = xNode.getParent();
+if (xNode == null) {
+log.println("missing xNode");
+tRes.tested("getParent()", false);
+}
+else {
+XTreeNode xParrent = xNode.getParent();
 
 
-bOK = oObj.equals(xParrent);
-log.println("original object and parrent should be the same: " + bOK);
-tRes.tested("getParent()", bOK);
+bOK = oObj.equals(xParrent);
+log.println("original object and parrent should be the same: " + 
bOK);
+tRes.tested("getParent()", bOK);
+}
 }
 
 
diff --git a/qadevOOo/tests/java/ifc/drawing/_DrawingDocumentDrawView.java 
b/qadevOOo/tests/java/ifc/drawing/_DrawingDocumentDrawView.java
index 082babb..597e44c 100644
--- a/qadevOOo/tests/java/ifc/drawing/_DrawingDocumentDrawView.java
+++ b/qadevOOo/tests/java/ifc/drawing/_DrawingDocumentDrawView.java
@@ -164,7 +164,8 @@ public class _DrawingDocumentDrawView extends 
MultiPropertyTest {
 }
 log.println("oldZoomValue: "+oldValue);
 log.println("newZoomValue: "+newValue);
-tRes.tested("ZoomType",(!oldValue.equals(newValue)));
+if (oldValue != null)
+tRes.tested("ZoomType",(!oldValue.equals(newValue)));
 }
 
 }
diff --git 
a/swext/mediawiki/src/com/sun/star/wiki/MainThreadDialogExecutor.java 
b/swext/mediawiki/src/com/sun/star/wiki/MainThreadDialogExecutor.java
index 784bc77..a6ee07f 100644
--- a/swext/mediawiki/src/com/sun/star/wiki/MainThreadDialogExecutor.java
+++ b/swext/mediawiki/src/com/sun/star/wiki/MainThreadDialogExecutor.java
@@ -60,40 +60,40 @@ public class MainThreadDialogExecutor implements XCallback
 
 private static boolean GetCallback( XComponentContext xContext, 
MainThreadDialogExecutor aExecutor )
 {
+if (aExecutor == null)
+  return false;
+
 try
 {
-if ( aExecutor != null )
-{
-String aThreadName = null;
-Thread aCurThread = Thread.currentThread();
-if ( aCurThread != null )
-aThreadName = aCurThread.getName();
+String aThreadName = null;
+Thread aCurThread = Thread.currentThread();
+if ( aCurThread != null )
+aThreadName = aCurThread.getName();
 
-if ( aThreadName != null && aThreadName.equals( 
"com.sun.star.thread.WikiEditorSendingThread" ) )
+if ( aThreadName != null && aThreadName.equals( 
"com.sun.star.thread.WikiEditorSendingThread" ) )
+{
+// the main thread should be accessed asynchronously
+XMultiComponentFactory xFactory = xContext.getServiceManager();
+if ( xFactory == null )
+throw new com.sun.star.uno.RuntimeException();
+
+XRequestCallback xRequest = UnoRuntime.queryInterface(
+XRequestCallback.class,
+xFactory.createInstanceWithContext( 
"com.sun.star.awt.AsyncCallback", xContext ) );
+if ( xRequest != null )
 {
-// the main thread should be accessed asynchronously
-XMultiComponentFactory xFactory = 
xContext.getServiceManager();
-if ( xFactory == null 

[Libreoffice-commits] core.git: wizards/com

2016-01-23 Thread jan iversen
 wizards/com/sun/star/wizards/document/Control.java |   17 ++---
 1 file changed, 14 insertions(+), 3 deletions(-)

New commits:
commit b996107585efb7bed88351d2cea2e56d8500c2fb
Author: jan iversen 
Date:   Thu Jan 21 19:35:26 2016 +0100

cid#1326113, 1326410, 1326411

Removed reference to elements in a null pointer.

Change-Id: Ife6fc68128284e291130a9a81bb7557ce03197ed
Reviewed-on: https://gerrit.libreoffice.org/21690
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/wizards/com/sun/star/wizards/document/Control.java 
b/wizards/com/sun/star/wizards/document/Control.java
index 17d12f0..9ff4691 100644
--- a/wizards/com/sun/star/wizards/document/Control.java
+++ b/wizards/com/sun/star/wizards/document/Control.java
@@ -75,7 +75,7 @@ public class Control extends Shape
 try
 {
 icontroltype = _icontroltype;
-String sServiceName = 
oFormHandler.sModelServices[getControlType()];
+String sServiceName = oFormHandler.sModelServices[icontroltype];
 Object oControlModel = 
oFormHandler.xMSFDoc.createInstance(sServiceName);
 xControlModel = UnoRuntime.queryInterface( XControlModel.class, 
oControlModel );
 xPropertySet = UnoRuntime.queryInterface( XPropertySet.class, 
oControlModel );
@@ -185,15 +185,21 @@ public class Control extends Shape
 else
 {
 Size aPeerSize = getPeerSize();
+int  aWidth;
+if (aPeerSize == null)
+aWidth = 0;
+else
+aWidth = aPeerSize.Width;
+
 // We increase the preferred Width a bit so that the control does 
not become too small
 // when we change the border from "3D" to "Flat"
 if (getControlType() == FormHandler.SOCHECKBOX)
 {
-return aPeerSize.Width * oFormHandler.getXPixelFactor();
+return aWidth * oFormHandler.getXPixelFactor();
 }
 else
 {
-return (aPeerSize.Width * oFormHandler.getXPixelFactor()) + 
200;
+return (aWidth * oFormHandler.getXPixelFactor()) + 200;
 }
 }
 }
@@ -208,6 +214,11 @@ public class Control extends Shape
 {
 Size aPeerSize = getPeerSize();
 int nHeight = aPeerSize.Height;
+if (aPeerSize == null)
+ nHeight = 0;
+else
+ nHeight = aPeerSize.Height;
+
 // We increase the preferred Height a bit so that the control does 
not become too small
 // when we change the border from "3D" to "Flat"
 return ((nHeight + 1) * oFormHandler.getYPixelFactor());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92284] "Bad Allocation" error problem in Impress

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92284

herman.via...@edpnet.be changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #7 from herman.via...@edpnet.be ---
Used my presentation on LO 5.0.4 on Win 10: all slides show correctly in
editing and "show" mode, and I was able to do changes and save te file.
Trying to do the same in LO 5.0.4 on Mageia 5: slides slow OK in the preview
pane up to slide 192, but selecting slide 183 gives a empty screen in the
editing pane (the small icon for the presence of a graphical file shows, nut
not the actual image). The slide show gives already up at slide 13, so it
behaves even worse than LO 4.4.7

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


[Libreoffice-bugs] [Bug 92049] icon changes do not affect drop-down icons in New menu until close

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92049

Maxim Monastirsky  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=96
   ||736
Summary|icon theme changes do not   |icon changes do not affect
   |affect icons in New/Save|drop-down icons in New menu
   |drop-down menus until close |until close

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


[Libreoffice-bugs] [Bug 96736] Save toolbar dropdown doesn't update icons after theme change

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96736

Maxim Monastirsky  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 58349] Turn Border button into a split button

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58349

Maxim Monastirsky  changed:

   What|Removed |Added

 CC||fpobl...@kamanga.cl

--- Comment #13 from Maxim Monastirsky  ---
*** Bug 97320 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 97320] Save last clicked choice

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97320

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #1 from Maxim Monastirsky  ---
Thanks for reporting. This was requested already in Bug 58349, so closing this
bug as a duplicate.

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

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


[Libreoffice-bugs] [Bug 96482] cannot access columns of a tablecontrol in design mode

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96482

--- Comment #18 from t...@tim-passingham.co.uk ---
Works for me - ubuntu 14.04 64 bit LO 5.1.0.2.

Many thanks.

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


[Libreoffice-bugs] [Bug 92531] PRINTING: Draw fails to print large drawings over correctly sized multiple pages

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92531

MarjaE  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WONTFIX |---

--- Comment #11 from MarjaE  ---
(In reply to Randolph from comment #7)
> Yes, I can confirm this is not a problem in v5.0.5.

I don't have 5.0.5, but this is still a major problem in 5.0.4. Only solution
I've found is to duplicate the file, merge all objects into one group, create
as many slides as needed pages, and orient the group appropriately in each
page.

If this has been fixed between 5.0.4 and 5.0.5, that's one thing, but "won't
fix" implies that this will remain broken and will continue to require
ridiculous workarounds.

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #16 from Ofir  ---
Please test 5.1.0.2 on Windows 7.

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

Ofir  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INSUFFICIENTDATA

--- Comment #19 from Ofir  ---
This bug have too many useless posts.
I'll create a new one.

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #21 from Ofir  ---
tommy27: please don't comment on the new issue.
Thanks

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


[Libreoffice-bugs] [Bug 97323] Sverweis (VLOOKUP) - bug?

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97323

GerardF  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 CC||gerard.farg...@orange.fr
 Resolution|--- |NOTABUG

--- Comment #4 from GerardF  ---
LO Help :
https://help.libreoffice.org/index.php?title=Calc/Spreadsheet_Functions=en-US=WIN=5.2#bm_id3152809

"If the SortOrder parameter is omitted or set to TRUE or one, it is assumed
that the data is sorted in ascending order. In this case, if the exact
SearchCriterion is not found, the last value that is smaller than the criterion
will be returned"

Not a bug.

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


[Libreoffice-bugs] [Bug 97327] Calc Compare Document (Spreadsheet Compare) doesn't works well when comparing documents with different number of Sheets.

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97327

--- Comment #2 from raal  ---
*** Bug 97328 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 97328] Calc Compare Document (Spreadsheet Compare) doesn't compare Sheets names.

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97328

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||r...@post.cz
 Resolution|--- |DUPLICATE

--- Comment #1 from raal  ---
Hello, solving Bug 97327 will also solve this bug. If Bug 97327 will be solved,
then after compare you will see all content of the renamed sheet. If you don't
agree, set again to unconfirmed.

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

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


[Libreoffice-bugs] [Bug 97335] Scrolling Bug in LibreOffice, Safari, and Firefox

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97335

MarjaE  changed:

   What|Removed |Added

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

--- Comment #2 from MarjaE  ---
Had to turn off middle mouse button functions, quit libreoffice, and restart,
but finally freed middle mouse button for other apps. I guess that solved my
button, but having to quit to see the effects of settings changes makes it
harder to diagnose settings-related problems.

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


[Libreoffice-bugs] [Bug 97336] New: Allow changes to Preferences to immediately take effect

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97336

Bug ID: 97336
   Summary: Allow changes to Preferences to immediately take
effect
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: erw...@alumni.beloit.edu

I had some trouble debuggging a scrolling issue.

Preferences > View > Mddle Mouse Button > Automatic Scrolling was interfering
with another scrolling tool using the same button. Changing this to > No
Function didn't seem to help.

I had to change it to > No Function, quit, and restart before I realized that
was the fix.

I think, if these immediately took effect, then this would make it easier for
users to diagnose and fix these issues.

I don't know whether this is practical though.

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


[Libreoffice-bugs] [Bug 97333] impossible to create chart

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97333

--- Comment #4 from MM  ---
Looks like the hang is fixed with v5.1.0.2 under ubuntu 14.04 x64, but not on
v5.0.5.1.

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


[Libreoffice-bugs] [Bug 97334] [Numbers] Add iWorks' Numbers missing functions

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97334

--- Comment #1 from Dennis Roczek  ---
https://wiki.documentfoundation.org/Functions_comparison_of_LibreOffice_Calc_and_Numbers

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


[Libreoffice-bugs] [Bug 97323] Sverweis (VLOOKUP) - bug?

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97323

--- Comment #2 from khrehfeld  ---
Created attachment 122173
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122173=edit
LibreOffice Calc: trying a summary of several spreadsheets in one spreadsheet
using SVERWEIS (VLOOKUP)

LibreOfficeCalc programm
Comments/description are on the first spreadsheet

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


[Libreoffice-bugs] [Bug 97327] Calc Compare Document (Spreadsheet Compare) doesn't works well when comparing documents with different number of Sheets.

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97327

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
Version|unspecified |3.5.0 release
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
I can confirm with Version: 5.2.0.0.alpha0+
Build ID: e1367aaf7d9cc93bbbe3ba64015fde3469c61c6e
CPU Threads: 4; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-01-20_23:32:01
and LO 3.5

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


[Libreoffice-bugs] [Bug 97335] New: Scrolling Bug in LibreOffice, Safari, and Firefox

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97335

Bug ID: 97335
   Summary: Scrolling Bug in LibreOffice, Safari, and Firefox
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: erw...@alumni.beloit.edu

Hi,

I use Scroll+ to allow me to scroll with my coordination issues and rsi. After
trying to debug Firefox, Scroll+ failed in LibreOffice, Safari, and Firefox,
while it continues to work in other applications. I'm wondering if there is a
common implementation of scrolling, or scrolling accessibility tools, in the
three, that would fail together, without failing in other apps. I know this is
really weird...

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


[Libreoffice-bugs] [Bug 97335] Scrolling Bug in LibreOffice, Safari, and Firefox

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97335

--- Comment #1 from MarjaE  ---
Okay, somehow the scrolling options and hardware acceleration had turned back
on in Firefox. I turned them back off, fixing the problem in both Firefox and
Safari (???) but not LibreOffice.

I need to use the middle mouse button with Sroll+, so I need to disable tools
that use the middle mouse button for other features, including other scroll
settings. However, disabling the middle mouse button in LibreOffice preferences
doesn't disable its middle-mouse-button scrolling or enable Scroll+'s
middle-mouse-button scrolling.

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


[Libreoffice-bugs] [Bug 97333] impossible to create chart

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97333

--- Comment #3 from geo  ---

Hi,

I can confirm it's not blocking anymore with 5.2.0.0.alpha0+ (x64) but it's
still painfully slow.

Looks like OpenGL is enabled but Hw acceleration is grayed out.

Thanks

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


[Libreoffice-bugs] [Bug 97336] Allow changes to Preferences to immediately take effect

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97336

--- Comment #1 from MarjaE  ---
Alternatively, the preferences could note that changes will take place after
restart.

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


[Libreoffice-bugs] [Bug 97334] New: [Numbers] Add iWorks' Numbers missing functions

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97334

Bug ID: 97334
   Summary: [Numbers] Add iWorks' Numbers missing functions
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dennisroc...@libreoffice.org

I have analyzed all Apple's iWorks Numbers functions finally. I will also post
my list to the wiki later this weekend.

We do not support all functions of Numbers. The help is accessible at
https://manuals.info.apple.com/en_US/Formulas_and_Functions_User_Guide.pdf

Basically all functions do explain themself, some remarks in brackets:
BASETONUM (similar to hex2bin etc. just with another base)
DAYNAME (DAYNAME(1) = Sunday)
DUR2DAYS
DUR2HOURS
DUR2MILLISECONDS
DUR2MINUTES
DUR2SECONDS
DUR2WEEKS
MONTHNAME (MONTHNAME(11) = November)
NUMTOBASE (see BASETONUM)
STRIPDURATION (similar to DUR2DAYS, seems to be included for compatibility with
other spreadsheet software, dunno which one it is or where the difference to
DUR2DAYS is)

I think we should support these functions for compatibility reasons (and for
importing .number pages in the DLP project)

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


[Libreoffice-bugs] [Bug 97333] impossible to create chart

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97333

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #2 from Cor Nouws  ---
and please look at influence of settings: Tools > Options > LibreOffice
> View .. OpenGL and .. Hardware Acceleration.

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #17 from tommy27  ---
I told you I really had no time and can't assure I will.

however I doubt I will reproduce a bug you already saw in 5.0.4.2 that I did
not reproduce even after testing it with the same release and 2 different
Windows machines (7x64 and 8.1x64)

did you reset the user profile?

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


[Libreoffice-bugs] [Bug 97337] REGRESSION: Background graphics cause artifacts in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97337

--- Comment #2 from Ofir  ---
Created attachment 122179
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122179=edit
PDF exported from LibreOffice showing the issue

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


[Libreoffice-bugs] [Bug 97337] REGRESSION: Background graphics cause artifacts in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97337

--- Comment #1 from Ofir  ---
Created attachment 122178
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122178=edit
PDF exported from PowerPoint 2013 showing the expected result

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


[Libreoffice-bugs] [Bug 97005] LOOL UX: Strike-through together with numbering/bullets does not work correctly

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97005

--- Comment #1 from Pranav Kant  ---
This seems to be working fine for me. Can you still reproduce this bug ?

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


[Libreoffice-bugs] [Bug 60557] EDITING - Insert-Envelope dialog's Printer tab - Envelope orientation icons seem to be incorrect (Canon printer)

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60557

Jean-Baptiste Faure  changed:

   What|Removed |Added

Version|unspecified |3.3.3 release

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


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

2016-01-23 Thread Bryan Quigley
 scp2/source/activex/module_activex.ulf |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 09ffa9515ed7baa7e91d591fa24bf112c7c74b1c
Author: Bryan Quigley 
Date:   Mon Jan 18 00:14:13 2016 -0500

Show that ActiveX support is deprecated

This just adds deprecated before activex support and mentions
to the user to check the release notes for more details.

Change-Id: I4bb7d577fb8f9e2618691e5418b1ddc4a4330ae2
Reviewed-on: https://gerrit.libreoffice.org/21563
Tested-by: Jenkins 
Tested-by: jan iversen 
Reviewed-by: jan iversen 

diff --git a/scp2/source/activex/module_activex.ulf 
b/scp2/source/activex/module_activex.ulf
index 9bc08c6..eb8a045 100644
--- a/scp2/source/activex/module_activex.ulf
+++ b/scp2/source/activex/module_activex.ulf
@@ -20,7 +20,7 @@
 en-US = "ActiveX Control"
 
 [STR_DESC_MODULE_OPTIONAL_ACTIVEXCONTROL]
-en-US = "Component to enable Microsoft Internet Explorer to display 
%PRODUCTNAME documents."
+en-US = "Deprecated Component (see release notes) to enable Microsoft Internet 
Explorer to display %PRODUCTNAME documents."
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Akshay Deep license statement

2016-01-23 Thread Akshay Deep
All of my past & future contributions to LibreOffice may be
   licensed under the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 97332] SVG: Incorrect fill color

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97332

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
Created attachment 122175
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122175=edit
comparison with FF

I can not confirm with Version: 5.2.0.0.alpha0+
Build ID: e1367aaf7d9cc93bbbe3ba64015fde3469c61c6e
CPU Threads: 4; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-01-20_23:32:01

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #18 from Ofir  ---
Please test 5.1.0.2 on Windows 7.

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


[Libreoffice-bugs] [Bug 97332] SVG: Incorrect fill color

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97332

--- Comment #2 from Xisco Faulí  ---
Created attachment 122176
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122176=edit
how it looks for me

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #20 from tommy27  ---
feel free to open a new one but please understand that the version field MUST
indicate the earliest version you saw a bug (in this case 5.0.4.2) not the
latest.

and also try to reset the user profile to see if the issue persists.
if your bug is due to a user profile corruption you will continue to reproduce
it unlike other users

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


[Libreoffice-bugs] [Bug 97323] Sverweis (VLOOKUP) - bug?

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97323

--- Comment #3 from khrehfeld  ---
Created attachment 122174
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122174=edit
Bug? using SVERWEIS/VLOOKUP

LibreOfficeCalc program, using SVERWEIS/VLOOKUP

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


[Libreoffice-bugs] [Bug 92531] PRINTING: Draw fails to print large drawings over correctly sized multiple pages

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92531

Beluga  changed:

   What|Removed |Added

 Status|REOPENED|NEW

--- Comment #12 from Beluga  ---
(In reply to MarjaE from comment #11)
> (In reply to Randolph from comment #7)
> > Yes, I can confirm this is not a problem in v5.0.5.
> 
> I don't have 5.0.5, but this is still a major problem in 5.0.4. Only
> solution I've found is to duplicate the file, merge all objects into one
> group, create as many slides as needed pages, and orient the group
> appropriately in each page.
> 
> If this has been fixed between 5.0.4 and 5.0.5, that's one thing, but "won't
> fix" implies that this will remain broken and will continue to require
> ridiculous workarounds.

Joel just meant it as a reference to the backportRequest:4.4

But if you are still seeing it in 5.0.4 we have to set to NEW.

5.0.5 was nowhere in sight in 2015-08-05 when Randolph commented. He just
forgot one zero: 5.0.0.5.
https://wiki.documentfoundation.org/ReleasePlan/5.0

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


[Libreoffice-bugs] [Bug 97337] New: REGRESSION: Background graphics cause artifacts in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97337

Bug ID: 97337
   Summary: REGRESSION:  Background graphics cause artifacts in
PDF export
   Product: LibreOffice
   Version: 5.1.0.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ofirr@gmail.com

Created attachment 122177
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122177=edit
PPTX showing this issue

The attached PPTX has background graphics in the master slide (white circles).
When exporting to PDF, the circle on the right turns to dark blue and there are
several diagonal black lines.

The PPTX is created with PowerPoint 2013 with the ion template.

Reproducible with LibreOffice 5.1.0.2 and 5.2.0.0.alpha0+ on Windows 7
Reproducible with LibreOffice 5.1.0.2 on Ubuntu 14.04.
Both are clean machines without anything installed beside LibreOffice (not even
MS Office).

LibreOffice 5.0.4.2 doesn't have this issue so it looks like a regression.

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


[Libreoffice-commits] core.git: icon-themes/elementary icon-themes/tango postprocess/packimages

2016-01-23 Thread irem
 icon-themes/elementary/links.txt  |1 -
 icon-themes/tango/links.txt   |1 -
 postprocess/packimages/image-sort.lst |2 --
 3 files changed, 4 deletions(-)

New commits:
commit 31504c85f13861c40bdab6db0b6276f16662a166
Author: irem 
Date:   Sat Jan 23 17:36:17 2016 +0200

tdf# 95360 Fix use of icons used only from help, but not in the code

Change-Id: I87c7c32dcc61522c214b8a30a88c6856b4857c1d
Reviewed-on: https://gerrit.libreoffice.org/21733
Reviewed-by: jan iversen 
Tested-by: jan iversen 

diff --git a/icon-themes/elementary/links.txt b/icon-themes/elementary/links.txt
index 035a2a0..f5985b5 100644
--- a/icon-themes/elementary/links.txt
+++ b/icon-themes/elementary/links.txt
@@ -455,7 +455,6 @@ res/sx03247.png res/odf_16_8.png
 res/sx03248.png res/odm_16_8.png
 res/sx03249.png res/odp_16_8.png
 res/sx03250.png res/ods_16_8.png
-res/sx03251.png res/odt_16_8.png
 res/sx03256.png cmd/sc_addons.png
 sc/imglst/lc26047.png cmd/lc_insertformula.png
 sc/imglst/lc26048.png cmd/lc_autosum.png
diff --git a/icon-themes/tango/links.txt b/icon-themes/tango/links.txt
index 63f253b..63cf1fd 100644
--- a/icon-themes/tango/links.txt
+++ b/icon-themes/tango/links.txt
@@ -66,7 +66,6 @@ res/extension_plus_32.png desktop/res/extension_32.png
 svtools/res/fp011.png fpicker/res/fp015.png
 res/sx03250.png res/ods_16_8.png
 res/sx03132.png res/sx03127.png
-res/sx03251.png res/odt_16_8.png
 res/sc10854.png res/target.png
 res/im30821.png res/im30820.png
 res/sx03145.png res/sx03144.png
diff --git a/postprocess/packimages/image-sort.lst 
b/postprocess/packimages/image-sort.lst
index 2cb3eec..ac4842b 100644
--- a/postprocess/packimages/image-sort.lst
+++ b/postprocess/packimages/image-sort.lst
@@ -13,8 +13,6 @@ res/mainapp_16.png
 res/mainapp_32.png
 sw/res/punkt.png
 sw/res/punkt_h.png
-res/sx03251.png
-res/lx03251.png
 
 -- literal
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96736] Save toolbar dropdown doesn't update icons after theme change

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96736

Maxim Monastirsky  changed:

   What|Removed |Added

 CC||tietze.he...@gmail.com

--- Comment #3 from Maxim Monastirsky  ---
*** Bug 97317 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 97317] Icon in the new save split button is not adjusted to changed icon set

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97317

--- Comment #2 from Maxim Monastirsky  ---
New and Save buttons aren't the same problem.

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

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


[Libreoffice-bugs] [Bug 97333] impossible to create chart

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97333

raal  changed:

   What|Removed |Added

  Component|Calc|Chart

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


[Libreoffice-bugs] [Bug 97333] impossible to create chart

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97333

raal  changed:

   What|Removed |Added

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

--- Comment #1 from raal  ---
I can confirm with 5.0.4 - cpu at 100%
but works in Version: 5.2.0.0.alpha0+ (x64)
Build ID: cfe08df695c046371c4361a434176e6381e3e064
CPU Threads: 1; OS Version: Windows 6.19; UI Render: default; 
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-12-15_13:10:55
Win10

Please test with dev version, seems to be fixed.
http://dev-builds.libreoffice.org/daily/master/
Thank you

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #15 from tommy27  ---
just tested under Win7x64 using LibO 5.0.4.2 (sorry but I had no time to
download and install 5.1.0.2) and I still have a correct PDF output like in my
previous attachment. I do not have any Linux machine to test.

did you try resetting the user profile?
https://wiki.documentfoundation.org/UserProfile

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

Ofir  changed:

   What|Removed |Added

Version|5.0.4.2 release |5.1.0.2 rc

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #22 from tommy27  ---
I'll comment on any issue I want.

Learn how to use a bug tracker and be polite with other users.

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

tommy27  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #24 from tommy27  ---

the fact you are using a clean Windows machine doesn't imply you have a clean
LibO user profile.

so please reset it and tell if it fixes things.

and stop being rude.

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


[Libreoffice-bugs] [Bug 69861] Page wrapping and pagination problem

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69861

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #12 from Jean-Baptiste Faure  ---
LibreOffice 5.1.1.0.0+ opens the file, it find 43 pages and this number does
not change.

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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97338] Criterion in Query fails in GUI when using DATEADD function, but runs in SQLView. Query can then only be edited, saved and run in Sqlview. Query runs normally, but canno

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97338

Bob  changed:

   What|Removed |Added

Summary|Date Criterion in Query |Criterion in Query fails in
   |fails in GUI criterion  |GUI when using DATEADD
   |when using DATEADD function |function,  but runs in
   |fails,  but runs in |SQLView. Query can then
   |SQLView. Query can then |only be edited, saved and
   |only be edited and run in   |run in Sqlview. Query runs
   |Sqlview |normally, but cannot be
   ||edited in GUI.

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


[Libreoffice-bugs] [Bug 97339] EDITING: quotation marks in italics can't be erased

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97339

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 @Trey, could you attach a sample file, as little as possible, where to
reproduce the issue.

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


[Libreoffice-bugs] [Bug 97331] Crash conditional formatting, when scrolling on Icon set

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97331

Luke Picciau  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 97337] Background graphics cause artifacts in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97337

tommy27  changed:

   What|Removed |Added

   Keywords||regression
 CC||ba...@quipo.it
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=97
   ||298
Summary|REGRESSION:  Background |Background graphics cause
   |graphics cause artifacts in |artifacts in PDF export
   |PDF export  |

--- Comment #3 from tommy27  ---
retested under Windows 8.1 x64 using LibO  5.2.0.0.alpha0+
Build ID: c81eddbb20c84280aa64c712e34c829380b24527
CPU Threads: 4; OS Version: Windows 6.2; UI Render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2016-01-22_04:18:42
Locale: it-IT (it_IT)

the bug is not reproducible on my system and I get a correct PDF output unlike
the attached PDF from the bug reporter

as in Bug 97298 I suggested the reporter to reset the User Profile in order to
exclude a corrupted profile as root of the issue.

instructions here: https://wiki.documentfoundation.org/UserProfile

P.S. moved "regression" from summary notes to keywords field which is the
correct place for that

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


[Libreoffice-bugs] [Bug 97321] visualizzazione/scelta di una data in tendina

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97321

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 instead a screenshot could attach a sample file, as minimal as possible.

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


[Libreoffice-bugs] [Bug 97333] impossible to create chart

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97333

--- Comment #5 from Cor Nouws  ---
(In reply to geo from comment #3)

> Looks like OpenGL is enabled but Hw acceleration is grayed out.

Try it without, please (don't forget to restart LibreOffice after changing the
setting)

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


[Libreoffice-bugs] [Bug 66776] Importing .xls: Change in Cell Border Width Conversion

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66776

Jeff Evans  changed:

   What|Removed |Added

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

--- Comment #3 from Jeff Evans  ---
Bug was resolved some time ago, as noted by Yousouf above.
Just checked previously suppled sample and get satisfactory results in LO 5.0.3
vs MS Office 2010.

Thanks.

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


[Libreoffice-bugs] [Bug 90116] SIDEBAR: Conditional formatting tab

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90116

Rishabh  changed:

   What|Removed |Added

   Assignee|kris.kr...@gmail.com|libreoffice-b...@lists.free
   ||desktop.org

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


[Libreoffice-bugs] [Bug 97340] New: Calc crashes on filtering with select checkbox with space bar

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97340

Bug ID: 97340
   Summary: Calc crashes on filtering with select checkbox with
space bar
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: inyun2us...@gmail.com

Created attachment 122181
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122181=edit
Just right before pressing space bar then it crashes

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


[Libreoffice-bugs] [Bug 97340] Calc crashes on filtering with select checkbox with space bar

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97340

Jeong-Hwi RA  changed:

   What|Removed |Added

 Attachment #122181|Just right before pressing  |in filter, Just right
description|space bar then it crashes   |before pressing space bar
   ||then it crashes

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #23 from Ofir  ---
I asked you not to comment on the new issue and you are suggesting me to reset
the profile although I wrote that I was testing on a clean Ubuntu and Windows 7
machines without anything else installed.

If you don't have time to test this issue on Windows 7 with LibreOffice 5.1.0.2
please let someone else that has the time to test it.

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


[Libreoffice-bugs] [Bug 97324] EDITING: unwanted insertion/change of letters while typing ("Record Changes" and "Show Changes" ON)

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97324

--- Comment #8 from JIM7  ---
I went to: Tools ▸ AutoCorrect Options
I unchecked almost everything.
I think I fixed it. Prelim test is good.
I'll keep in touch, if my fix doesn't work.

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


[Libreoffice-bugs] [Bug 97339] New: EDITING: quotation marks in italics can't be erased

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97339

Bug ID: 97339
   Summary: EDITING: quotation marks in italics can't be erased
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tlange...@shaw.ca

quotation marks when changed to italics can't be erased.  moving or erasing
text does not move quotation marks.  Its like their on a separate layer, and
won't go away even with reboot.

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


[Libreoffice-bugs] [Bug 71089] Legacy draw:custom_shape cannot be converted to draw:frame.

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71089

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #4 from Jean-Baptiste Faure  ---
As Edward did not explain what would be the gain if this conversion was
possible, I close this enhancement request as WontFix.
Feel free to reopen if you disagree. In this case please explain what the gain
would be.

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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97324] EDITING: unwanted insertion/change of letters while typing ("Record Changes" and "Show Changes" ON)

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97324

--- Comment #9 from JIM7  ---
Okay, I found what was doing it.
In: Tool/AutoCorrect/options
If you have (T) check marked on "Use replacement table"
You will encounter my problem.
:)
I suggest you have the default be unchecked.
:)

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


CppCheck Report Update

2016-01-23 Thread cppcheck.libreoff...@gmail.com

A new cppcheck report is available at : 
http://dev-builds.libreoffice.org/cppcheck_reports/master/


Note:
The script generating this report was run at :
2016-24-01_02:11:42 with user buildslave at host vm140 as 
/home/buildslave/source/dev-tools/cppcheck/cppcheck-report.sh -s 
/home/buildslave/source/libo-core -c /home/buildslave/source/cppcheck -w 
/home/buildslave/tmp/www

It can be found and improved here:

https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=cppcheck/cppcheck-report.sh


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


[Libreoffice-bugs] [Bug 82396] Sidebar: Incorrect behavior regarding real-time update of values in "Position and Size"

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82396

Rishabh  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |kris.kr...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 97324] EDITING: unwanted insertion/change of letters while typing ("Record Changes" and "Show Changes" ON)

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97324

--- Comment #7 from JIM7  ---
LO: version 5.0.4.2
Win XP sp3
32 bit

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


[Libreoffice-bugs] [Bug 97324] EDITING: unwanted insertion/change of letters while typing ("Record Changes" and "Show Changes" ON)

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97324

tommy27  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
Version|unspecified |5.0.4.2 release
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 97298] Wrong color of background graphics in PDF export

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97298

--- Comment #25 from tommy27  ---
and remember I already tested on a Win7 machine the bug you described in
5.0.4.2 without seeing any issue (check my previous attachment) so it makes me
think that the bug is not in LibO but probably in your computer... maybe that
machine is not so clean as you were thinking

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


[Libreoffice-bugs] [Bug 97338] New: Date Criterion in Query fails in GUI criterion when using DATEADD function fails, but runs in SQLView. Query can then only be edited and run in Sqlview

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97338

Bug ID: 97338
   Summary: Date Criterion in Query fails in GUI criterion  when
using DATEADD function fails,  but runs in SQLView.
Query can then only be edited and run in Sqlview
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: b...@telpro.co.za

Using >= DATEADD( 'dd', - 180, CURRENT_DATE ) in GUI gives a Syntax error when
trying to add directly into GUI. Workaround is to add it in SQLVIEW AND TO SAVE
IN SQLVIEW. Do not try run Query or SAVE in GUI as you will need to start all
over, by deleting criterion , switching to SQLVIEW and re-editing. Query will
run normally if saved and closed in SQLVIEW. 

GUI rules of syntax table a little fussy it seems.

Sample SQL Below. 

SELECT 
"ItemMaster"."ItemNo", 
"ItemSOHMonthly"."MonthEnd",
 "ItemSalesMonthly"."SalesQty",
 "ItemSOHMonthly"."SOHQty" 

FROM
 "ItemSOHMonthly" "ItemSOHMonthly",
 "ItemMaster" "ItemMaster",
 "ItemSalesMonthly" "ItemSalesMonthly"

WHERE
"ItemSOHMonthly"."ItemNo" = "ItemMaster"."ItemNo" 

AND
 "ItemSalesMonthly"."ItemNo" = "ItemMaster"."ItemNo"

AND 
"ItemSalesMonthly"."MonthEnd" = "ItemSOHMonthly"."MonthEnd" 

AND 
"ItemMaster"."ItemNo" = :ItemNo

AND
"ItemSOHMonthly"."MonthEnd" >= DATEADD( 'dd', - 180, CURRENT_DATE )

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


  1   2   >