[Libreoffice-bugs] [Bug 88985] Writer crashes document if closed while macro running

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

--- Comment #6 from g1...@arcor.de ---
OK, so what I did and found out:

I renamed ~/.config/libreoffice to ~/.config/libreofficeXXX
I started libreoffice 4.3.5.2 Writer installed without languagepack
I recognized the File/Recent Documents list was not empty, but reset to an old
one, so I figured: It still gets some defaults from somewhere
I found and renamed ~/.openoffice.org
Still the old Recent Documents list, but macrosecurity went up to high
I set macrosecutity to medium so I can execute the unsigned macro
I opend the attached CrashWriterMacro.odt, answered to enable macros, clickt
the CommandButton and closed the application window.
I started LibreOffice Writer again, it shows the LibreOffice Document Recovery
window with CrashWriterMacro.odt in the list with status not recovered yet

-- 
You are receiving this mail because:
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: Cppcheck: Dereferencing 'pDef' after it is deallocated / released (basic module)

2015-02-06 Thread David Tardon
Hi,

On Thu, Feb 05, 2015 at 12:24:33PM -0700, julien2412 wrote:
 Hello,
 
 Cppcheck reported this:
 [basic/source/comp/dim.cxx:1239]: (error) Dereferencing 'pDef' after it is
 deallocated / released
 We have this:
1213 pProc = pOld-GetProcDef();
1214 if( !pProc )
1215 {
1216 // Declared as a variable
1217 Error( SbERR_BAD_DECLARATION, pDef-GetName() );
1218 delete pDef;
1219 pProc = NULL;
1220 bError_ = true;
1221 }
1222 // #100027: Multiple declaration - Error
1223 // #112787: Not for setup, REMOVE for 8
1224 else if( pProc-IsUsedForProcDecl() )
1225 {
1226 PropertyMode ePropMode = pDef-getPropertyMode();
1227 if( ePropMode == PROPERTY_MODE_NONE || ePropMode ==
 pProc-getPropertyMode() )
1228 {
1229 Error( SbERR_PROC_DEFINED, pDef-GetName() );
1230 delete pDef;
1231 pProc = NULL;
1232 bError_ = true;
1233 }
1234 }
1235 
1236 if( !bError_ )
1237 {
1238 pDef-Match( pProc );
1239 pProc = pDef;
1240 }
 See http://opengrok.libreoffice.org/xref/core/basic/source/comp/dim.cxx#1209
 So it seems a false positive since when pDef is deleted, bError = true and
 we don't enter the if.

Yes, it is a false positive.

 But isn't it weird to have each time
 delete pDef;
 pProc = NULL;
 
 Shouldn't it be one of these :
 1)
 delete pProc;
 pProc = NULL;
 
 2)
 delete pDef;
 pDef = NULL;
 
 ?

No, it should not. pDef is the currently processed definition of a
procedure, which has been dynamically allocated by call to ProcDecl. If
there is error, it is not used, so it must be deleted. pProc is the
final one, which is set to a possible already known definition on line
1213. And that would already be deleted at some later time. The only
nitpick is that setting pProc to NULL on line 1219 is unnecessary, as it
is already NULL.

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


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

2015-02-06 Thread Tor Lillqvist
 include/opencl/openclwrapper.hxx |6 
 opencl/source/openclwrapper.cxx  |   58 +
 sc/source/core/opencl/formulagroupcl.cxx |  186 ++-
 sc/source/core/opencl/op_addin.cxx   |   16 
 sc/source/core/opencl/op_financial.cxx   |  601 ---
 sc/source/core/opencl/op_logical.cxx |   12 
 sc/source/core/opencl/op_math.cxx|  233 
 sc/source/core/opencl/op_statistical.cxx | 1680 ---
 sc/source/core/opencl/opbase.cxx |   87 -
 sc/source/core/opencl/opbase.hxx |7 
 10 files changed, 186 insertions(+), 2700 deletions(-)

New commits:
commit 641835ec3234da3744a4ea3c15ff3c4e3aef1528
Author: Tor Lillqvist t...@collabora.com
Date:   Fri Feb 6 02:32:15 2015 +0200

Report errors from clRelease*() APIs

Change-Id: Id30afe5bf954e26515bf8cca6f1ee8bc018fb835

diff --git a/sc/source/core/opencl/formulagroupcl.cxx 
b/sc/source/core/opencl/formulagroupcl.cxx
index d508141..9804c72 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -1062,7 +1062,9 @@ public:
 {
 if (mpClmem2)
 {
-clReleaseMemObject(mpClmem2);
+cl_int err;
+err = clReleaseMemObject(mpClmem2);
+SAL_WARN_IF(err != CL_SUCCESS, sc.opencl, clReleaseMemObject 
failed:   ::opencl::errorString(err));
 mpClmem2 = NULL;
 }
 }
@@ -1571,7 +1573,8 @@ public:
 SAL_WARN(sc.opencl, clEnqueueUnmapMemObject failed:   
::opencl::errorString(err));
 if (mpClmem2)
 {
-clReleaseMemObject(mpClmem2);
+err = clReleaseMemObject(mpClmem2);
+SAL_WARN_IF(err != CL_SUCCESS, sc.opencl, 
clReleaseMemObject failed:   ::opencl::errorString(err));
 mpClmem2 = NULL;
 }
 mpClmem2 = clCreateBuffer(kEnv.mpkContext,
@@ -1592,7 +1595,9 @@ public:
 {
 if (mpClmem2)
 {
-clReleaseMemObject(mpClmem2);
+cl_int err;
+err = clReleaseMemObject(mpClmem2);
+SAL_WARN_IF(err != CL_SUCCESS, sc.opencl, clReleaseMemObject 
failed:   ::opencl::errorString(err));
 mpClmem2 = NULL;
 }
 }
@@ -2314,10 +2319,14 @@ public:
 global_work_size, local_work_size, 0, NULL, NULL);
 if (CL_SUCCESS != err)
 throw OpenCLError(clEnqueueNDRangeKernel, err, __FILE__, 
__LINE__);
+
 err = clFinish(kEnv.mpkCmdQueue);
 if (CL_SUCCESS != err)
 throw OpenCLError(clFinish, err, __FILE__, __LINE__);
-clReleaseKernel(redKernel);
+
+err = clReleaseKernel(redKernel);
+SAL_WARN_IF(err != CL_SUCCESS, sc.opencl, clReleaseKernel 
failed:   ::opencl::errorString(err));
+
 // Pass mpClmem2 to the real kernel
 SAL_INFO(sc.opencl, Kernel   k   arg   argno  : 
cl_mem:   mpClmem2);
 err = clSetKernelArg(k, argno, sizeof(cl_mem), 
(void*)mpClmem2);
@@ -2431,7 +2440,9 @@ public:
 {
 if (mpClmem2)
 {
-clReleaseMemObject(mpClmem2);
+cl_int err;
+err = clReleaseMemObject(mpClmem2);
+SAL_WARN_IF(err != CL_SUCCESS, sc.opencl, clReleaseMemObject 
failed:   ::opencl::errorString(err));
 mpClmem2 = NULL;
 }
 }
@@ -3597,13 +3608,16 @@ DynamicKernel::DynamicKernel( const FormulaTreeNodeRef 
r, int nResultSize ) :
 
 DynamicKernel::~DynamicKernel()
 {
+cl_int err;
 if (mpResClmem)
 {
-clReleaseMemObject(mpResClmem);
+err = clReleaseMemObject(mpResClmem);
+SAL_WARN_IF(err != CL_SUCCESS, sc.opencl, clReleaseMemObject 
failed:   ::opencl::errorString(err));
 }
 if (mpKernel)
 {
-clReleaseKernel(mpKernel);
+err = clReleaseKernel(mpKernel);
+SAL_WARN_IF(err != CL_SUCCESS, sc.opencl, clReleaseKernel failed:  
 ::opencl::errorString(err));
 }
 // mpProgram is not going to be released here -- it's cached.
 }
@@ -3706,7 +3720,8 @@ void DynamicKernel::CreateKernel()
 
 if (lastSecondProgram)
 {
-clReleaseProgram(lastSecondProgram);
+err = clReleaseProgram(lastSecondProgram);
+SAL_WARN_IF(err != CL_SUCCESS, sc.opencl, clReleaseProgram 
failed:   ::opencl::errorString(err));
 }
 if (::opencl::buildProgramFromBinary(,
 ::opencl::gpuEnv, KernelHash.c_str(), 0))
diff --git a/sc/source/core/opencl/opbase.cxx b/sc/source/core/opencl/opbase.cxx
index 671987e..ac97249 100644
--- a/sc/source/core/opencl/opbase.cxx
+++ b/sc/source/core/opencl/opbase.cxx
@@ -107,7 +107,9 @@ VectorRef::~VectorRef()
 {
 if (mpClmem)
 {
-clReleaseMemObject(mpClmem);
+cl_int err;
+err = clReleaseMemObject(mpClmem);
+SAL_WARN_IF(err != CL_SUCCESS, sc.opencl, 

Java sidebar extensions and LibreOffice

2015-02-06 Thread fma
Hi all,
I need to create a sidebar extension for LibreOffice users and it must be
Java-based.
My starting point was the OpenOffice Wiki page for sidebar developers:
https://wiki.openoffice.org/wiki/Sidebar_for_Developers
Unfortunately, the sample code on the wiki page for the Analog Clock
Extension works fine for OpenOffice 4.1.1 but the UI is not shown on
LibreOffice 4.4.

Steps to reproduce the problem:

- download the Analog Clock Extension (direct link:
http://people.apache.org/~af/clock/AnalogClock.oxt ; source code:
http://people.apache.org/~af/clock/AnalogClock.zip )

- in the package, change the dependencies tag in description.xml file to
install the extension on LibreOffice 4.4:

original dependencies tag content:
 / OpenOffice.org-minimal-version value=4.0 d:name=Apache OpenOffice//

new dependencies tag content:
/ OpenOffice.org-maximal-version value=4.x dep:name=OpenOffice.org 4.x
dep:OpenOffice.org-minimal-version=4.0//

- install the extension on LibreOffice (enable Java Runtime Environment if
needed)

- after restarting LibreOffice, you will see the icon of the new sidebar
panel just below the others, but no interface is shown when clicking on it
(i.e. the analog clock and also its container panel are not visible)

I gave a look to the source code but with no luck: can someone give me a
hint about the possible cause of the problem?

Thanks in advance and best regards.



--
View this message in context: 
http://nabble.documentfoundation.org/Java-sidebar-extensions-and-LibreOffice-tp4139084.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 89183] New: sdfsdfsdf

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

Bug ID: 89183
   Summary: sdfsdfsdf
   Product: QA Tools
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: romodin_mih...@mail.ru

sdfs

-- 
You are receiving this mail because:
You 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 86624] FILEOPEN: Manually placed legend is moved to top left corner

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

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

   What|Removed |Added

 Blocks||79641

-- 
You are receiving this mail because:
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 79641] LibreOffice 4.4 most annoying bugs

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

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

   What|Removed |Added

 Depends on||86624

--- Comment #43 from Laurent BP jumbo4...@yahoo.fr ---
Promote bug 86624
Position of legend is lost in chart if it is manually placed

-- 
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 79641] LibreOffice 4.4 most annoying bugs

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

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

   What|Removed |Added

 Depends on||86624

--- Comment #43 from Laurent BP jumbo4...@yahoo.fr ---
Promote bug 86624
Position of legend is lost in chart if it is manually placed

-- 
You are receiving this mail because:
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: [Libreoffice-qa] Changes of LibreOffice Bug Reports on freedesktop.org

2015-02-06 Thread Harald Köster
Hi Christian,

thanks for clarification.

Am 06.02.2015 um 14:10 schrieb Christian Lohmaier:
 Hi Harald, *,
 
 On Fri, Feb 6, 2015 at 1:23 PM, Harald Köster harald.koes...@mail.de wrote:

 I got 2 Mails from bugzilla-dae...@freedesktop.org and not from
 bugzilla-dae...@bugs.documentfoundation.org according changes of a
 LibreOffice bug. These changes are not made in
 bugs.documentfoundation.org.
 
 Yes, this is a known limitation.
 
 I think it should not be
 possible to change LibreOffice bug reports in fdo anymore.
 
 It's still possible via the bugzilla APIs (xmlrpc/jsonrpc) and also
 via the comment-via-email that is enabled on fdo's bugzilla.
 Also when the bug has an alias, it was accessible via regular web for some 
 time.
 
 The respective bug is 88757.
 
 Best to send him a note...

...done for bug 88757.

Best
Harald
___
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-commits] core.git: sw/qa

2015-02-06 Thread Vasily Melenchuk
 sw/qa/extras/htmlexport/data/tdf76291.odt |binary
 sw/qa/extras/htmlexport/htmlexport.cxx|9 +
 2 files changed, 9 insertions(+)

New commits:
commit 675e1fe198298702ced8eab02a7df5164d66a8f0
Author: Vasily Melenchuk vasily.melenc...@cib.de
Date:   Thu Feb 5 11:57:13 2015 +

tdf#76291 unit test for html export href encoding

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

diff --git a/sw/qa/extras/htmlexport/data/tdf76291.odt 
b/sw/qa/extras/htmlexport/data/tdf76291.odt
new file mode 100644
index 000..68588c8
Binary files /dev/null and b/sw/qa/extras/htmlexport/data/tdf76291.odt differ
diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index e83c807..44cf0b9 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -233,6 +233,15 @@ 
DECLARE_HTMLEXPORT_TEST(testExportCheckboxRadioButtonState, checkbox-radiobutto
 assertXPathNoAttribute(pDoc, /html/body/form/p[4]/input, checked);
 }
 
+DECLARE_HTMLEXPORT_TEST(testExportUrlEncoding, tdf76291.odt)
+{
+htmlDocPtr pDoc = parseHtml(maTempFile);
+CPPUNIT_ASSERT(pDoc);
+
+// Test URI encoded hyperlink with Chinese characters
+assertXPath(pDoc, /html/body/p/a, href, 
http://www.youtube.com/results?search_query=%E7%B2%B5%E8%AA%9Emvsm=12;);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89188] Unable to save

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

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3, Win 8.1.

If the properties (FILE - PROPERTIES) are changed, then the SAVE icon should
show the change and therefore be enabled.
This works for me as expected.

IF the printer settings (FILE - PRINTER SETTINGS) are changed, then the SAVE
icon should not be enabled, because for me it is a user change, which is not
saved in the file.

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


[Libreoffice-bugs] [Bug 89170] Strikethrough in single words not visible in calc when you open an XLSX File.

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

--- Comment #4 from Hannesh Holzer h.hol...@internationalservicecheck.com ---
Created attachment 113188
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113188action=edit
XLSX file whihc contain Strikethrough text

Please find attached the XLSX Document whihc contain strikethrough Text in the
cells. 
-in the first row in the whole cell the text is strikethought. 
-in the secound row there is only one word of the text from the cell formated
with strikethourgh. 
You are not able to visualize the strikethourgh content in row 2 with any
version of Calc from Libre Office

-- 
You are receiving this mail because:
You 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 89185] FILEOPEN:line is importend incorrectly in pptx file

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

Roeland roelandb...@hotmail.com changed:

   What|Removed |Added

 OS|All |Windows (All)

-- 
You are receiving this mail because:
You 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 89181] VIEWING:

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

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
3.5.4 is an old version. Do you reproduce this with a newer LO version? (last
stable one is 4.3.5)?

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


[Libreoffice-bugs] [Bug 89186] New: GETPIVOTDATA gives #REF! with Field n / Item n syntax.

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

Bug ID: 89186
   Summary: GETPIVOTDATA gives #REF! with Field n / Item n
syntax.
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stevensondav...@hotmail.com

Created attachment 113189
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113189action=edit
Brand new LO spreadsheet with illustrations.

GETPIVOTDATA function gives bad #REF! result using Field n / Item n syntax.

Using LO Version: 4.3.5.2
Intel Core i5-4200U CPU x64-based processor
Windows 8.1

GETPIVOTDATA does not function as documented, according to LibreOffice Calc
Help:
You should not get “#REF!” (Error: Not a valid reference) as long as the
pivot table contains only a single result value that fulfills all of the
constraints, or a subtotal result that summarizes all matching values.

I am taking constraints to include constraints applied using the Field n /
Item n syntax.  Or if constraints is referring to the constraints syntax
branch of the Help text, then I'm talking about the Field n / Item n syntax
branch.

Works OK on Apache OpenOffice 4.1.0

Start with fresh Calc file.  Enter the following:
Col1Col2col3
bge4712
tpx1.71.37
mrz428
tpx1.788.68
mrz3312.01

Start a Pivot Table on the above.  Specify Row Fields Col1 and Col2 in that
order; Data Field of col3.  Make it produce the Pivot Table starting at A1 on a
new sheet.

GETPIVOTDATA(Col3,$A$1,Col1,bge) yields #REF! - should yield 12.
You should get the result 12 because there is only one bge row in the source
data, and of course only one bge row in the Pivot Table.

GETPIVOTDATA(Col3,$A$1,Col1,bge,Col2,47) yields 12 as it should.
But you should not have to specify the Col2 field, which is not required to pin
down the qualifying row.

Same approach but using Col1=mrz requires both Col1 and Col2 to work; no
complaint about that.

Same approach but using Col1=tpx with Col2 unspecified yields #REF! -
should yield 90.05.
This is because, although there are more than 1 source rows, they all have the
same Col2 value and thus summarize into a single Pivot Table row.

-- 
You are receiving this mail because:
You 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 84353] EDITING: Very slow when selecting multiple row

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

--- Comment #6 from Yan Pashkovsky yanp...@gmail.com ---
The same happens to me! Why this bug still not assigned to anybody?

-- 
You are receiving this mail because:
You 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 89166] IF statement in cell does not work as expected.

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

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||stgohi-lob...@yahoo.de
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
Only issue 1 is for me reproducible with LO 4.4.0.3, Win 8.1, therefore it is
maybe a Linux only issue?


Issue 1: =IF(C30, B3/C3, No Report)
- confirmed, this is a mistake in the Calc User Guide, it should be ;
instead of ,

Sources:
- http://www.libreoffice.org/get-help/documentation/ - LibreOffice 4.0 - 4.1
User Guides - Calc Guide 4.1 (spreadsheets) - Page 195 and 415
- http://de.libreoffice.org/get-help/documentation/ - Handbuch Calc
(Tabellenkalkulation) - Kapitel 07 – Formeln und Funktionen - Page 8 
and Anhang B – Calc Funktionen - Page 33


Issue 2: =IF(3=3; B3/C3)
if B3 and C3 are empty it returns #DIV/0! and if the cells contain numbers,
then there are correctly calculated
- for me not reproducible with LO 4.4.0.3, Win 8.1


Issue 3: =IF(3=3; 10)
correct, the result is Text, to have a Number you need to write =IF(3=3; 10)
- for me not reproducible with LO 4.4.0.3, Win 8.1


Issue 4: =IF(3=3; 3)
it returns 3 as expected
- for me not reproducible with LO 4.4.0.3, Win 8.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 89188] New: Unable to save

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

Bug ID: 89188
   Summary: Unable to save
   Product: LibreOffice
   Version: 3.5.1 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: libreoffice.3.lasse...@spamgourmet.com

When you make a change to the Print settings/Properties, the Tool Bar Save icon
doesn't become enabled, so you have to go to SaveAs to make the save.  Not sure
if it would be possible to detect that.  Thanks.

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


[Libreoffice-bugs] [Bug 89176] Keyboard shortcut in Czech Find-replace dialog

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

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

 CC||stanislav.hora...@gmail.com

--- Comment #2 from Andras Timar tima...@gmail.com ---
It is rather for Stanislav Horacek, the maintaner of Czech translation. He can
fix this in Pootle.

-- 
You are receiving this mail because:
You 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 86624] FILEOPEN: Manually placed legend is moved to top left corner

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

raal r...@post.cz changed:

   What|Removed |Added

 CC||rsmilw...@frontier.com

--- Comment #9 from raal r...@post.cz ---
*** Bug 89148 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 89148] Legends and text boxes in chart moved on re-open

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

raal r...@post.cz changed:

   What|Removed |Added

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

--- Comment #2 from raal r...@post.cz ---
User sent me an e-mail - duplicate

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

-- 
You are receiving this mail because:
You 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 89184] FILEOPEN: Word in pptx file is incorrectly imported as strikethrough

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

Roeland roelandb...@hotmail.com changed:

   What|Removed |Added

 OS|All |Windows (All)

-- 
You are receiving this mail because:
You 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 89177] Clipboard data not retained after closing

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

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3 under Windows 8.1.  Therefore, as
mentioned in the/assumed from the Description, it seems to be a Linux only
issue.

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


[Libreoffice-bugs] [Bug 89187] New: Date format error

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

Bug ID: 89187
   Summary: Date format error
   Product: LibreOffice
   Version: 4.3.4.1 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: shawn.kovac.2...@gmail.com

In LibreOffice Calc, when i add the date in a footer, it displays only in
MM/DD/ format (in Print Preview). but my OS date format (in Windows) is
'-MM-DD'. I wouldn't call it a bug if Calc let us choose the format
specifically, but forcing us into one set date format when it's not the desired
format is certainly a bug to this user. :(

-- 
You are receiving this mail because:
You 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 87915] Text in shapes imported from Draw is lost

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

Mike Sapsard mike.saps...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #7 from Mike Sapsard mike.saps...@gmail.com ---
Tested in 4.3.6.1 and 4.4.0.3. Files open, save and open again correctly.

I changed textbox colour and line type and they worked.

Tested in Linux Mint 17.1 on an Intel i7 PC.

Looks good.

-- 
You are receiving this mail because:
You 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 89170] Strikethrough in single words not visible in calc when you open an XLSX File.

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

Rostislav 'R.Yu.' Okulov ogldel...@mail.ru changed:

   What|Removed |Added

 CC||ogldel...@mail.ru
 Whiteboard|bibisectRequest |bibisected

--- Comment #6 from Rostislav 'R.Yu.' Okulov ogldel...@mail.ru ---
git bisect start
# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
git bisect bad 423a84c4f7068853974887d98442bc2a2d0cc91b
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect good 65fd30f5cb4cdd37995a33420ed8273c0a29bf00
# bad: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect bad e02439a3d6297a1f5334fa558ddec5ef4212c574
# good: [8f4aeaad2f65d656328a451154142bb82efa4327]
source-hash-1885266f274575327cdeee9852945a3e91f32f15
git bisect good 8f4aeaad2f65d656328a451154142bb82efa4327
# good: [9995fae0d8a24ce31bcb5e9cd0459b69cfbf7a02]
source-hash-8600bc24bbc9029e92bea6102bff2921bc10b33e
git bisect good 9995fae0d8a24ce31bcb5e9cd0459b69cfbf7a02
# bad: [8ad82bc1416a07501651e8d96fe268e47d3931d3]
source-hash-13821254f88d2c5488fba9fe6393dcf4ae810db4
git bisect bad 8ad82bc1416a07501651e8d96fe268e47d3931d3
# bad: [238338bc4111eb82429ea47384d4012bcd7cdc3e]
source-hash-b6ba04639b9922f6717f79ac4be215e09691d7a9
git bisect bad 238338bc4111eb82429ea47384d4012bcd7cdc3e
# bad: [89dc8a802d1625e0efd88ba0fb720b22be87f3f0]
source-hash-da03bb1ee6a69d2f4fef4c3ca0adc0ba9588bd19
git bisect bad 89dc8a802d1625e0efd88ba0fb720b22be87f3f0
# bad: [fe956dc63cc7ed1831f0e7e9e7253ea4d8c99549]
source-hash-b15f095293c6127ecaef2f0fa3a1683e72392835
git bisect bad fe956dc63cc7ed1831f0e7e9e7253ea4d8c99549
# bad: [cd762eb968ba8783f726b67d9d70b0a76f4eb55d]
source-hash-c9562064740baed3a9978723c5fe77b44a13a7aa
git bisect bad cd762eb968ba8783f726b67d9d70b0a76f4eb55d
# good: [85835eaea0e00bbe3138486781a507e436bc9263]
source-hash-6978ddbf4738b4c53b9d2edbe6d5ad6a061d0d0f
git bisect good 85835eaea0e00bbe3138486781a507e436bc9263
# first bad commit: [cd762eb968ba8783f726b67d9d70b0a76f4eb55d]
source-hash-c9562064740baed3a9978723c5fe77b44a13a7aa

cd762eb968ba8783f726b67d9d70b0a76f4eb55d is the first bad commit
commit cd762eb968ba8783f726b67d9d70b0a76f4eb55d
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Wed Oct 16 04:32:25 2013 +

source-hash-c9562064740baed3a9978723c5fe77b44a13a7aa

commit c9562064740baed3a9978723c5fe77b44a13a7aa
Author: Caolán McNamara caol...@redhat.com
AuthorDate: Tue Jan 22 08:54:33 2013 +
Commit: Caolán McNamara caol...@redhat.com
CommitDate: Tue Jan 22 16:29:39 2013 +

make GetAccessibleRelationMemberOf use SetAccessibleRelationMemberOf
values

Change-Id: Ia413ac220c8d942576c29be6238c75c5061ec156

:100644 100644 e0fb278a62f74246d4e7e854edda75a50c5d8910
6ec2e182895bf6b77f286634aba1c62bfaf701cd M  ccache.log
:100644 100644 defa53e2eb21f85369551cb7bd33a41411af7206
b1baeaaef7c598fe40d6fbecfb6f5a790f9cd317 M  commitmsg
:100644 100644 92cecd1d285b4493c39b38e636f7b560f40eb5ed
f0c98be696238ffc7a2fe8144be3d4fc4168502f M  dev-install.log
:100644 100644 df30eda7f3b88b3394c69c749e2460d95f41fa55
040afe7b74aa2b620a95ea8f82cade8608495403 M  make.log
:04 04 21a7f395a23b3d284ea834b61bd8935a85d48b99
782894508ae3313762f41edc7cc4478fc0f41f3b M  opt

-- 
You are receiving this mail because:
You 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 89189] New: Rearranging Icons of Toolbars with Alt+Drag does not Work

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

Bug ID: 89189
   Summary: Rearranging Icons of Toolbars with Alt+Drag does not
Work
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: harald.koes...@mail.de

In order to reproduce the bug just press Alt and grep an icon of a toolbar and
try to drag and drop it to another position in the toolbar. During dragging a
shape is visible but you can't drop the icon at another position.

See also https://issues.apache.org/ooo/show_bug.cgi?id=34073.

As far as I have an overview it should also be possible to move an icon without
pressing the Alt key. But there may be circumstances where this is not
possible.

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


[Libreoffice-bugs] [Bug 89186] GETPIVOTDATA gives #REF! with Field n / Item n syntax.

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

Stevenson Davies stevensondav...@hotmail.com changed:

   What|Removed |Added

 CC||stevensondav...@hotmail.com

--- Comment #1 from Stevenson Davies stevensondav...@hotmail.com ---
Created attachment 113190
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113190action=edit
Created new on Apache OO 4.1.0 equivalent with illustrations.

Open with Apache OO and compare with other attachment 113189: Brand new LO
spreadsheet with illustrations. you have opened in LibreOffice.

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


[Libreoffice-bugs] [Bug 89170] Strikethrough in single words not visible in calc when you open an XLSX File.

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

raal r...@post.cz changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
Version|unspecified |4.2.8.2 release
 Ever confirmed|0   |1
 Whiteboard||bibisectRequest

--- Comment #5 from raal r...@post.cz ---
I can confirm with Version: 4.5.0.0.alpha0+
Build ID: 40432ac6caa478474d73786f95b808c14e106ff2
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-02-03_01:24:42

Works OK in LO 3.5 - regression

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


[Libreoffice-bugs] [Bug 89116] Impress: reposition the default anchor position of Presentation toolbar to be above the Slides panel

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

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

   What|Removed |Added

   Priority|medium  |low
 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
  Component|ux-advise   |UI
Summary|UI: Toolbar buttons for |Impress: reposition the
   |manipulating slides should  |default anchor position of
   |be placed right above the   |Presentation toolbar to be
   |Slide Pane  |above the Slides panel
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #2 from V Stuart Foote vstuart.fo...@utsa.edu ---
Sure, from an Impress UI perspective, moving the default anchor point for the
Presentation toolbar--now appended to the Standard toolbar--would be more
functional.

Its default anchor should be on the left margin above the Slides Slide pane--
 below the Standard toolbar rather than appended to 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 89182] Comment indicator obscures cell contents

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

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.3, Win 8.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-ux-advise] [Bug 89116] Impress: reposition the default anchor position of Presentation toolbar to be above the Slides panel

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

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

   What|Removed |Added

   Priority|medium  |low
 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
  Component|ux-advise   |UI
Summary|UI: Toolbar buttons for |Impress: reposition the
   |manipulating slides should  |default anchor position of
   |be placed right above the   |Presentation toolbar to be
   |Slide Pane  |above the Slides panel
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #2 from V Stuart Foote vstuart.fo...@utsa.edu ---
Sure, from an Impress UI perspective, moving the default anchor point for the
Presentation toolbar--now appended to the Standard toolbar--would be more
functional.

Its default anchor should be on the left margin above the Slides Slide pane--
 below the Standard toolbar rather than appended to it.

-- 
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: Branch 'feature/unitver' - 8 commits - sc/inc sc/qa sc/source

2015-02-06 Thread Andrzej Hunt
 sc/inc/units.hxx   |   12 +
 sc/qa/unit/units.cxx   |   86 ++---
 sc/source/core/units/unitsimpl.cxx |   74 +++
 sc/source/core/units/unitsimpl.hxx |1 
 sc/source/core/units/utunit.cxx|   17 +++
 sc/source/core/units/utunit.hxx|   46 +++
 6 files changed, 193 insertions(+), 43 deletions(-)

New commits:
commit 683eb1b54412c2ceaafd46c607606a5b6b3e27af
Author: Andrzej Hunt andr...@ahunt.org
Date:   Fri Feb 6 18:46:30 2015 +

Implement splitUnitsFromInputString.

Change-Id: I1f781948e57c37dc3adbfcd14cb3d6ba488c10a0

diff --git a/sc/inc/units.hxx b/sc/inc/units.hxx
index cfeae9e..9561b40 100644
--- a/sc/inc/units.hxx
+++ b/sc/inc/units.hxx
@@ -10,6 +10,8 @@
 #ifndef INCLUDED_SC_INC_UNITS_HXX
 #define INCLUDED_SC_INC_UNITS_HXX
 
+#include rtl/ustring.hxx
+
 #include boost/shared_ptr.hpp
 
 class ScAddress;
@@ -27,6 +29,16 @@ public:
 
 virtual bool verifyFormula(ScTokenArray* pArray, const ScAddress 
rFormulaAddress, ScDocument* pDoc) = 0;
 
+/*
+ * Split the input into value and unit, where rInput == rValue + rUnit.
+ * (We assume that the unit is always the last part of the input string.)
+ *
+ * Returns whether or not the string has been split.
+ * rValue and rUnit are always set to valid values, irrespective of string
+ * splitting having actually taken place.
+ */
+virtual bool splitUnitsFromInputString(const OUString rInput, OUString 
rValue, OUString rUnit) = 0;
+
 virtual ~Units() {}
 };
 
diff --git a/sc/qa/unit/units.cxx b/sc/qa/unit/units.cxx
index 3515254..f6a0aa0 100644
--- a/sc/qa/unit/units.cxx
+++ b/sc/qa/unit/units.cxx
@@ -38,15 +38,22 @@ public:
 
 ::boost::shared_ptr UnitsImpl  mpUnitsImpl;
 
+
 void testUTUnit();
 void testUnitVerification();
 
 void testUnitFromFormatStringExtraction();
+void testUnitValueStringSplitting();
+
 
 CPPUNIT_TEST_SUITE(UnitsTest);
+
 CPPUNIT_TEST(testUTUnit);
 CPPUNIT_TEST(testUnitVerification);
+
 CPPUNIT_TEST(testUnitFromFormatStringExtraction);
+CPPUNIT_TEST(testUnitValueStringSplitting);
+
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -209,6 +216,45 @@ void UnitsTest::testUnitFromFormatStringExtraction() {
 CPPUNIT_ASSERT(mpUnitsImpl-extractUnitStringFromFormat(#\cm\) == 
cm);
 }
 
+void UnitsTest::testUnitValueStringSplitting() {
+OUString sValue, sUnit;
+
+OUString sEmptyString = ;
+CPPUNIT_ASSERT(!mpUnitsImpl-splitUnitsFromInputString(sEmptyString, 
sValue, sUnit));
+CPPUNIT_ASSERT(sValue.isEmpty());
+CPPUNIT_ASSERT(sUnit.isEmpty());
+
+OUString sNumberOnlyString = 10;
+CPPUNIT_ASSERT(!mpUnitsImpl-splitUnitsFromInputString(sNumberOnlyString, 
sValue, sUnit));
+CPPUNIT_ASSERT(sValue == 10);
+CPPUNIT_ASSERT(sUnit.isEmpty());
+
+OUString sTextOnlyString = hello world;
+CPPUNIT_ASSERT(!mpUnitsImpl-splitUnitsFromInputString(sTextOnlyString, 
sValue, sUnit));
+CPPUNIT_ASSERT(sValue == hello world);
+CPPUNIT_ASSERT(sUnit.isEmpty());
+
+OUString sDeceptiveInput = 30garbage;
+CPPUNIT_ASSERT(!mpUnitsImpl-splitUnitsFromInputString(sDeceptiveInput, 
sValue, sUnit));
+CPPUNIT_ASSERT(sValue == 30garbage);
+CPPUNIT_ASSERT(sUnit.isEmpty());
+
+OUString sUnitOnly = cm;
+CPPUNIT_ASSERT(!mpUnitsImpl-splitUnitsFromInputString(sUnitOnly, sValue, 
sUnit));
+CPPUNIT_ASSERT(sValue == cm);
+CPPUNIT_ASSERT(sUnit.isEmpty());
+
+OUString sSimpleUnitedValue = 20m/s;
+CPPUNIT_ASSERT(mpUnitsImpl-splitUnitsFromInputString(sSimpleUnitedValue, 
sValue, sUnit));
+CPPUNIT_ASSERT(sValue == 20);
+CPPUNIT_ASSERT(sUnit == m/s);
+
+OUString sMultipleTokens = 40E-4kg;
+CPPUNIT_ASSERT(mpUnitsImpl-splitUnitsFromInputString(sMultipleTokens, 
sValue, sUnit));
+CPPUNIT_ASSERT(sValue == 40E-4);
+CPPUNIT_ASSERT(sUnit == kg);
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(UnitsTest);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/sc/source/core/units/unitsimpl.cxx 
b/sc/source/core/units/unitsimpl.cxx
index 2ca85e1..34eccde 100644
--- a/sc/source/core/units/unitsimpl.cxx
+++ b/sc/source/core/units/unitsimpl.cxx
@@ -285,5 +285,40 @@ bool UnitsImpl::verifyFormula(ScTokenArray* pArray, const 
ScAddress rFormulaAdd
 return true;
 }
 
+bool IsDigit(sal_Unicode c) {
+return (c= '0'  c = '9');
+}
+
+bool UnitsImpl::splitUnitsFromInputString(const OUString rInput, OUString 
rValueOut, OUString rUnitOut) {
+int nPos = rInput.getLength();
+
+while (nPos) {
+if (IsDigit(rInput[nPos-1])) {
+break;
+}
+nPos--;
+}
+
+rUnitOut = rInput.copy(nPos);
+
+UtUnit aUnit;
+// If the entire input is a string (nPos == 0) then treating it as a unit
+// makes little sense as there is no numerical value associated with it.
+// Hence it makes sense to skip testing in this case.
+// We also need to specifically ignore the no 

[Libreoffice-bugs] [Bug 89161] chip and picture

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

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3, Win 8.1.
The icon/function Bullets On/Off works as expected.

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


[Libreoffice-bugs] [Bug 89184] FILEOPEN: Word in pptx file is incorrectly imported as strikethrough

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

Roeland roelandb...@hotmail.com changed:

   What|Removed |Added

Summary|Word in pptx file is|FILEOPEN: Word in pptx file
   |incorrectly imported as |is incorrectly imported as
   |strikethrough   |strikethrough

-- 
You are receiving this mail because:
You 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 89185] New: FILEOPEN:line is importend incorrectly in pptx file

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

Bug ID: 89185
   Summary: FILEOPEN:line is importend incorrectly in pptx file
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Presentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: roelandb...@hotmail.com

Created attachment 113187
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113187action=edit
Archive of the original file and picturepresentation (pp)

I imported a pptx file, made in Microsoft Office. I noticed that in LibreOffice
the yellow line in the lower right corner is leaving the area of the dia, while
in Office Powerpoint this isn't happening.

I attached a picture presentation of the dia to show the original file for
comparison.

-- 
You are receiving this mail because:
You 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 89176] Keyboard shortcut in Czech Find-replace dialog

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

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ke...@collabora.com,
   ||serval2...@yahoo.fr,
   ||ti...@fsf.hu
 Ever confirmed|0   |1

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with 4.4 sources updated some days ago, I could reproduce
this.
With master sources, I've got English + Czech

Andras/Kendy: one for you?

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


[Libreoffice-bugs] [Bug 89060] Editing: Text spacing changes when click in textbox imported from PowerPoint

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

Rostislav 'R.Yu.' Okulov ogldel...@mail.ru changed:

   What|Removed |Added

 CC||ogldel...@mail.ru
 Whiteboard|bibisectRequest |bibisected

--- Comment #2 from Rostislav 'R.Yu.' Okulov ogldel...@mail.ru ---
Bug is not in bibisect-43all.tar.xz range.

Mark as bibisected.

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.3' - 6 commits - configmgr/qa include/sfx2 officecfg/registry sc/uiconfig sd/uiconfig sfx2/source sw/uiconfig

2015-02-06 Thread Stephan Bergmann
 configmgr/qa/unit/data.xcd   |2 
 include/sfx2/sfx.hrc |4 -
 include/sfx2/viewfrm.hxx |3 
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |2 
 sc/uiconfig/scalc/menubar/menubar.xml|2 
 sc/uiconfig/scalc/toolbar/standardbar.xml|2 
 sc/uiconfig/scalc/toolbar/viewerbar.xml  |1 
 sd/uiconfig/sdraw/menubar/menubar.xml|2 
 sd/uiconfig/sdraw/toolbar/standardbar.xml|2 
 sd/uiconfig/sdraw/toolbar/viewerbar.xml  |1 
 sd/uiconfig/simpress/menubar/menubar.xml |2 
 sfx2/source/doc/objserv.cxx  |1 
 sfx2/source/view/view.src|   12 ++-
 sfx2/source/view/viewfrm.cxx |   37 
+-
 sw/uiconfig/sglobal/menubar/menubar.xml  |2 
 sw/uiconfig/sglobal/toolbar/standardbar.xml  |2 
 sw/uiconfig/sglobal/toolbar/viewerbar.xml|1 
 sw/uiconfig/sweb/menubar/menubar.xml |2 
 sw/uiconfig/sweb/toolbar/standardbar.xml |2 
 sw/uiconfig/sweb/toolbar/viewerbar.xml   |1 
 sw/uiconfig/swform/menubar/menubar.xml   |2 
 sw/uiconfig/swform/toolbar/standardbar.xml   |2 
 sw/uiconfig/swform/toolbar/viewerbar.xml |1 
 sw/uiconfig/swreport/menubar/menubar.xml |2 
 sw/uiconfig/swreport/toolbar/standardbar.xml |2 
 sw/uiconfig/swreport/toolbar/viewerbar.xml   |1 
 sw/uiconfig/swriter/menubar/menubar.xml  |2 
 sw/uiconfig/swriter/toolbar/standardbar.xml  |2 
 sw/uiconfig/swriter/toolbar/viewerbar.xml|1 
 sw/uiconfig/swxform/menubar/menubar.xml  |2 
 sw/uiconfig/swxform/toolbar/standardbar.xml  |2 
 sw/uiconfig/swxform/toolbar/viewerbar.xml|1 
 32 files changed, 70 insertions(+), 33 deletions(-)

New commits:
commit 0f5dcfc6c8909b29b5b589abc209f5fbbdcdadec
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Jan 19 11:00:58 2015 +0100

Re fdo#80538: Remove read-only infobar after Save As...

...on a doc in r/o mode, which will switch to the newly saved document in 
r/w
mode.  Was missing from c6270de939d5ee51b61dc4ac02c52f1d9b5b1e47 fdo#80538 
Show
an infobar when document is in read-only mode.

Change-Id: Ie17f4213f989cb4b9d3f7fc114392ec6f516a965
(cherry picked from commit 02f76dec4c54ec7fb28729941c7044307058665a)
Reviewed-on: https://gerrit.libreoffice.org/14012
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/sfx2/source/doc/objserv.cxx b/sfx2/source/doc/objserv.cxx
index 9dc181c..1d0c6cf 100644
--- a/sfx2/source/doc/objserv.cxx
+++ b/sfx2/source/doc/objserv.cxx
@@ -731,6 +731,7 @@ void SfxObjectShell::ExecFile_Impl(SfxRequest rReq)
 
 if ( nId == SID_SAVEASDOC   nErrorCode == ERRCODE_NONE )
 {
+GetFrame()-RemoveInfoBar(readonly);
 SetReadOnlyUI(false);
 }
 
commit a86f6be7d9602025877fdc95e3d6f81008aa1dc4
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Sep 2 11:26:34 2014 +0100

widget leak on filling non-existing infobar in help

Window () with live children destroyed: PushButton (Edit document)

Change-Id: I2aa05f59f08cfa78ba895933ef298908a9cbb675

diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
index 9f79c20..39dcc20 100644
--- a/sfx2/source/view/viewfrm.cxx
+++ b/sfx2/source/view/viewfrm.cxx
@@ -3356,6 +3356,14 @@ void SfxViewFrame::AppendInfoBar( const OUString sId, 
const OUString sMessage,
 pInfoBars-appendInfoBar( sId, sMessage, aButtons );
 ShowChildWindow( nId );
 }
+else
+{
+SAL_WARN( sfx.view, No consumer for InfoBar buttons, so deleting 
them instead );
+for (std::vector PushButton* ::iterator it = aButtons.begin(); it != 
aButtons.end(); ++it)
+{
+delete *it;
+}
+}
 }
 
 void SfxViewFrame::RemoveInfoBar( const OUString sId )
commit 4dbc1aaf31d231d7d9dd63ac393c5e176c9db268
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sun Aug 31 21:48:12 2014 +0200

fdo#83302 don't display read-only infobar for Base form in normal mode

Change-Id: 

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

2015-02-06 Thread Michael Stahl
 sw/source/filter/ww8/rtfsdrexport.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 7a046ddda3d8c7b8b94c6825349c7c143aafda68
Author: Michael Stahl mst...@redhat.com
Date:   Thu Feb 5 15:19:33 2015 +0100

sw: fix ASAN detected error in RtfSdrExport::Commit()

EscherPropertyContainer may allocate a 1-byte buffer if there are no
vertices / segments. (happens in sw_filters_test)

 in EscherPropertyContainer::CreateCustomShapeProperties(MSO_SPT, 
com::sun::star::uno::Referencecom::sun::star::drawing::XShape const) 
filter/source/msfilter/escherex.cxx:3853:25

Change-Id: I56dedbd57d38cd017183060e924cb1340ea58ebf
(cherry picked from commit e73799f8a9310f04074bc0dd88d9092094338576)
Reviewed-on: https://gerrit.libreoffice.org/14336
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/sw/source/filter/ww8/rtfsdrexport.cxx 
b/sw/source/filter/ww8/rtfsdrexport.cxx
index d8706a2..a6ac55c 100644
--- a/sw/source/filter/ww8/rtfsdrexport.cxx
+++ b/sw/source/filter/ww8/rtfsdrexport.cxx
@@ -259,7 +259,8 @@ void RtfSdrExport::Commit(EscherPropertyContainer rProps, 
const Rectangle rRec
 EscherPropSortStruct aSegments;
 
 if (rProps.GetOpt(ESCHER_Prop_pVertices, aVertices) 
-rProps.GetOpt(ESCHER_Prop_pSegmentInfo, aSegments))
+rProps.GetOpt(ESCHER_Prop_pSegmentInfo, aSegments) 
+aVertices.nPropSize = 6  aSegments.nPropSize = 6)
 {
 const sal_uInt8* pVerticesIt = aVertices.pBuf + 6;
 sal_Size nVerticesPos = 6;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 76291] FILESAVE: Chinese hyperlinks modified upon Saving

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

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

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

tdf#76291 unit test for html export href encoding

It will be available in 4.5.0.

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

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


[Libreoffice-bugs] [Bug 89182] Comment indicator obscures cell contents

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

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #2 from Cor Nouws c...@nouenoff.nl ---
strange enough, not included in the release notes ..

-- 
You are receiving this mail because:
You 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 89180] Print option Use only paper size from printer preferences needs persistent setting

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

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Hi Russel,

Thanks for your report.
I have the impression that this is done by Tools  options  Load/save 
General .. first section Load.. See the Help for that.
But reading your post, that doesn't seem to work?

Cheers,
Cor

-- 
You are receiving this mail because:
You 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 89178] EDITING: After mail merge one does not have the possibility to edit the merge fields in the document(s)

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

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||c...@nouenoff.nl
Version|4.0 all versions|Inherited From OOo
Summary|Mail merge does not edit|EDITING: After mail merge
   |the merge fields in files   |one does not have the
   ||possibility to edit the
   ||merge fields in the
   ||document(s)
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Hi Valdir,

Thanks for reporting this.
I updated the summary. That is what you want to say?
As far as I remember, this has always been the case. Fields remain the fields.
You may copy the fields and paste special as text only... 

I think there also is an issue to request to make it easier to replace field
contents by the text only. I think that would help you?

regards,
Cor

-- 
You are receiving this mail because:
You 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 89189] Rearranging Icons of Toolbars with Alt+Drag does not Work

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

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl
   Hardware|Other   |All
Version|4.4.0.3 release |Inherited From OOo
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Hi Harald,

Hmm, this has never worked as far as I remember.. ?
Set it as an enhancement - thanks!

Cor

-- 
You are receiving this mail because:
You 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 59170] Synonym suggestion not working with Umlauts

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

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #4 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3, Win 8.1.

Because this bug is quite old, does it still persist in Linux?

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


[Libreoffice-bugs] [Bug 75757] remove inheritance to std::map and std::vector

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

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

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

fdo#75757: Remove inheritance from std::vector

It will be available in 4.5.0.

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

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


[Bug 75757] remove inheritance to std::map and std::vector

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

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

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

fdo#75757: Remove inheritance from std::vector

It will be available in 4.5.0.

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

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


[Libreoffice-bugs] [Bug 89187] FORMATTING No date format options in Calc header/footer

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

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Version|4.3.4.1 release |Inherited From OOo
   Hardware|x86-64 (AMD64)  |All
  Component|Printing and PDF export |Spreadsheet
 CC||c...@nouenoff.nl
 Ever confirmed|0   |1
Summary|Date format error   |FORMATTING No date format
   ||options in Calc
   ||header/footer
 OS|Windows (All)   |All

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Hi Humilulo,

thanks for filing. I set this as a enhancement!

Best,
Cor

-- 
You are receiving this mail because:
You 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 77873] [Libreoffice Calc 4.2.3.3] 'Frame' attribute for hyperlinks is disappearing after saving and reopenning the spreadsheet file

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

Michael Weghorn m.wegh...@posteo.de changed:

   What|Removed |Added

 CC||m.wegh...@posteo.de
   Hardware|x86-64 (AMD64)  |All
 Whiteboard|bibisectRequest |bibisected
 OS|Windows (All)   |All

--- Comment #3 from Michael Weghorn m.wegh...@posteo.de ---
bibisect result:

a7e54955e9f49e8b59dfd8c4533785a680b1796c is the first bad commit
commit a7e54955e9f49e8b59dfd8c4533785a680b1796c
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Wed Oct 16 11:07:50 2013 +

source-hash-5da10275a7475efdbfd9de14ea58cf8f4c6c1582

commit 5da10275a7475efdbfd9de14ea58cf8f4c6c1582
Author: Stephan Bergmann sberg...@redhat.com
AuthorDate: Fri Mar 1 17:09:45 2013 +0100
Commit: Stephan Bergmann sberg...@redhat.com
CommitDate: Fri Mar 1 17:18:29 2013 +0100

Related rhbz#915743: Abort UCB call from SvtMatchContext_Impl::Stop

...as otherwise the SvtMatchContext_Impl thread can continue to run for
arbitrarily long, and the other thread calling Stop() and join() will
block.

However, especially the WebDAV UCP does not properly support aborting
commands,
see 260afe56fd6b2f34de8290f3cdb7d1df5b88f8a8  neon commands cannot be
aborted,
so this is not yet enough to actually fix rhbz#915743 thread
deadlock/slow
join in insert-hyperlink in impress.

Change-Id: I0da899f824763e1b3d19bb5b38d906feb690b623



$ git bisect log
# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# bad: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect bad e02439a3d6297a1f5334fa558ddec5ef4212c574
# good: [8f4aeaad2f65d656328a451154142bb82efa4327]
source-hash-1885266f274575327cdeee9852945a3e91f32f15
git bisect good 8f4aeaad2f65d656328a451154142bb82efa4327
# good: [9995fae0d8a24ce31bcb5e9cd0459b69cfbf7a02]
source-hash-8600bc24bbc9029e92bea6102bff2921bc10b33e
git bisect good 9995fae0d8a24ce31bcb5e9cd0459b69cfbf7a02
# bad: [8ad82bc1416a07501651e8d96fe268e47d3931d3]
source-hash-13821254f88d2c5488fba9fe6393dcf4ae810db4
git bisect bad 8ad82bc1416a07501651e8d96fe268e47d3931d3
# bad: [238338bc4111eb82429ea47384d4012bcd7cdc3e]
source-hash-b6ba04639b9922f6717f79ac4be215e09691d7a9
git bisect bad 238338bc4111eb82429ea47384d4012bcd7cdc3e
# bad: [89dc8a802d1625e0efd88ba0fb720b22be87f3f0]
source-hash-da03bb1ee6a69d2f4fef4c3ca0adc0ba9588bd19
git bisect bad 89dc8a802d1625e0efd88ba0fb720b22be87f3f0
# bad: [fe956dc63cc7ed1831f0e7e9e7253ea4d8c99549]
source-hash-b15f095293c6127ecaef2f0fa3a1683e72392835
git bisect bad fe956dc63cc7ed1831f0e7e9e7253ea4d8c99549
# good: [cd762eb968ba8783f726b67d9d70b0a76f4eb55d]
source-hash-c9562064740baed3a9978723c5fe77b44a13a7aa
git bisect good cd762eb968ba8783f726b67d9d70b0a76f4eb55d
# bad: [a7e54955e9f49e8b59dfd8c4533785a680b1796c]
source-hash-5da10275a7475efdbfd9de14ea58cf8f4c6c1582
git bisect bad a7e54955e9f49e8b59dfd8c4533785a680b1796c
# good: [5e90d936616ff95724eaa3e3a0a7c7a9747e9b44]
source-hash-ba446dd58a4ad324d242afcd5b28d3b4dff5a881
git bisect good 5e90d936616ff95724eaa3e3a0a7c7a9747e9b44
# first bad commit: [a7e54955e9f49e8b59dfd8c4533785a680b1796c]
source-hash-5da10275a7475efdbfd9de14ea58cf8f4c6c1582


I am also changing Hardware to All/All as this occurs as well on Debian
GNU/Linux and on x86.

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


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

2015-02-06 Thread Matteo Casalin
 sw/source/filter/html/parcss1.cxx |   36 +---
 1 file changed, 9 insertions(+), 27 deletions(-)

New commits:
commit 78f6e6f7cc9a30138330ee1b4041480b6f2bbb25
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sun Jan 4 11:18:39 2015 +0100

Simplify CSS1Expression::GetColor for CSS1_RGB case

Relies on toInt32 features:
* Skip control characters at the beginning of the token
* Stop conversion at first non-digit character
Also avoid conversion of negative values to 255, due to downcast to
unsigned 16-bits value

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

diff --git a/sw/source/filter/html/parcss1.cxx 
b/sw/source/filter/html/parcss1.cxx
index e20424c..4c3767a 100644
--- a/sw/source/filter/html/parcss1.cxx
+++ b/sw/source/filter/html/parcss1.cxx
@@ -1276,34 +1276,17 @@ bool CSS1Expression::GetColor( Color rColor ) const
 break;
 }
 
-OUString aColorStr(aValue.copy(4, aValue.getLength() - 5));
-
-sal_Int32 nPos = 0;
-int nCol = 0;
-
-while( nCol  3  nPos  aColorStr.getLength() )
+sal_Int32 nPos = 4; // start after rgb(
+for ( int nCol = 0; nCol  3  nPos  0; ++nCol )
 {
-sal_Unicode c;
-while( nPos  aColorStr.getLength() 
-((c=aColorStr[nPos]) == ' ' || c == '\t' ||
-c == '\n' || c== '\r' ) )
-nPos++;
-
-sal_Int32 nEnd = aColorStr.indexOf( ',', nPos );
-OUString aNumber;
-if( nEnd == -1 )
-{
-aNumber = aColorStr.copy(nPos);
-nPos = aColorStr.getLength();
-}
-else
+const OUString aNumber = aValue.getToken(0, ',', nPos);
+
+sal_Int32 nNumber = aNumber.toInt32();
+if( nNumber0 )
 {
-aNumber = aColorStr.copy( nPos, nEnd-nPos );
-nPos = nEnd+1;
+nNumber = 0;
 }
-
-sal_uInt16 nNumber = (sal_uInt16)aNumber.toInt32();
-if( aNumber.indexOf('%') = 0 )
+else if( aNumber.indexOf('%') = 0 )
 {
 if( nNumber  100 )
 nNumber = 100;
@@ -1313,8 +1296,7 @@ bool CSS1Expression::GetColor( Color rColor ) const
 else if( nNumber  255 )
 nNumber = 255;
 
-aColors[nCol] = (sal_uInt8)nNumber;
-nCol ++;
+aColors[nCol] = static_castsal_uInt8(nNumber);
 }
 
 rColor.SetRed( aColors[0] );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 59463] EDITING: Record/track changes: Changes to images aren't recorded

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

--- Comment #5 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.3, Win 8.1.

I think Track Changes should record deletions of images.

-- 
You are receiving this mail because:
You 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 88002] EDITING: Sorting ignores end column with formatting only

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

Michael Weghorn m.wegh...@posteo.de changed:

   What|Removed |Added

 CC||m.wegh...@posteo.de
   Hardware|x86-64 (AMD64)  |All
 Whiteboard|bibisectRequest |bibisected
 OS|Windows (All)   |All

--- Comment #5 from Michael Weghorn m.wegh...@posteo.de ---
bibisect result:

9926afee22c71ba349b8b643ca984a2635156bc0 is the first bad commit
commit 9926afee22c71ba349b8b643ca984a2635156bc0
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Dec 6 07:51:11 2014 +0100

2014-12-06: source-hash-d0894ff58fbdd823273bc91939801971b7a03182

:100644 100644 b77b245ad79f2a67c5607a7c856e2210fb11dc4d
e822b31ac888fe05a1382ab8adfe406b1baab047 Mbuild-info.txt
:04 04 d42be0798b2b820135be1bda9fef0b1cb5fe81ca
c54d17cfb88aae06452faf8148d02a8f491e39a3 Mopt



y$ git bisect log
# bad: [ad5ed3c0a2b049c70515c303e8150f5a75dd818f] 2015-02-06:
source-hash-004304eb2fd1703d22dec0abf0170bb2ce493d0c
# good: [e4b0a61cedc6ac0e65a4a110fd83edd8295f4856] 2014-11-20:
source-hash-d273a60bfdbf9bb7623bed38667ec0647753157c
git bisect start 'master' 'oldest'
# bad: [09b2fa5b1f166e0d6f077325f2ea5fec8c061b47] 2014-12-29:
source-hash-4c9cf98819037fdb70cbe68f678f6498d5646736
git bisect bad 09b2fa5b1f166e0d6f077325f2ea5fec8c061b47
# bad: [cc11b8ff286074f3edcc650b231c4ed3edaebc2f] 2014-12-09:
source-hash-887cb59ac4bfca94f310baee3e9da58ccf9cb3e3
git bisect bad cc11b8ff286074f3edcc650b231c4ed3edaebc2f
# good: [82d2ef2b66746aac43c054f440e7a4b79b4cc215] 2014-11-29:
source-hash-03c049a093c9ed0451099325d73429b010e71594
git bisect good 82d2ef2b66746aac43c054f440e7a4b79b4cc215
# good: [1185944aa3de25f09176f2c87e8afdf9266efe24] 2014-12-04:
source-hash-183b89db121b8c6e02c14ebf2c2666ee807a9c82
git bisect good 1185944aa3de25f09176f2c87e8afdf9266efe24
# bad: [9926afee22c71ba349b8b643ca984a2635156bc0] 2014-12-06:
source-hash-d0894ff58fbdd823273bc91939801971b7a03182
git bisect bad 9926afee22c71ba349b8b643ca984a2635156bc0
# good: [9c5629e92e7fdb9506e193e95f048b2dbd07517c] 2014-12-05:
source-hash-6b096f273ac9d7bbe93d2cb083958b3a04866d73
git bisect good 9c5629e92e7fdb9506e193e95f048b2dbd07517c
# first bad commit: [9926afee22c71ba349b8b643ca984a2635156bc0] 2014-12-06:
source-hash-d0894ff58fbdd823273bc91939801971b7a03182


I also changing Hardware to All/All because it occurs on Debian GNU/Linux
as well - and on x86, too.

-- 
You are receiving this mail because:
You 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 89190] New: Text in title never appears when content has fade in animation

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

Bug ID: 89190
   Summary: Text in title never appears when content has fade in
animation
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Presentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ck...@troy.edu

Created attachment 113191
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113191action=edit
Non-animated does not show on the slide the presentation starts on.

If the slide that a presentation starts on has text in a non-animated textbox,
and text in another textbox that is animated, the non-animated text does not
appear.  (The text does, however, appear in the presenter's screen.  I have two
monitors connected to the computer.)

Steps to reproduce:
Create a new slide.  For layout, choose Title and Content.  Enter text into
the title box and the content box.  Animate the text in the content box with
the fade-in animation.  Run the presentation.

What is observed:
When the presentation starts, the slide is blank.  Pressing the space bar
displays the animated text.  Pressing the space bar again (for this one-slide
presentation) ends the slide show.

What is expected:
When the presentation starts, the slide should show the non-animated text.

This only happens for the slide from which a presentation starts.  I've done it
with three different animations, so it probably doesn't depend on a particular
animation.  
Also, the same problem occurs on switching what is animated (by animating the
title, and not animating the content box).  However, in that case (the last
slide of the attachment), the non-animated text appears after the animation is
done.

-- 
You are receiving this mail because:
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 76291] FILESAVE: Chinese hyperlinks modified upon Saving

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

--- Comment #11 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Vasily Melenchuk committed a patch related to this issue.
It has been pushed to libreoffice-4-4:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=fafd6cd4f784e5b65548af699bc25502f10a4b8dh=libreoffice-4-4

tdf#76291 unit test for html export href encoding

It will be available in 4.4.1.

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

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


[Libreoffice-bugs] [Bug 59341] : Paste a graphic from geogebra (math java application) doesn't work

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

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3, Win 8.1.

If I copy a graphic from GeoGebra 4.4, then it is copied to WRITER and DRAW.
To copy it in GeoGebra you need to go to EDIT - GRAPHICS VIEW TO CLIPBOARD. 
It works as in GIMP 2.8.10.

Can anybody confirm that this issue still persists?  Otherwise, I would propose
to close 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 59512] Cell-Format not properly transferred

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

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3, Win 8.1.

Can anybody still reproduce this bug?  If not, then I would propose to close it
as Resolved.

-- 
You are receiving this mail because:
You 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: 2 commits - comphelper/source configmgr/inc configmgr/source cui/inc cui/source editeng/source extensions/source filter/source fpicker/source framework/source include/c

2015-02-06 Thread Matthew Pottage
 comphelper/source/misc/configurationhelper.cxx |9 -
 configmgr/inc/pch/precompiled_configmgr.hxx|1 
 configmgr/source/access.cxx|   22 ++--
 configmgr/source/rootaccess.cxx|   10 -
 configmgr/source/valueparser.cxx   |   10 -
 cui/inc/pch/precompiled_cui.hxx|1 
 cui/source/options/optsave.cxx |   14 +-
 editeng/source/accessibility/AccessibleStaticTextBase.cxx  |   11 +-
 extensions/source/propctrlr/stringrepresentation.cxx   |6 -
 filter/source/config/cache/basecontainer.cxx   |6 -
 filter/source/config/cache/cacheitem.cxx   |5 
 filter/source/config/cache/cacheitem.hxx   |4 
 filter/source/config/cache/contenthandlerfactory.cxx   |8 -
 filter/source/config/cache/filtercache.cxx |   33 +++---
 filter/source/config/cache/filterfactory.cxx   |   17 +--
 filter/source/config/cache/frameloaderfactory.cxx  |8 -
 filter/source/config/cache/typedetection.cxx   |5 
 fpicker/source/win32/filepicker/FilePicker.cxx |   10 -
 fpicker/source/win32/filepicker/VistaFilePickerImpl.cxx|6 -
 framework/source/accelerators/acceleratorconfiguration.cxx |9 -
 framework/source/dispatch/dispatchinformationprovider.cxx  |9 -
 framework/source/inc/accelerators/acceleratorcache.hxx |4 
 framework/source/services/modulemanager.cxx|7 -
 include/comphelper/configurationhelper.hxx |1 
 include/comphelper/sequenceasvector.hxx|4 
 oox/source/drawingml/customshapepresetdata.cxx |   70 ++---
 package/source/manifest/ManifestImport.cxx |3 
 package/source/manifest/ManifestImport.hxx |3 
 sax/qa/cppunit/test_converter.cxx  |   10 -
 sax/source/tools/fastserializer.cxx|6 -
 sfx2/inc/pch/precompiled_sfx.hxx   |1 
 sfx2/source/appl/appopen.cxx   |1 
 sfx2/source/dialog/filedlghelper.cxx   |5 
 sfx2/source/dialog/filedlgimpl.hxx |3 
 sfx2/source/dialog/mailmodel.cxx   |1 
 sfx2/source/doc/DocumentMetadataAccess.cxx |6 -
 sfx2/source/doc/SfxDocumentMetaData.cxx|   10 -
 sfx2/source/inc/eventsupplier.hxx  |1 
 svx/inc/tbunosearchcontrollers.hxx |3 
 sw/inc/pch/precompiled_sw.hxx  |1 
 sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx|4 
 sw/source/core/layout/paintfrm.cxx |8 -
 sw/source/core/unocore/unocoll.cxx |6 -
 sw/source/core/unocore/unoframe.cxx|4 
 sw/source/core/unocore/unosett.cxx |6 -
 sw/source/core/unocore/unostyle.cxx|9 -
 sw/source/filter/ww8/docxsdrexport.cxx |8 -
 unotools/inc/pch/precompiled_utl.hxx   |1 
 unotools/source/config/securityoptions.cxx |6 -
 unoxml/source/rdf/librdf_repository.cxx|   10 -
 writerfilter/inc/pch/precompiled_writerfilter.hxx  |1 
 writerfilter/source/dmapper/BorderHandler.cxx  |5 
 writerfilter/source/dmapper/BorderHandler.hxx  |3 
 writerfilter/source/dmapper/CellColorHandler.cxx   |3 
 writerfilter/source/dmapper/CellColorHandler.hxx   |3 
 writerfilter/source/dmapper/DomainMapper.cxx   |7 -
 writerfilter/source/dmapper/DomainMapperTableHandler.cxx   |   14 +-
 writerfilter/source/dmapper/DomainMapperTableHandler.hxx   |4 
 writerfilter/source/dmapper/DomainMapper_Impl.cxx  |6 -
 writerfilter/source/dmapper/DomainMapper_Impl.hxx  |2 
 writerfilter/source/dmapper/GraphicImport.cxx  |9 +
 writerfilter/source/dmapper/NumberingManager.cxx   |5 
 writerfilter/source/dmapper/SdtHelper.cxx  |5 
 writerfilter/source/dmapper/SdtHelper.hxx  |3 
 writerfilter/source/dmapper/StyleSheetTable.cxx|6 -
 writerfilter/source/dmapper/TblStylePrHandler.cxx  |5 
 writerfilter/source/dmapper/TblStylePrHandler.hxx  |4 
 writerfilter/source/dmapper/WrapPolygonHandler.cxx |3 
 writerfilter/source/dmapper/WrapPolygonHandler.hxx |4 
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |3 
 writerfilter/source/rtftok/rtfdocumentimpl.hxx |4 
 writerfilter/source/rtftok/rtfsdrimport.cxx|   17 +--
 xmloff/inc/pch/precompiled_xo.hxx   

[Libreoffice-bugs] [Bug 39440] cppcheck cleanliness

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

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

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

fdo#39440: remove redundant checks and breaks

It will be available in 4.5.0.

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

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


[Libreoffice-bugs] [Bug 89181] VIEWING:

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

--- Comment #4 from Adolfo Jayme f...@libreoffice.org ---
It is a good practice to upgrade to the latest version of any software to check
for fixed bugs before creating a report. The 3.5 series has been in End of Life
status since 2012. See https://wiki.documentfoundation.org/ReleasePlan#3.5

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


[Bug 39440] cppcheck cleanliness

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

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

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

fdo#39440: remove redundant checks and breaks

It will be available in 4.5.0.

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

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


[Libreoffice-bugs] [Bug 89178] EDITING: After mail merge one does not have the possibility to edit the merge fields in the document(s)

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

--- Comment #2 from Valdir Barbosa valdir.barbos...@gmail.com ---
Hi Corn, this is already the merged file, the result should not appear as a
field, but only text.

-- 
You are receiving this mail because:
You 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 86444] Add option to show LO version number close to menu bar

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 CC|libreoffice-ux-advise@lists |f...@libreoffice.org
   |.freedesktop.org|
  Component|ux-advise   |UI
 Resolution|--- |WONTFIX

--- Comment #17 from Adolfo Jayme f...@libreoffice.org ---
@mariosv: it’s not about this being easy or difficult to implement. The thing
is, UX has evaluated this and deemed it as a non-desirable change of default
settings. Developers agree, and you won’t find this in other software as well
(does Google Chrome or Firefox have their version numbers there? Nope, because
that’s the purpose of having an About dialog). Seems you have a hard time
digesting 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-ux-advise] [Bug 86444] Add option to show LO version number close to menu bar

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 CC|libreoffice-ux-advise@lists |f...@libreoffice.org
   |.freedesktop.org|
  Component|ux-advise   |UI
 Resolution|--- |WONTFIX

--- Comment #17 from Adolfo Jayme f...@libreoffice.org ---
@mariosv: it’s not about this being easy or difficult to implement. The thing
is, UX has evaluated this and deemed it as a non-desirable change of default
settings. Developers agree, and you won’t find this in other software as well
(does Google Chrome or Firefox have their version numbers there? Nope, because
that’s the purpose of having an About dialog). Seems you have a hard time
digesting it…

-- 
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 87915] Text in shapes imported from Draw is lost

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

--- Comment #8 from Mike Sapsard mike.saps...@gmail.com ---
Although the shapes with text are now handled correctly in Writer, there seem
to be associated bugs. Draw 4.2.2.1 now appears unable to add text to a polygon
shape.

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


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

2015-02-06 Thread Caolán McNamara
 sw/inc/docary.hxx |1 
 sw/inc/redline.hxx|   12 ++---
 sw/source/core/doc/DocumentRedlineManager.cxx |   40 +++---
 sw/source/core/doc/docredln.cxx   |   56 ++
 sw/source/core/undo/unredln.cxx   |2 
 5 files changed, 55 insertions(+), 56 deletions(-)

New commits:
commit ff424e420116b2123b62f7869af25d7caec65288
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Jan 30 15:34:30 2015 +

During DocumentRedlineManager::SetRedlineMode the array becomes unsorted

so GetPos cannot be used safely, so pass down the known index
of the redline and propogate it everywhere the redline goes

This reverts

commit 36e158ce7a0effb130936ba4598a193102faa6a1
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Jan 19 12:09:17 2015 +

if we change the keys we have to resort based on the new keys

which tried to keep the table sorted, but thats no use because
DocumentRedlineManager::SetRedlineMode loops over by index
so sorting the table during the process busts that.

Taking a copy of the entries and looping over that shows another
gadzillion problems.

So try this approach instead.

I imagine it should be possible to calculate the correct
current index of pRedl in DocumentRedlineManager::AppendRedline
but for now assume that we are sorted correctly at that
point and can use GetPos

Change-Id: If092dce185e3b36fd256db390132358cba155847
(cherry picked from commit a5a20187c3a5e5956492f932c49501f9547e4915)
Reviewed-on: https://gerrit.libreoffice.org/14260
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/sw/inc/docary.hxx b/sw/inc/docary.hxx
index 2f388b1..ec2c5bc 100644
--- a/sw/inc/docary.hxx
+++ b/sw/inc/docary.hxx
@@ -209,6 +209,7 @@ public:
 using _SwRedlineTbl::size;
 using _SwRedlineTbl::operator[];
 using _SwRedlineTbl::empty;
+using _SwRedlineTbl::Resort;
 };
 
 /// Table that holds 'extra' redlines, such as 'table row insert\delete', 
'paragraph moves' etc...
diff --git a/sw/inc/redline.hxx b/sw/inc/redline.hxx
index 38058d4..79a1ad6 100644
--- a/sw/inc/redline.hxx
+++ b/sw/inc/redline.hxx
@@ -190,8 +190,8 @@ class SW_DLLPUBLIC SwRangeRedline : public SwPaM
 
 void MoveToSection();
 void CopyToSection();
-void DelCopyOfSection();
-void MoveFromSection();
+void DelCopyOfSection(size_t nMyPos);
+void MoveFromSection(size_t nMyPos);
 
 public:
 SwRangeRedline( RedlineType_t eType, const SwPaM rPam );
@@ -261,10 +261,10 @@ public:
 // hide the Del-Redlines via Copy and Delete.
 // Otherwise at Move the attribution would be handled incorrectly.
 // All other callers must always give 0.
-void CallDisplayFunc( sal_uInt16 nLoop = 0 );
-void Show( sal_uInt16 nLoop = 0 );
-void Hide( sal_uInt16 nLoop = 0 );
-void ShowOriginal( sal_uInt16 nLoop = 0 );
+void CallDisplayFunc(sal_uInt16 nLoop, size_t nMyPos);
+void Show(sal_uInt16 nLoop , size_t nMyPos);
+void Hide(sal_uInt16 nLoop , size_t nMyPos);
+void ShowOriginal(sal_uInt16 nLoop, size_t nMyPos);
 
 /// Calculates the intersection with text node number nNdIdx.
 void CalcStartEnd(sal_uLong nNdIdx, sal_Int32 rStart, sal_Int32 rEnd) 
const;
diff --git a/sw/source/core/doc/DocumentRedlineManager.cxx 
b/sw/source/core/doc/DocumentRedlineManager.cxx
index 24d0bdc..873b4d6 100644
--- a/sw/source/core/doc/DocumentRedlineManager.cxx
+++ b/sw/source/core/doc/DocumentRedlineManager.cxx
@@ -606,7 +606,7 @@ void DocumentRedlineManager::SetRedlineMode( RedlineMode_t 
eMode )
 bool bSaveInXMLImportFlag = m_rDoc.IsInXMLImport();
 m_rDoc.SetInXMLImport( false );
 // and then hide/display everything
-void (SwRangeRedline::*pFnc)( sal_uInt16 ) = 0;
+void (SwRangeRedline::*pFnc)(sal_uInt16, size_t) = 0;
 
 switch( nsRedlineMode_t::REDLINE_SHOW_MASK  eMode )
 {
@@ -628,10 +628,17 @@ void DocumentRedlineManager::SetRedlineMode( 
RedlineMode_t eMode )
 
 _CHECK_REDLINE( *this )
 
-if( pFnc )
-for( sal_uInt16 nLoop = 1; nLoop = 2; ++nLoop )
-for( sal_uInt16 i = 0; i  mpRedlineTbl-size(); ++i )
-((*mpRedlineTbl)[ i ]-*pFnc)( nLoop );
+if (pFnc)
+{
+for (sal_uInt16 nLoop = 1; nLoop = 2; ++nLoop)
+for (size_t i = 0; i  mpRedlineTbl-size(); ++i)
+((*mpRedlineTbl)[i]-*pFnc)(nLoop, i);
+
+//SwRangeRedline::MoveFromSection routinely changes
+//the keys that mpRedlineTbl is sorted by
+mpRedlineTbl-Resort();
+}
+
 _CHECK_REDLINE( *this )
 

[Libreoffice-bugs] [Bug 89163] In calc the legend on the charts relocated from right to left without moving it.

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

--- Comment #2 from Andrew zpm...@gmail.com ---
(In reply to raal from comment #1)
 Hello,
 
 Thank you for reporting the bug. Can you see if bug 86624 is similar to your
 problem so that I can mark your report as a duplicate of it? (Later bugs are
 generally marked as duplicates of earlier bugs).

Hi,

Yes, I think this is identical to the one I have experienced with the legend
placement.
I run on my other computer V4.3.5.2 and that displays the legend correctly but
not this latest version.

Kind regards,
Andrew

-- 
You are receiving this mail because:
You 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 89166] IF statement in cell does not work as expected.

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

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

   What|Removed |Added

 CC||mari...@miguelangel.mobi

--- Comment #2 from m.a.riosv mari...@miguelangel.mobi ---
1: Functions separator is language dependant, English-US the base language, and
with it default separator is comma, perhaps the reason to figure in the
documentation.
It can be changed in Menu/Tools/Options/LibreOffice calc/Formula - Separators.

2: The TRUE format (It's only format) can be inherited from an adjacent cell,
usually a clear direct formatting [Ctrl+M] restart the format.

2:+3:+4: At @Andy had commented

None of the issues are reproducible for me.
Win7x64
Version: 4.3.7.0.0+ Build ID: 32e7fc9e82e0e62e872611482d97f745bac3899a

-- 
You are receiving this mail because:
You 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 59587] undefined: impress doesn't refresh screen after spyral animation

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

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3, Win 8.1.

Because this bug is already quite old, can anybody still reproduce this bug in
Linux and Mac?

-- 
You are receiving this mail because:
You 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 59761] EDITING Applying language to all text creates multiple Undo actions

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

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
For me not reproducible with LO 4.4.0.3, Win 8.1.

Because this bug is already quite old, can anybody still reproduce this bug?

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


[Libreoffice-bugs] [Bug 89047] Read-Only ComboBox doesn't allow selection in PDF export

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

--- Comment #2 from FS bz...@florian-schmitt.net ---
Thank you for taking a look at this issue. Regarding your comments:

1. you don't need to use the ComboBox Wizard to create a ComboBox. The wizard
opens by default, but you may cancel it immediately. You can manually fill in
the ComboBox values later.

2. how to list entries:
  a) make sure that the form is in design mode (
https://help.libreoffice.org/Common/Form_Design )
  b) select the ComboBox with a single left click;
  c) right-click to open its context menu;
  d) select Control... to open the ComboBox properties dialogue;
  e) on the General tab, scroll down to List entries. Enter some text; use
a manual line break (CTRL+Enter) to separate between the entries. Use a normal
Enter to finish adding list entries.

3. how to set a default list entry
  a) steps a) to d) are the same as above;
  e) on the General tab, scroll down to Default text. Enter some text that
matches one of the list entries defines in step 2e).

I'll attach a sample odt file with three form controls and a pdf generated from
that odt.

-- 
You are receiving this mail because:
You 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 89047] Read-Only ComboBox doesn't allow selection in PDF export

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

--- Comment #4 from FS bz...@florian-schmitt.net ---
Created attachment 113193
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113193action=edit
Example PDF from created from attached example odt file

The example pdf was created using Export as PDF. In the PDF form, the user
may select entries from the first combobox or even enter arbitrary content, but
he can't even select an entry from the second combobox. The only difference
between the two comboboxes is the read-only 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 87709] Cell range definition incorrectly updated at re-open time

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

Michael Weghorn m.wegh...@posteo.de changed:

   What|Removed |Added

 CC||m.wegh...@posteo.de
 Whiteboard|bibisectRequest |bibisected
 OS|Windows (All)   |All

--- Comment #3 from Michael Weghorn m.wegh...@posteo.de ---
bibisect result:

ba096f438393091574da98fe7b8e6b05182a8971 is the first bad commit
commit ba096f438393091574da98fe7b8e6b05182a8971
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Thu Oct 17 20:00:21 2013 +

source-hash-8499e78ca03c792f4fa2650e02b519094ba0baa8

commit 8499e78ca03c792f4fa2650e02b519094ba0baa8
Author: Caolán McNamara caol...@redhat.com
AuthorDate: Thu Jul 25 16:01:13 2013 +0100
Commit: Caolán McNamara caol...@redhat.com
CommitDate: Thu Jul 25 16:08:01 2013 +0100

Related: fdo#61544 convert language page from box to grid

grid compress better than boxes if there isn't enough available space

Change-Id: I35b433b89a29159a33fc9edb646e46b371747a57


$ git bisect log
# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [c2069a369d738078124812312d51f21ea1ce2421]
source-hash-f160e4935c474a5293b3d3c11b3d538efb4767a0
git bisect start 'latest' 'last41onmaster'
# bad: [33ac6698e6d90d84f99d784b9553ee87eec27d6a]
source-hash-732c0f929fc0229b6da37d4ec4b6de8994fcea46
git bisect bad 33ac6698e6d90d84f99d784b9553ee87eec27d6a
# bad: [e3a648fdaa2bb87293750400b70ba590733a804a]
source-hash-33526481788137d959f27ae32910127d1436c1a8
git bisect bad e3a648fdaa2bb87293750400b70ba590733a804a
# bad: [b886825d7eb2550ab40d7b4cd16de8096c57d6eb]
source-hash-b46688a663b8709e0e0795f25ef8961db1f46cba
git bisect bad b886825d7eb2550ab40d7b4cd16de8096c57d6eb
# good: [502c05c771cd993b237febc2d8a20140fe589488]
source-hash-462df4920ef50032c8f99a9db2ca34c9cc928657
git bisect good 502c05c771cd993b237febc2d8a20140fe589488
# good: [3bffe99b15f359bb4c6941210623dcd0763987c9]
source-hash-6768d2c7f2cf75c507ec2108cbbb5a8a6cf7fae9
git bisect good 3bffe99b15f359bb4c6941210623dcd0763987c9
# good: [a8577b9049e085140768f97f7d4ff555a8a447cb]
source-hash-98ded3e42011b060368899018c07cbd32e7993f1
git bisect good a8577b9049e085140768f97f7d4ff555a8a447cb
# good: [2d9baecf3ce2ea1ec8bea3e842eed595061eeef6]
source-hash-ff51a2b64571a8d72ff4d8a8181d17cf98c42e69
git bisect good 2d9baecf3ce2ea1ec8bea3e842eed595061eeef6
# bad: [b39f384b5baf459aa0bd37c20d5886b040293086]
source-hash-f0833d965d20594c0f2d74ffca95589a572e012c
git bisect bad b39f384b5baf459aa0bd37c20d5886b040293086
# bad: [ba096f438393091574da98fe7b8e6b05182a8971]
source-hash-8499e78ca03c792f4fa2650e02b519094ba0baa8
git bisect bad ba096f438393091574da98fe7b8e6b05182a8971
# first bad commit: [ba096f438393091574da98fe7b8e6b05182a8971]
source-hash-8499e78ca03c792f4fa2650e02b519094ba0baa8


In the first bad commit, the behaviour of copying cell F4 into cell F3 has also
changed (and seems to be more reasonable to me than before).
The cell F4 contains =SUM(E$4:E4). When copying it into cell F3, that cell
contains the following formula:
* =SUM(E$3:E4) in commit ba096f4 (first bad commmit)
* =SUM(E3:E$4) in commit 2d9baec (last good commit)
This is also mentioned in comment 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 87022] Extensive Memory Use, Sluggish Behaviour after selecting the entire sheet contents

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

Michael Weghorn m.wegh...@posteo.de changed:

   What|Removed |Added

 CC||m.wegh...@posteo.de
 Whiteboard|bibisectRequest |bibisected

--- Comment #8 from Michael Weghorn m.wegh...@posteo.de ---
I bibisected this. Unfortunately, many commits failed to start with ERROR 4
forking process. Therefore I had to git bisect skip them.


bibisect result:

There are only 'skip'ped commits left to test.
The first bad commit could be any of:
a043626b542eb8314218d7439534dce2fc325304
79ff8e93eb0ddcebca4f814fc6883da8e1485c9f
ae627c725e93b01ef68cf242574f40eb9885e3c9
91460ba3ce3a0efa5693f098c1072b058903a31c
We cannot bisect more!


$ git bisect log
# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# good: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect good e02439a3d6297a1f5334fa558ddec5ef4212c574
# bad: [4850941efe43ae800be5c76e1102ab80ac2c085d]
source-hash-980a6e552502f02f12c15bfb1c9f8e6269499f4b
git bisect bad 4850941efe43ae800be5c76e1102ab80ac2c085d
# skip: [a043626b542eb8314218d7439534dce2fc325304]
source-hash-9379a922c07df3cdb7d567cc88dfaaa39ead3681
git bisect skip a043626b542eb8314218d7439534dce2fc325304
# skip: [aba65c3e4c0df07e4909aeefb758cdb688242bf6]
source-hash-827524abfb4b577d08276fde40929a9adfb7ff1a
git bisect skip aba65c3e4c0df07e4909aeefb758cdb688242bf6
# skip: [aba65c3e4c0df07e4909aeefb758cdb688242bf6]
source-hash-827524abfb4b577d08276fde40929a9adfb7ff1a
git bisect skip aba65c3e4c0df07e4909aeefb758cdb688242bf6
# bad: [c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31]
source-hash-c69ed33628ec0b7abf6296539cf280d6c4265930
git bisect bad c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31
# bad: [c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31]
source-hash-c69ed33628ec0b7abf6296539cf280d6c4265930
git bisect bad c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31
# bad: [c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31]
source-hash-c69ed33628ec0b7abf6296539cf280d6c4265930
git bisect bad c81a8a0dcfc1ed095a80e4485c89dd0fcaf73f31
# good: [1d4980621741d3050a5fe61b247c157d769988f2]
source-hash-89d01a7d8028ddb765e02c116d202a2435894217
git bisect good 1d4980621741d3050a5fe61b247c157d769988f2
# skip: [89110ca258fa7a15dfc546acfb39e76fc3eb2a44]
source-hash-e450a2c506ac7cd4433b0f93fc750a89919bc03c
git bisect skip 89110ca258fa7a15dfc546acfb39e76fc3eb2a44
# good: [1cca92a409385d9288c28a54d5e3008e56728bc0]
source-hash-7be7824bbbdeee6fa998b950e6046ab37fe690cb
git bisect good 1cca92a409385d9288c28a54d5e3008e56728bc0
# skip: [5fa28ce2931a35ae64ae08d3904cfb76d24459d8]
source-hash-2304beaca33c63b94df99cb827716f00ce259f9a
git bisect skip 5fa28ce2931a35ae64ae08d3904cfb76d24459d8
# bad: [2a9ff869c5638dc5c3aa387d0fe55c3291c86288]
source-hash-01b7e04172889cbc9e4ac404b105e18ddc062d6f
git bisect bad 2a9ff869c5638dc5c3aa387d0fe55c3291c86288
# good: [9771d0c212cfa71b07742ff3dc5c05df22d600eb]
source-hash-a9a0933ec67eab0ec31c8fadb60fb8e8e3e90485
git bisect good 9771d0c212cfa71b07742ff3dc5c05df22d600eb
# skip: [edd0c98bc8eba396299d252906dea0898436e42a]
source-hash-6489f97fc428446c53c17f885963776cdcc21490
git bisect skip edd0c98bc8eba396299d252906dea0898436e42a
# skip: [9fc19519e5bc25b68aff579d6f6dd57553e21cb4]
source-hash-d63a69a087c9c7641e28e2002d7ad56076d08ca1
git bisect skip 9fc19519e5bc25b68aff579d6f6dd57553e21cb4
# skip: [8cb23b3181bfae3988e27d5621476e8fc74ab823]
source-hash-132731f0704b5a9e996cb0d413c8e369efe8875f
git bisect skip 8cb23b3181bfae3988e27d5621476e8fc74ab823
# skip: [79ff8e93eb0ddcebca4f814fc6883da8e1485c9f]
source-hash-0bca15197461f9e0c6f28ce301c2fed2ec4b38cb
git bisect skip 79ff8e93eb0ddcebca4f814fc6883da8e1485c9f
# skip: [6b6b50cddd82bdfd45433bb7f8b31663211e2e13]
source-hash-c3ef735fd5d8866c8ce28b89744150e733087427
git bisect skip 6b6b50cddd82bdfd45433bb7f8b31663211e2e13
# bad: [91460ba3ce3a0efa5693f098c1072b058903a31c]
source-hash-69f61526cd4268a330be1e835e9e52f9b1dbde50
git bisect bad 91460ba3ce3a0efa5693f098c1072b058903a31c
# skip: [ae627c725e93b01ef68cf242574f40eb9885e3c9]
source-hash-2ee4a04d61de32003d1895ac157ae97db7dd36c8
git bisect skip ae627c725e93b01ef68cf242574f40eb9885e3c9
# only skipped commits left to test
# possible first bad commit: [91460ba3ce3a0efa5693f098c1072b058903a31c]
source-hash-69f61526cd4268a330be1e835e9e52f9b1dbde50
# possible first bad commit: [79ff8e93eb0ddcebca4f814fc6883da8e1485c9f]
source-hash-0bca15197461f9e0c6f28ce301c2fed2ec4b38cb
# possible first bad commit: [a043626b542eb8314218d7439534dce2fc325304]
source-hash-9379a922c07df3cdb7d567cc88dfaaa39ead3681
# possible first bad commit: [ae627c725e93b01ef68cf242574f40eb9885e3c9]

[Libreoffice-bugs] [Bug 89134] UI: black background on Options - Language Settings - Writing Aids

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

Michael Weghorn m.wegh...@posteo.de changed:

   What|Removed |Added

 CC||m.wegh...@posteo.de
 Whiteboard|bibisectRequest |bibisected

--- Comment #2 from Michael Weghorn m.wegh...@posteo.de ---
bibisect result:

b9a37b27f39d979a2eb4187c59bdb88f603dc271 is the first bad commit
commit b9a37b27f39d979a2eb4187c59bdb88f603dc271
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Jan 26 05:50:33 2015 +0100

2015-01-26: source-hash-784d069cc1d9f1d6e6a4e543a278376ab483d1eb


$ git bisect log
# bad: [ad5ed3c0a2b049c70515c303e8150f5a75dd818f] 2015-02-06:
source-hash-004304eb2fd1703d22dec0abf0170bb2ce493d0c
# good: [e4b0a61cedc6ac0e65a4a110fd83edd8295f4856] 2014-11-20:
source-hash-d273a60bfdbf9bb7623bed38667ec0647753157c
git bisect start 'master' 'oldest'
# good: [09b2fa5b1f166e0d6f077325f2ea5fec8c061b47] 2014-12-29:
source-hash-4c9cf98819037fdb70cbe68f678f6498d5646736
git bisect good 09b2fa5b1f166e0d6f077325f2ea5fec8c061b47
# good: [b4a23d280f65e8d30d2734c76fb61112cc4e8ef8] 2015-01-17:
source-hash-5c99a17037b807f7728ed8c677559c3032b9500c
git bisect good b4a23d280f65e8d30d2734c76fb61112cc4e8ef8
# bad: [c92e2abcf8b4300397d72d15216da6b39dee6bc9] 2015-01-27:
source-hash-19669b2c2d77ddf5d7a07a655ca21d0557e7d603
git bisect bad c92e2abcf8b4300397d72d15216da6b39dee6bc9
# good: [92825ecb26eeb2deb34d0a13886459e138d2c54b] 2015-01-22:
source-hash-9ea6793a5b765aefc1a8e82c06f225305dd9c14f
git bisect good 92825ecb26eeb2deb34d0a13886459e138d2c54b
# good: [47af43b8e620c3d9a08721e9aa72d8e3ec407aec] 2015-01-24:
source-hash-e3c0025461bdf55e62a308a76c3aa0a35109f076
git bisect good 47af43b8e620c3d9a08721e9aa72d8e3ec407aec
# bad: [b9a37b27f39d979a2eb4187c59bdb88f603dc271] 2015-01-26:
source-hash-784d069cc1d9f1d6e6a4e543a278376ab483d1eb
git bisect bad b9a37b27f39d979a2eb4187c59bdb88f603dc271
# good: [210f278942985a91b44375e36c9ba5fc57fa2950] 2015-01-25:
source-hash-c3f96f3b95b99051a1ffa8cfa55a5a39eb0fb3e5
git bisect good 210f278942985a91b44375e36c9ba5fc57fa2950
# first bad commit: [b9a37b27f39d979a2eb4187c59bdb88f603dc271] 2015-01-26:
source-hash-784d069cc1d9f1d6e6a4e543a278376ab483d1eb

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


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

2015-02-06 Thread Miklos Vajna
 sw/source/core/doc/number.cxx   |8 
 sw/source/core/docnode/nodedump.cxx |   12 
 2 files changed, 8 insertions(+), 12 deletions(-)

New commits:
commit f58b9f56f6bd5866fc7235a9a638d8b309fc1a84
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Fri Feb 6 22:55:54 2015 +0100

Extract SwNumRuleTbl::dumpAsXml() from docnode

Change-Id: I39cbff3fbd21c6d0640a0fa1298c5df720525405

diff --git a/sw/source/core/doc/number.cxx b/sw/source/core/doc/number.cxx
index 163eda1..d072d80 100644
--- a/sw/source/core/doc/number.cxx
+++ b/sw/source/core/doc/number.cxx
@@ -1441,4 +1441,12 @@ namespace numfunc
 }
 }
 
+void SwNumRuleTbl::dumpAsXml(xmlTextWriterPtr pWriter) const
+{
+xmlTextWriterStartElement(pWriter, BAD_CAST(swNumRuleTbl));
+for (SwNumRule* pNumRule : *this)
+pNumRule-dumpAsXml(pWriter);
+xmlTextWriterEndElement(pWriter);
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/core/docnode/nodedump.cxx 
b/sw/source/core/docnode/nodedump.cxx
index 64ea367..ec2eef0 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -373,18 +373,6 @@ void SwTxtFmtColls::dumpAsXml(xmlTextWriterPtr w) const
 }
 }
 
-void SwNumRuleTbl::dumpAsXml(xmlTextWriterPtr w) const
-{
-if (!empty())
-{
-WriterHelper writer(w);
-writer.startElement(swnumruletbl);
-for (size_t i = 0; i  size(); ++i)
-operator[](i)-dumpAsXml(w);
-writer.endElement();
-}
-}
-
 void SwTxtNode::dumpAsXml( xmlTextWriterPtr w ) const
 {
 WriterHelper writer( w );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-02-06 Thread Eike Rathke
 sc/source/core/tool/formularesult.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e32eff2bb4c12fdc33e476b9f12bb4bb71d22ebc
Author: Eike Rathke er...@redhat.com
Date:   Fri Feb 6 23:32:54 2015 +0100

Resolves: tdf#83461 do not override MatColsRows if already set

ScMatrixFormulaCellToken::SetMatColsRows() via
ScFormulaCell::SetMatColsRows() is used during document import and
preselected cell area input of an array formula. Do not override
existing values with subsequent result matrix dimensions.

Change-Id: I9e844b5064ea276f3cbcb680eb1127c344328e00

diff --git a/sc/source/core/tool/formularesult.cxx 
b/sc/source/core/tool/formularesult.cxx
index cf790c8..61b56f5 100644
--- a/sc/source/core/tool/formularesult.cxx
+++ b/sc/source/core/tool/formularesult.cxx
@@ -167,7 +167,7 @@ void ScFormulaResult::SetToken( const 
formula::FormulaToken* p )
 {
 const ScMatrixFormulaCellToken* pNewMatFormula =
 dynamic_castconst ScMatrixFormulaCellToken*(pMatResult);
-if (pNewMatFormula)
+if (pNewMatFormula  (pMatFormula-GetMatCols() = 0 || 
pMatFormula-GetMatRows() = 0))
 {
 SAL_WARN( sc, ScFormulaResult::SetToken: pNewMatFormula and 
pMatFormula, overriding matrix formula dimension; intended?);
 pMatFormula-SetMatColsRows( pNewMatFormula-GetMatCols(),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89190] Text doesn't appear when another textbox has animation

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

Chris King ck...@troy.edu changed:

   What|Removed |Added

Summary|Text never appears when |Text doesn't appear when
   |text in another textbox has |another textbox has
   |animation   |animation

-- 
You are receiving this mail because:
You 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 47577] Zoom slider should only react to full click, not just to onmouseup event

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

--- Comment #7 from Michael Stahl mst...@redhat.com ---
(In reply to sasha.libreoffice from comment #1)
 IMHO: this behaviour is part of LO internals inherited from Borland VCL.

please note that StarOffice VCL is completely unrelated to Borland VCL.

-- 
You are receiving this mail because:
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 76291] FILESAVE: Chinese hyperlinks modified upon Saving

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

--- Comment #10 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Vasily Melenchuk committed a patch related to this issue.
It has been pushed to libreoffice-4-4:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=4327b7882c38005d89b07e76814705d1c53f3161h=libreoffice-4-4

tdf#76291 write encoded URL as href in html output

It will be available in 4.4.1.

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

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


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

2015-02-06 Thread Vasily Melenchuk
 sw/qa/extras/htmlexport/data/tdf76291.odt |binary
 sw/qa/extras/htmlexport/htmlexport.cxx|9 +
 sw/source/filter/html/wrthtml.cxx |4 +++-
 3 files changed, 12 insertions(+), 1 deletion(-)

New commits:
commit fafd6cd4f784e5b65548af699bc25502f10a4b8d
Author: Vasily Melenchuk vasily.melenc...@cib.de
Date:   Thu Feb 5 11:57:13 2015 +

tdf#76291 unit test for html export href encoding

Change-Id: I273af8b570adfcb7bfb784495bc31d2f4f1ee00b
Reviewed-on: https://gerrit.libreoffice.org/14333
Tested-by: Michael Stahl mst...@redhat.com
Reviewed-by: Michael Stahl mst...@redhat.com
(cherry picked from commit 675e1fe198298702ced8eab02a7df5164d66a8f0)
Signed-off-by: Andras Timar andras.ti...@collabora.com

diff --git a/sw/qa/extras/htmlexport/data/tdf76291.odt 
b/sw/qa/extras/htmlexport/data/tdf76291.odt
new file mode 100644
index 000..68588c8
Binary files /dev/null and b/sw/qa/extras/htmlexport/data/tdf76291.odt differ
diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index d8c673c..aaa43d6 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -233,6 +233,15 @@ 
DECLARE_HTMLEXPORT_TEST(testExportCheckboxRadioButtonState, checkbox-radiobutto
 assertXPathNoAttribute(pDoc, /html/body/form/p[4]/input, checked);
 }
 
+DECLARE_HTMLEXPORT_TEST(testExportUrlEncoding, tdf76291.odt)
+{
+htmlDocPtr pDoc = parseHtml(maTempFile);
+CPPUNIT_ASSERT(pDoc);
+
+// Test URI encoded hyperlink with Chinese characters
+assertXPath(pDoc, /html/body/p/a, href, 
http://www.youtube.com/results?search_query=%E7%B2%B5%E8%AA%9Emvsm=12;);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit 4327b7882c38005d89b07e76814705d1c53f3161
Author: Vasily Melenchuk vasily.melenc...@cib.de
Date:   Tue Jan 27 16:18:24 2015 +

tdf#76291 write encoded URL as href in html output

INetURLObject class is used to create correctly encoded URL

Change-Id: Icc9e71e848fd8a0b487f74232b9ad3e7ddde50b4
Signed-off-by: Stephan Bergmann sberg...@redhat.com
(cherry picked from commit 0706b5756e06b7773a78e3046a47efc2c81d92b1)
Signed-off-by: Andras Timar andras.ti...@collabora.com

diff --git a/sw/source/filter/html/wrthtml.cxx 
b/sw/source/filter/html/wrthtml.cxx
index f9d60e5..26b8ab6 100644
--- a/sw/source/filter/html/wrthtml.cxx
+++ b/sw/source/filter/html/wrthtml.cxx
@@ -81,6 +81,7 @@
 #include IDocumentSettingAccess.hxx
 #include IDocumentStylePoolAccess.hxx
 #include xmloff/odffields.hxx
+#include tools/urlobj.hxx
 
 #define MAX_INDENT_LEVEL 20
 
@@ -1197,7 +1198,8 @@ OUString SwHTMLWriter::convertHyperlinkHRefValue(const 
OUString rURL)
 }
 }
 }
-return URIHelper::simpleNormalizedMakeRelative(GetBaseURL(), sURL);
+INetURLObject aURL( sURL );
+return URIHelper::simpleNormalizedMakeRelative( GetBaseURL(), 
aURL.GetMainURL( INetURLObject::NO_DECODE ) );
 }
 
 void SwHTMLWriter::OutHyperlinkHRefValue( const OUString rURL )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 76291] FILESAVE: Chinese hyperlinks modified upon Saving

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

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

   What|Removed |Added

 Whiteboard|BSA EasyHack SkillCpp   |BSA EasyHack SkillCpp
   |target:4.5.0|target:4.5.0 target:4.4.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-commits] core.git: include/sfx2 sfx2/source sfx2/uiconfig

2015-02-06 Thread Heena Gupta
 include/sfx2/mgetempl.hxx   |5 +++
 sfx2/source/dialog/mgetempl.cxx |   53 +++-
 sfx2/uiconfig/ui/managestylepage.ui |   15 ++
 3 files changed, 72 insertions(+), 1 deletion(-)

New commits:
commit de896f74c805e77706cce10f4d79117af1811ee9
Author: Heena Gupta heena.h.gu...@ericsson.com
Date:   Wed Dec 24 15:55:37 2014 +0530

fdo#87675-Edit Button for next style in edit paragraph style

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

diff --git a/include/sfx2/mgetempl.hxx b/include/sfx2/mgetempl.hxx
index 06deead..12fafb4 100644
--- a/include/sfx2/mgetempl.hxx
+++ b/include/sfx2/mgetempl.hxx
@@ -43,6 +43,7 @@ class SfxManageStyleSheetPage : public SfxTabPage
 
 FixedText* m_pFollowFt;
 ListBox* m_pFollowLb;
+PushButton* m_pEditStyleBtn;
 
 FixedText* m_pBaseFt;
 ListBox* m_pBaseLb;
@@ -69,6 +70,7 @@ friend class SfxStyleDialog;
 
 DECL_LINK( GetFocusHdl, Edit * );
 DECL_LINK( LoseFocusHdl, Edit * );
+DECL_LINK( EditStyleHdl_Impl, void * );
 
 voidUpdateName_Impl(ListBox *, const OUString rNew);
 voidSetDescriptionText_Impl();
@@ -82,6 +84,9 @@ protected:
 virtual boolFillItemSet(SfxItemSet *) SAL_OVERRIDE;
 virtual voidReset(const SfxItemSet *) SAL_OVERRIDE;
 
+boolExecute_Impl( sal_uInt16 nId, const OUString rStr, const 
OUString rRefStr,
+  sal_uInt16 nFamily, sal_uInt16 nMask = 0,
+  const sal_uInt16* pModifier = NULL );
 using TabPage::ActivatePage;
 virtual voidActivatePage(const SfxItemSet ) SAL_OVERRIDE;
 using TabPage::DeactivatePage;
diff --git a/sfx2/source/dialog/mgetempl.cxx b/sfx2/source/dialog/mgetempl.cxx
index c7a70ca..c9c8370 100644
--- a/sfx2/source/dialog/mgetempl.cxx
+++ b/sfx2/source/dialog/mgetempl.cxx
@@ -34,10 +34,14 @@
 #include sfx2/sfxresid.hxx
 #include sfx2/module.hxx
 
+#include sfx2/templdlg.hxx
+#include templdgi.hxx
 #include sfx2/sfx.hrc
 #include dialog.hrc
 
 #include svl/style.hrc
+#include svl/stritem.hxx
+#include sfx2/dispatch.hxx
 
 /*  SfxManageStyleSheetPage Constructor
  *
@@ -62,6 +66,7 @@ SfxManageStyleSheetPage::SfxManageStyleSheetPage(vcl::Window* 
pParent, const Sfx
 m_pFollowLb-SetStyle(m_pFollowLb-GetStyle() | WB_SORT);
 const sal_Int32 nMaxWidth(62);
 m_pFollowLb-setMaxWidthChars(nMaxWidth);
+get(m_pEditStyleBtn, editstyle);
 get(m_pBaseFt, linkedwithft);
 get(m_pBaseLb, linkedwith);
 m_pBaseLb-SetStyle(m_pBaseLb-GetStyle() | WB_SORT);
@@ -223,6 +228,7 @@ 
SfxManageStyleSheetPage::SfxManageStyleSheetPage(vcl::Window* pParent, const Sfx
 // It is a style with auto update? (SW only)
 if(SfxItemState::SET == rAttrSet.GetItemState(SID_ATTR_AUTO_STYLE_UPDATE))
 m_pAutoCB-Show();
+m_pEditStyleBtn-SetClickHdl( LINK( this, SfxManageStyleSheetPage, 
EditStyleHdl_Impl ) );
 }
 
 
@@ -309,7 +315,53 @@ void SfxManageStyleSheetPage::SetDescriptionText_Impl()
 m_pDescFt-SetText( pStyle-GetDescription( eUnit ) );
 }
 
+IMPL_LINK_NOARG( SfxManageStyleSheetPage, EditStyleHdl_Impl )
+{
+
+OUString aTemplName(m_pFollowLb-GetSelectEntry());
+if (Execute_Impl( SID_STYLE_EDIT, aTemplName, 
OUString(),(sal_uInt16)pStyle-GetFamily(), 0 ))
+{
+}
 
+return 0;
+
+}
+
+// Internal: Perform functions through the Dispatcher
+bool SfxManageStyleSheetPage::Execute_Impl(
+sal_uInt16 nId, const OUString rStr, const OUString rRefStr, sal_uInt16 
nFamily,
+sal_uInt16 nMask, const sal_uInt16* pModifier)
+{
+
+SfxDispatcher rDispatcher = *SfxGetpApp()-GetDispatcher_Impl();
+SfxStringItem aItem(nId, rStr);
+SfxUInt16Item aFamily(SID_STYLE_FAMILY, nFamily);
+SfxUInt16Item aMask( SID_STYLE_MASK, nMask );
+SfxStringItem aUpdName(SID_STYLE_UPD_BY_EX_NAME, rStr);
+SfxStringItem aRefName( SID_STYLE_REFERENCE, rRefStr );
+const SfxPoolItem* pItems[ 6 ];
+sal_uInt16 nCount = 0;
+if( !rStr.isEmpty() )
+pItems[ nCount++ ] = aItem;
+pItems[ nCount++ ] = aFamily;
+if( nMask )
+pItems[ nCount++ ] = aMask;
+if ( !rRefStr.isEmpty() )
+pItems[ nCount++ ] = aRefName;
+
+pItems[ nCount++ ] = 0;
+
+sal_uInt16 nModi = pModifier ? *pModifier : 0;
+const SfxPoolItem* mpItem = rDispatcher.Execute(
+nId, SfxCallMode::SYNCHRON | SfxCallMode::RECORD | SfxCallMode::MODAL,
+pItems, nModi );
+
+if ( !mpItem )
+return false;
+
+return true;
+
+}
 
 IMPL_LINK_INLINE_START( SfxManageStyleSheetPage, GetFocusHdl, Edit *, pEdit )
 
@@ -325,7 +377,6 @@ IMPL_LINK_INLINE_START( SfxManageStyleSheetPage, 
GetFocusHdl, Edit *, pEdit )
 IMPL_LINK_INLINE_END( SfxManageStyleSheetPage, GetFocusHdl, Edit *, pEdit )
 
 
-
 IMPL_LINK_INLINE_START( SfxManageStyleSheetPage, 

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

2015-02-06 Thread Aron Budea
 shell/source/win32/simplemail/senddoc.cxx |   49 +-
 1 file changed, 22 insertions(+), 27 deletions(-)

New commits:
commit 7ce1e0e1ecbb1b3ec5e3cc15306a9df7e786c564
Author: Aron Budea ba...@caesar.elte.hu
Date:   Mon Dec 22 06:23:46 2014 +0100

fdo#43368 Remove MapiLogon/Logoff calls so simplemail works with WLM

Signed-off-by: Michael Stahl mst...@redhat.com

Conflicts:
shell/source/win32/simplemail/senddoc.cxx

Change-Id: I31cac063ffb4afbfde068558ebcf5f66ea34d1a8

diff --git a/shell/source/win32/simplemail/senddoc.cxx 
b/shell/source/win32/simplemail/senddoc.cxx
index 37c5377..10a0775 100644
--- a/shell/source/win32/simplemail/senddoc.cxx
+++ b/shell/source/win32/simplemail/senddoc.cxx
@@ -263,40 +263,35 @@ int main(int argc, char* argv[])
 // is installed as Exchange and Mail Client a Profile
 // selection dialog must appear because we specify no
 // profile name, so the user has to specify a profile
-FLAGS flFlag = MAPI_NEW_SESSION | MAPI_LOGON_UI;
-LHANDLE hSession;
-ulRet = mapi.MAPILogon(0, NULL, NULL, flFlag, 0L, hSession);
 
-if (ulRet == SUCCESS_SUCCESS)
-{
-MapiRecipDesc mapiOriginator;
-MapiRecipientList_t mapiRecipientList;
-MapiAttachmentList_t mapiAttachmentList;
-MapiMessage mapiMsg;
+LHANDLE hSession = 0;
 
-initMapiOriginator(mapiOriginator);
-initRecipientList(mapiRecipientList);
-initAttachmentList(mapiAttachmentList);
-initMapiMessage((gFrom.length() ? mapiOriginator : NULL), 
mapiRecipientList, mapiAttachmentList, mapiMsg);
+MapiRecipDesc mapiOriginator;
+MapiRecipientList_t mapiRecipientList;
+MapiAttachmentList_t mapiAttachmentList;
+MapiMessage mapiMsg;
 
-ulRet = mapi.MAPISendMail(hSession, 0, mapiMsg, gMapiFlags, 0);
+initMapiOriginator(mapiOriginator);
+initRecipientList(mapiRecipientList);
+initAttachmentList(mapiAttachmentList);
+initMapiMessage((gFrom.length() ? mapiOriginator : NULL), 
mapiRecipientList, mapiAttachmentList, mapiMsg);
 
-// There is no point in treating an aborted mail sending
-// dialog as an error to be returned as our exit
-// status. If the user decided to abort sending a document
-// as mail, OK, that is not an error.
+ulRet = mapi.MAPISendMail(hSession, 0, mapiMsg, gMapiFlags, 0);
 
-// Also, it seems that GroupWise makes MAPISendMail()
-// return MAPI_E_USER_ABORT even if the mail sending
-// dialog was not aborted by the user, and the mail was
-// actually sent just fine. See bnc#660241 (visible to
-// Novell people only, sorry).
+// There is no point in treating an aborted mail sending
+// dialog as an error to be returned as our exit
+// status. If the user decided to abort sending a document
+// as mail, OK, that is not an error.
 
-if (ulRet == MAPI_E_USER_ABORT)
-ulRet = SUCCESS_SUCCESS;
+// Also, it seems that GroupWise makes MAPISendMail()
+// return MAPI_E_USER_ABORT even if the mail sending
+// dialog was not aborted by the user, and the mail was
+// actually sent just fine. See bnc#660241 (visible to
+// Novell people only, sorry).
+
+if (ulRet == MAPI_E_USER_ABORT)
+ulRet = SUCCESS_SUCCESS;
 
-mapi.MAPILogoff(hSession, 0, 0, 0);
-}
 }
 catch (const std::runtime_error
 #if OSL_DEBUG_LEVEL  0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 43368] Windows Live Mail 2011 not detected as email client for Send as e-mail attachment

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

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

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

fdo#43368 Remove MapiLogon/Logoff calls so simplemail works with WLM

It will be available in 4.5.0.

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

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


[Libreoffice-bugs] [Bug 43368] Windows Live Mail 2011 not detected as email client for Send as e-mail attachment

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

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

   What|Removed |Added

 Whiteboard|| target:4.5.0

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


Re: Aspiring applicant for gsoc 2015

2015-02-06 Thread Cedric Bosdonnat
On Wed, 2015-02-04 at 14:31 +0200, Efe Gürkan YALAMAN wrote:
 Hello, 
 
 start from the wiki, choose an easyhack and have fun.  im on mobile so
 i cannot give you wiki page. But you can easily find it your own.  :) 

Here is the link:
https://wiki.documentfoundation.org/Development/GSoC/2015#How_to_apply

 On 4 Feb 2015 14:25, Nalin Goel naling1...@gmail.com wrote:
 Hi,
 
 
 I am Nalin Goel , pursuing Undergraduate Program (Computer
 Science) from Delhi Technological University(formerly DCE).
 
 
 I would love to participate in GSOC 15 and would like to work
 with Libre Office.
 Can anyone guide me where to get started.
 
 
 I am fairly acquainted with C++ and have done many projects in
 the same.
 
 
 Thank You.
 
 ___
 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 mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2015-02-06 Thread Heena Gupta
 include/sfx2/mgetempl.hxx   |1 +
 sfx2/source/dialog/mgetempl.cxx |   17 +
 sfx2/uiconfig/ui/managestylepage.ui |6 +-
 3 files changed, 19 insertions(+), 5 deletions(-)

New commits:
commit 4be6e7becec9413cfd22c06376031b02486145b2
Author: Heena Gupta heena.h.gu...@ericsson.com
Date:   Thu Jan 8 17:53:28 2015 +0530

fdo#87675: Disable 'edit' when next style is same as current one.

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

diff --git a/include/sfx2/mgetempl.hxx b/include/sfx2/mgetempl.hxx
index 12fafb4..fc6aefc8b 100644
--- a/include/sfx2/mgetempl.hxx
+++ b/include/sfx2/mgetempl.hxx
@@ -70,6 +70,7 @@ friend class SfxStyleDialog;
 
 DECL_LINK( GetFocusHdl, Edit * );
 DECL_LINK( LoseFocusHdl, Edit * );
+DECL_LINK( EditStyleSelectHdl_Impl, void * );
 DECL_LINK( EditStyleHdl_Impl, void * );
 
 voidUpdateName_Impl(ListBox *, const OUString rNew);
diff --git a/sfx2/source/dialog/mgetempl.cxx b/sfx2/source/dialog/mgetempl.cxx
index c9c8370..06e531a 100644
--- a/sfx2/source/dialog/mgetempl.cxx
+++ b/sfx2/source/dialog/mgetempl.cxx
@@ -82,6 +82,11 @@ 
SfxManageStyleSheetPage::SfxManageStyleSheetPage(vcl::Window* pParent, const Sfx
 // this Page needs ExchangeSupport
 SetExchangeSupport();
 
+if ( aFollow == aName )
+m_pEditStyleBtn-Disable();
+else
+m_pEditStyleBtn-Enable();
+
 ResMgr* pResMgr = SfxGetpApp()-GetModule_Impl()-GetResMgr();
 OSL_ENSURE( pResMgr, No ResMgr in Module );
 pFamilies = new SfxStyleFamilies( ResId( DLG_STYLE_DESIGNER, *pResMgr ) );
@@ -228,6 +233,7 @@ 
SfxManageStyleSheetPage::SfxManageStyleSheetPage(vcl::Window* pParent, const Sfx
 // It is a style with auto update? (SW only)
 if(SfxItemState::SET == rAttrSet.GetItemState(SID_ATTR_AUTO_STYLE_UPDATE))
 m_pAutoCB-Show();
+m_pFollowLb-SetSelectHdl( LINK( this, SfxManageStyleSheetPage, 
EditStyleSelectHdl_Impl ) );
 m_pEditStyleBtn-SetClickHdl( LINK( this, SfxManageStyleSheetPage, 
EditStyleHdl_Impl ) );
 }
 
@@ -315,6 +321,17 @@ void SfxManageStyleSheetPage::SetDescriptionText_Impl()
 m_pDescFt-SetText( pStyle-GetDescription( eUnit ) );
 }
 
+IMPL_LINK_NOARG( SfxManageStyleSheetPage, EditStyleSelectHdl_Impl )
+{
+OUString aTemplName(m_pFollowLb-GetSelectEntry());
+OUString aEditTemplName(m_pNameRo-GetText());
+if (!( aTemplName == aEditTemplName))
+m_pEditStyleBtn-Enable();
+else
+m_pEditStyleBtn-Disable();
+return 0;
+}
+
 IMPL_LINK_NOARG( SfxManageStyleSheetPage, EditStyleHdl_Impl )
 {
 
diff --git a/sfx2/uiconfig/ui/managestylepage.ui 
b/sfx2/uiconfig/ui/managestylepage.ui
index 396fd39..0569c5f 100644
--- a/sfx2/uiconfig/ui/managestylepage.ui
+++ b/sfx2/uiconfig/ui/managestylepage.ui
@@ -102,11 +102,7 @@
   object class=GtkButton id=editstyle
 property name=label translatable=yesEdit 
Style/property
 property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=can_defaultTrue/property
-property name=has_defaultTrue/property
-property name=receives_defaultTrue/property
-property name=use_underlineTrue/property
+property name=can_focusFalse/property
   /object
   packing
 property name=left_attach2/property
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: configure.ac desktop/inc desktop/Library_sofficeapp.mk desktop/source include/vcl svx/Executable_gengal.mk sw/Module_sw.mk sw/qa vcl/Executable_icontest.mk vcl/Module_v

2015-02-06 Thread Riccardo Magliocchetti
 configure.ac |5 -
 desktop/Library_sofficeapp.mk|8 
 desktop/inc/app.hxx  |2 +-
 desktop/source/app/sofficemain.cxx   |2 +-
 include/vcl/opengl/OpenGLContext.hxx |   10 +++---
 include/vcl/opengl/OpenGLHelper.hxx  |4 ++--
 svx/Executable_gengal.mk |7 +++
 sw/Module_sw.mk  |3 ++-
 sw/qa/extras/odfimport/odfimport.cxx |2 +-
 vcl/Executable_icontest.mk   |2 --
 vcl/Module_vcl.mk|   18 +-
 vcl/source/opengl/OpenGLContext.cxx  |   26 ++
 vcl/source/opengl/OpenGLHelper.cxx   |2 +-
 vcl/source/salmain/salmain.cxx   |4 ++--
 14 files changed, 63 insertions(+), 32 deletions(-)

New commits:
commit b9a847b78ceaa3b5840429dab1bc50d35c7ef3de
Author: Riccardo Magliocchetti riccardo.magliocche...@gmail.com
Date:   Mon Dec 22 19:10:59 2014 +0100

Fixup --without-x build

Accept gl linkage in hope of future offscreen mesa support.
Avoid linking with GLX though.

Change-Id: I4e666f60e74fe34075a8da9eeba95807cf8fe38c
Signed-off-by: Riccardo Magliocchetti riccardo.magliocche...@gmail.com
Reviewed-on: https://gerrit.libreoffice.org/13452
Reviewed-by: Michael Stahl mst...@redhat.com
Tested-by: Michael Stahl mst...@redhat.com

diff --git a/configure.ac b/configure.ac
index e1f2254..d8401fc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10210,6 +10210,7 @@ else
 fi
 AC_SUBST(ENABLE_VLC)
 
+# this is for opengl transitions in impress slideshow
 ENABLE_OPENGL=
 if test $_os = iOS -o $_os = Android; then
: # disable
@@ -10226,7 +10227,9 @@ elif test $_os = WINNT; then
 SYSTEM_MESA_HEADERS=
 BUILD_TYPE=$BUILD_TYPE MESA
 else
-ENABLE_OPENGL=TRUE
+if test $with_x != no; then
+ENABLE_OPENGL=TRUE
+fi
 ENABLE_OPENGL_CANVAS=TRUE
 
 dnl ===
diff --git a/desktop/Library_sofficeapp.mk b/desktop/Library_sofficeapp.mk
index 1f4eb1f..f674d6b 100644
--- a/desktop/Library_sofficeapp.mk
+++ b/desktop/Library_sofficeapp.mk
@@ -91,6 +91,13 @@ $(eval $(call gb_Library_add_exception_objects,sofficeapp,\
 desktop/source/migration/migration \
 ))
 
+ifeq ($(ENABLE_HEADLESS),TRUE)
+$(eval $(call gb_Library_add_libs,sofficeapp,\
+   -lm \
+   -ldl \
+   -lpthread \
+))
+else
 ifeq ($(OS),LINUX)
 $(eval $(call gb_Library_use_static_libraries,sofficeapp,\
 glxtest \
@@ -105,6 +112,7 @@ $(eval $(call gb_Library_add_libs,sofficeapp,\
 -lX11 \
 ))
 endif
+endif
 
 # LibreOfficeKit bits
 ifneq ($(filter $(OS),ANDROID IOS),)
diff --git a/desktop/inc/app.hxx b/desktop/inc/app.hxx
index 2ed33c8..22c40f8 100644
--- a/desktop/inc/app.hxx
+++ b/desktop/inc/app.hxx
@@ -193,7 +193,7 @@ OUString ReplaceStringHookProc(const OUString rStr);
 
 }
 
-#if defined( UNX )  !defined MACOSX  !defined IOS  !defined ANDROID
+#if defined( UNX )  !defined MACOSX  !defined IOS  !defined ANDROID  
!defined LIBO_HEADLESS
 bool fire_glxtest_process();
 #endif
 
diff --git a/desktop/source/app/sofficemain.cxx 
b/desktop/source/app/sofficemain.cxx
index 0597a4f..4f7dec9 100644
--- a/desktop/source/app/sofficemain.cxx
+++ b/desktop/source/app/sofficemain.cxx
@@ -51,7 +51,7 @@
 
 extern C int DESKTOP_DLLPUBLIC soffice_main()
 {
-#if defined( UNX )  !defined MACOSX  !defined IOS  !defined ANDROID
+#if defined( UNX )  !defined MACOSX  !defined IOS  !defined ANDROID  
!defined(LIBO_HEADLESS)
 /* Run test for OpenGL support in own process to avoid crash with broken
  * OpenGL drivers. Start process as early as possible.
  */
diff --git a/include/vcl/opengl/OpenGLContext.hxx 
b/include/vcl/opengl/OpenGLContext.hxx
index 6f66587..0276923 100644
--- a/include/vcl/opengl/OpenGLContext.hxx
+++ b/include/vcl/opengl/OpenGLContext.hxx
@@ -17,6 +17,7 @@
 #if defined( MACOSX )
 #elif defined( IOS )
 #elif defined( ANDROID )
+#elif defined( LIBO_HEADLESS )
 #elif defined( UNX )
 #  include prex.h
 #  include GL/glxew.h
@@ -42,6 +43,7 @@ class NSOpenGLView;
 #endif
 #elif defined( IOS )
 #elif defined( ANDROID )
+#elif defined( LIBO_HEADLESS )
 #elif defined( UNX )
 #include GL/glext.h
 #define GLX_GLXEXT_PROTOTYPES 1
@@ -110,6 +112,7 @@ struct GLWindow
 #elif defined( MACOSX )
 #elif defined( IOS )
 #elif defined( ANDROID )
+#elif defined( LIBO_HEADLESS )
 #elif defined( UNX )
 Display*dpy;
 int screen;
@@ -137,6 +140,7 @@ struct GLWindow
 #elif defined( MACOSX )
 #elif defined( IOS )
 #elif defined( ANDROID )
+#elif defined( LIBO_HEADLESS )
 #elif defined( UNX )
 dpy(NULL),
 screen(0),
@@ -176,7 +180,7 @@ public:
 
 // these methods are for the deep platform layer, don't use them in normal code
 // only in vcl's platform code
-#if defined( UNX )  !defined MACOSX  !defined IOS  !defined ANDROID
+#if defined( UNX )  !defined MACOSX  !defined IOS  !defined ANDROID  

[Libreoffice-bugs] [Bug 89193] New: 4.4 Release Loses Footer Background Image

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

Bug ID: 89193
   Summary: 4.4 Release Loses Footer Background Image
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: d...@oneit.com.au

All my footer background images are lost in the upgrade from 4.3 to 4.4 (when
the document is opened).

This is trivial to reproduce:
1. Create a document
2. Add a footer
3. Format the footer background
4. Select a background image either linked or embedded
5. The background image appears
6. If you open up the background settings, the background is lost, but still
visible.
7. Save the document and re-open it.  Your background is lost.

Old documents from 4.3 open correctly, but as soon as they are saved the image
is lost.

This is a critical bug for me and means I have to revert to 4.3

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


[Libreoffice-bugs] [Bug 89047] Read-Only ComboBox doesn't allow selection in PDF export

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #5 from Beluga todven...@suomi24.fi ---
Thanks for the instructions.
I reproduced from scratch, could not edit the form in Adobe Acrobat when it was
set to Read-only Could edit when it was not set to Read-only.

Win 7 Pro 64-bit, LibO Version: 4.4.0.3
Build ID: de093506bcdc5fafd9023ee680b8c60e3e0645d7
Locale: fi_FI

-- 
You are receiving this mail because:
You 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 89181] VIEWING:

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

--- Comment #5 from ibraheemhan...@mail.com ---
(In reply to Adolfo Jayme from comment #4)
 It is a good practice to upgrade to the latest version of any software to
 check for fixed bugs before creating a report. The 3.5 series has been in
 End of Life status since 2012. See
 https://wiki.documentfoundation.org/ReleasePlan#3.5

Thank you for your suggestion. I am coming from a Windows environment and
downloaded and installed Debian last August (2014) along with all the
accompanying software. I wrongly assumed that I would receive the latest
version of Libre Office too. Following your advice I checked the Help section
of Writer and it directed me to go to help section and enable automatic or
manual update. Unfortunately, there is no such option at the place suggested. I
have been updating all the updates suggested every other day by the system and
again wrongly assumed that all software would also be updated automatically.
Since I do not have an automatic or manual update option in this verion of
LibreOffice I shall download it manually from the LibreOffice website and and
post the result.
Thank you.

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


[Libreoffice-bugs] [Bug 89195] New: Programmstart blocked V.4.4.

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

Bug ID: 89195
   Summary: Programmstart blocked V.4.4.
   Product: LibreOffice
   Version: unspecified
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ber...@rolmail.net

Created attachment 113195
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113195action=edit
Screencopy of Errormessage

Start not possible after Restart PC.
Programm is highlighted in programms, startet part per part,

-- 
You are receiving this mail because:
You 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 89138] PIVOTTABLE: References to cells of pivottable are not correctly saved; cached results not saved

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

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Summary|PIVOTTABLE: References to   |PIVOTTABLE: References to
   |cells of pivottable are not |cells of pivottable are not
   |correctly saved |correctly saved; cached
   ||results not saved
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #6 from raal r...@post.cz ---
Three files with linear binding
Source File p1 - P2 - P3
File P2 is not caching results. When refresh bindings in P2 and P3, then
everything works. P2 doesn't cache results after the save.


I can confirm with  4.4.0.3, ID build:
de093506bcdc5fafd9023ee680b8c60e3e0645d7, win7

I can confirm with Version: 4.5.0.0.alpha0+
Build ID: 40432ac6caa478474d73786f95b808c14e106ff2
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-02-03_01:24:42

-- 
You are receiving this mail because:
You 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 89191] EDITING: Formula frame can't be resized

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

--- Comment #1 from Robert Gonzalez MX riggra...@gmail.com ---
Created attachment 113194
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113194action=edit
screenshoots and formula examples

-- 
You are receiving this mail because:
You 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 89192] New: FILESAVE, UI: improve export process efficiency

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

Bug ID: 89192
   Summary: FILESAVE, UI: improve export process efficiency
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Drawing
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: li...@grr.la

There are few minor changes that could improve dramatically the export process
efficiency:
1. Remember the last export settings as filetype, file location, parameters;
2. Add the most used file formats used for export at the top of the list.
Usually, only few file formats are used more frequent. After the user exported
few times to a specific format, that file type should be displayed at the top
of the File Format drop-down list.
3. Add Export to [filename] in File menu above Export... after the user
exported a file first time. This way, the user could export again with a single
click a minor change in the opened file.

Workflow details for pt.3:
1. Open a new file and create some content
2. Click File  Export... to open the Export dialog and setup the parameters
3. Export the file with a certain name and format (let's say: TEST.PNG).
4. Make some changes in the opened file.
5. In the File menu will appear Export to TEST.PNG above the Export... item.
6. Click Export to TEST.PNG to overwrite the existing file with a new version
created with exactly the same settings/parameters as the previous export. This
action don't need to open again the Export dialog window and will simply
overwrite the existing file.

If the user wants to open the Export dialog window in order to create a
different file, it may choose Export... instead of the Export to TEST.PNG

-- 
You are receiving this mail because:
You 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 89192] FILESAVE, UI: improve export process efficiency

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

lucs li...@grr.la changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 89113] Dialog (Especially the Options Dialog) exceeds screen boundaries

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

Lilly lilly16j...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 88736] EDITING Edit When Select All a document that contains both graphic or picture

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

Lilly lilly16j...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 89195] Programmstart blocked V.4.4.

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

Engelbert Huber ber...@rolmail.net changed:

   What|Removed |Added

   Priority|medium  |high

--- Comment #1 from Engelbert Huber ber...@rolmail.net ---
I had proved to repair Programm = NOT difference
I had new installed prg = NOT Difference

deinstalled, cancelled et installed lastV.4.3.x.x  = Ok

Is precedet Java Update with Problems?!

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


  1   2   3   4   >