[Libreoffice-commits] core.git: include/vcl offapi/com toolkit/Library_tk.mk toolkit/source vcl/source

2016-01-26 Thread Tor Lillqvist
 include/vcl/opengl/OpenGLContext.hxx |5 +
 offapi/com/sun/star/awt/XToolkitExperimental.idl |5 +
 toolkit/Library_tk.mk|5 -
 toolkit/source/awt/vclxtoolkit.cxx   |   19 +++
 vcl/source/opengl/OpenGLContext.cxx  |9 +
 5 files changed, 42 insertions(+), 1 deletion(-)

New commits:
commit 2c55288357c9d5410afae58c1fbb97cdfabf0360
Author: Tor Lillqvist 
Date:   Tue Jan 26 11:17:57 2016 +0200

Add API to get the number of OpenGL buffer swaps, including through UNO

Change-Id: Iff29ac615ad4b6516790b1cbbde0215a3cd0efe6

diff --git a/include/vcl/opengl/OpenGLContext.hxx 
b/include/vcl/opengl/OpenGLContext.hxx
index d5a9e31..2b4af08 100644
--- a/include/vcl/opengl/OpenGLContext.hxx
+++ b/include/vcl/opengl/OpenGLContext.hxx
@@ -186,6 +186,9 @@ public:
 /// reset the GL context so this context is not implicit in subsequent GL 
calls.
 void resetCurrent();
 void swapBuffers();
+
+static sal_Int64 getBufferSwapCounter();
+
 void sync();
 void show();
 
@@ -249,6 +252,8 @@ private:
 ProgramCollection maPrograms;
 OpenGLProgram* mpCurrentProgram;
 
+static sal_Int64 mnBufferSwapCounter;
+
 public:
 vcl::Region maClipRegion;
 int mnPainting;
diff --git a/offapi/com/sun/star/awt/XToolkitExperimental.idl 
b/offapi/com/sun/star/awt/XToolkitExperimental.idl
index 3b73057..7c5d363 100644
--- a/offapi/com/sun/star/awt/XToolkitExperimental.idl
+++ b/offapi/com/sun/star/awt/XToolkitExperimental.idl
@@ -22,6 +22,11 @@ interface XToolkitExperimental : XToolkit2
   /** Process all pending idle events
*/
   void processEventsToIdle();
+
+
+  /** Get the number of OpenGL buffer swaps.
+   */
+  hyper getOpenGLBufferSwapCounter();
 };
 
 }; }; }; };
diff --git a/toolkit/Library_tk.mk b/toolkit/Library_tk.mk
index e5aaad5..1136e2e 100644
--- a/toolkit/Library_tk.mk
+++ b/toolkit/Library_tk.mk
@@ -21,7 +21,10 @@ $(eval $(call gb_Library_Library,tk))
 
 $(eval $(call gb_Library_set_componentfile,tk,toolkit/util/tk))
 
-$(eval $(call gb_Library_use_external,tk,boost_headers))
+$(eval $(call gb_Library_use_externals,tk,\
+boost_headers \
+glew \
+))
 
 $(eval $(call gb_Library_set_include,tk,\
 $$(INCLUDE) \
diff --git a/toolkit/source/awt/vclxtoolkit.cxx 
b/toolkit/source/awt/vclxtoolkit.cxx
index 6929c58..7fe5032 100644
--- a/toolkit/source/awt/vclxtoolkit.cxx
+++ b/toolkit/source/awt/vclxtoolkit.cxx
@@ -22,6 +22,13 @@
 #include 
 #include 
 #endif
+#if defined UNX && !defined MACOSX
+#include 
+#include "GL/glxew.h"
+#include 
+#undef None // Avoid clash with the one in 
+#undef Status // Sigh... used for instance as parameter name in 
css::awt::XImageConsumer
+#endif
 #include 
 #include 
 #include 
@@ -113,6 +120,7 @@
 #include 
 #include 
 #include 
+#include 
 #include "toolkit/awt/vclxspinbutton.hxx"
 #include 
 #include 
@@ -195,6 +203,9 @@ public:
 virtual void SAL_CALL processEventsToIdle()
 throw (css::uno::RuntimeException, std::exception) override;
 
+virtual sal_Int64 SAL_CALL getOpenGLBufferSwapCounter()
+throw (css::uno::RuntimeException, std::exception) override;
+
 // css::awt::XToolkit
 css::uno::Reference< css::awt::XWindowPeer >  SAL_CALL getDesktopWindow(  
) throw(css::uno::RuntimeException, std::exception) override;
 css::awt::RectangleSAL_CALL 
getWorkArea(  ) throw(css::uno::RuntimeException, std::exception) override;
@@ -1906,6 +1917,8 @@ void SAL_CALL VCLXToolkit::reschedule()
 Application::Reschedule(true);
 }
 
+// css::awt::XToolkitExperimental
+
 void SAL_CALL VCLXToolkit::processEventsToIdle()
 throw (css::uno::RuntimeException, std::exception)
 {
@@ -1913,6 +1926,12 @@ void SAL_CALL VCLXToolkit::processEventsToIdle()
 Scheduler::ProcessEventsToIdle();
 }
 
+sal_Int64 SAL_CALL VCLXToolkit::getOpenGLBufferSwapCounter()
+throw (css::uno::RuntimeException, std::exception)
+{
+ return OpenGLContext::getBufferSwapCounter();
+}
+
 // css:awt:XToolkitRobot
 
 void SAL_CALL VCLXToolkit::keyPress( const css::awt::KeyEvent & aKeyEvent )
diff --git a/vcl/source/opengl/OpenGLContext.cxx 
b/vcl/source/opengl/OpenGLContext.cxx
index f409bec..a1296a9 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -50,6 +50,8 @@ static std::vector g_vShareList;
 static std::vector g_vShareList;
 #endif
 
+sal_Int64 OpenGLContext::mnBufferSwapCounter = 0;
+
 GLWindow::~GLWindow()
 {
 #if defined( UNX ) && !defined MACOSX && !defined IOS && !defined ANDROID && 
!defined(LIBO_HEADLESS)
@@ -1535,6 +1537,8 @@ void OpenGLContext::swapBuffers()
 glXSwapBuffers(m_aGLWin.dpy, m_aGLWin.win);
 #endif
 
+mnBufferSwapCounter++;
+
 static bool bSleep = getenv("SAL_GL_SLEEP_ON_SWAP");
 if (bSleep)
 {
@@ -1544,6 +1548,11 @@ void OpenGLContext::swapBuffers()
 }
 }
 
+sal_Int64 

[Libreoffice-bugs] [Bug 97375] New: Impress crashes in text selection

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

Bug ID: 97375
   Summary: Impress crashes in text selection
   Product: LibreOffice
   Version: 4.4.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jaragu...@igalia.com

Created attachment 122214
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122214=edit
Test case

Steps to reproduce:

1. Open the attached test case.
2. Click on the slide contents, and select the entire first three bullets and
the first word of the fourth ("Qwer").
3. Cut the text (with ctrl+x or with the toolbar icon).
4. Impress will crash.

Reproduced with the LO in my distro:

Version: 4.4.7.2
Build ID: 4.4.7.2-1.fc22
Locale: es_ES.UTF-8

Also in master:

Version: 5.2.0.0.alpha0+
Build ID: b250f3ddd7d8a14746b4df1029b7cbf3ae86b1d1
CPU Threads: 4; OS Version: Linux 4.2; UI Render: default; 
Locale: en-US (es_ES.UTF-8)

-- 
You are receiving this mail because:
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 94228] replace BOOST_PP macros with C++11 variadic templates where possible

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

--- Comment #6 from Björn Michaelsen  ---
(In reply to Daniel L Robertson from comment #4)
> The last commit should have removed the last use of BOOST_PP in include. I
> know of at least two other uses of BOOST_PP, but I'm not sure if they should
> be removed. I'll continue to look for cases in which handwritten macros are
> used, but I expect my activity on this will slow down significantly.

Hi Daniel,

thanks a lot for your work here. Closing this issue for now as per above, if
only to not block people from seeing more interesting easyHacks.

-- 
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 94228] replace BOOST_PP macros with C++11 variadic templates where possible

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

--- Comment #6 from Björn Michaelsen  ---
(In reply to Daniel L Robertson from comment #4)
> The last commit should have removed the last use of BOOST_PP in include. I
> know of at least two other uses of BOOST_PP, but I'm not sure if they should
> be removed. I'll continue to look for cases in which handwritten macros are
> used, but I expect my activity on this will slow down significantly.

Hi Daniel,

thanks a lot for your work here. Closing this issue for now as per above, if
only to not block people from seeing more interesting easyHacks.

-- 
You are receiving this mail because:
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 94228] replace BOOST_PP macros with C++11 variadic templates where possible

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

Björn Michaelsen  changed:

   What|Removed |Added

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

-- 
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 94228] replace BOOST_PP macros with C++11 variadic templates where possible

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

Björn Michaelsen  changed:

   What|Removed |Added

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

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


[Bug 87933] Easier visibility of automatic page breaks

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

--- Comment #16 from Yousuf (Jay) Philips  ---
Created attachment 122216
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122216=edit
Automatic vs Manual page breaks

So this is how it presently looks between manual (blue) and automatic (gray 7)
page breaks.

-- 
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-ux-advise] [Bug 87933] Easier visibility of automatic page breaks

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

--- Comment #16 from Yousuf (Jay) Philips  ---
Created attachment 122216
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122216=edit
Automatic vs Manual page breaks

So this is how it presently looks between manual (blue) and automatic (gray 7)
page breaks.

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


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

2016-01-26 Thread Miklos Vajna
 sw/qa/extras/ooxmlimport/data/tdf95376.docx  |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx |9 +
 writerfilter/source/dmapper/DomainMapper.cxx |8 
 3 files changed, 17 insertions(+)

New commits:
commit 3915bf2dc877d5f1140798e24933db0f21386a4a
Author: Miklos Vajna 
Date:   Tue Jan 26 13:21:28 2016 +0100

tdf#95376 DOCX import: fix incorrectly indented tab stops

Regression from commit f4badd9a485f32f787d78431ed673e2932973887
(tdf#92454 DOCX import: allow overriding para prop from num style in
para style, 2015-09-22), the problem was yet another priority
mishandling in the maze of various styles and indentation handling.

In the tdf#92454 bugdoc, both a numbering-from-paragraph-style and a
paragraph-style defined indentation, and Word preferred the numbering,
while Writer preferred the paragraph style, that's why the import-time
conversion was added.

However, it turns out there is a 3rd source that's still not direct
indentation formatting: a direct numbering. So the correct priority is:

direct-ind > ind-from-num > ind-from-parastyle > ind-from-num-from-parastyle

Which means in this case the indentation should not be set directly: the
two conflicting value (ind-from-num and ind-from-parastyle) will be
resolved correctly by Writer core.

Given that we always first get the para style info, and only then the
numbering, we just need to undo the conversion added for the other bug
if we see a direct numbering, then both the old bugdoc and this new one
will be handled properly.

Change-Id: I09cc84605d5df6159da985ad069d46b580a53358

diff --git a/sw/qa/extras/ooxmlimport/data/tdf95376.docx 
b/sw/qa/extras/ooxmlimport/data/tdf95376.docx
new file mode 100644
index 000..9bd2d05
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/tdf95376.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 5fd2bf8..14ddf51 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -2859,6 +2859,15 @@ DECLARE_OOXMLIMPORT_TEST(testTdf92454, "tdf92454.docx")
 CPPUNIT_ASSERT_EQUAL(beans::PropertyState_DIRECT_VALUE, 
xParagraph->getPropertyState("ParaFirstLineIndent"));
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf95376, "tdf95376.docx")
+{
+uno::Reference xParagraph(getParagraph(2), 
uno::UNO_QUERY);
+// This was beans::PropertyState_DIRECT_VALUE: indentation-from-numbering
+// did not have priority over indentation-from-paragraph-style, due to a
+// filter workaround that's not correct here.
+CPPUNIT_ASSERT_EQUAL(beans::PropertyState_DEFAULT_VALUE, 
xParagraph->getPropertyState("ParaFirstLineIndent"));
+}
+
 DECLARE_OOXMLIMPORT_TEST(testTdf92124, "tdf92124.docx")
 {
 // Get the second paragraph's numbering style's 1st level's suffix.
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index d54127b..4f2e981 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -1213,6 +1213,14 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, 
PropertyMapPtr rContext )
 rContext->Insert( PROP_NUMBERING_RULES, aRules );
 // erase numbering from pStyle if already set
 rContext->Erase(PROP_NUMBERING_STYLE_NAME);
+
+// Indentation can came from:
+// 1) Paragraph style's numbering's indentation: the 
current non-style numId has priority over it.
+// 2) Numbering's indentation: Writer handles that 
natively, so it should not be set on rContext.
+// 3) Paragraph style's indentation: ditto.
+// 4) Direct paragraph formatting: that will came later.
+// So no situation where keeping indentation at this point 
would make sense -> erase.
+rContext->Erase(PROP_PARA_FIRST_LINE_INDENT);
 }
 }
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 81296] Can't open more than one File from the "open files" dialog.

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

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

--- Comment #8 from Jean-Baptiste Faure  ---
reproducible with LO 5.0.5 RC1 under W7.
--> NEW

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


[Bug 45775] PgSQL new DB allow empty Datasource

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

--- Comment #20 from Akshay Deep  ---
(In reply to Lionel Elie Mamane from comment #19)
> (In reply to Akshay Deep from comment #18)
> 
> > Can you help me by helping me find code where the dialog is created and the
> > buttons get enabled. I need to somehow perform a check that if the chosen db
> > is PostgreSQl, then the next button should be enabled by default.
> 
> > I am trying to look in "dbwizsetup.cxx".
> 
> Is comment 10 helpful?

Yes, It was really explanatory and I did what was required. Somehow, the NEXT
button needs to be activated as soon as the dialog is created. And here I think
I need to look into dbwizsetup.cxx from beginning of [comment 10]. I believe
somewhere in ODbTypeWizDialogSetup::createPage()function of dbwizsetup.cxx, we
can enable next button by default.

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


[Libreoffice-commits] core.git: include/vcl toolkit/source vcl/source

2016-01-26 Thread Tor Lillqvist
 include/vcl/opengl/OpenGLContext.hxx |5 -
 include/vcl/openglwin.hxx|6 ++
 toolkit/source/awt/vclxtoolkit.cxx   |   11 ++-
 vcl/source/opengl/OpenGLContext.cxx  |9 +
 4 files changed, 13 insertions(+), 18 deletions(-)

New commits:
commit 32d98b2551644dea50e58f99ae921a82a0f69753
Author: Tor Lillqvist 
Date:   Tue Jan 26 12:31:04 2016 +0200

Put getBufferSwapCounter() in OpenGLWindow instead

 is a more light-weight include file and including
that causes less trouble on the various platforms.

Change-Id: I5c9baa171278d291468ef45a47d9fdbc64326957

diff --git a/include/vcl/opengl/OpenGLContext.hxx 
b/include/vcl/opengl/OpenGLContext.hxx
index 2b4af08..d5a9e31 100644
--- a/include/vcl/opengl/OpenGLContext.hxx
+++ b/include/vcl/opengl/OpenGLContext.hxx
@@ -186,9 +186,6 @@ public:
 /// reset the GL context so this context is not implicit in subsequent GL 
calls.
 void resetCurrent();
 void swapBuffers();
-
-static sal_Int64 getBufferSwapCounter();
-
 void sync();
 void show();
 
@@ -252,8 +249,6 @@ private:
 ProgramCollection maPrograms;
 OpenGLProgram* mpCurrentProgram;
 
-static sal_Int64 mnBufferSwapCounter;
-
 public:
 vcl::Region maClipRegion;
 int mnPainting;
diff --git a/include/vcl/openglwin.hxx b/include/vcl/openglwin.hxx
index 6b2e58d..9ae5d14 100644
--- a/include/vcl/openglwin.hxx
+++ b/include/vcl/openglwin.hxx
@@ -48,6 +48,12 @@ public:
 virtual void MouseMove( const MouseEvent& rMEvt ) override;
 virtual void Command( const CommandEvent& rCEvt ) override;
 
+/**
+ * Returns the number of times OpenGL buffers have been swapped.
+ * Not really any good reason why this is in this class, but...
+ */
+static sal_Int64 getBufferSwapCounter();
+
 private:
 std::unique_ptr mxImpl;
 IRenderer* mpRenderer;
diff --git a/toolkit/source/awt/vclxtoolkit.cxx 
b/toolkit/source/awt/vclxtoolkit.cxx
index 7fe5032..0053928 100644
--- a/toolkit/source/awt/vclxtoolkit.cxx
+++ b/toolkit/source/awt/vclxtoolkit.cxx
@@ -22,13 +22,6 @@
 #include 
 #include 
 #endif
-#if defined UNX && !defined MACOSX
-#include 
-#include "GL/glxew.h"
-#include 
-#undef None // Avoid clash with the one in 
-#undef Status // Sigh... used for instance as parameter name in 
css::awt::XImageConsumer
-#endif
 #include 
 #include 
 #include 
@@ -105,6 +98,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -120,7 +114,6 @@
 #include 
 #include 
 #include 
-#include 
 #include "toolkit/awt/vclxspinbutton.hxx"
 #include 
 #include 
@@ -1929,7 +1922,7 @@ void SAL_CALL VCLXToolkit::processEventsToIdle()
 sal_Int64 SAL_CALL VCLXToolkit::getOpenGLBufferSwapCounter()
 throw (css::uno::RuntimeException, std::exception)
 {
- return OpenGLContext::getBufferSwapCounter();
+ return OpenGLWindow::getBufferSwapCounter();
 }
 
 // css:awt:XToolkitRobot
diff --git a/vcl/source/opengl/OpenGLContext.cxx 
b/vcl/source/opengl/OpenGLContext.cxx
index a1296a9..d6458c8 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -11,6 +11,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -50,7 +51,7 @@ static std::vector g_vShareList;
 static std::vector g_vShareList;
 #endif
 
-sal_Int64 OpenGLContext::mnBufferSwapCounter = 0;
+static sal_Int64 nBufferSwapCounter = 0;
 
 GLWindow::~GLWindow()
 {
@@ -1537,7 +1538,7 @@ void OpenGLContext::swapBuffers()
 glXSwapBuffers(m_aGLWin.dpy, m_aGLWin.win);
 #endif
 
-mnBufferSwapCounter++;
+nBufferSwapCounter++;
 
 static bool bSleep = getenv("SAL_GL_SLEEP_ON_SWAP");
 if (bSleep)
@@ -1548,9 +1549,9 @@ void OpenGLContext::swapBuffers()
 }
 }
 
-sal_Int64 OpenGLContext::getBufferSwapCounter()
+sal_Int64 OpenGLWindow::getBufferSwapCounter()
 {
-return mnBufferSwapCounter;
+return nBufferSwapCounter;
 }
 
 void OpenGLContext::sync()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Suggestion

2016-01-26 Thread Eike Rathke
Hi Rick,

On Monday, 2016-01-25 16:26:53 -0500, Rick C. Hodgin wrote:

> On Mon, Jan 25, 2016 at 3:21 PM, Rick C. Hodgin 
> > On Tue, Jan 12, 2016 at 8:00 AM, Eike Rathke  wrote:
> >> On Friday, 2016-01-08 19:52:49 -0500, Rick C. Hodgin wrote:
> >>
> >> > The category is called *"Metric."*
> >> >
> >> > When conveying fractional values, such that 1.2345E-08 (which is
> >> > 0.000,000,012,345), it would do so in a metric-relative way using the
> >> > standard milli (10^-3), micro (10^-6), nano (10^-9), pico (10^-12), and
> >> so
> >> > on...
> >> >
> >> > In the example, the *Metric* display would cause the value to show up
> >> > as "*12,345
> >> > pu*" (pico-units) if the thousands separator was used.
> >>
> >> Could you give some examples what you think how the format code actually
> >> should look like?
> >>
> > Eike, I never heard back from you after my reply.
> >
> > The format would be "Metric" with "Metric:seconds" given for a specific
> > override for the units name.  And there are a few other options that I
> > would like to append including a bias that the data may already be in, such
> > as kilo-units ("Metric[:seconds][:bias=kilo]") and an override base to use,
> > such as always displaying in milli-units
> > ("Metric[:seconds][:bias=kilo][affix:milli]").
> >
> 
> Please forgive my dyslexia.  It should be:
> Metric[:seconds][:bias=kilo][:affix=milli]
> 
> Each of the [] portions are optional, and would actually appear in a form
> like this:
> 
> Metric:seconds:bias=kilo:affix=milli

I don't see how that would fit into the existing number format code
syntax. It looks like something completely different.

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GPG key "ID" 0x65632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A
Better use 64-bit 0x6A6CD5B765632D3A here is why: https://evil32.com/
Care about Free Software, support the FSFE https://fsfe.org/support/?erack


signature.asc
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: helpcontent2

2016-01-26 Thread Christian Lohmaier
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 09e46424c510924bae09c6e0147095e2958fa009
Author: Christian Lohmaier 
Date:   Tue Jan 26 00:12:22 2016 +0100

Updated core
Project: help  184121fb7abffe19012e3a64187281f0332a4b20

lists cannot be nested directly - use hackaround using switch instead

Change-Id: I9a39112dbaca103ddb6b2783b5a142b280fbba8b

diff --git a/helpcontent2 b/helpcontent2
index 6eb5558..184121f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 6eb5558b50b74b2ad51f05b8273c7e1bd72ba8f3
+Subproject commit 184121fb7abffe19012e3a64187281f0332a4b20
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97244] Incorrect preview and printing of ratio group

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

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||qui...@gmail.com,
   ||r...@post.cz

--- Comment #2 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Tomaž Vajngerl; Could you possibly take a look at this one?
Thanks

946e3a3d952ed45ff0926b767839a5d2fa7b7979 is the first bad commit
commit 946e3a3d952ed45ff0926b767839a5d2fa7b7979
Author: Norbert Thiebaud 
Date:   Fri Oct 23 16:14:34 2015 -0700

source sha:825b3df7f1d987021ec4a08ff8e7ed78e5772c97

source sha:825b3df7f1d987021ec4a08ff8e7ed78e5772c97

:04 04 01312231b6615ea6a935cdba9f9362d2f2317970
17c5357be64abeac0cd39706edc1efb5c014d936 M  instdir

authorTomaž Vajngerl 2015-10-22 17:03:01
(GMT)
committerTomaž Vajngerl 2015-10-22
17:16:14 (GMT)
commit825b3df7f1d987021ec4a08ff8e7ed78e5772c97 (patch)
tdf#94138 fix printing of edit form fields

-- 
You are receiving this mail because:
You 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] help.git: source/text

2016-01-26 Thread Christian Lohmaier
 source/text/scalc/01/0512.xhp   |2 ++
 source/text/simpress/guide/gluepoints.xhp   |2 ++
 source/text/swriter/librelogo/LibreLogo.xhp |4 ++--
 3 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 184121fb7abffe19012e3a64187281f0332a4b20
Author: Christian Lohmaier 
Date:   Tue Jan 26 00:12:22 2016 +0100

lists cannot be nested directly - use hackaround using switch instead

Change-Id: I9a39112dbaca103ddb6b2783b5a142b280fbba8b

diff --git a/source/text/scalc/01/0512.xhp 
b/source/text/scalc/01/0512.xhp
index 7838769..51f8fbf 100644
--- a/source/text/scalc/01/0512.xhp
+++ b/source/text/scalc/01/0512.xhp
@@ -49,6 +49,7 @@
   
   
   If 
you select Cell value is:
+  FIXME: Hack to get a nested 
list
   
   
   Select a condition in the drop down list for the format to be 
applied to the selected cells and enter the value.
@@ -63,6 +64,7 @@
   In the Range field, define the range of cells 
concerned by the conditional formatting. Click on the Shrink 
button to minimize the dialog box. Click again on the button to come back to 
the dialog box once the range is selected.
   
   
+  
   
   
   If you 
select Formula is as a reference, enter a cell reference.
diff --git a/source/text/simpress/guide/gluepoints.xhp 
b/source/text/simpress/guide/gluepoints.xhp
index ff57579..49975d3 100644
--- a/source/text/simpress/guide/gluepoints.xhp
+++ b/source/text/simpress/guide/gluepoints.xhp
@@ -37,6 +37,7 @@
 
 Do one of the following to get existing glue points visible for all 
elements:
 
+FIXME: Hack to get a nested 
list
 
 
 Click the Glue Point icon on the Drawing 
toolbar.
@@ -45,6 +46,7 @@
 Choose Edit - Glue Points.
 
 
+
 
 Click the Insert Glue Point icon on the Gluepoints 
toolbar.
 
diff --git a/source/text/swriter/librelogo/LibreLogo.xhp 
b/source/text/swriter/librelogo/LibreLogo.xhp
index e131f00..a81766e 100644
--- a/source/text/swriter/librelogo/LibreLogo.xhp
+++ b/source/text/swriter/librelogo/LibreLogo.xhp
@@ -59,7 +59,7 @@
 
 Program 
blocks and lists are different
 
-
+FIXME: Hack to get a nested 
list
 
 
 Program blocks need space or new line at parenthesization: REPEAT 
10 [ FORWARD 10 LEFT 36 ]
@@ -68,7 +68,7 @@
 Lists 
need close parenthesization: POSITION [0, 0], and not POSITION [ 0, 0 
]
 
 
-
+
 
 1-line 
function declarations are not supported (TO and END need new lines).
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97263] Gdk-WARNING **: gdk_window_set_icon_list: icons too large (REGRESSION)

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

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #2 from Beluga  ---
Confirmed.

Yet we have a ton of other warnings and I don't think they warrant their own
bug reports..

Ubuntu 15.10 64-bit 
Version: 5.2.0.0.alpha0+
Build ID: c43fdd74097cb12f69f86fd1217dd2f41ccae101
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF-dbg, Branch:master, Time:
2016-01-25_23:43:01
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 97268] Dialog Designer: Missing properties for Dialog

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

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Beluga  ---
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 97313] a11y libreoffice crashes in using nvda screen reader when i want to open a file by using control+o or in the file menu

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

--- Comment #6 from Niklas Johansson  ---
Done a test with LibreOffice 5.0.4 on Windows XP with NVDA 2015.4 and
LibreOffice 5.1.0.2 (prerelease) and I can't reproduce the issue. I did a
typical install of LibreOffice. I opened quite a few document closed and opened
a few more without any signs of a freeze. I do not have deep freeze installed
and no addons in NVDA. Don't know if the locale of your operating system might
have an impact.

When it comes to LibreOffice 5.2 and Windows XP I have no idea if there has
been any decision to drop support or if it is the tool chain of the build
machine for the daily build that did not support XP. 
The first version of LibreOffice 5.2 will likely be released in August 2016.

When you say you tested with both en-US locale and fa-IR you are talking about
the LibreOffice locale, right?
What is you Windows XP locale?

Do you have access to a computer with a newer version of Windows? 
It would be good to know if the issue is tied to the locale and it's characters
etc. rather than Windows version.

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


[Libreoffice-ux-advise] [Bug 97313] a11y libreoffice crashes in using nvda screen reader when i want to open a file by using control+o or in the file menu

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

--- Comment #6 from Niklas Johansson  ---
Done a test with LibreOffice 5.0.4 on Windows XP with NVDA 2015.4 and
LibreOffice 5.1.0.2 (prerelease) and I can't reproduce the issue. I did a
typical install of LibreOffice. I opened quite a few document closed and opened
a few more without any signs of a freeze. I do not have deep freeze installed
and no addons in NVDA. Don't know if the locale of your operating system might
have an impact.

When it comes to LibreOffice 5.2 and Windows XP I have no idea if there has
been any decision to drop support or if it is the tool chain of the build
machine for the daily build that did not support XP. 
The first version of LibreOffice 5.2 will likely be released in August 2016.

When you say you tested with both en-US locale and fa-IR you are talking about
the LibreOffice locale, right?
What is you Windows XP locale?

Do you have access to a computer with a newer version of Windows? 
It would be good to know if the issue is tied to the locale and it's characters
etc. rather than Windows version.

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


[Libreoffice-bugs] [Bug 97060] Dialog Designer: Export should remember last save folder/filename

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

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #7 from Beluga  ---
Repro.

Ubuntu 15.10 64-bit 
Version: 5.2.0.0.alpha0+
Build ID: c43fdd74097cb12f69f86fd1217dd2f41ccae101
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF-dbg, Branch:master, Time:
2016-01-25_23:43:01
Locale: en-US (en_US.UTF-8)

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


Re: [Bug 93151] "Expand references when new columns/rows are inserted" broken for named ranges

2016-01-26 Thread Eike Rathke
Hi Oliver,

On Monday, 2016-01-25 18:37:24 +0100, Oliver Brinzing wrote:

> is there a chance to get this bug fixed in lo5.1?
> https://bugs.documentfoundation.org/show_bug.cgi?id=93151

I'm at it.

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GPG key "ID" 0x65632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A
Better use 64-bit 0x6A6CD5B765632D3A here is why: https://evil32.com/
Care about Free Software, support the FSFE https://fsfe.org/support/?erack


signature.asc
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 93151] "Expand references when new columns/rows are inserted" broken for named ranges

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

Eike Rathke  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
Version|5.0.0.5 release |4.2 all versions
   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |

--- Comment #4 from Eike Rathke  ---
Already at least in 4.2.x, just that whether the formula that uses the name
includes the inserted column in calculation changed somewhen in between.

I'm investigating.

-- 
You are receiving this mail because:
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 87933] Easier visibility of automatic page breaks

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

--- Comment #15 from Heiko Tietze  ---
I agree with suggestion 1a), but we should make sure that it has no side
effects on other cell status like selection or not.
Furthermore the difference between manual and automatic page break should be
clear. Excel does the trick with dashed and dotted lines, LibO uses blue vs.
navy as well as bold or not. We should go with the line type only as indicator
for where the break comes from, and the color (darker gray or blue, btw: why
always blue, isn't Calc all about green?) to show the break on/off feature.

-- 
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-ux-advise] [Bug 87933] Easier visibility of automatic page breaks

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

--- Comment #15 from Heiko Tietze  ---
I agree with suggestion 1a), but we should make sure that it has no side
effects on other cell status like selection or not.
Furthermore the difference between manual and automatic page break should be
clear. Excel does the trick with dashed and dotted lines, LibO uses blue vs.
navy as well as bold or not. We should go with the line type only as indicator
for where the break comes from, and the color (darker gray or blue, btw: why
always blue, isn't Calc all about green?) to show the break on/off feature.

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


[Libreoffice-bugs] [Bug 97290] Mail merge

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

Beluga  changed:

   What|Removed |Added

   Keywords||wantBacktrace
 CC||todven...@suomi24.fi

--- Comment #1 from Beluga  ---
If you cannot share the files publicly, you could at least try to get a trace
of the crash:
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information
Note that you have to first install the debug package.

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


[Libreoffice-bugs] [Bug 97375] Impress crashes in text selection

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

--- Comment #1 from Jacobo Aragunde Pérez  ---
If ran with gdb, this is the result of the crash:

Program received signal SIGSEGV, Segmentation fault.
0x7618acbc in ParaPortion::IsInvalid (this=0x0)
at
/home/jaragunde/projects/libreoffice/core/editeng/source/editeng/editdoc.hxx:616
616boolIsInvalid() const   { return bInvalid; }

(gdb) bt
#0  0x7618acbc in ParaPortion::IsInvalid() const (this=0x0)
at
/home/jaragunde/projects/libreoffice/core/editeng/source/editeng/editdoc.hxx:616
#1  0x762207cf in ImpEditView::DrawSelection(EditSelection,
vcl::Region*, OutputDevice*) (this=0x57e6040, aTmpSel=..., pRegion=0x0,
pTargetDevice=
0x1c45470)
at
/home/jaragunde/projects/libreoffice/core/editeng/source/editeng/impedit.cxx:231
#2  0x7626382e in ImpEditEngine::Paint(ImpEditView*, Rectangle const&,
OutputDevice*, bool) (this=0x4d40490, pView=0x57e6040, rRect=...,
pTargetDevice=0x0, bUseVirtDev=true)
at
/home/jaragunde/projects/libreoffice/core/editeng/source/editeng/impedit3.cxx:3845
#3  0x76252709 in ImpEditEngine::UpdateViews(EditView*)
(this=0x4d40490, pCurView=0x4b6b750)
at
/home/jaragunde/projects/libreoffice/core/editeng/source/editeng/impedit3.cxx:298
#4  0x762655a7 in ImpEditEngine::SetCharStretching(unsigned short,
unsigned short) (this=0x4d40490, nX=100, nY=100)
at
/home/jaragunde/projects/libreoffice/core/editeng/source/editeng/impedit3.cxx:4243
#5  0x761c91b8 in EditEngine::SetGlobalCharStretching(unsigned short,
unsigned short) (this=0x57ddda0, nX=100, nY=100)

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


Re: floating point comparison plugin results

2016-01-26 Thread Eike Rathke
Hi Noel,

On Thursday, 2016-01-21 14:47:47 +0200, Noel Grandin wrote:

> This is the list of source locations where my new fpcomparison clang plugin 
> detects the use of == or != on floating
> point values.

Comparing ==0.0 or !=0.0 is fine, you can exclude those.

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GPG key "ID" 0x65632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A
Better use 64-bit 0x6A6CD5B765632D3A here is why: https://evil32.com/
Care about Free Software, support the FSFE https://fsfe.org/support/?erack


signature.asc
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 89308] PIVOTTABLE: Can't update pivot table destination

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

Katarina Behrens (CIB)  changed:

   What|Removed |Added

   Keywords|needsDevEval|
   Assignee|libreoffice-b...@lists.free |katarina.behr...@cib.de
   |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 97377] New: Missing translation in check for update popup window

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

Bug ID: 97377
   Summary: Missing translation in check for update popup window
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ldm...@gmail.com

Created attachment 122215
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122215=edit
Screen with Word "%PERCENT%"

When checking for LibreOffice Updates the Word "PERCENT" is displayed, see
screen capture attached.

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


[Libreoffice-bugs] [Bug 97288] Difficulty to scroll down

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

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #1 from Beluga  ---
No problem here.

Does it happen with a completely new document?

Please test with a fresh build.

Ubuntu 15.10 64-bit 
Version: 5.2.0.0.alpha0+
Build ID: c43fdd74097cb12f69f86fd1217dd2f41ccae101
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF-dbg, Branch:master, Time:
2016-01-25_23:43:01
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 97253] Cell function lost when copying chart from Calc to Impress

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

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #9 from Beluga  ---
(In reply to Walter Cheuk from comment #8)
> Users don't expect to lose some functionalities when they do a 'copy &
> paste' across applications, especially when LO is advertised as a
> tightly-integrated suite. If someone do need a simple chart only (I don't
> know what exact kind of object the chart is), they may use 'paste...' to
> paste a trimmed-down version of the chart.

Does Microsoft Office behave like you wish LibO would do?

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


[Libreoffice-bugs] [Bug 97375] Impress crashes in text selection

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

--- Comment #2 from Jacobo Aragunde Pérez  ---
If you reproduce the step two slightly differently, you will get an infinite
loop instead of a crash; try selecting the first three bullets, not the fourth
one. The program will get stuck and this message will be printed once and again
in the console:

warn:legacy.tools:8193:1:editeng/source/editeng/impedit.cxx:304: DrawSelection,
Start >= End?

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


[Libreoffice-bugs] [Bug 97376] New: Formating notes while presentation

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

Bug ID: 97376
   Summary: Formating notes while presentation
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vysata.ji...@gmail.com

It is not mainly a bug. It is rather feature request.

While presentation are used two monitors. One monitor (the main one) is for
slides of presentation. The second one (auxiliar) is for some useful
preparations and informations. One of them is a window for notes. If I prepare
notes, I format them to be synoptic - well arranged for easy orientation. But
the window for notes on auxiliar monitor cancels all formating information, so
that all structure of notes gets away. Could be the text of notes diplayed with
formating?

Thanks

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


Re: Getting a click on a reference mark

2016-01-26 Thread X Roemer

I can answer my question myself:

Instead of attaching a listener to a textfield I can use a 
XSelectionChangeListener on the CurrentController and check, if the 
viewcursor is on a textfield.



Xaver



Am 24.01.2016 um 21:38 schrieb X Roemer:

Hi,

does anyone know if it's possible to catch a click on a reference mark?
Can a listener be attached to a textfield to receive a onclick message 
somehow?


Thanks for help,
Xaver
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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


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

2016-01-26 Thread Caolán McNamara
 vcl/source/filter/igif/gifread.cxx |   29 +
 vcl/source/filter/wmf/enhwmf.cxx   |6 +++---
 vcl/source/filter/wmf/winmtf.cxx   |   10 --
 vcl/source/filter/wmf/winmtf.hxx   |2 +-
 vcl/source/filter/wmf/winwmf.cxx   |4 ++--
 5 files changed, 23 insertions(+), 28 deletions(-)

New commits:
commit 6fed035cf1eb62db8029e615e1b5f2d3ab825f78
Author: Caolán McNamara 
Date:   Thu Jan 21 09:28:12 2016 +

valgrind: memleak on thrown exception

(cherry picked from commit f5aefab2a62a90c631e05ec29022a2f7e19f00c3)

Change-Id: I2788c5fe04a984d6534adbd3186cc652685152e8
Reviewed-on: https://gerrit.libreoffice.org/21737
Tested-by: Jenkins 
Reviewed-by: David Tardon 
(cherry picked from commit 636d45438f317d7ef39d660c11f6bab1dc42302a)

diff --git a/vcl/source/filter/wmf/enhwmf.cxx b/vcl/source/filter/wmf/enhwmf.cxx
index bb029b5..dfc7790 100644
--- a/vcl/source/filter/wmf/enhwmf.cxx
+++ b/vcl/source/filter/wmf/enhwmf.cxx
@@ -1244,7 +1244,7 @@ bool EnhWMFReader::ReadEnhWMF()
 Rectangle aCropRect( Point( xSrc, ySrc ), 
Size( cxSrc, cySrc ) );
 aBitmap.Crop( aCropRect );
 }
-aBmpSaveList.push_back( new BSaveStruct( aBitmap, 
aRect, dwRop, pOut->GetFillStyle () ) );
+aBmpSaveList.emplace_back(new BSaveStruct(aBitmap, 
aRect, dwRop, pOut->GetFillStyle ()));
 }
 }
 }
@@ -1305,7 +1305,7 @@ bool EnhWMFReader::ReadEnhWMF()
 Rectangle aCropRect( Point( xSrc, ySrc ), 
Size( cxSrc, cySrc ) );
 aBitmap.Crop( aCropRect );
 }
-aBmpSaveList.push_back( new BSaveStruct( aBitmap, 
aRect, dwRop, pOut->GetFillStyle () ) );
+aBmpSaveList.emplace_back(new BSaveStruct(aBitmap, 
aRect, dwRop, pOut->GetFillStyle ()));
 }
 }
 }
@@ -1372,7 +1372,7 @@ bool EnhWMFReader::ReadEnhWMF()
 Rectangle aCropRect( Point( xSrc, ySrc ), 
Size( cxSrc, cySrc ) );
 aBitmap.Crop( aCropRect );
 }
-aBmpSaveList.push_back( new BSaveStruct( aBitmap, 
aRect, dwRop, pOut->GetFillStyle () ) );
+aBmpSaveList.emplace_back(new BSaveStruct(aBitmap, 
aRect, dwRop, pOut->GetFillStyle ()));
 }
 }
 }
diff --git a/vcl/source/filter/wmf/winmtf.cxx b/vcl/source/filter/wmf/winmtf.cxx
index c19642a..3f71773 100644
--- a/vcl/source/filter/wmf/winmtf.cxx
+++ b/vcl/source/filter/wmf/winmtf.cxx
@@ -1576,7 +1576,7 @@ void WinMtfOutput::ResolveBitmapActions( 
BSaveStructList_impl& rSaveList )
 size_t  nObjectsOfSameSize = 0;
 size_t  nObjectStartIndex = nObjects - nObjectsLeft;
 
-BSaveStruct*pSave = rSaveList[ nObjectStartIndex ];
+BSaveStruct*pSave = rSaveList[nObjectStartIndex].get();
 Rectangle   aRect( pSave->aOutRect );
 
 for ( i = nObjectStartIndex; i < nObjects; )
@@ -1584,7 +1584,7 @@ void WinMtfOutput::ResolveBitmapActions( 
BSaveStructList_impl& rSaveList )
 nObjectsOfSameSize++;
 if ( ++i < nObjects )
 {
-pSave = rSaveList[ i ];
+pSave = rSaveList[i].get();
 if ( pSave->aOutRect != aRect )
 break;
 }
@@ -1594,7 +1594,7 @@ void WinMtfOutput::ResolveBitmapActions( 
BSaveStructList_impl& rSaveList )
 
 for ( i = nObjectStartIndex; i < ( nObjectStartIndex + 
nObjectsOfSameSize ); i++ )
 {
-pSave = rSaveList[ i ];
+pSave = rSaveList[i].get();
 
 sal_uInt32  nWinRop = pSave->nWinRop;
 sal_uInt8   nRasterOperation = (sal_uInt8)( nWinRop >> 16 );
@@ -1622,7 +1622,7 @@ void WinMtfOutput::ResolveBitmapActions( 
BSaveStructList_impl& rSaveList )
 {
 if ( nObjectsOfSameSize == 2 )
 {
-BSaveStruct* pSave2 = rSaveList[ i + 1 ];
+BSaveStruct* pSave2 = rSaveList[i + 1].get();
 if ( ( pSave->aBmp.GetPrefSize() == 
pSave2->aBmp.GetPrefSize() ) &&
  ( pSave->aBmp.GetPrefMapMode() == 
pSave2->aBmp.GetPrefMapMode() ) )
 {
@@ -1791,8 +1791,6 @@ void WinMtfOutput::ResolveBitmapActions( 
BSaveStructList_impl& rSaveList )
 nObjectsLeft -= nObjectsOfSameSize;
 }
 
-for( size_t i = 0, n = rSaveList.size(); i < n; ++i )
-delete rSaveList[ i ];
 rSaveList.clear();
 }
 
diff --git 

[Libreoffice-bugs] [Bug 97272] SVG export of chart: add xlink namespace

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

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #1 from Beluga  ---
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


[Bug 96407] Mac OS X version doesnt appear in About dialog

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Whiteboard| target:5.2.0   | target:5.2.0
   ||backportRequest

--- Comment #12 from Yousuf (Jay) Philips  ---
With steve confirming it works, it would be good to backport this into 5.1.

-- 
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 97287] Sending eMailing fails and crashes Libreoffice

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

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #1 from Beluga  ---
Perhaps the same as bug 90185

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


[Libreoffice-bugs] [Bug 97238] OpenCL: functions returns wrong data in big worksheet

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

--- Comment #11 from Tor Lillqvist  ---
Ah, re-reading, so he does see an error in 4.4.7 on some machine(s). Ignore my
previous comment.

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


[Libreoffice-bugs] [Bug 97347] Installer tells to close Internet Explorer when it is not open

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

Adolfo Jayme  changed:

   What|Removed |Added

Summary|updating|Installer tells to close
   ||Internet Explorer when it
   ||is not open

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


[Libreoffice-bugs] [Bug 97373] Cannot start from selected slide

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
Can not reproduce on Windows 10 Pro 64-bit en-US with
Version: 4.4.5.2
Build ID: a22f674fd25a3b6f45bdebf25400ed2adff0ff99
Locale: en_US

nor with
Version: 5.1.0.2 (x64)
Build ID: ecd3574d51754b043f865cf5bafee286d24db7cc
CPU Threads: 8; OS Version: Windows 6.19; UI Render: GL; 
Locale: en-US (en_US)

nor with current master
Version: 5.2.0.0.alpha0+
Build ID: 259c1ed201f4277d74dfd600fed8c837cbf56abc
CPU Threads: 8; OS Version: Windows 6.19; UI Render: GL; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-27_00:45:12
Locale: en-US (en_US)

The +F5 short cut, or the newer Standard toolbar "Start from current
slide" button widget, both linked to the .uno:PresentationCurrentSlide command
works correctly with later 4.4 and current 5.x builds

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


[Libreoffice-bugs] [Bug 97369] SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows)

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

--- Comment #21 from Ljiljan  ---
Another observation:

If I insert an empty row (row number 8) and empty row (row number 15), all
formulas are working between these two empty rows (CTRL + SHIFT + F9 is
required)... then only in row number 16 the formula is working correctly and it
stops working from 17 until the next empty row... and from that point, formula
is working again. So I believe that somewhat is causing recalculation not to
work... could it be that LO Calc thinks it reached the end of file?

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


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

2016-01-26 Thread Markus Mohrhard
 sc/qa/unit/data/xlsx/colorscale_num_with_ref.xlsx |binary
 sc/qa/unit/subsequent_filters-test.cxx|   31 ++
 2 files changed, 31 insertions(+)

New commits:
commit b125635851d3c96b0d27d06d45475774de23e8df
Author: Markus Mohrhard 
Date:   Tue Jan 26 20:04:02 2016 +0100

add test for tdf#94626

Change-Id: I868e318bc2f8b0f4a7b0abdd93bda27f36f95d26
Reviewed-on: https://gerrit.libreoffice.org/21828
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/qa/unit/data/xlsx/colorscale_num_with_ref.xlsx 
b/sc/qa/unit/data/xlsx/colorscale_num_with_ref.xlsx
new file mode 100644
index 000..931fe7a
Binary files /dev/null and b/sc/qa/unit/data/xlsx/colorscale_num_with_ref.xlsx 
differ
diff --git a/sc/qa/unit/subsequent_filters-test.cxx 
b/sc/qa/unit/subsequent_filters-test.cxx
index cff11cd..917dd25 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -143,6 +143,7 @@ public:
 void testCondFormatThemeColor2XLSX(); // negative bar color and axis color
 void testComplexIconSetsXLSX();
 void testCondFormatParentXLSX();
+void testColorScaleNumWithRefXLSX();
 
 void testLiteralInFormulaXLS();
 
@@ -259,6 +260,7 @@ public:
 CPPUNIT_TEST(testCondFormatThemeColor2XLSX);
 CPPUNIT_TEST(testComplexIconSetsXLSX);
 CPPUNIT_TEST(testCondFormatParentXLSX);
+CPPUNIT_TEST(testColorScaleNumWithRefXLSX);
 CPPUNIT_TEST(testLiteralInFormulaXLS);
 
 CPPUNIT_TEST(testNumberFormatHTML);
@@ -2534,6 +2536,35 @@ void ScFiltersTest::testCondFormatParentXLSX()
 CPPUNIT_ASSERT_EQUAL(SVX_VER_JUSTIFY_TOP, 
static_cast(rVerJustify.GetValue()));
 }
 
+void ScFiltersTest::testColorScaleNumWithRefXLSX()
+{
+ScDocShellRef xDocSh = 
ScBootstrapFixture::loadDoc("colorscale_num_with_ref.", FORMAT_XLSX);
+
+CPPUNIT_ASSERT_MESSAGE("Failed to load colorscale_num_with_ref.xlsx", 
xDocSh.Is());
+
+ScDocument& rDoc = xDocSh->GetDocument();
+ScConditionalFormatList* pList = rDoc.GetCondFormList(0);
+CPPUNIT_ASSERT(pList);
+
+CPPUNIT_ASSERT_EQUAL(size_t(1), pList->size());
+
+ScConditionalFormat* pFormat = pList->begin()->get();
+CPPUNIT_ASSERT(pFormat);
+
+CPPUNIT_ASSERT_EQUAL(size_t(1), pFormat->size());
+const ScFormatEntry* pEntry = pFormat->GetEntry(0);
+CPPUNIT_ASSERT(pEntry);
+
+CPPUNIT_ASSERT_EQUAL(condformat::COLORSCALE, pEntry->GetType());
+
+const ScColorScaleFormat* pColorScale= dynamic_cast(pEntry);
+CPPUNIT_ASSERT(pColorScale);
+
+const ScColorScaleEntry* pColorScaleEntry = pColorScale->GetEntry(1);
+CPPUNIT_ASSERT_EQUAL(OUString("=$A$1"),
+
pColorScaleEntry->GetFormula(formula::FormulaGrammar::GRAM_NATIVE));
+}
+
 void ScFiltersTest::testLiteralInFormulaXLS()
 {
 ScDocShellRef xDocSh = loadDoc("shared-string/literal-in-formula.", 
FORMAT_XLS);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97238] OpenCL: functions returns wrong data in big worksheet

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

--- Comment #10 from Tor Lillqvist  ---
So in which version is the bug present? The bug reporter tells that in 4.4.7
LibreOffice works correctly, unless I am mistaken. So the Version field is
likely wrong?

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


[Libreoffice-bugs] [Bug 97341] Width for document comments cannot be changed manually

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

Adolfo Jayme  changed:

   What|Removed |Added

 CC||f...@libreoffice.org
Summary|Width for comments aside|Width for document comments
   |the margin of the document  |cannot be changed manually
   |is too narrow / can't be|
   |re-sized|

--- Comment #2 from Adolfo Jayme  ---
Yeah, as judging by your screenshot, this appears to be a problem for high-DPI
screens.

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


configure options for 'stock' builds?

2016-01-26 Thread Yury
Hi all,

Could I know the set of configure options for the libreoffice.org linux builds?

I'm having strange (and new) issues with my local build, which the 'stock'
build has not.

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


[Libreoffice-bugs] [Bug 73231] LibreOffice does not release WebDAV file lock on document close

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org
   Severity|blocker |normal

--- Comment #2 from Jean-Baptiste Faure  ---
As it is a duplicate of a normal bug, it is not a blocker.

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


[Libreoffice-bugs] [Bug 97369] SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows)

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

--- Comment #16 from Tor Lillqvist  ---
Works for me on Windows, AMD A10-7800, latest drivers.

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


Re: configure options for 'stock' builds?

2016-01-26 Thread Christian Lohmaier
Hi Yury,

On Wed, Jan 27, 2016 at 5:20 AM, Yury  wrote:
> Hi all,
>
> Could I know the set of configure options for the libreoffice.org linux 
> builds?

the feature relevant ones are the ones in distro-config.
I.e. release builds use the corresponding distro-config and only
additional switches to provide paths (ant, junit, external-tarball
location) and for API keys/secrets.

See also https://wiki.documentfoundation.org/Development/ReleaseBuilds

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


[Libreoffice-bugs] [Bug 97379] Can not open .docx generated by BDoc

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

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||filter:ooxml
 CC||vstuart.fo...@utsa.edu
  Component|Writer  |filters and storage

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


[Libreoffice-bugs] [Bug 97353] Recent Documents list not updating; seems frozen with a fixed list of documents.

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |NOTABUG

--- Comment #1 from V Stuart Foote  ---
Presence of the stanzas in user profile -- registrymodifications.xcu-- mean
they had been customized, or migrated from a prior installation. Defaults:
PicklistSize 25, Size 100 are not recorded into a clean user profile.

As that appears to have been a migrated profile, really not unexpected. 

You can simply delete the two stanzas to revert to defaults--actual history
entries recorded to profile are not affected. 

The values can also be adjusted from Tools -> Options -> Advanced: Expert
Configuration. Enter the search string "history". The History Size and
PickListSize in the org.openoffice.Office.Common prefs can be set as preferred
and will then appear per user in the registrymodifications.xcu

However, your migrated profile is suspect--you would be better served to create
a clean profile for 5.x with defaults. Rename entire directory first if you
have templates or customizations to protect--and then selectively restore them
to the otherwise clean new 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 97279] Section 'Undo' vanished from the Options dialog

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

--- Comment #8 from Samuel Mehrbrodt  ---
(In reply to Wolfgang Jäger from comment #7)
> I could not find a rationale, however. The option 'Memory/Undo/Number of
> Undo Steps' simply is listed as one of some "unnecessary global options". No
> way for me to find out for what reason it was judged to be "unnecessary" or
> "too advanced". 
> I do not really like to frequently tamper with the 'Expert Configuration'. 
> Ok. I will keep silent with this respect now.

What's the use case of modifying that property?

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


[Libreoffice-bugs] [Bug 97369] SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows)

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

--- Comment #20 from Ljiljan  ---
What I've observed as well:

In attached ODS file, the results of SUM function is "0" for many rows.
However, if I type again "=SUM(" and then select the previous three columns +
")"... the result is returned for that single cell. However, If I press CTRL +
SHIFT + F9, the results is retuned to "0" again.

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


[Libreoffice-bugs] [Bug 97238] OpenCL: functions returns wrong data in big worksheet

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

--- Comment #12 from Tor Lillqvist  ---
Anyway, this sounds a lot like a problem that was fixed in 5.0. Duplicate of
bug #94924?

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


[Libreoffice-bugs] [Bug 97384] Missing border-bottom tag in cell with spanrow tag of export to html

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

--- Comment #1 from dawess...@telkomsa.net  ---
I see now that this is the result of the merged cells in the block. The top
cell borders are propogated to the merged cell's border. In this case the top
cell don't have a bottom border where the intuitive result would be to take the
outside border settings of the merged cells.

I am now not sure if this is a bug or feature. ;^)

This should now be assigned to the way Calc works and not to the export to html
where the result is only more clearly visible.

I propose to use the borders of the underlying cells for the display format
rather than that the top most left cell of the merged cells as opposed to using
the contents of the top most left cell of the merged cells.

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


German translation request again

2016-01-26 Thread Chris Sherlock
Hi all, 

Could someone please translate the following German comments for me?

// Achtung: Diese Id's muessen min. 10 Werte auseinanderliegen, da
// je nach Style noch ein Offset aufgerechnet wird

Google Translate is sort of helpful:

// Warning: These IDs must min .10 levels apart, as
// Depending on the style , an offset is still netted

(FWIW, I am intensely jealous of everyone who can speak more than one language 
- especially German!)

The file this is in is:

http://opengrok.libreoffice.org/xref/core/vcl/inc/svids.hrc 


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


[Libreoffice-bugs] [Bug 43489] [Task] Incorrect behavior using existing User Profile for upgrade

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |FIXED

--- Comment #36 from V Stuart Foote  ---
Should have been closed. No reason to remain open.

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


[Libreoffice-commits] core.git: sc/CppunitTest_sc_ucalc.mk sc/qa starmath/qa

2016-01-26 Thread Markus Mohrhard
 sc/CppunitTest_sc_ucalc.mk  |1 
 sc/qa/unit/ucalc.cxx|  607 ---
 sc/qa/unit/ucalc_condformat.cxx |  630 
 starmath/qa/cppunit/test_nodetotextvisitors.cxx |3 
 4 files changed, 634 insertions(+), 607 deletions(-)

New commits:
commit f4544d3c95bac8f3203235f8482ecb435545b887
Author: Markus Mohrhard 
Date:   Tue Jan 26 16:50:22 2016 +0100

extract all cond format tests in ucalc to own file

Change-Id: Ia4773e81e7d3c23404090f5cf5d9d35038c24cd7
Reviewed-on: https://gerrit.libreoffice.org/21817
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/CppunitTest_sc_ucalc.mk b/sc/CppunitTest_sc_ucalc.mk
index 07c74e5..cbdf4fd 100644
--- a/sc/CppunitTest_sc_ucalc.mk
+++ b/sc/CppunitTest_sc_ucalc.mk
@@ -14,6 +14,7 @@ $(eval $(call gb_CppunitTest_CppunitTest,sc_ucalc))
 $(eval $(call gb_CppunitTest_add_exception_objects,sc_ucalc, \
 sc/qa/unit/ucalc \
 sc/qa/unit/ucalc_column \
+sc/qa/unit/ucalc_condformat \
 sc/qa/unit/ucalc_formula \
 sc/qa/unit/ucalc_pivottable \
 sc/qa/unit/ucalc_sharedformula \
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index cbd3193..121977a 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -45,8 +45,6 @@
 #include "interpre.hxx"
 #include "columniterator.hxx"
 #include "types.hxx"
-#include "conditio.hxx"
-#include "colorscale.hxx"
 #include "fillinfo.hxx"
 #include "globstr.hrc"
 #include "tokenarray.hxx"
@@ -3722,73 +3720,6 @@ void Test::testCopyPasteSkipEmpty2()
 m_pDoc->DeleteTab(0);
 }
 
-void Test::testCopyPasteSkipEmptyConditionalFormatting()
-{
-m_pDoc->InsertTab(0, "Test");
-
-ScRange aDestRange(0,0,0,1,2,0);
-ScRange aSrcRange(3,3,0,5,4,0);
-
-ScMarkData aMark;
-aMark.SetMarkArea(aDestRange);
-
-m_pDoc->SetValue(0,0,0,1);
-m_pDoc->SetValue(1,0,0,1);
-m_pDoc->SetValue(0,1,0,1);
-m_pDoc->SetValue(0,2,0,1);
-m_pDoc->SetValue(1,2,0,1);
-
-//create conditional formatting for A1:B3
-ScConditionalFormatList* pCondFormatList = new ScConditionalFormatList();
-m_pDoc->SetCondFormList(pCondFormatList, 0);
-
-ScConditionalFormat* pFormat = new ScConditionalFormat(1, m_pDoc);
-pFormat->SetRange(aDestRange);
-sal_uLong nCondFormatKey = m_pDoc->AddCondFormat(pFormat, 0);
-
-// Prepare a clipboard content interleaved with empty cells.
-ScDocument aClipDoc(SCDOCMODE_CLIP);
-aClipDoc.ResetClip(m_pDoc, );
-ScClipParam aParam(aSrcRange, false);
-aClipDoc.SetClipParam(aParam);
-aClipDoc.SetValue(3,3,0,2);
-aClipDoc.SetValue(4,3,0,2);
-aClipDoc.SetValue(4,4,0,2);
-aClipDoc.SetValue(3,5,0,2);
-aClipDoc.SetValue(4,5,0,2);
-
-ScConditionalFormat* pClipFormat = new ScConditionalFormat(2, );
-pClipFormat->SetRange(aSrcRange);
-aClipDoc.AddCondFormat(pClipFormat, 0);
-
-// Create undo document.
-ScDocument* pUndoDoc = new ScDocument(SCDOCMODE_UNDO);
-pUndoDoc->InitUndo(m_pDoc, 0, 0);
-m_pDoc->CopyToDocument(aDestRange, InsertDeleteFlags::CONTENTS, false, 
pUndoDoc, );
-
-// Paste clipboard content onto A1:A5 but skip empty cells.
-bool bSkipEmpty = true;
-m_pDoc->CopyFromClip(aDestRange, aMark, InsertDeleteFlags::CONTENTS, 
pUndoDoc, , true, false, false, bSkipEmpty);
-
-ScConditionalFormatList* pList = m_pDoc->GetCondFormList(0);
-CPPUNIT_ASSERT_EQUAL(size_t(2), pList->size());
-CPPUNIT_ASSERT(m_pDoc->GetCondFormat(1,1,0));
-// empty cell in copy area does not overwrite conditional formatting
-CPPUNIT_ASSERT_EQUAL(sal_uInt32(nCondFormatKey), 
m_pDoc->GetCondFormat(1,1,0)->GetKey());
-for(SCCOL nCol = 0; nCol <= 1; ++nCol)
-{
-for(SCROW nRow = 0; nRow <= 2; ++nRow)
-{
-if(nRow == 1 && nCol == 1)
-continue;
-
-CPPUNIT_ASSERT(m_pDoc->GetCondFormat(nCol, nRow, 0));
-CPPUNIT_ASSERT(nCondFormatKey != m_pDoc->GetCondFormat(nCol, nRow, 
0)->GetKey());
-}
-}
-m_pDoc->DeleteTab(0);
-}
-
 void Test::testCutPasteRefUndo()
 {
 // Testing scenario: A2 references B2, and B2 gets cut and pasted onto C2,
@@ -5622,544 +5553,6 @@ void Test::testEditTextIterator()
 m_pDoc->DeleteTab(0);
 }
 
-void Test::testCondFormatINSDEL()
-{
-// fdo#62206
-m_pDoc->InsertTab(0, "Test");
-ScConditionalFormatList* pList = m_pDoc->GetCondFormList(0);
-
-ScConditionalFormat* pFormat = new ScConditionalFormat(1, m_pDoc);
-ScRangeList aRangeList(ScRange(0,0,0,0,3,0));
-pFormat->SetRange(aRangeList);
-ScCondFormatEntry* pEntry = new 
ScCondFormatEntry(SC_COND_DIRECT,"=B2","",m_pDoc,ScAddress(0,0,0),ScGlobal::GetRscString(STR_STYLENAME_RESULT));
-pFormat->AddEntry(pEntry);
-
-m_pDoc->AddCondFormatData(pFormat->GetRange(), 0, 1);
-pList->InsertNew(pFormat);
-
-

[Libreoffice-bugs] [Bug 97369] SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows)

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

--- Comment #18 from Tor Lillqvist  ---
(side rant: I was not able to open the video. Attaching videos to bug reports
is in most cases fairly useless. It is much easier to read a good textual
description of a problem. And if something is unclear in a textual description,
one can always ask for clarifications, quoting the exact parts of the text that
is unclear, etc. Hard to do that for a video. And then there is the problem of
video formats and codecs. Personally, if a video doesn't open for me using
stock software on my Mac, I just ignore 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 97297] disappears text typed DS Crystal font

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #2 from V Stuart Foote  ---
The DS Crystal font renders correctly in master
Version: 5.2.0.0.alpha0+
Build ID: 259c1ed201f4277d74dfd600fed8c837cbf56abc
CPU Threads: 8; OS Version: Windows 6.19; UI Render: GL; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-27_00:45:12
Locale: en-US (en_US)

and in 5.1.0.2 builds it does not render any of the glyphs. Had it throw an SEH
Access violation once, also had it crash LO once.

But it does now render reliably in master so WFM there.

Need to be checked on a 5.1 daily.

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


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

2016-01-26 Thread Stephan Bergmann
 bridges/source/cpp_uno/msvc_win32_x86-64/uno2cpp.cxx |   12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

New commits:
commit ef99aad5868b308e1a421c3eaa8221f8f78d80d5
Author: Stephan Bergmann 
Date:   Wed Jan 27 08:34:52 2016 +0100

Quickfix for Win 64-bit C++ UNO bridge (more than 20 params)

See 
,
increase the number of supported params to 32 to at least make the
ooo.vba.excel.XApplication.Intersect case (and thus 
CppunitTest_sc_macros_test)
work.  The true fix will be to abandon this simplistic approach, as elegant 
as
it may have appeared.

Change-Id: Ieeb17f682bd5ea8cb7a6188b89978698949461aa

diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/uno2cpp.cxx 
b/bridges/source/cpp_uno/msvc_win32_x86-64/uno2cpp.cxx
index ada3623..65ca1ee 100644
--- a/bridges/source/cpp_uno/msvc_win32_x86-64/uno2cpp.cxx
+++ b/bridges/source/cpp_uno/msvc_win32_x86-64/uno2cpp.cxx
@@ -52,7 +52,7 @@ static bool cpp_call(
 void * pUnoArgs[],
 uno_Any ** ppUnoExc ) throw ()
 {
-const int MAXPARAMS = 20;
+const int MAXPARAMS = 32;
 
 if ( nParams > MAXPARAMS )
 {
@@ -206,14 +206,20 @@ static bool cpp_call(
   aCppParams[4].i, aCppParams[5].i, aCppParams[6].i, 
aCppParams[7].i,
   aCppParams[8].i, aCppParams[9].i, aCppParams[10].i, 
aCppParams[11].i,
   aCppParams[12].i, aCppParams[13].i, 
aCppParams[14].i, aCppParams[15].i,
-  aCppParams[16].i, aCppParams[17].i, 
aCppParams[18].i, aCppParams[19].i );
+  aCppParams[16].i, aCppParams[17].i, 
aCppParams[18].i, aCppParams[19].i,
+  aCppParams[20].i, aCppParams[21].i, 
aCppParams[22].i, aCppParams[23].i,
+  aCppParams[24].i, aCppParams[25].i, 
aCppParams[26].i, aCppParams[27].i,
+  aCppParams[28].i, aCppParams[29].i, 
aCppParams[30].i, aCppParams[31].i );
 else
 uRetVal.i =
 pIMethod (aCppParams[0].i, aCppParams[1].d, aCppParams[2].d, 
aCppParams[3].d,
   aCppParams[4].i, aCppParams[5].i, aCppParams[6].i, 
aCppParams[7].i,
   aCppParams[8].i, aCppParams[9].i, aCppParams[10].i, 
aCppParams[11].i,
   aCppParams[12].i, aCppParams[13].i, 
aCppParams[14].i, aCppParams[15].i,
-  aCppParams[16].i, aCppParams[17].i, 
aCppParams[18].i, aCppParams[19].i );
+  aCppParams[16].i, aCppParams[17].i, 
aCppParams[18].i, aCppParams[19].i,
+  aCppParams[20].i, aCppParams[21].i, 
aCppParams[22].i, aCppParams[23].i,
+  aCppParams[24].i, aCppParams[25].i, 
aCppParams[26].i, aCppParams[27].i,
+  aCppParams[28].i, aCppParams[29].i, 
aCppParams[30].i, aCppParams[31].i );
 }
 __except (CPPU_CURRENT_NAMESPACE::mscx_filterCppException(
   GetExceptionInformation(),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97353] Recent Documents list not updating; seems frozen with a fixed list of documents.

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

--- Comment #2 from 670c4...@opayq.com ---
(In reply to V Stuart Foote from comment #1)
> Presence of the stanzas in user profile -- registrymodifications.xcu-- mean
> they had been customized, or migrated from a prior installation. Defaults:
> PicklistSize 25, Size 100 are not recorded into a clean user profile.
> 
> As that appears to have been a migrated profile, really not unexpected. 
> 
> You can simply delete the two stanzas to revert to defaults--actual history
> entries recorded to profile are not affected. 
> 
> The values can also be adjusted from Tools -> Options -> Advanced: Expert
> Configuration. Enter the search string "history". The History Size and
> PickListSize in the org.openoffice.Office.Common prefs can be set as
> preferred and will then appear per user in the registrymodifications.xcu
> 
> However, your migrated profile is suspect--you would be better served to
> create a clean profile for 5.x with defaults. Rename entire directory first
> if you have templates or customizations to protect--and then selectively
> restore them to the otherwise clean new profile.

Thank you for the info. A little more data...

..."However, your migrated profile is suspect--you would be better served to
create a clean profile for 5.x with defaults. Rename entire directory first if
you have templates or customizations to protect--and then selectively restore
them to the otherwise clean new profile."

Actually, I didn't do a migration/upgrade, I did a complete uninstall of the
older version (3.x..), including deleting the registrymodifications.xcu from
.config/libreoffice, and a completely fresh/new install of 5.0.4.2 from
LibreOffice_5.0.4.2_Linux_x86-64_deb (not from the package manager - synaptic).
The problem then occurred with the new version (5.4.0.2) - the old version
worked fine.

As I said I don't know how the old values occurred - I made no adjustments to
any values during the fresh install. A clarification; by old I mean the values
I found before I made the changes to the new values.

My main intent/concern was to report this behavior to help others that might
experience this same behavior - again because I couldn't find any other place
to document this behavior and how I resolved 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 97369] SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows)

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

--- Comment #17 from Tor Lillqvist  ---
What OpenCL software do you have on the Linux box where the problem happens? Do
you have the clinfo program? (Should be available as a package in most distros,
I assume.) Run clinfo and attach the output to 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


Re: configure options for 'stock' builds?

2016-01-26 Thread Yury
Christian Lohmaier  googlemail.com> writes:

> the feature relevant ones are the ones in distro-config.
...

Thank you! Totally missed this dir.

However, I do not see any obvious sources for that slowdown with big files
I'm experiencing (which wasn't there in 4 series local builds):

http://article.gmane.org/gmane.comp.documentfoundation.libreoffice.devel/69790

I'm clueless here. Could you offer some advice?

-Yury

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


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

2016-01-26 Thread Adolfo Jayme Barrientos
 icon-themes/galaxy/res/helpimg/es/sheettabs.png |binary
 icon-themes/galaxy/res/helpimg/sheettabs.png|binary
 2 files changed

New commits:
commit 0a25aa68abfba0582aa5d9fa84d4fd71711d62e9
Author: Adolfo Jayme Barrientos 
Date:   Wed Jan 27 00:48:25 2016 -0600

Nowadays, sheet tabs look somewhat different

Change-Id: I8cde4206382b9d5e64990e7714a9de405e48adcf

diff --git a/icon-themes/galaxy/res/helpimg/es/sheettabs.png 
b/icon-themes/galaxy/res/helpimg/es/sheettabs.png
index 4736e7c..4b5dabb 100644
Binary files a/icon-themes/galaxy/res/helpimg/es/sheettabs.png and 
b/icon-themes/galaxy/res/helpimg/es/sheettabs.png differ
diff --git a/icon-themes/galaxy/res/helpimg/sheettabs.png 
b/icon-themes/galaxy/res/helpimg/sheettabs.png
index 86cf513..dbb8c61 100644
Binary files a/icon-themes/galaxy/res/helpimg/sheettabs.png and 
b/icon-themes/galaxy/res/helpimg/sheettabs.png differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97369] SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows)

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

--- Comment #19 from Ljiljan  ---
I run "clinfo" and this is the output. I don't find it useful. 

"Number of platforms   0"

However, this is the output from Tools-> Options -> LibreOffice -> Open CL

Open CL blacklist

Windows Intel\(R\) Croporation9\.17\.10\.2884
Windows Intel\(R\) Croporation4\.2\.0\.99

Open CL whitelist

NVIDIA Corporation
Intel\(R\) Croporation
Advanced Micro DEvices, Inc\.
Linux | Advanced Micro Devices, Inc\. | 1445\.5\(sse2,avx\)


Regarding the issue of video attaching to post, I don't want to start difficult
discussion about this but just to justify my approach. I noticed the problem
and reported it (description was understandable, but the cause I could't
explained with words since I have no idea why is this happening, and there is
no obvious pattern so I cannot tell you to write SUM formula on C5... so I
attached original ODS file). Video was additional way to demonstrate the
problem. It is MP4 which even my TV (and it is not Android) could play as well
as my default browser on Ubuntu 15.10 (Google Chrome without opening new
application). However, if you are interested in video (since it demonstrates
the problem) I recommend VLC player.

-- 
You are receiving this mail because:
You 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/qa

2016-01-26 Thread Markus Mohrhard
 sc/qa/unit/ucalc.hxx|5 +
 sc/qa/unit/ucalc_condformat.cxx |   38 ++
 2 files changed, 43 insertions(+)

New commits:
commit 4dc18dd3abf78b8451334e093dc84fb289a83336
Author: Markus Mohrhard 
Date:   Tue Jan 26 18:04:42 2016 +0100

add test for tdf#97308

Change-Id: If35a3d6ef7af619f9544ba15e994f663581de374
Reviewed-on: https://gerrit.libreoffice.org/21819
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/qa/unit/ucalc.hxx b/sc/qa/unit/ucalc.hxx
index b3e5bf3..9d8562b 100644
--- a/sc/qa/unit/ucalc.hxx
+++ b/sc/qa/unit/ucalc.hxx
@@ -443,6 +443,9 @@ public:
 void testDataBarLengthAutomaticAxis();
 void testDataBarLengthMiddleAxis();
 
+void testCondFormatEndsWithStr();
+void testCondFormatEndsWithVal();
+
 void testImportStream();
 void testDeleteContents();
 void testTransliterateText();
@@ -675,6 +678,8 @@ public:
 CPPUNIT_TEST(testCondCopyPasteSingleCellToRange);
 CPPUNIT_TEST(testCondCopyPasteSheetBetweenDoc);
 CPPUNIT_TEST(testCondCopyPasteSheet);
+CPPUNIT_TEST(testCondFormatEndsWithStr);
+CPPUNIT_TEST(testCondFormatEndsWithVal);
 CPPUNIT_TEST(testIconSet);
 CPPUNIT_TEST(testDataBarLengthAutomaticAxis);
 CPPUNIT_TEST(testDataBarLengthMiddleAxis);
diff --git a/sc/qa/unit/ucalc_condformat.cxx b/sc/qa/unit/ucalc_condformat.cxx
index d287fe0..b51b680 100644
--- a/sc/qa/unit/ucalc_condformat.cxx
+++ b/sc/qa/unit/ucalc_condformat.cxx
@@ -19,6 +19,7 @@
 #include "attrib.hxx"
 #include "fillinfo.hxx"
 
+#include 
 #include 
 
 void Test::testCopyPasteSkipEmptyConditionalFormatting()
@@ -626,5 +627,42 @@ void Test::testDataBarLengthMiddleAxis()
 m_pDoc->DeleteTab(0);
 }
 
+void Test::testCondFormatEndsWithStr()
+{
+m_pDoc->InsertTab(0, "Test");
+
+ScConditionEntry aEntry(SC_COND_ENDS_WITH, "\"TestString\"", "", m_pDoc, 
ScAddress(),
+"", "", formula::FormulaGrammar::GRAM_DEFAULT, 
formula::FormulaGrammar::GRAM_DEFAULT);
+
+svl::SharedStringPool& rStringPool = m_pDoc->GetSharedStringPool();
+svl::SharedString aStr = rStringPool.intern("SimpleTestString");
+ScRefCellValue aVal();
+ScAddress aPos(0, 0, 0);
+
+bool bValid = aEntry.IsCellValid(aVal, aPos);
+CPPUNIT_ASSERT(bValid);
+
+m_pDoc->DeleteTab(0);
+}
+
+void Test::testCondFormatEndsWithVal()
+{
+m_pDoc->InsertTab(0, "Test");
+
+ScConditionEntry aEntry(SC_COND_ENDS_WITH, "2", "", m_pDoc, ScAddress(),
+"", "", formula::FormulaGrammar::GRAM_DEFAULT, 
formula::FormulaGrammar::GRAM_DEFAULT);
+
+for (sal_Int32 i = 0; i < 15; ++i)
+{
+ScRefCellValue aVal(i);
+ScAddress aPos(0, 0, 0);
+
+bool bValid = aEntry.IsCellValid(aVal, aPos);
+bool bShouldBeValid = (i % 10) == 2;
+CPPUNIT_ASSERT_EQUAL(bShouldBeValid, bValid);
+}
+
+m_pDoc->DeleteTab(0);
+}
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 66754] Remove own implementations of various Perl functions in installer

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

Jan Holesovsky  changed:

   What|Removed |Added

 CC||j...@documentfoundation.org

--- Comment #7 from Jan Holesovsky  ---
Josh: Great to see you hacking on this!  Let me CC JanI who will be able to
help you with pushing your patches etc. :-)

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


[Libreoffice-commits] core.git: sal/rtl

2016-01-26 Thread Tor Lillqvist
 sal/rtl/bootstrap.cxx |4 
 1 file changed, 4 deletions(-)

New commits:
commit 478e2ad48ea345ec0d8058f03c1547cc29ab0cda
Author: Tor Lillqvist 
Date:   Tue Jan 26 10:09:33 2016 +0200

Bin leftover cruft

Change-Id: I15a4237a1ab6d7c180b52c3f8d2834c0e034b7db

diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx
index bd1e948..16af289 100644
--- a/sal/rtl/bootstrap.cxx
+++ b/sal/rtl/bootstrap.cxx
@@ -16,10 +16,6 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
-#ifdef WINNT
-#define NOMINMAX
-#endif
-
 #include 
 #include 
 
___
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' - i18nlangtag/qa i18nlangtag/source i18npool/Library_localedata_euro.mk i18npool/source

2016-01-26 Thread Eike Rathke
 i18nlangtag/qa/cppunit/test_languagetag.cxx |1 
 i18nlangtag/source/isolang/isolang.cxx  |4 
 i18npool/Library_localedata_euro.mk |2 
 i18npool/source/localedata/data/eu.xml  |  376 
 i18npool/source/localedata/data/eu_ES.xml   |  376 
 i18npool/source/localedata/localedata.cxx   |2 
 6 files changed, 381 insertions(+), 380 deletions(-)

New commits:
commit e0591f72d6088ee392b4c2e41fda8c0dc4faf2a3
Author: Eike Rathke 
Date:   Fri Jan 22 21:46:30 2016 +0100

tdf#97315 add Basque [eu-ES] and map [eu] to [eu-ES]

(cherry picked from commit 72c5e230f9cda8e18f63f7bbc6567487b4c5a5e0)

i18npool: fix build

Looks like 72c5e230f9cda8e18f63f7bbc6567487b4c5a5e0 missed the
makefile change.

(cherry picked from commit a6c8b41c4df79183c5d2c1450c010768ac7d82f6)

2d887ca6cb6c698fdb2d24029f38cce6050e0881

Change-Id: I89641fa82f0d0129aeff0d86a10be26cdc721dfc
Reviewed-on: https://gerrit.libreoffice.org/21725
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/i18nlangtag/qa/cppunit/test_languagetag.cxx 
b/i18nlangtag/qa/cppunit/test_languagetag.cxx
index 76ef5a3..8696408 100644
--- a/i18nlangtag/qa/cppunit/test_languagetag.cxx
+++ b/i18nlangtag/qa/cppunit/test_languagetag.cxx
@@ -684,6 +684,7 @@ static bool checkMapping( const OUString& rStr1, const 
OUString& rStr2 )
 if (rStr1 == "ku-SY"   ) return rStr2 == "kmr-Latn-SY";
 if (rStr1 == "ku-IQ"   ) return rStr2 == "ckb-IQ";
 if (rStr1 == "ku-IR"   ) return rStr2 == "ckb-IR";
+if (rStr1 == "eu"  ) return rStr2 == "eu-ES";
 return rStr1 == rStr2;
 }
 
diff --git a/i18nlangtag/source/isolang/isolang.cxx 
b/i18nlangtag/source/isolang/isolang.cxx
index 3b50dd5..196b9e1 100644
--- a/i18nlangtag/source/isolang/isolang.cxx
+++ b/i18nlangtag/source/isolang/isolang.cxx
@@ -239,7 +239,8 @@ static IsoLanguageCountryEntry const aImplIsoLangEntries[] =
 { LANGUAGE_USER_ARABIC_SOMALIA, "ar", "SO", 0 },
 { LANGUAGE_USER_ARABIC_SUDAN,   "ar", "SD", 0 },
 { LANGUAGE_ARABIC_PRIMARY_ONLY, "ar", ""  , 0 },
-{ LANGUAGE_BASQUE,  "eu", ""  , 0 },
+{ LANGUAGE_BASQUE,  "eu", "ES", 0 },
+{ LANGUAGE_BASQUE,  "eu", ""  , kSAME },// our 
earlier definition
 { LANGUAGE_BULGARIAN,   "bg", "BG", 0 },
 { LANGUAGE_CZECH,   "cs", "CZ", 0 },
 { LANGUAGE_CZECH,   "cz", ""  , kSAME },
@@ -1113,7 +1114,6 @@ css::lang::Locale 
MsLangId::Conversion::lookupFallbackLocale(
 switch (pEntry->mnLang)
 {
 // These are known to have no country assigned.
-case LANGUAGE_BASQUE:
 case LANGUAGE_USER_ESPERANTO:
 case LANGUAGE_USER_INTERLINGUA:
 case LANGUAGE_USER_LOJBAN:
diff --git a/i18npool/Library_localedata_euro.mk 
b/i18npool/Library_localedata_euro.mk
index 9b5aaae..caece13 100644
--- a/i18npool/Library_localedata_euro.mk
+++ b/i18npool/Library_localedata_euro.mk
@@ -36,7 +36,7 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,localedata_euro,\
CustomTarget/i18npool/localedata/localedata_dsb_DE \
CustomTarget/i18npool/localedata/localedata_el_GR \
CustomTarget/i18npool/localedata/localedata_et_EE \
-   CustomTarget/i18npool/localedata/localedata_eu \
+   CustomTarget/i18npool/localedata/localedata_eu_ES \
CustomTarget/i18npool/localedata/localedata_fi_FI \
CustomTarget/i18npool/localedata/localedata_fo_FO \
CustomTarget/i18npool/localedata/localedata_fr_BE \
diff --git a/i18npool/source/localedata/data/eu.xml 
b/i18npool/source/localedata/data/eu_ES.xml
similarity index 99%
rename from i18npool/source/localedata/data/eu.xml
rename to i18npool/source/localedata/data/eu_ES.xml
index 8de7c60..cc7c6d5 100644
--- a/i18npool/source/localedata/data/eu.xml
+++ b/i18npool/source/localedata/data/eu_ES.xml
@@ -24,8 +24,8 @@
   Basque
 
 
-  
-  
+  ES
+  Spain
 
   
   
diff --git a/i18npool/source/localedata/localedata.cxx 
b/i18npool/source/localedata/localedata.cxx
index e91ac3f3..d8f5ed0 100644
--- a/i18npool/source/localedata/localedata.cxx
+++ b/i18npool/source/localedata/localedata.cxx
@@ -152,7 +152,7 @@ static const struct {
 { "sr_CS",  lcl_DATA_EURO },
 { "hr_HR",  lcl_DATA_EURO },
 { "bs_BA",  lcl_DATA_EURO },
-{ "eu", lcl_DATA_EURO },
+{ "eu_ES",  lcl_DATA_EURO },
 { "fo_FO",  lcl_DATA_EURO },
 { "ga_IE",  lcl_DATA_EURO },
 { "gd_GB",  lcl_DATA_EURO },
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Libreoffice-bugs] [Bug 97374] New: FILEOPEN: Impress crashes loading a file with Page Title field

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

Bug ID: 97374
   Summary: FILEOPEN: Impress crashes loading a file with Page
Title field
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rosemarys...@gmail.com

Created attachment 122213
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122213=edit
odp file that contains a page title field

Steps that lead to crash:
1. Open LibreOffice Impress
2. Choose Insert -> Field -> Page Title
3. Save the file with .odp extension
4. Close the file
If you try to open the file again, Impress crashes. A sample file has been
attached.

-- 
You are receiving this mail because:
You 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: drawinglayer/source

2016-01-26 Thread Tor Lillqvist
 drawinglayer/source/processor2d/vclprocessor2d.cxx |   16 
 1 file changed, 16 deletions(-)

New commits:
commit 526b0a566db7628c6a31258efefc8409c5e74386
Author: Tor Lillqvist 
Date:   Tue Jan 26 09:36:22 2016 +0200

Bin some unneeded 'using' and includes

Change-Id: Ia91b3837ce39ae48e8c660274a08415ee4f9e5c7

diff --git a/drawinglayer/source/processor2d/vclprocessor2d.cxx 
b/drawinglayer/source/processor2d/vclprocessor2d.cxx
index ebace48..c765602 100644
--- a/drawinglayer/source/processor2d/vclprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclprocessor2d.cxx
@@ -39,7 +39,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -55,16 +54,11 @@
 
 // control support
 
-#include 
-#include 
-#include 
 #include 
 #include 
 
-// for test, can be removed again
 #include 
 #include 
-// <- for test
 
 using namespace com::sun::star;
 
@@ -98,16 +92,6 @@ namespace drawinglayer
 {
 namespace processor2d
 {
-// UNO class usages
-using ::com::sun::star::uno::Reference;
-using ::com::sun::star::uno::UNO_QUERY;
-using ::com::sun::star::uno::UNO_QUERY_THROW;
-using ::com::sun::star::uno::Exception;
-using ::com::sun::star::awt::XView;
-using ::com::sun::star::awt::XGraphics;
-using ::com::sun::star::awt::XWindow;
-using ::com::sun::star::awt::PosSize::POSSIZE;
-
 // rendering support
 
 // directdraw of text simple portion or decorated portion primitive. 
When decorated, all the extra
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 56408] Brackets are not handled correctly with mixed English/Latin and Hebrew/Arabic texts

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

Nusaiba Al Kindi  changed:

   What|Removed |Added

 CC||khaledho...@eglug.org

--- Comment #9 from Nusaiba Al Kindi  ---
*** Bug 65840 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 65840] Writer always breaks lines at text direction change

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

Nusaiba Al Kindi  changed:

   What|Removed |Added

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

--- Comment #5 from Nusaiba Al Kindi  ---


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

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


[Libreoffice-bugs] [Bug 43808] [META] Most Annoying RTL related issues

2016-01-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808
Bug 43808 depends on bug 65840, which changed state.

Bug 65840 Summary: Writer always breaks lines at text direction change
https://bugs.documentfoundation.org/show_bug.cgi?id=65840

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 45775] PgSQL new DB allow empty Datasource

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

--- Comment #19 from Lionel Elie Mamane  ---
(In reply to Akshay Deep from comment #18)

> Can you help me by helping me find code where the dialog is created and the
> buttons get enabled. I need to somehow perform a check that if the chosen db
> is PostgreSQl, then the next button should be enabled by default.

> I am trying to look in "dbwizsetup.cxx".

Is comment 10 helpful?

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


[Libreoffice-commits] core.git: 2 commits - sd/qa

2016-01-26 Thread Stephan Bergmann
 sd/qa/unit/tiledrendering/tiledrendering.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3bd5a251925d8660718553a7702198d6d2251502
Author: Stephan Bergmann 
Date:   Tue Jan 26 09:18:42 2016 +0100

loplugin:defaultparams

Change-Id: I592b8f678288c1229e66abb98f6bb5f865f177a0

diff --git a/sd/qa/unit/tiledrendering/tiledrendering.cxx 
b/sd/qa/unit/tiledrendering/tiledrendering.cxx
index 7081b5d..4bf086a 100644
--- a/sd/qa/unit/tiledrendering/tiledrendering.cxx
+++ b/sd/qa/unit/tiledrendering/tiledrendering.cxx
@@ -491,7 +491,7 @@ void SdTiledRenderingTest::testSearchAllFollowedBySearch()
 pXImpressDocument->registerCallback(::callback, this);
 
 lcl_search("third", /*bFindAll=*/true);
-lcl_search("match", /*bFindAll=false*/);
+lcl_search("match" /*,bFindAll=false*/);
 
 OString aUsedFormat;
 // This used to give wrong result: 'search' after 'search all' still
commit 5614bcb6acf3462a7edd56470fb60683da6937c1
Author: Stephan Bergmann 
Date:   Tue Jan 26 09:18:21 2016 +0100

loplugin:defaultparams

Change-Id: I4c80f7055ccb9979bfb89cf9139561287d9659a4

diff --git a/sd/qa/unit/tiledrendering/tiledrendering.cxx 
b/sd/qa/unit/tiledrendering/tiledrendering.cxx
index fab2c4e..7081b5d 100644
--- a/sd/qa/unit/tiledrendering/tiledrendering.cxx
+++ b/sd/qa/unit/tiledrendering/tiledrendering.cxx
@@ -491,7 +491,7 @@ void SdTiledRenderingTest::testSearchAllFollowedBySearch()
 pXImpressDocument->registerCallback(::callback, this);
 
 lcl_search("third", /*bFindAll=*/true);
-lcl_search("match", /*bFindAll=*/false);
+lcl_search("match", /*bFindAll=false*/);
 
 OString aUsedFormat;
 // This used to give wrong result: 'search' after 'search all' still
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-qa] SI-GUI Anyone wants to take Thinderbox list over?

2016-01-26 Thread Florian Reisinger
Hi,
As I really do not have a lot of time any more so it would be great to find
someone who (helps me) to maintain this list.
The list is a pastebin at the moment (any plain text website will do it)
and looks like this: http://pastebin.com/9PR3berc

This list needs to be updated when
1) a Thinderbox is out of date
2) When a new branch opens

https://github.com/reisi007/Java-SI-GUI can do this automatically and
installation works for Windows MSI (just saying)

I am not involved in testing any more so I miss (1) as well as (2)...

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

[Libreoffice-bugs] [Bug 97379] New: Can not open .docx generated by BDoc

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

Bug ID: 97379
   Summary: Can not open .docx generated by BDoc
   Product: LibreOffice
   Version: 5.0.0.5 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: david.keller...@gmail.com

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


[Libreoffice-bugs] [Bug 97231] QueryValue not working as expected

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

--- Comment #3 from Martin  ---
Yes, the problem is still available in version 5.1.0.2

you could create a new makro in the visual basic editor and run it from there:
The following works for me:

Sub Main
Dim sLocTemplatePath as String
Dim sTemplateKeyName as String
Dim sTemplateValueName as String

'sTemplateKeyName = "Software\The Document Foundation\LibreOffice
4.2\StartMenu"
sTemplateKeyName = "Software\The Document Foundation\LibreOffice 5.0\StartMenu"
sTemplateValueName = "swriter.exe"
sLocTemplatePath = QueryValue(HKEY_CURRENT_USER, sTemplateKeyName,
sTemplateValueName)
MsgBox ("Path " + sLocTemplatePath) 

End Sub


With LibreOffice 4.2 the key could be read: Result from the MsgBox was "Path 1"
and with LibreOffice 5.0 the result from the MsgBox was only "Path "

If you use LibreOffice 5.1 you would have to change the Registry Key Name from
5.0 to 5.1 i think.

best regards

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


[Libreoffice-bugs] [Bug 93054] EDITING: dragging and dropping selected cells doesn't work (GTK3 only)

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

--- Comment #15 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=0b354d18ccfc05e7c2582f851d9201e2aa353d7d

Related: tdf#93054 gtk3: implement enough dnd to be dragged into...

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


[Libreoffice-bugs] [Bug 93054] EDITING: dragging and dropping selected cells doesn't work (GTK3 only)

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

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


[Libreoffice-bugs] [Bug 97379] Can not open .docx generated by BDoc

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

--- Comment #1 from David KELLER  ---
Created attachment 122218
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122218=edit
updated by word - using bdoc generator

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


[Libreoffice-bugs] [Bug 97379] Can not open .docx generated by BDoc

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

--- Comment #2 from David KELLER  ---
Created attachment 122219
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122219=edit
using bdoc generator.docx

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


[Libreoffice-bugs] [Bug 97379] Can not open .docx generated by BDoc

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

--- Comment #3 from David KELLER  ---
The generated document using Business Docucment API can not be opened by
LibreOffice.
=> impossible to repair
=> general exception occurs

Then I open this document using WOrd 2013, and make few changes and save it.

Then LibreOffice can open the document.

What is wrong ? http://www.bdoc.com/ or libreboffice ?

kind regards,
David KELLER

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


[Libreoffice-bugs] [Bug 97276] Cannot select line shape with mouse

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

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||caol...@redhat.com,
   ||r...@post.cz

--- Comment #3 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Caolán McNamara ; Could you possibly take a look at this one?
Thanks

4a101ce68b02931a5486f32d1eb7acddbd13268d is the first bad commit
commit 4a101ce68b02931a5486f32d1eb7acddbd13268d
Author: Norbert Thiebaud 
Date:   Wed Jul 29 15:44:27 2015 -0700

source sha:d1046e7c3f66e5f3384ee1ef534ef28346702fc6

source sha:d1046e7c3f66e5f3384ee1ef534ef28346702fc6
authorCaolán McNamara 2015-07-15 09:10:25 (GMT)
committerCaolán McNamara 2015-07-15 12:11:14 (GMT)
commitd1046e7c3f66e5f3384ee1ef534ef28346702fc6 (patch)

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


[Libreoffice-bugs] [Bug 97380] New: Dialog Designer: Crash when importing a dialog file twice

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

Bug ID: 97380
   Summary: Dialog Designer: Crash when importing a dialog file
twice
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: samuel.mehrbr...@cib.de

1. Open Dialog Designer
2. Import any dialog file, choose "Replace" when asked
3. Repeat step 2
4. LibreOffice crashes

Happens on Windows 7, 32 bit, LO Version: 5.0.4.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 97233] [META] Dialog Designer bugs and enhancements

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

Samuel Mehrbrodt  changed:

   What|Removed |Added

 Depends on||97380

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


[Libreoffice-bugs] [Bug 97380] Dialog Designer: Crash when importing a dialog file twice

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

Samuel Mehrbrodt  changed:

   What|Removed |Added

 CC||samuel.mehrbr...@cib.de
 Blocks||97233

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


[Libreoffice-bugs] [Bug 97293] UI hangs when showing print dialog with unreachable IPP printer (CUPS)

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

--- Comment #2 from Felipe Borges  ---
Fedora 23 64bits
Version: 5.0.4.2
Build ID: 5.0.4.2-3.fc23

version packaged on Fedora 23.

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


[Libreoffice-bugs] [Bug 97293] UI hangs when showing print dialog with unreachable IPP printer (CUPS)

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

Beluga  changed:

   What|Removed |Added

Version|unspecified |5.0.4.2 release

--- Comment #3 from Beluga  ---
Strange.. it only hangs for me in 5.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 58874] compatibility with excel formula

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

GerardF  changed:

   What|Removed |Added

 CC||ab...@hotmail.com

--- Comment #7 from GerardF  ---
*** Bug 96595 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 96595] Incorrect result from sumproduct / subtotal / offset formula

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

GerardF  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||gerard.farg...@orange.fr
 Resolution|--- |DUPLICATE

--- Comment #5 from GerardF  ---


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

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


[Libreoffice-bugs] [Bug 58874] compatibility with excel formula

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

--- Comment #8 from GerardF  ---
On AskLibO, Eike wrote : "Apparently Excel treats an array of OFFSET() results
differently if it occurs as an argument to SUBTOTAL()."

It is not only when OFFSET is inside SUBTOTAL.
=OFFSET(A1;ROW(1:4);0)
result in an array of 4 cells (A1:A4) in Calc
result in 4 arrays of 1 cell in Excel.

I will attach a sample when having more time.

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


[Libreoffice-bugs] [Bug 97381] New: Styles and Formatting: Borders overwriting bug

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

Bug ID: 97381
   Summary: Styles and Formatting: Borders overwriting bug
   Product: LibreOffice
   Version: 5.1.0.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: eagala...@gmail.com

Hello!

If I want to set style only for top border of the cell and rest borders leave
as is then I'm getting wrong results. Calc overwrites all borders.

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


[Libreoffice-bugs] [Bug 97381] Styles and Formatting: Borders overwriting bug

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

--- Comment #1 from Eldar  ---
Created attachment 10
  --> https://bugs.documentfoundation.org/attachment.cgi?id=10=edit
example of bug

I attached example. Cell A1 and B1 have the same style. Next I'm applying
"Untitled1" style on cell B1 and getting wrong results. Only top border should
be with red color, rest border should be unchanged.

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


[Libreoffice-bugs] [Bug 97382] New: Extension Manager: Weird icon when starting from cli

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

Bug ID: 97382
   Summary: Extension Manager: Weird icon when starting from cli
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: samuel.mehrbr...@cib.de

Created attachment 11
  --> https://bugs.documentfoundation.org/attachment.cgi?id=11=edit
Window icon

1. Start "unopkg gui" from command line (instdir/program)
2. Weeeird icon ... (see screenshot)

Seen on Windows only.

-- 
You are receiving this mail because:
You are the 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-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97331

Commit Notification  changed:

   What|Removed |Added

 Whiteboard| target:5.2.0   | target:5.2.0 target:5.1.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 97331] Crash conditional formatting, when scrolling on Icon set

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

--- Comment #7 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=5d29ed1801a07d4649e095c25935b50f5ad32eb4

Resolves: tdf#97331 use VclPtr instead of pointers to avoid crash

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


  1   2   3   4   >