[Libreoffice-commits] .: sw/source

2012-09-30 Thread Libreoffice Gerrit user
 sw/source/ui/dbui/dbmgr.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 3f84462b47f070b4921fdd5fdab8397ab1439fd6
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sun Sep 30 08:35:03 2012 +0200

fdo#31405 CommandType is a LONG, so use a sal_Int32 to retrieve it

Else, operator= flat out refuses to extract it, even though the 
particular value in this particular call would fit.
Also OSL_VERIFY the result of = (instead of ignoring it) to facilitate 
future detection of similar problem

Change-Id: I859c38c3589dc9e9ef5bdd882663aa3386a43237

diff --git a/sw/source/ui/dbui/dbmgr.cxx b/sw/source/ui/dbui/dbmgr.cxx
index 563f888..f8824ae 100644
--- a/sw/source/ui/dbui/dbmgr.cxx
+++ b/sw/source/ui/dbui/dbmgr.cxx
@@ -2381,13 +2381,13 @@ void SwNewDBMgr::ExecuteFormLetter( SwWrtShell rSh,
 rtl::OUString sDataSource, sDataTableOrQuery;
 SequenceAny aSelection;
 
-sal_Int16 nCmdType = CommandType::TABLE;
+sal_Int32 nCmdType = CommandType::TABLE;
 uno::Reference XConnection xConnection;
 
 ODataAccessDescriptor aDescriptor(rProperties);
 sDataSource = aDescriptor.getDataSource();
-aDescriptor[daCommand]  = sDataTableOrQuery;
-aDescriptor[daCommandType]  = nCmdType;
+OSL_VERIFY(aDescriptor[daCommand]  = sDataTableOrQuery);
+OSL_VERIFY(aDescriptor[daCommandType]  = nCmdType);
 
 if ( aDescriptor.has(daSelection) )
 aDescriptor[daSelection] = aSelection;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Change in core[feature/killsdf]: Make Po classes robuster

2012-09-30 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/728

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/28/728/1

Make Po classes robuster

-Make PoOfstream\PoIfstream classes for
checked po input\output
-Make copyability obvious
-Handle runtime errors with exceptions
-Use assertions to define exceptations
for programmers
Plus some correction
-Use simplier indentation
-In renewpo.cxx, define sdf file as a tempfile
instead of make it in current location
-Use constructor to renew poheader
-Use const where needed

Change-Id: Ic11ce3b9eee9a9fa9fbc4ccda154623160ad9d8a
---
M l10ntools/inc/po.hxx
M l10ntools/source/localize.cxx
M l10ntools/source/merge.cxx
M l10ntools/source/po.cxx
M l10ntools/source/renewpo.cxx
5 files changed, 426 insertions(+), 132 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/728
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic11ce3b9eee9a9fa9fbc4ccda154623160ad9d8a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com

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


[PATCH] Change in core[feature/killsdf]: Move setting of po msgid to constructor

2012-09-30 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/729

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/29/729/1

Move setting of po msgid to constructor

because this is part of initialization

Change-Id: If6ebe46cea93e378c9060f2c3ced09ab44a3d82a
---
M l10ntools/source/po.cxx
1 file changed, 3 insertions(+), 9 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/729
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If6ebe46cea93e378c9060f2c3ced09ab44a3d82a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com

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


[PATCH] Change in core[feature/killsdf]: Make error message clearer in localize

2012-09-30 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/730

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/30/730/1

Make error message clearer in localize

which is written out when one of executables
writes out invalid sdf line

Change-Id: I167b31bf0f550222accdda8ee5a03d8e4a742d63
---
M l10ntools/source/localize.cxx
1 file changed, 5 insertions(+), 1 deletion(-)


--
To view, visit https://gerrit.libreoffice.org/730
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I167b31bf0f550222accdda8ee5a03d8e4a742d63
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com

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


[Libreoffice-commits] .: Module_cross_tail_build.mk

2012-09-30 Thread Libreoffice Gerrit user
 Module_cross_tail_build.mk |4 
 1 file changed, 4 deletions(-)

New commits:
commit 037ff8fac75db980a3bc44092df243aadaad3d38
Author: David Tardon dtar...@redhat.com
Date:   Sun Sep 30 13:21:35 2012 +0200

gettext depends on sal...

Change-Id: Iec26cfb2f6715b12bed290d72e3a013d6a980544

diff --git a/Module_cross_tail_build.mk b/Module_cross_tail_build.mk
index e15848b..429891b 100644
--- a/Module_cross_tail_build.mk
+++ b/Module_cross_tail_build.mk
@@ -73,7 +73,6 @@ $(eval $(call gb_Module_add_moduledirs,cross_tail_build,\
remotebridges \
ridljar \
rsc \
-   sal \
salhelper \
sax \
shell \
@@ -93,9 +92,6 @@ $(eval $(call gb_Module_add_moduledirs,cross_tail_build,\
unotest \
unotools \
ure \
-   $(if $(filter NATIVE,$(BUILD_TYPE)),\
-   xml2cmp \
-   ) \
xmlhelp \
xmlreader \
 ))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Change in core[feature/killsdf]: Use ascii charachters to seperate qtzi

2012-09-30 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/731

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/31/731/1

Use ascii charachters to seperate qtzi

Because previous used charachters cause warnings

Change-Id: I8715fc2a05df9d84b34945618184c99d54de6579
---
M l10ntools/source/merge.cxx
1 file changed, 2 insertions(+), 2 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/731
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8715fc2a05df9d84b34945618184c99d54de6579
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com

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


[Libreoffice-commits] .: sw/qa

2012-09-30 Thread Libreoffice Gerrit user
 sw/qa/extras/rtfimport/rtfimport.cxx |   70 ++-
 1 file changed, 13 insertions(+), 57 deletions(-)

New commits:
commit 023ea2a73f17303fcc0895e807413b1e54ae7ec2
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Sep 30 15:04:29 2012 +0200

sw: cleanup in rtfimport test

Change-Id: Idef3ee3fa246b314c4b6b8a59b2b366dadfb679a

diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx 
b/sw/qa/extras/rtfimport/rtfimport.cxx
index 96503a7..5258522 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -319,14 +319,8 @@ void Test::testN750757()
 uno::Referencecontainer::XEnumerationAccess 
xParaEnumAccess(xTextDocument-getText(), uno::UNO_QUERY);
 uno::Referencecontainer::XEnumeration xParaEnum = 
xParaEnumAccess-createEnumeration();
 
-uno::Referencebeans::XPropertySet xPropertySet(xParaEnum-nextElement(), 
uno::UNO_QUERY);
-sal_Bool bValue;
-xPropertySet-getPropertyValue(ParaContextMargin) = bValue;
-CPPUNIT_ASSERT_EQUAL(sal_Bool(false), bValue);
-
-xPropertySet.set(xParaEnum-nextElement(), uno::UNO_QUERY);
-xPropertySet-getPropertyValue(ParaContextMargin) = bValue;
-CPPUNIT_ASSERT_EQUAL(sal_Bool(true), bValue);
+CPPUNIT_ASSERT_EQUAL(sal_Bool(false), 
getPropertysal_Bool(xParaEnum-nextElement(), ParaContextMargin));
+CPPUNIT_ASSERT_EQUAL(sal_Bool(true), 
getPropertysal_Bool(xParaEnum-nextElement(), ParaContextMargin));
 }
 
 void Test::testFdo45563()
@@ -355,17 +349,11 @@ void Test::testFdo43965()
 uno::Referencecontainer::XEnumerationAccess 
xRangeEnumAccess(xParaEnum-nextElement(), uno::UNO_QUERY);
 uno::Referencecontainer::XEnumeration xRangeEnum = 
xRangeEnumAccess-createEnumeration();
 uno::Referencebeans::XPropertySet 
xPropertySet(xRangeEnum-nextElement(), uno::UNO_QUERY);
-sal_Int32 nValue;
-xPropertySet-getPropertyValue(CharEscapement) = nValue;
-CPPUNIT_ASSERT_EQUAL(sal_Int32(36), nValue);
-xPropertySet-getPropertyValue(CharEscapementHeight) = nValue;
-CPPUNIT_ASSERT_EQUAL(sal_Int32(100), nValue);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(36), getPropertysal_Int32(xPropertySet, 
CharEscapement));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(100), getPropertysal_Int32(xPropertySet, 
CharEscapementHeight));
 
 // Second paragraph: Word vs Writer border default problem
-xPropertySet.set(xParaEnum-nextElement(), uno::UNO_QUERY);
-table::BorderLine2 aBorder;
-xPropertySet-getPropertyValue(TopBorder) = aBorder;
-CPPUNIT_ASSERT_EQUAL(sal_uInt32(26), aBorder.LineWidth);
+CPPUNIT_ASSERT_EQUAL(sal_uInt32(26), 
getPropertytable::BorderLine2(xParaEnum-nextElement(), 
TopBorder).LineWidth);
 
 // Finally, make sure that we have two pages
 CPPUNIT_ASSERT_EQUAL(2, getPages());
@@ -378,10 +366,7 @@ void Test::testN751020()
 uno::Referencecontainer::XEnumerationAccess 
xParaEnumAccess(xTextDocument-getText(), uno::UNO_QUERY);
 uno::Referencecontainer::XEnumeration xParaEnum = 
xParaEnumAccess-createEnumeration();
 CPPUNIT_ASSERT(xParaEnum-hasMoreElements());
-uno::Referencebeans::XPropertySet xPropertySet(xParaEnum-nextElement(), 
uno::UNO_QUERY);
-sal_Int32 nValue = 0;
-xPropertySet-getPropertyValue(ParaBottomMargin) = nValue;
-CPPUNIT_ASSERT_EQUAL(sal_Int32(TWIP_TO_MM100(200)), nValue);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(TWIP_TO_MM100(200)), 
getPropertysal_Int32(xParaEnum-nextElement(), ParaBottomMargin));
 }
 
 void Test::testFdo47326()
@@ -400,10 +385,7 @@ void Test::testFdo47036()
 int nAtCharacter = 0;
 for (int i = 0; i  xDraws-getCount(); ++i)
 {
-uno::Referencebeans::XPropertySet 
xPropertySet(xDraws-getByIndex(i), uno::UNO_QUERY);
-text::TextContentAnchorType eValue;
-xPropertySet-getPropertyValue(AnchorType) = eValue;
-if (eValue == text::TextContentAnchorType_AT_CHARACTER)
+if (getPropertytext::TextContentAnchorType(xDraws-getByIndex(i), 
AnchorType) == text::TextContentAnchorType_AT_CHARACTER)
 nAtCharacter++;
 }
 // The image at the document start was ignored.
@@ -427,12 +409,7 @@ void Test::testFdo46955()
 uno::Referencecontainer::XEnumerationAccess 
xRangeEnumAccess(xParaEnum-nextElement(), uno::UNO_QUERY);
 uno::Referencecontainer::XEnumeration xRangeEnum = 
xRangeEnumAccess-createEnumeration();
 while (xRangeEnum-hasMoreElements())
-{
-uno::Referencebeans::XPropertySet 
xPropertySet(xRangeEnum-nextElement(), uno::UNO_QUERY);
-sal_Int16 nValue;
-xPropertySet-getPropertyValue(CharCaseMap) = nValue;
-CPPUNIT_ASSERT_EQUAL(style::CaseMap::UPPERCASE, nValue);
-}
+CPPUNIT_ASSERT_EQUAL(style::CaseMap::UPPERCASE, 
getPropertysal_Int16(xRangeEnum-nextElement(), CharCaseMap));
 }
 }
 
@@ -440,8 +417,7 @@ void Test::testFdo45394()
 {
 load(fdo45394.rtf);
 
-uno::Referencebeans::XPropertySet 

[Libreoffice-commits] .: sw/qa

2012-09-30 Thread Libreoffice Gerrit user
 sw/qa/extras/rtfimport/rtfimport.cxx |8 +---
 1 file changed, 1 insertion(+), 7 deletions(-)

New commits:
commit f9453275d2710f9d3e9a4cc1285a57db334a5e2e
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Sep 30 15:11:05 2012 +0200

sw: more testcase cleanup

Change-Id: I39681fbf57c828e5d6e80ae7c3155f2f60410a1a

diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx 
b/sw/qa/extras/rtfimport/rtfimport.cxx
index 5258522..35a3e58 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -575,14 +575,8 @@ void Test::testFdo47764()
 {
 load(fdo47764.rtf);
 
-uno::Referencetext::XTextDocument xTextDocument(mxComponent, 
uno::UNO_QUERY);
-uno::Referencecontainer::XEnumerationAccess 
xParaEnumAccess(xTextDocument-getText(), uno::UNO_QUERY);
-uno::Referencecontainer::XEnumeration xParaEnum = 
xParaEnumAccess-createEnumeration();
-uno::Referencebeans::XPropertySet xPropertySet(xParaEnum-nextElement(), 
uno::UNO_QUERY);
-sal_Int32 nValue = 0;
 // \cbpat with zero argument should mean the auto (-1) color, not a 
default color (black)
-xPropertySet-getPropertyValue(ParaBackColor) = nValue;
-CPPUNIT_ASSERT_EQUAL(sal_Int32(-1), nValue);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(-1), 
getPropertysal_Int32(getParagraph(1), ParaBackColor));
 }
 
 void Test::testFdo38786()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sw/qa

2012-09-30 Thread Libreoffice Gerrit user
 sw/qa/extras/rtfimport/rtfimport.cxx |   17 +
 1 file changed, 5 insertions(+), 12 deletions(-)

New commits:
commit 6ce7a5bd5709206f0f60f68d11c6040ad425b947
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Sep 30 15:28:47 2012 +0200

sw: clean up one more test

Change-Id: Icfcdbedaf6b123fc726e2298ac47698940b36091

diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx 
b/sw/qa/extras/rtfimport/rtfimport.cxx
index 35a3e58..30e03ce 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -605,19 +605,12 @@ void Test::testFdo49501()
 
 uno::Referencebeans::XPropertySet 
xStyle(getStyles(PageStyles)-getByName(Default), uno::UNO_QUERY);
 
-sal_Bool bIsLandscape = sal_False;
-xStyle-getPropertyValue(IsLandscape) = bIsLandscape;
-CPPUNIT_ASSERT_EQUAL(sal_True, bIsLandscape);
+CPPUNIT_ASSERT_EQUAL(sal_True, getPropertysal_Bool(xStyle, 
IsLandscape));
 sal_Int32 nExpected(TWIP_TO_MM100(567));
-sal_Int32 nValue = 0;
-xStyle-getPropertyValue(LeftMargin) = nValue;
-CPPUNIT_ASSERT_EQUAL(nExpected, nValue);
-xStyle-getPropertyValue(RightMargin) = nValue;
-CPPUNIT_ASSERT_EQUAL(nExpected, nValue);
-xStyle-getPropertyValue(TopMargin) = nValue;
-CPPUNIT_ASSERT_EQUAL(nExpected, nValue);
-xStyle-getPropertyValue(BottomMargin) = nValue;
-CPPUNIT_ASSERT_EQUAL(nExpected, nValue);
+CPPUNIT_ASSERT_EQUAL(nExpected, getPropertysal_Int32(xStyle, 
LeftMargin));
+CPPUNIT_ASSERT_EQUAL(nExpected, getPropertysal_Int32(xStyle, 
RightMargin));
+CPPUNIT_ASSERT_EQUAL(nExpected, getPropertysal_Int32(xStyle, 
TopMargin));
+CPPUNIT_ASSERT_EQUAL(nExpected, getPropertysal_Int32(xStyle, 
BottomMargin));
 }
 
 void Test::testFdo49271()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Replace usage of rtl_*Memory with equivalent from string.h

2012-09-30 Thread Arnaud Versini (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/732

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/32/732/1

Replace usage of rtl_*Memory with equivalent from string.h

Change-Id: I477532cd14cb362853b800746968469ec32cbed7
---
M accessibility/source/standard/vclxaccessibletoolbox.cxx
M animations/source/animcore/animcore.cxx
M basctl/source/dlged/dlged.cxx
M basebmp/source/bitmapdevice.cxx
M basegfx/inc/basegfx/raster/bpixelraster.hxx
M basegfx/inc/basegfx/raster/bzpixelraster.hxx
M basic/source/basmgr/basmgr.cxx
M basic/source/runtime/iosys.cxx
M basic/source/uno/scriptcont.cxx
M binaryurp/source/writer.cxx
M bridges/source/jni_uno/nativethreadpool.cxx
M canvas/source/directx/dx_9rm.cxx
M canvas/source/directx/dx_surfacebitmap.cxx
M canvas/source/null/null_canvasfont.cxx
M chart2/source/controller/main/ChartRenderer.cxx
M chart2/source/model/main/ChartModel.cxx
M chart2/source/view/main/ChartView.cxx
M codemaker/source/codemaker/global.cxx
M cppu/source/typelib/static_types.cxx
M cppu/source/uno/eq.hxx
M dbaccess/source/core/api/RowSet.cxx
M dbaccess/source/core/api/SingleSelectQueryComposer.cxx
M dbaccess/source/core/api/TableDeco.cxx
M dbaccess/source/core/api/querycomposer.cxx
M dbaccess/source/core/api/querydescriptor.cxx
M dbaccess/source/core/api/table.cxx
M dbaccess/source/core/dataaccess/ContentHelper.cxx
M dbaccess/source/core/dataaccess/databasecontext.cxx
M dbaccess/source/ui/browser/sbagrid.cxx
M dbaccess/source/ui/querydesign/JoinExchange.cxx
M desktop/source/deployment/misc/dp_misc.cxx
M desktop/source/deployment/registry/configuration/dp_configuration.cxx
M desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx
M dtrans/source/win32/dtobj/FmtFilter.cxx
M dtrans/source/win32/misc/ImplHelper.cxx
M dtrans/source/win32/workbench/test_wincb.cxx
M editeng/source/uno/unofield.cxx
M editeng/source/uno/unotext.cxx
M extensions/source/ole/oleobjw.cxx
M extensions/source/update/feed/updatefeed.cxx
M extensions/workben/testpgp.cxx
M forms/qa/integration/forms/CellBinding.java
M forms/qa/integration/forms/DocumentType.java
M forms/qa/integration/forms/DocumentViewHelper.java
M forms/qa/integration/forms/FormControlTest.java
M forms/qa/integration/forms/RadioButtons.java
M forms/qa/org/openoffice/xforms/Instance.java
M forms/source/component/Columns.cxx
M forms/source/component/imgprod.cxx
M forms/source/misc/InterfaceContainer.cxx
M forms/source/misc/limitedformats.cxx
M forms/source/richtext/parametrizedattributedispatcher.cxx
M forms/source/richtext/richtextcontrol.cxx
M forms/source/richtext/richtextimplcontrol.hxx
M forms/source/richtext/richtextmodel.cxx
M forms/source/solar/component/navbarcontrol.cxx
M framework/source/fwi/uielement/constitemcontainer.cxx
M framework/source/fwi/uielement/rootitemcontainer.cxx
M jvmfwk/source/framework.cxx
M lotuswordpro/source/filter/xfilter/xfbase64.cxx
M lotuswordpro/source/filter/xfilter/xfcolor.cxx
M lotuswordpro/source/filter/xfilter/xfdate.cxx
M lotuswordpro/source/filter/xfilter/xflineheight.hxx
M lotuswordpro/source/filter/xfilter/xfutil.hxx
M package/source/zipapi/MemoryByteGrabber.hxx
M rdbmaker/inc/codemaker/registry.hxx
M rdbmaker/source/rdbmaker/typeblop.cxx
M registry/source/regimpl.cxx
M reportdesign/source/core/api/ReportDefinition.cxx
M reportdesign/source/core/api/Section.cxx
M rsc/source/tools/rsctools.cxx
M sal/inc/rtl/ustring.hxx
M sal/osl/w32/pipe.c
M sal/osl/w32/profile.cxx
M sal/rtl/source/byteseq.cxx
M sal/rtl/source/cipher.cxx
M sal/rtl/source/digest.cxx
M sal/rtl/source/strbuf.cxx
M sal/rtl/source/string.cxx
M sal/rtl/source/ustrbuf.cxx
M sal/rtl/source/ustring.cxx
M sdext/source/pdfimport/filterdet.cxx
M sdext/source/pdfimport/pdfparse/pdfentries.cxx
M sdext/source/pdfimport/pdfparse/pdfparse.cxx
M sfx2/source/control/thumbnailviewacc.cxx
M sfx2/source/explorer/nochaos.cxx
M starmath/source/mathmlexport.cxx
M starmath/source/mathmlimport.cxx
M starmath/source/unomodel.cxx
M store/source/store.cxx
M store/workben/t_base.cxx
M store/workben/t_file.cxx
M svtools/source/control/valueacc.cxx
M svtools/source/filter/filter.cxx
M svtools/source/graphic/graphic.cxx
M svtools/source/misc/transfer.cxx
M svx/source/accessibility/AccessibleShape.cxx
M svx/source/dialog/dlgctrl.cxx
M svx/source/fmcomp/fmgridif.cxx
M svx/source/fmcomp/gridcell.cxx
M svx/source/unodraw/unopage.cxx
M svx/source/unodraw/unoshap2.cxx
M svx/source/unodraw/unoshap3.cxx
M svx/source/unodraw/unoshape.cxx
M sw/source/core/undo/undraw.cxx
M toolkit/inc/toolkit/helper/macros.hxx
M toolkit/source/awt/vclxbitmap.cxx
M toolkit/source/awt/vclxcontainer.cxx
M toolkit/source/awt/vclxdevice.cxx
M toolkit/source/awt/vclxfont.cxx
M toolkit/source/awt/vclxgraphics.cxx
M toolkit/source/awt/vclxmenu.cxx
M toolkit/source/awt/vclxpointer.cxx
M toolkit/source/awt/vclxprinter.cxx
M toolkit/source/awt/vclxregion.cxx
M toolkit/source/awt/vclxtoolkit.cxx
M toolkit/source/awt/vclxwindow.cxx
M 

[Libreoffice-commits] .: sw/qa

2012-09-30 Thread Libreoffice Gerrit user
 sw/qa/extras/rtfimport/rtfimport.cxx |   65 +--
 1 file changed, 10 insertions(+), 55 deletions(-)

New commits:
commit 61395b51896f091d002896fc6fe0f5d2c8624590
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Sep 30 15:50:53 2012 +0200

sw: finish cleanup of rtfimport test

Change-Id: I10433c3c40a0c648bd651ed786ecd5523bf58f61

diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx 
b/sw/qa/extras/rtfimport/rtfimport.cxx
index 30e03ce..61813f1 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -617,15 +617,7 @@ void Test::testFdo49271()
 {
 load(fdo49271.rtf);
 
-uno::Referencetext::XTextDocument xTextDocument(mxComponent, 
uno::UNO_QUERY);
-uno::Referencecontainer::XEnumerationAccess 
xParaEnumAccess(xTextDocument-getText(), uno::UNO_QUERY);
-uno::Referencecontainer::XEnumeration xParaEnum = 
xParaEnumAccess-createEnumeration();
-xParaEnum-nextElement();
-uno::Referencebeans::XPropertySet xPropertySet(xParaEnum-nextElement(), 
uno::UNO_QUERY);
-float fValue = 0;
-xPropertySet-getPropertyValue(CharHeight) = fValue;
-
-CPPUNIT_ASSERT_EQUAL(25.f, fValue);
+CPPUNIT_ASSERT_EQUAL(25.f, getPropertyfloat(getParagraph(2), 
CharHeight));
 }
 
 void Test::testFdo49692()
@@ -642,12 +634,7 @@ void Test::testFdo49692()
 const beans::PropertyValue rProp = aProps[i];
 
 if (rProp.Name == Suffix)
-{
-OUString sValue;
-rProp.Value = sValue;
-
-CPPUNIT_ASSERT_EQUAL(sal_Int32(0), sValue.getLength());
-}
+CPPUNIT_ASSERT_EQUAL(sal_Int32(0), 
rProp.Value.getOUString().getLength());
 }
 }
 
@@ -655,54 +642,28 @@ void Test::testFdo45190()
 {
 load(fdo45190.rtf);
 
-uno::Referencetext::XTextDocument xTextDocument(mxComponent, 
uno::UNO_QUERY);
-uno::Referencecontainer::XEnumerationAccess 
xParaEnumAccess(xTextDocument-getText(), uno::UNO_QUERY);
-uno::Referencecontainer::XEnumeration xParaEnum = 
xParaEnumAccess-createEnumeration();
-
 // inherited \fi should be reset
-uno::Referencebeans::XPropertySet xPropertySet(xParaEnum-nextElement(), 
uno::UNO_QUERY);
-sal_Int32 nValue = 0;
-xPropertySet-getPropertyValue(ParaFirstLineIndent) = nValue;
-CPPUNIT_ASSERT_EQUAL(sal_Int32(0), nValue);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(0), getPropertysal_Int32(getParagraph(1), 
ParaFirstLineIndent));
 
 // but direct one not
-xPropertySet.set(xParaEnum-nextElement(), uno::UNO_QUERY);
-xPropertySet-getPropertyValue(ParaFirstLineIndent) = nValue;
-CPPUNIT_ASSERT_EQUAL(sal_Int32(TWIP_TO_MM100(-100)), nValue);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(TWIP_TO_MM100(-100)), 
getPropertysal_Int32(getParagraph(2), ParaFirstLineIndent));
 }
 
 void Test::testFdo50539()
 {
 load(fdo50539.rtf);
 
-uno::Referencetext::XTextDocument xTextDocument(mxComponent, 
uno::UNO_QUERY);
-uno::Referencecontainer::XEnumerationAccess 
xParaEnumAccess(xTextDocument-getText(), uno::UNO_QUERY);
-uno::Referencecontainer::XEnumeration xParaEnum = 
xParaEnumAccess-createEnumeration();
-uno::Referencecontainer::XEnumerationAccess 
xRunEnumAccess(xParaEnum-nextElement(), uno::UNO_QUERY);
-uno::Referencecontainer::XEnumeration xRunEnum = 
xRunEnumAccess-createEnumeration();
-uno::Referencebeans::XPropertySet xPropertySet(xRunEnum-nextElement(), 
uno::UNO_QUERY);
-sal_Int32 nValue = 0;
 // \chcbpat with zero argument should mean the auto (-1) color, not a 
default color (black)
-xPropertySet-getPropertyValue(CharBackColor) = nValue;
-CPPUNIT_ASSERT_EQUAL(sal_Int32(-1), nValue);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(-1), 
getPropertysal_Int32(getRun(getParagraph(1), 1), CharBackColor));
 }
 
 void Test::testFdo50665()
 {
 load(fdo50665.rtf);
-uno::Referencetext::XTextDocument xTextDocument(mxComponent, 
uno::UNO_QUERY);
-uno::Referencecontainer::XEnumerationAccess 
xParaEnumAccess(xTextDocument-getText(), uno::UNO_QUERY);
-uno::Referencecontainer::XEnumeration 
xParaEnum(xParaEnumAccess-createEnumeration());
-uno::Referencecontainer::XEnumerationAccess 
xRunEnumAccess(xParaEnum-nextElement(), uno::UNO_QUERY);
-uno::Referencecontainer::XEnumeration 
xRunEnum(xRunEnumAccess-createEnumeration());
-
 // Access the second run, which is a textfield
-xRunEnum-nextElement();
-uno::Referencebeans::XPropertySet xRun(xRunEnum-nextElement(), 
uno::UNO_QUERY);
-OUString aValue;
-xRun-getPropertyValue(CharFontName) = aValue;
+uno::Referencebeans::XPropertySet xRun(getRun(getParagraph(1), 2), 
uno::UNO_QUERY);
 // This used to be the default, as character properties were ignored.
-CPPUNIT_ASSERT_EQUAL(OUString(Book Antiqua), aValue);
+CPPUNIT_ASSERT_EQUAL(OUString(Book Antiqua), getPropertyOUString(xRun, 
CharFontName));
 }
 
 void Test::testFdo49659()
@@ -717,12 +678,8 @@ void Test::testFdo49659()
 // The graphic was also empty
 

[Libreoffice-commits] .: writerfilter/source

2012-09-30 Thread Libreoffice Gerrit user
 writerfilter/source/dmapper/DomainMapper.cxx |3 ---
 1 file changed, 3 deletions(-)

New commits:
commit e8103258e2c744acbcb74bb0b90324d50cc880a5
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Sep 30 16:01:54 2012 +0200

writerfilter: unused includes in DomainMapper

Change-Id: Ia84271c5fe7064bfa2d71b84da9fa4d9df945d51

diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index cfd8dad..8b51034 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -54,12 +54,9 @@
 #include com/sun/star/text/WritingMode.hpp
 #include com/sun/star/text/WritingMode2.hpp
 #include com/sun/star/text/XFootnote.hpp
-#include com/sun/star/style/NumberingType.hpp
 #include comphelper/types.hxx
 #include comphelper/storagehelper.hxx
 
-#include rtl/ustring.hxx
-#include tools/color.hxx
 #include CellColorHandler.hxx
 #include SectionColumnHandler.hxx
 #include GraphicHelpers.hxx
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Change in core[feature/killsdf]: Add correct input for helpex

2012-09-30 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/733

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/33/733/1

Add correct input for helpex

Helpex waits for a file which contains path
of po file not a path directly
Delete unneeded slash

Change-Id: I890f6a51ebef1ae40647859b11ab4c46c02eb13b
---
M solenv/gbuild/ExtensionTarget.mk
1 file changed, 6 insertions(+), 3 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/733
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I890f6a51ebef1ae40647859b11ab4c46c02eb13b
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com

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


Replace usage of rtl_*Memory with equivalent from string.h

2012-09-30 Thread Arnaud Versini (via Code Review)
Arnaud Versini has abandoned this change.

Change subject: Replace usage of rtl_*Memory with equivalent from string.h
..


Patch Set 1: Abandoned

--
To view, visit https://gerrit.libreoffice.org/732
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: I477532cd14cb362853b800746968469ec32cbed7
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Arnaud Versini arnaud.vers...@gmail.com
Gerrit-Reviewer: Arnaud Versini arnaud.vers...@gmail.com
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] Change in core[feature/killsdf]: Correct escaping tags

2012-09-30 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/735

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/35/735/1

Correct escaping tags

which worked wrong with some language like Asturian

Change-Id: Icd5939316ac84a3e569a9cbc04e38edda59dead1
---
M l10ntools/source/po.cxx
1 file changed, 3 insertions(+), 1 deletion(-)


--
To view, visit https://gerrit.libreoffice.org/735
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icd5939316ac84a3e569a9cbc04e38edda59dead1
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com

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


[Libreoffice-commits] .: extras/source

2012-09-30 Thread Libreoffice Gerrit user
 extras/source/autotext/lang/pt-BR/acor/DocumentList.xml   |1 
 extras/source/autotext/lang/pt-BR/acor/WordExceptList.xml |   34 +++---
 2 files changed, 18 insertions(+), 17 deletions(-)

New commits:
commit 3f3da5dff94412b432c0cd8abc2487c8b8e4
Author: Olivier Hallot olivier.hal...@alta.org.br
Date:   Sat Sep 29 16:21:02 2012 -0300

Update in Brazilian autocorrection

Change-Id: Ifcd7410f659a76ac34f18bb561b2eaffa6ecbd3d
Reviewed-on: https://gerrit.libreoffice.org/724
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/extras/source/autotext/lang/pt-BR/acor/DocumentList.xml 
b/extras/source/autotext/lang/pt-BR/acor/DocumentList.xml
index 13d65e3..22c5198 100644
--- a/extras/source/autotext/lang/pt-BR/acor/DocumentList.xml
+++ b/extras/source/autotext/lang/pt-BR/acor/DocumentList.xml
@@ -1012,6 +1012,7 @@
 block-list:block block-list:abbreviated-name=maxi desvalorizações 
block-list:name=maxidesvalorizações/
 block-list:block block-list:abbreviated-name=maxucar 
block-list:name=machucar/
 block-list:block block-list:abbreviated-name=maz block-list:name=mas/
+block-list:block block-list:abbreviated-name=mea culpa 
block-list:name=mea-culpa/
 block-list:block block-list:abbreviated-name=mecher 
block-list:name=mexer/
 block-list:block block-list:abbreviated-name=mecherica 
block-list:name=mexerica/
 block-list:block block-list:abbreviated-name=mecherico 
block-list:name=mexerico/
diff --git a/extras/source/autotext/lang/pt-BR/acor/WordExceptList.xml 
b/extras/source/autotext/lang/pt-BR/acor/WordExceptList.xml
index 45c2415..969d472 100644
--- a/extras/source/autotext/lang/pt-BR/acor/WordExceptList.xml
+++ b/extras/source/autotext/lang/pt-BR/acor/WordExceptList.xml
@@ -1,20 +1,20 @@
 ?xml version=1.0 encoding=UTF-8?
 block-list:block-list 
xmlns:block-list=http://openoffice.org/2001/block-list;
-block-list:block block-list:abbreviated-name=CDs/
-block-list:block block-list:abbreviated-name=DJe/
-block-list:block block-list:abbreviated-name=GHz/
-block-list:block block-list:abbreviated-name=GPa/
-block-list:block block-list:abbreviated-name=GHh/
-block-list:block block-list:abbreviated-name=HQs/
-block-list:block block-list:abbreviated-name=MHz/
-block-list:block block-list:abbreviated-name=MPa/
-block-list:block block-list:abbreviated-name=MWh/
-block-list:block block-list:abbreviated-name=MWp/
-block-list:block block-list:abbreviated-name=NCr/
-block-list:block block-list:abbreviated-name=NCz/
-block-list:block block-list:abbreviated-name=PMs/
-block-list:block block-list:abbreviated-name=THz/
-block-list:block block-list:abbreviated-name=TPa/
-block-list:block block-list:abbreviated-name=TVs/
-block-list:block block-list:abbreviated-name=TWh/
+block-list:block block-list:abbreviated-name=CDs/
+block-list:block block-list:abbreviated-name=DJe/
+block-list:block block-list:abbreviated-name=GHz/
+block-list:block block-list:abbreviated-name=GPa/
+block-list:block block-list:abbreviated-name=GHh/
+block-list:block block-list:abbreviated-name=HQs/
+block-list:block block-list:abbreviated-name=MHz/
+block-list:block block-list:abbreviated-name=MPa/
+block-list:block block-list:abbreviated-name=MWh/
+block-list:block block-list:abbreviated-name=MWp/
+block-list:block block-list:abbreviated-name=NCr/
+block-list:block block-list:abbreviated-name=NCz/
+block-list:block block-list:abbreviated-name=PMs/
+block-list:block block-list:abbreviated-name=THz/
+block-list:block block-list:abbreviated-name=TPa/
+block-list:block block-list:abbreviated-name=TVs/
+block-list:block block-list:abbreviated-name=TWh/
 /block-list:block-list
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/Executable_uiex.mk l10ntools/prj

2012-09-30 Thread Libreoffice Gerrit user
 l10ntools/Executable_uiex.mk |1 +
 l10ntools/prj/build.lst  |2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit a6e55d489b611e8dedf001c7897b6b60519fb89a
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sat Sep 29 20:58:39 2012 +0200

Make l10ntools works with i18nregexp

Change-Id: I80d3dbc19856d518ed8a94dba227372f5f74ec47
Reviewed-on: https://gerrit.libreoffice.org/725
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/l10ntools/Executable_uiex.mk b/l10ntools/Executable_uiex.mk
index ca4d726..052f9d0 100644
--- a/l10ntools/Executable_uiex.mk
+++ b/l10ntools/Executable_uiex.mk
@@ -16,6 +16,7 @@ $(eval $(call gb_Executable_set_include,uiex,\
 
 $(eval $(call gb_Executable_use_libraries,uiex,\
 sal \
+i18nregexp \
 ))
 
 $(eval $(call gb_Executable_use_static_libraries,uiex,\
diff --git a/l10ntools/prj/build.lst b/l10ntools/prj/build.lst
index 5f7fca1..888b234 100644
--- a/l10ntools/prj/build.lst
+++ b/l10ntools/prj/build.lst
@@ -1,3 +1,3 @@
-tr l10ntools : EXPAT:expat LIBXSLT:libxslt sal NULL
+tr l10ntools : EXPAT:expat LIBXSLT:libxslt sal regexp NULL
 tr l10ntools   usr1-   all 
tr_mkout NULL
 tr l10ntools\prj   nmake   -   all 
tr_prj NULL
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-09-30 Thread Libreoffice Gerrit user
 l10ntools/source/po.cxx  |   10 ++
 l10ntools/source/renewpo.cxx |7 ---
 2 files changed, 10 insertions(+), 7 deletions(-)

New commits:
commit 9baaced8b636e23045495c9a018d0859a9df8e76
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sat Sep 29 21:01:30 2012 +0200

Not use initializer-list for vector

Change-Id: I6ed72b28be3ad00224cbf7308b4f27a6fb25e24e
Reviewed-on: https://gerrit.libreoffice.org/726
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index f433aab..b2082a7 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -338,10 +338,12 @@ void ImplFindAllTag(const OString 
rText,std::vectorOString o_vFoundTags)
 OString ImplEscapeTags(const OString rText)
 {
 typedef std::vectorOString StrVec;
-const StrVec vTagsForEscape =
-  { ahelp, link, item, emph, defaultinline,
-switchinline, caseinline, variable,
-bookmark_value, image, embedvar, alt };
+const OString vInitializer[] = {
+ahelp, link, item, emph, defaultinline,
+switchinline, caseinline, variable,
+bookmark_value, image, embedvar, alt };
+const StrVec vTagsForEscape( vInitializer,
+vInitializer + sizeof(vInitializer) / sizeof(vInitializer[0]) );
 StrVec vFoundTags;
 ImplFindAllTag(rText,vFoundTags);
 OString sResult = rText;
diff --git a/l10ntools/source/renewpo.cxx b/l10ntools/source/renewpo.cxx
index 398b23b..39152a7 100644
--- a/l10ntools/source/renewpo.cxx
+++ b/l10ntools/source/renewpo.cxx
@@ -116,9 +116,10 @@ void HandleLanguage(struct dirent* pLangEntry, const 
OString rPath,
 {
 sActTrans =;
 }
-const vectorPoEntry::TYPE vTypes = { PoEntry::TTEXT,
-   PoEntry::TQUICKHELPTEXT,
-   PoEntry::TTITLE };
+const PoEntry::TYPE vInitializer[] =
+{ PoEntry::TTEXT, PoEntry::TQUICKHELPTEXT, PoEntry::TTITLE };
+const vectorPoEntry::TYPE vTypes( vInitializer,
+vInitializer + sizeof(vInitializer) / sizeof(vInitializer[0]) );
 unsigned short nDummyBit = 0;
 for( unsigned nIndex=0; nIndexvTypes.size(); ++nIndex)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-09-30 Thread Libreoffice Gerrit user
 l10ntools/source/localize.cxx |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 4869d45d8e6ba43f422ee3aa05b7c0baca28d1e0
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Sep 30 12:47:56 2012 +0200

Make error message clearer in localize

which is written out when one of executables
writes out invalid sdf line

Change-Id: I167b31bf0f550222accdda8ee5a03d8e4a742d63
Reviewed-on: https://gerrit.libreoffice.org/730
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/l10ntools/source/localize.cxx b/l10ntools/source/localize.cxx
index 87ee83b..6bc92a8 100644
--- a/l10ntools/source/localize.cxx
+++ b/l10ntools/source/localize.cxx
@@ -299,7 +299,11 @@ void handleCommand(
 {
 if(aException == PoEntry::INVALIDSDFLINE)
 {
-std::cerr  executable  's input is invalid\n;
+std::cerr
+ executable
+ 's output is invalid:\n
+ sLine.replaceAll(\t,\\t).getStr()
+ std::endl;
 throw false; //TODO
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Update in Brazilian autocorrection

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/724

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/724
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ifcd7410f659a76ac34f18bb561b2eaffa6ecbd3d
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Olivier Hallot olivier.hal...@alta.org.br
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[PUSHED] Change in core[feature/killsdf]: Make l10ntools works with i18nregexp

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/725

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/725
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I80d3dbc19856d518ed8a94dba227372f5f74ec47
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-09-30 Thread Libreoffice Gerrit user
 l10ntools/source/merge.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f1cbd2dc05c6765754891a909ff53f1852a878a5
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Sep 30 13:11:54 2012 +0200

Use ascii charachters to seperate qtzi

Because previous used charachters cause warnings

Change-Id: I8715fc2a05df9d84b34945618184c99d54de6579
Reviewed-on: https://gerrit.libreoffice.org/731
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/l10ntools/source/merge.cxx b/l10ntools/source/merge.cxx
index 7e6c595..b9fe90f 100644
--- a/l10ntools/source/merge.cxx
+++ b/l10ntools/source/merge.cxx
@@ -265,8 +265,8 @@ MergeDataFile::MergeDataFile(
 InsertEntry(
 aActPo.getResourceType(), aActPo.getGroupId(),
 aActPo.getLocalId(), sHACK, qtz,
-sQTZText + ‖ + sExText, sQTZQHText + ‖ + sExQHText,
-sQTZTitle + ‖ + sExTitle, sFileName, bCaseSensitive );
+sQTZText + || + sExText, sQTZQHText + || + sExQHText,
+sQTZTitle + || + sExTitle, sFileName, bCaseSensitive );
 }
 }
 aPoInput.close();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Change in core[feature/killsdf]: Make Po classes robuster

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/728

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/728
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic11ce3b9eee9a9fa9fbc4ccda154623160ad9d8a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[PUSHED] Change in core[feature/killsdf]: Not use initializer-list for vector

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/726

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/726
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I6ed72b28be3ad00224cbf7308b4f27a6fb25e24e
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com
Gerrit-Reviewer: Zolnai Tamás zolnaitamas2...@gmail.com

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


[PUSHED] Change in core[feature/killsdf]: Move setting of po msgid to constructor

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/729

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/729
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: If6ebe46cea93e378c9060f2c3ced09ab44a3d82a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[PUSHED] Change in core[feature/killsdf]: Make error message clearer in localize

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/730

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/730
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I167b31bf0f550222accdda8ee5a03d8e4a742d63
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[PUSHED] Change in core[feature/killsdf]: Use ascii charachters to seperate qtzi

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/731

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/731
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I8715fc2a05df9d84b34945618184c99d54de6579
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[Libreoffice-commits] .: cross_tail_build/prj

2012-09-30 Thread Libreoffice Gerrit user
 cross_tail_build/prj/build.lst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 287050d68870a519161c649a4130d0e49a6c8beb
Author: David Tardon dtar...@redhat.com
Date:   Sun Sep 30 16:59:02 2012 +0200

add sal and xml2cmp back to build.pl deps

Change-Id: Ia5607c977958317f3aca9061553cbfedb35944fa

diff --git a/cross_tail_build/prj/build.lst b/cross_tail_build/prj/build.lst
index ec26db2..995bae7 100644
--- a/cross_tail_build/prj/build.lst
+++ b/cross_tail_build/prj/build.lst
@@ -1,2 +1,2 @@
-ctbcross_tail_build::  BERKELEYDB:berkeleydb BOOST:boost 
CPPUNIT:cppunit EXPAT:expat external ICU:icu LIBLANGTAG:liblangtag 
LIBXML2:libxml2 LIBXSLT:libxslt solenv soltools ZLIB:zlib NULL
+ctbcross_tail_build::  BERKELEYDB:berkeleydb BOOST:boost 
CPPUNIT:cppunit EXPAT:expat external ICU:icu LIBLANGTAG:liblangtag 
LIBXML2:libxml2 LIBXSLT:libxslt sal solenv soltools NATIVE:xml2cmp ZLIB:zlib 
NULL
 ctb tail_build\prj nmake - all ctb_prj   NULL
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - solenv/gbuild

2012-09-30 Thread Libreoffice Gerrit user
 solenv/gbuild/ExtensionTarget.mk |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 408acea40bf2e4dfaa5fc79779de0611b367128a
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Sep 30 16:02:39 2012 +0200

Add correct input for helpex

Helpex waits for a file which contains path
of po file not a path directly
Delete unneeded slash

Change-Id: I890f6a51ebef1ae40647859b11ab4c46c02eb13b
Reviewed-on: https://gerrit.libreoffice.org/733
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/solenv/gbuild/ExtensionTarget.mk b/solenv/gbuild/ExtensionTarget.mk
index 481c4b9..559e0cf 100644
--- a/solenv/gbuild/ExtensionTarget.mk
+++ b/solenv/gbuild/ExtensionTarget.mk
@@ -300,9 +300,9 @@ $(call gb_ExtensionTarget_get_rootdir,$(1))/help/$(5).done 
: \
 ifneq ($(strip $(gb_WITH_LANG)),)
 ifneq ($(filter-out en-US,$(5)),)
 $(call gb_ExtensionTarget_get_workdir,$(1))/help/$(5)/$(3) : \
-   POFILE := $(gb_POLOCATION)/$(5)/$(subst $(SRCDIR),,$(2))/$(subst 
/$(lastword $(subst /, ,$(3))),.po,$(3))
+   POFILE := $(gb_POLOCATION)/$(5)$(subst $(SRCDIR),,$(2))/$(subst 
/$(lastword $(subst /, ,$(3))),.po,$(3))
 $(call gb_ExtensionTarget_get_workdir,$(1))/help/$(5)/$(3) : \
-$(gb_POLOCATION)/$(5)/$(subst $(SRCDIR),,$(2))/$(subst /$(lastword 
$(subst /, ,$(3))),.po,$(3))
+$(gb_POLOCATION)/$(5)$(subst $(SRCDIR),,$(2))/$(subst /$(lastword 
$(subst /, ,$(3))),.po,$(3))
 endif
 endif
 $(call gb_ExtensionTarget_get_workdir,$(1))/help/$(5)/$(3) : \
@@ -314,8 +314,11 @@ $(call gb_ExtensionTarget_get_workdir,$(1))/help/$(5)/$(3) 
: \
$$(call gb_Helper_abbreviate_dirs, \
 mkdir -p $$(dir $$@)  \
 $(if $(filter-out en-US,$(5)), \
+MERGEINPUT=`$(gb_MKTEMP)`  \
+echo $$(POFILE)  {MERGEINPUT}  \
 $(gb_ExtensionTarget_HELPEXCOMMAND) -i $$ -o $$@ -l $(5) \
--m $$(POFILE), \
+-m {MERGEINPUT}  \
+rm -rf {MERGEINPUT}, \
 cp $$ $$@))
 
 endef
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-09-30 Thread Libreoffice Gerrit user
 l10ntools/source/po.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 004f4fae87fe4fe3c31948d55206291b6de64ba9
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Sep 30 16:33:47 2012 +0200

Correct escaping tags

which worked wrong with some language like Asturian

Change-Id: Icd5939316ac84a3e569a9cbc04e38edda59dead1
Reviewed-on: https://gerrit.libreoffice.org/735
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index 0649efe..f929ce7 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -330,7 +330,9 @@ void ImplFindAllTag(const OString 
rText,std::vectorOString o_vFoundTags)
 {
 ImplMinimize(sTemp,aRegExp,aRegs);
 o_vFoundTags.push_back(
-rText.copy(aRegs.start[0],aRegs.end[0]-aRegs.start[0]));
+OUStringToOString(
+sTemp.copy(aRegs.start[0],aRegs.end[0]-aRegs.start[0]),
+RTL_TEXTENCODING_UTF8));
 nStart = aRegs.end[0];
 memset(static_castvoid*(aRegs), 0, sizeof(re_registers));
 aRegExp.re_search(aRegs,nStart);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Change in core[feature/killsdf]: Add correct input for helpex

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/733

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/733
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I890f6a51ebef1ae40647859b11ab4c46c02eb13b
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[PUSHED] Change in core[feature/killsdf]: Correct escaping tags

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/735

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/735
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Icd5939316ac84a3e569a9cbc04e38edda59dead1
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[Libreoffice-commits] .: 2 commits - solenv/bin

2012-09-30 Thread Libreoffice Gerrit user
 solenv/bin/modules/installer.pm   |   72 -
 solenv/bin/modules/installer/profiles.pm  |   45 +++---
 solenv/bin/modules/installer/ziplist.pm   |   73 ++
 solenv/bin/modules/t/installer-profiles.t |   60 
 4 files changed, 154 insertions(+), 96 deletions(-)

New commits:
commit 5cc1d5ca954a594129bd81159a87f8dfb9bbffe7
Author: Tim Retout t...@retout.co.uk
Date:   Sun Sep 30 13:23:43 2012 +0100

installer::profiles: Test and rewrite sorting_profile

Change-Id: Ie3c9bddcb4760d2fe2195c1ca0de7520e57d705f

diff --git a/solenv/bin/modules/installer/profiles.pm 
b/solenv/bin/modules/installer/profiles.pm
index 7b621f7..3b99973 100644
--- a/solenv/bin/modules/installer/profiles.pm
+++ b/solenv/bin/modules/installer/profiles.pm
@@ -42,40 +42,33 @@ use installer::systemactions;
 # Sorting the content of a profile
 ###
 
-sub sorting_profile
-{
+sub sorting_profile {
 my ($profilesref) = @_;
 
-my @profile = ();
-my @definedsections = ();
+my @sections;
+my %section_content;
 
-for ( my $i = 0; $i = $#{$profilesref}; $i++ )
-{
+for ( my $i = 0; $i  @{$profilesref}; $i++ ) {
 my $line = ${$profilesref}[$i];
 
-if ( $line =~ /^\s*(\[.*\])\s*$/ )  # this is a section (every second 
line)
-{
-my $section = $1;
+# Skip unless this is a section (every second line)
+next unless ( $line =~ /^\s*(\[.*\])\s*$/ );
 
-if (! grep {$_ eq $section} @definedsections)
-{
-my $sectionline = $section . \n;
-push(@definedsections, $section);
-push(@profile, $sectionline);
+my $section = $1;
+my $next_line = ${$profilesref}[$i+1];
 
-for ( my $j = 0; $j = $#{$profilesref}; $j++ )
-{
-my $oneline = ${$profilesref}[$j];
-
installer::remover::remove_leading_and_ending_whitespaces(\$oneline);
-
-if ( $oneline eq $section )
-{
-my $nextline = ${$profilesref}[$j+1];
-push(@profile, $nextline);
-}
-}
-}
+if ( ! exists $section_content{$section} ) {
+push @sections, $section;
 }
+
+push @{ $section_content{$section} }, $next_line;
+}
+
+my @profile;
+
+for my $section (@sections) {
+push @profile, $section\n;
+push @profile, @{ $section_content{$section} };
 }
 
 return \@profile;
diff --git a/solenv/bin/modules/t/installer-profiles.t 
b/solenv/bin/modules/t/installer-profiles.t
new file mode 100644
index 000..841af14
--- /dev/null
+++ b/solenv/bin/modules/t/installer-profiles.t
@@ -0,0 +1,60 @@
+# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+#
+# The contents of this file are subject to the Mozilla Public License Version
+# 1.1 (the License); you may not use this file except in compliance with
+# the License or as specified alternatively below. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an AS IS basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+# for the specific language governing rights and limitations under the
+# License.
+#
+# Major Contributor(s):
+# [ Copyright (C) 2012 Tim Retout t...@retout.co.uk (initial developer) ]
+#
+# All Rights Reserved.
+#
+# For minor contributions see the git repository.
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either the GNU General Public License Version 3 or later (the GPLv3+), or
+# the GNU Lesser General Public License Version 3 or later (the LGPLv3+),
+# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+# instead of those above.
+
+use strict;
+use warnings;
+
+use Test::More;
+
+use lib '.';
+
+use installer::profiles;
+
+my @input = map { $_\n } split \n, 'END';
+  [foo]
+1
+NOT SEEN
+  [bar]
+3
+  [foo]
+2
+[bar]
+4
+END
+
+my @expected = map { $_\n } split \n, 'END';
+[foo]
+1
+2
+[bar]
+3
+4
+END
+
+my $result = installer::profiles::sorting_profile(\@input);
+
+is_deeply($result, \@expected);
+
+done_testing();
commit 665785c073f695922603854a9d2d5ecab4061ff0
Author: Tim Retout t...@retout.co.uk
Date:   Sun Sep 30 13:15:23 2012 +0100

installer: Create new read_ziplist function.

Change-Id: Ie91376bf9c52238febdc15720bb7f4cd62ee2e08

diff --git a/solenv/bin/modules/installer.pm b/solenv/bin/modules/installer.pm
index 54b64b0..4c50d3b 100644
--- a/solenv/bin/modules/installer.pm
+++ b/solenv/bin/modules/installer.pm
@@ -82,7 +82,7 @@ use installer::windows::strip;
 use installer::windows::update;
 use installer::windows::upgrade;
 use installer::worker;
-use installer::ziplist;
+use installer::ziplist 

[PATCH] Change in core[feature/killsdf]: Corrections for merge

2012-09-30 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/736

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/36/736/1

Corrections for merge

-Correct po type-checking
-Use new lang variable instead of
nonexistent one
-Add input parameter to ulfex

Change-Id: I1dc17363179d69d40144b6a998eb1bf223bd05e9
---
M l10ntools/source/po.cxx
M solenv/gbuild/ExtensionTarget.mk
M solenv/gbuild/InstallModuleTarget.mk
3 files changed, 6 insertions(+), 6 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/736
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1dc17363179d69d40144b6a998eb1bf223bd05e9
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com

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


[PATCH] Change in core[feature/killsdf]: Use new startsWith() method of OString

2012-09-30 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/737

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/37/737/1

Use new startsWith() method of OString

Change-Id: If8787b007767aa2701ff1b13883bcf33df12a8fc
---
M l10ntools/source/po.cxx
1 file changed, 8 insertions(+), 14 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/737
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If8787b007767aa2701ff1b13883bcf33df12a8fc
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com

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


[PATCH] Change in core[feature/killsdf]: Use po for merge of readme.xrm

2012-09-30 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/738

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/38/738/1

Use po for merge of readme.xrm

And delete old dmake rule

Change-Id: Ia0a18b79579337ceb40e8a440e028cf0c2867bf5
---
M readlicense_oo/CustomTarget_readme.mk
M solenv/inc/rules.mk
2 files changed, 6 insertions(+), 13 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/738
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia0a18b79579337ceb40e8a440e028cf0c2867bf5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com

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


[Libreoffice-commits] .: cppu/inc

2012-09-30 Thread Libreoffice Gerrit user
 cppu/inc/com/sun/star/uno/Reference.hxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit a842b5690e77de51d933bd9a4224303abba1d870
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun Sep 30 19:59:02 2012 +0200

Make Reference::iset_throw work with multiple-inheritance interfaces

Change-Id: Ia8a644c613de17279abdab533a6314ba6c0e0aec

diff --git a/cppu/inc/com/sun/star/uno/Reference.hxx 
b/cppu/inc/com/sun/star/uno/Reference.hxx
index 100a430..aa39810 100644
--- a/cppu/inc/com/sun/star/uno/Reference.hxx
+++ b/cppu/inc/com/sun/star/uno/Reference.hxx
@@ -91,7 +91,7 @@ inline interface_type * Reference interface_type 
::iset_throw(
 {
 if (pInterface)
 {
-pInterface-acquire();
+castToXInterface(pInterface)-acquire();
 return pInterface;
 }
 throw RuntimeException(
@@ -184,13 +184,13 @@ inline Reference interface_type ::Reference( const Any 
 rAny, UnoReference_Qu
 template class interface_type 
 inline Reference interface_type ::Reference( const Reference interface_type 
  rRef, UnoReference_SetThrow ) SAL_THROW( (RuntimeException) )
 {
-_pInterface = iset_throw( rRef.get() );
+_pInterface = castToXInterface( iset_throw( rRef.get() ) );
 }
 
//__
 template class interface_type 
 inline Reference interface_type ::Reference( interface_type * pInterface, 
UnoReference_SetThrow ) SAL_THROW( (RuntimeException) )
 {
-_pInterface = iset_throw( pInterface );
+_pInterface = castToXInterface( iset_throw( pInterface ) );
 }
 #endif
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source solenv/gbuild

2012-09-30 Thread Libreoffice Gerrit user
 l10ntools/source/po.cxx  |2 +-
 solenv/gbuild/ExtensionTarget.mk |8 
 solenv/gbuild/InstallModuleTarget.mk |2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 0359041aac89ef07325f6b8baa2d5ff304e833b5
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Sep 30 17:54:37 2012 +0200

Corrections for merge

-Correct po type-checking
-Use new lang variable instead of
nonexistent one
-Add input parameter to ulfex

Change-Id: I1dc17363179d69d40144b6a998eb1bf223bd05e9
Reviewed-on: https://gerrit.libreoffice.org/736
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index f929ce7..b9e1c17 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -481,7 +481,7 @@ OString PoEntry::getResourceType() const
 PoEntry::TYPE PoEntry::getType() const
 {
 const OString sContext = m_aGenPo.getContext();
-const OString sType = sContext.copy( sContext.indexOf('.') + 1 );
+const OString sType = sContext.copy( sContext.lastIndexOf('.') + 1 );
 assert( m_bIsInitialized 
 (sType == text || sType == quickhelptext || sType == title) );
 if ( sType == text )
diff --git a/solenv/gbuild/ExtensionTarget.mk b/solenv/gbuild/ExtensionTarget.mk
index 559e0cf..4e53be5 100644
--- a/solenv/gbuild/ExtensionTarget.mk
+++ b/solenv/gbuild/ExtensionTarget.mk
@@ -136,9 +136,9 @@ $(call gb_ExtensionTarget_get_target,$(1)) : PRJNAME := 
$(firstword $(subst /, ,
 $(call gb_ExtensionTarget_get_workdir,$(1))/description.xml : 
$(SRCDIR)/$(2)/description.xml
 ifneq ($(strip $(gb_WITH_LANG)),)
 $(call gb_ExtensionTarget_get_target,$(1)) : \
-   POFILES := $(foreach 
lang,$(gb_ExtensionTarget_LANGS),$(gb_POLOCATION)/$(lang)/$(2).po)
+   POFILES := $(foreach 
lang,$(gb_ExtensionTarget_TRANS_LANGS),$(gb_POLOCATION)/$(lang)/$(2).po)
 $(call gb_ExtensionTarget_get_workdir,$(1))/description.xml : \
-   $(foreach 
lang,$(gb_ExtensionTarget_LANGS),$(gb_POLOCATION)/$(lang)/$(2).po)
+   $(foreach 
lang,$(gb_ExtensionTarget_TRANS_LANGS),$(gb_POLOCATION)/$(lang)/$(2).po)
 endif
 
 $(foreach lang,$(gb_ExtensionTarget_ALL_LANGS), \
@@ -225,9 +225,9 @@ $(call gb_ExtensionTarget_get_target,$(1)) : FILES += $(2)
 ifneq ($(strip $(gb_WITH_LANG)),)
 $(call gb_ExtensionTarget_get_target,$(1)) : FILES += $(foreach lang,$(subst 
-,_,$(gb_ExtensionTarget_TRANS_LANGS)),$(subst en_US,$(lang),$(2)))
 $(call gb_ExtensionTarget_get_rootdir,$(1))/$(2) : \
-   POFILES := $(foreach 
lang,$(gb_ExtensionTarget_LANGS),$(gb_POLOCATION)/$(lang)/$(patsubst 
/%/,%,$(subst $(SRCDIR),,$(dir $(3.po)
+   POFILES := $(foreach 
lang,$(gb_ExtensionTarget_TRANS_LANGS),$(gb_POLOCATION)/$(lang)/$(patsubst 
/%/,%,$(subst $(SRCDIR),,$(dir $(3.po)
 $(call gb_ExtensionTarget_get_rootdir,$(1))/$(2) : \
-   $(foreach 
lang,$(gb_ExtensionTarget_LANGS),$(gb_POLOCATION)/$(lang)/$(patsubst 
/%/,%,$(subst $(SRCDIR),,$(dir $(3.po)
+   $(foreach 
lang,$(gb_ExtensionTarget_TRANS_LANGS),$(gb_POLOCATION)/$(lang)/$(patsubst 
/%/,%,$(subst $(SRCDIR),,$(dir $(3.po)
 endif
 $(call gb_ExtensionTarget_get_target,$(1)) : $(call 
gb_ExtensionTarget_get_rootdir,$(1))/$(2)
 $(call gb_ExtensionTarget_get_rootdir,$(1))/$(2) : $(3) \
diff --git a/solenv/gbuild/InstallModuleTarget.mk 
b/solenv/gbuild/InstallModuleTarget.mk
index ace8ceb..242a259 100644
--- a/solenv/gbuild/InstallModuleTarget.mk
+++ b/solenv/gbuild/InstallModuleTarget.mk
@@ -132,7 +132,7 @@ $(dir $(call gb_ScpMergeTarget_get_target,%))%/.dir :
$(if $(wildcard $(dir $@)),,mkdir -p $(dir $@))
 
 $(call gb_ScpMergeTarget_get_target,%) : $(gb_ScpMergeTarget_TARGET)
-   $(call gb_ScpMergeTarget__command,$@,$*)
+   $(call gb_ScpMergeTarget__command,$@,$*,$(SCP_SOURCE))
 
 .PHONY : $(call gb_ScpMergeTarget_get_clean_target,%)
 $(call gb_ScpMergeTarget_get_clean_target,%) :
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - l10ntools/source

2012-09-30 Thread Libreoffice Gerrit user
 l10ntools/source/po.cxx |   22 --
 1 file changed, 8 insertions(+), 14 deletions(-)

New commits:
commit 9d300551b3dacd3693607e1015bea1461c173e1a
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Sep 30 18:26:15 2012 +0200

Use new startsWith() method of OString

Change-Id: If8787b007767aa2701ff1b13883bcf33df12a8fc
Reviewed-on: https://gerrit.libreoffice.org/737
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index b9e1c17..a922575 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -110,12 +110,6 @@ OString ImplGenNormString(const OString rString)
 return ImplUnEscapeText(rString.copy(1,rString.getLength()-2));
 }
 
-//Decide whether a string starts with an other string
-bool ImplStartsWith(const OString rString,const OString rStart)
-{
-return rString.match(rStart);
-}
-
 //Default constructor
 GenPoEntry::GenPoEntry()
 : m_sWhiteSpace( OString() )
@@ -215,37 +209,37 @@ void GenPoEntry::readFromFile(std::ifstream rIFStream)
 while(!rIFStream.eof())
 {
 OString sLine = OString(sTemp.data(),sTemp.length());
-if (ImplStartsWith(sLine,#. ))
+if (sLine.startsWith(#. ))
 {
 if (sLine.getLength()==7)
 m_sKeyId = sLine.copy(3);
 else
 m_sExtractCom = sLine.copy(3);
 }
-else if (ImplStartsWith(sLine,#: ))
+else if (sLine.startsWith(#: ))
 {
 m_sReference = sLine.copy(3);
 }
-else if (ImplStartsWith(sLine,#, fuzzy))
+else if (sLine.startsWith(#, fuzzy))
 {
 m_bFuzzy = true;
 }
-else if (ImplStartsWith(sLine,msgctxt ))
+else if (sLine.startsWith(msgctxt ))
 {
 m_sContext = ImplGenNormString(sLine.copy(8));
 pLastMsg = m_sContext;
 }
-else if (ImplStartsWith(sLine,msgid ))
+else if (sLine.startsWith(msgid ))
 {
 m_sUnTransStr = ImplGenNormString(sLine.copy(6));
 pLastMsg = m_sUnTransStr;
 }
-else if (ImplStartsWith(sLine,msgstr ))
+else if (sLine.startsWith(msgstr ))
 {
 m_sTransStr = ImplGenNormString(sLine.copy(7));
 pLastMsg = m_sTransStr;
 }
-else if (ImplStartsWith(sLine,\)  pLastMsg)
+else if (sLine.startsWith(\)  pLastMsg)
 {
 *pLastMsg += ImplGenNormString(sLine);
 }
@@ -359,7 +353,7 @@ OString ImplEscapeTags(const OString rText)
 for(StrVec::const_iterator pEscape = vTagsForEscape.begin();
 pEscape != vTagsForEscape.end(); ++pEscape)
 {
-if (ImplStartsWith(*pFound, + *pEscape) ||
+if (pFound-startsWith( + *pEscape) ||
 *pFound == / + *pEscape + )
 {
 bEscapeThis = true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/killsdf' - readlicense_oo/CustomTarget_readme.mk solenv/inc

2012-09-30 Thread Libreoffice Gerrit user
 readlicense_oo/CustomTarget_readme.mk |9 ++---
 solenv/inc/rules.mk   |   10 --
 2 files changed, 6 insertions(+), 13 deletions(-)

New commits:
commit ecc7820a93ca5a8f678d75e13c2e94b1115382e2
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Sep 30 19:01:17 2012 +0200

Use po for merge of readme.xrm

And delete old dmake rule

Change-Id: Ia0a18b79579337ceb40e8a440e028cf0c2867bf5
Reviewed-on: https://gerrit.libreoffice.org/738
Reviewed-by: Andras Timar ati...@suse.com
Tested-by: Andras Timar ati...@suse.com

diff --git a/readlicense_oo/CustomTarget_readme.mk 
b/readlicense_oo/CustomTarget_readme.mk
index 6c74fc6..2871631 100644
--- a/readlicense_oo/CustomTarget_readme.mk
+++ b/readlicense_oo/CustomTarget_readme.mk
@@ -36,16 +36,19 @@ readlicense_oo_README_XRM := 
$(readlicense_oo_DIR)/readme.xrm
 $(readlicense_oo_DIR)/readme.xrm : \
$(SRCDIR)/readlicense_oo/docs/readme.xrm \
$(readlicense_XRMEXTARGET) \
-   $(gb_SDFLOCATION)/readlicense_oo/docs/localize.sdf \
+   $(foreach lang,$(filter-out 
en-US,$(gb_WITH_LANG)),$(gb_POLOCATION)/$(lang)/readlicense_oo/docs/readme.po) \
| $(readlicense_oo_DIR)/.dir
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XRM,1)
$(call gb_Helper_abbreviate_dirs, \
+MERGEINPUT=`$(gb_MKTEMP)`  \
+echo $(foreach lang,$(filter-out 
en-US,$(gb_WITH_LANG)),$(gb_POLOCATION)/$(lang)/readlicense_oo/docs/readme.po) 
 $${MERGEINPUT}  \
$(readlicense_XRMEXCOMMAND) \
-p readlicense_oo \
-i $ \
-o $@ \
-   -m $(gb_SDFLOCATION)/readlicense_oo/docs/localize.sdf \
-   -l all)
+   -m $${MERGEINPUT} \
+   -l all  \
+rm -rf $${MERGEINPUT})
 
 endif
 
diff --git a/solenv/inc/rules.mk b/solenv/inc/rules.mk
index b4561b9..327955f 100644
--- a/solenv/inc/rules.mk
+++ b/solenv/inc/rules.mk
@@ -701,13 +701,3 @@ $(COMMONMISC)/$(TARGET)/%.uulf : $$(@:b).ulf
 @$(COPY) $ $@.$(INPATH)
 @$(RENAME) $@.$(INPATH) $@
 @-$(RM) $@.$(INPATH)
-
-POLOCATION:=$(SRCDIR)$/translations/source
-PORELPATH:=$(PRJNAME)$/$(PATH_IN_MODULE).po
-
-$(COMMONMISC)/$(TARGET)/%.xrm : %.xrm
-$(COMMAND_ECHO)-$(MKDIR) $(@:d)
-$(COMMAND_ECHO)-$(RM) $@
-$(COMMAND_ECHO)$(XRMEX) -p $(PRJNAME) -i $(@:f) -o $(@).$(INPATH) -m 
$(mktmp $(foreach,lang,$(subst,en-US, $(WITH_LANG)) 
$(POLOCATION)/$(lang)/$(PORELPATH))) -l all
-$(COMMAND_ECHO)$(RENAME) $@.$(INPATH) $@
-$(COMMAND_ECHO)-$(RM) $@.$(INPATH)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Change in core[feature/killsdf]: Corrections for merge

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/736

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/736
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I1dc17363179d69d40144b6a998eb1bf223bd05e9
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com
Gerrit-Reviewer: Zolnai Tamás zolnaitamas2...@gmail.com

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


[PUSHED] Change in core[feature/killsdf]: Use new startsWith() method of OString

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/737

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/737
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: If8787b007767aa2701ff1b13883bcf33df12a8fc
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[PUSHED] Change in core[feature/killsdf]: Use po for merge of readme.xrm

2012-09-30 Thread Andras Timar (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/738

Approvals:
  Andras Timar: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/738
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia0a18b79579337ceb40e8a440e028cf0c2867bf5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: feature/killsdf
Gerrit-Owner: Zolnai Tamás zolnaitamas2...@gmail.com
Gerrit-Reviewer: Andras Timar ati...@suse.com

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


[Libreoffice-commits] .: sc/source

2012-09-30 Thread Libreoffice Gerrit user
 sc/source/filter/excel/xecontent.cxx |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 79dbac32afd3a937e323231ec310ec1f0e476fe5
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Sep 30 20:45:36 2012 +0200

create guids that excel accepts

Change-Id: I69868ad65b6eb6405d5723cb4d65d5e30c72e3ae

diff --git a/sc/source/filter/excel/xecontent.cxx 
b/sc/source/filter/excel/xecontent.cxx
index 6bef29b..abca86f 100644
--- a/sc/source/filter/excel/xecontent.cxx
+++ b/sc/source/filter/excel/xecontent.cxx
@@ -1082,13 +1082,21 @@ void XclExpColorScale::SaveXml( XclExpXmlStream rStrm )
 
 namespace {
 
+rtl::OString createHexStringFromDigit(sal_uInt8 nDigit)
+{
+rtl::OString aString = rtl::OString::valueOf( 
static_castsal_Int32(nDigit), 16 );
+if(aString.getLength() == 1)
+aString = aString + rtl::OString::valueOf(static_castsal_Int32(0));
+return aString;
+}
+
 rtl::OString createGuidStringFromInt(sal_uInt8 nGuid[16])
 {
 rtl::OStringBuffer aBuffer;
 aBuffer.append('{');
 for(size_t i = 0; i  16; ++i)
 {
-aBuffer.append(static_castsal_Int32(nGuid[i]), 16);
+aBuffer.append(createHexStringFromDigit(nGuid[i]));
 if(i == 3|| i == 5 || i == 7 || i == 9 )
 aBuffer.append('-');
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


spell checker issue

2012-09-30 Thread Steven Howe
Who deals with spell checker dictionary issues?

I'm using the work  men's ; the spell checker thinks this is wrong,
although spell checker for gmail does not. I've visited webster's
dictionary online. men's appears to be the correct spelling.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] gbuildification of saxon

2012-09-30 Thread David Ostrovsky (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/739

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/39/739/1

gbuildification of saxon

Change-Id: Ic54337f4279daf78b099aab368eade5a6143f586
---
M Makefile.top
M config_host.mk.in
M configure.in
A saxon/ExternalProject_saxon.mk
A saxon/Module_saxon.mk
A saxon/Package_saxon.mk
A saxon/UnpackedTarball_saxon.mk
A saxon/build.xml
D saxon/makefile.mk
M saxon/prj/build.lst
M saxon/prj/d.lst
D saxon/prj/dmake
D saxon/saxon-9.0.0.7-bj.patch
13 files changed, 1,134 insertions(+), 1,103 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/739
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic54337f4279daf78b099aab368eade5a6143f586
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: David Ostrovsky david.ostrov...@gmx.de

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


Easy Hack -- fdo #44718

2012-09-30 Thread Joel Madero

Hi All,

I know that we need more easy hacks, this one clearly qualifies but I 
don't have the time right now to find relevant code to point to and act 
as a go to for anyone who chooses to pick this one up. Can someone take 
a look at it real quick and see if you can point to the right files and 
throw a comment in there?


I'll keep looking for more easy hacks.

https://bugs.freedesktop.org/show_bug.cgi?id=44718


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


[PUSHED] gbuildification of saxon

2012-09-30 Thread David Tardon (via Code Review)
Hi,

Thank you for your patch! :-)  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/739


--
To view, visit https://gerrit.libreoffice.org/739
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic54337f4279daf78b099aab368eade5a6143f586
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: David Ostrovsky david.ostrov...@gmx.de
Gerrit-Reviewer: David Tardon dave.tar...@gmail.com

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


Re: [Libreoffice-qa] Bugzilla administration info - New version 3.6.2.2

2012-09-30 Thread Rainer Bielefeld

New version 3.6.2.2 has been added to Bugzilla 2012-09-26
BSA has been updated 2012-09-29

CU

Rainer


P.S.: This thread should keep you up to date, discussion if desired 
please in extra threads to keep this one clear and short.

___
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/


Re: [Libreoffice-qa] Bugzilla administration info - New Bugzilla features

2012-09-30 Thread Rainer Bielefeld
To test the new Bugzilla feature Inacitve Version I marked version 
LibO 3.3.0 Beata3 as inactive.


For details see 
https://wiki.documentfoundation.org/QA/Obsolete_Version_Suppression


CU

Rainer


P.S.: In this thread I want to keep you up to date, discussion if 
desired please in extra threads to keep this one clear and short.

___
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/


Re: [Libreoffice-qa] [libreoffice-l10n] Re: LibO International Sites - [el] Ελληνικά (Greek)

2012-09-30 Thread Simos Xenitellis
On Fri, Sep 28, 2012 at 8:16 AM, Rainer Bielefeld
libreoff...@bielefeldundbuss.de wrote:
 I reported some additional Bugs
 Bug 55402 - TDF Site [el] (Greek): Outdated version offered for download
 Bug 55403 - TDF Site [el] (Greek): Outdated Screenshots with old document
 icons
 Bug 55404 - TDF Site [el] (Greek): Missing Installation instructions
 Bug 55405 - TDF Site [el] (Greek): LibO component should be written in Greek
 language if linked page is translated
 Bug 55406 - TDF Site [el] (Greek): obsolete Installation Link Texts on
 download page.

 Until now no feedback from Greek site maintainers, so I will do no further
 investigation for this international site.


Thanks Rainer for the bug reports.

The following bug reports have been dealt with (with the exception of
one that requires screenshots, and I would like to delegate to someone
else):

Bug 55402 - TDF Site [el] (Greek): Outdated version offered for download
https://bugs.freedesktop.org/show_bug.cgi?id=55402

Bug 55403 - TDF Site [el] (Greek): Outdated Screenshots with old document icons
https://bugs.freedesktop.org/show_bug.cgi?id=55403

Bug 55404 - TDF Site [el] (Greek): Missing Installation instructions
https://bugs.freedesktop.org/show_bug.cgi?id=55404

Bug 55405 - TDF Site [el] (Greek): LibO component should be written in
Greek language if linked page is translated
https://bugs.freedesktop.org/show_bug.cgi?id=55405

Bug 55406 - TDF Site [el] (Greek): obsolete Installation Link Texts on
download page.
https://bugs.freedesktop.org/show_bug.cgi?id=55406


Is there an easy way to filter any other such pending reports?
As far as I can see, the only way is to search textually for 'Greek'
in the subject.

Rainer, if there are any other issues with our NL website, please
continue reporting them to Bugzilla.

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


[Libreoffice-bugs] [Bug 55459] New: the graphsin this file look bad and missing important parts

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55459

  Priority: medium
Bug ID: 55459
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: the graphsin this file look bad and missing important
parts
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: nadav...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.5.4 release
 Component: Writer
   Product: LibreOffice

Created attachment 67866
  -- https://bugs.freedesktop.org/attachment.cgi?id=67866action=edit
example 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 31405] Connecting a SQL query to a form letter without using the mailing wizard

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31405

--- Comment #16 from Lionel Elie Mamane lio...@mamane.lu ---
The stuff happens in
sw/source/ui/dbui/dbmgr.cxx: SwNewDBMgr::ExecuteFormLetter

The problem is that this line:
  aDescriptor[daCommandType]  = nCmdType;

lets nCmdType set to 0 (that is, CommandType::TABLE), but it should set it to 1
(that is, CommandType::QUERY)

The weird thing is that this is supposed to come from the rProperties argument,
but:

(gdb) print rProperties
$30 = uno::Sequence of length 3 = {{
Name = DataSourceName, 
Handle = 0, 
Value = uno::Any BaseNom, 
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
  }, {
Name = Command, 
Handle = 0, 
Value = uno::Any Query2, 
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
  }, {
Name = CommandType, 
Handle = 0, 
Value = uno::Any 1, 
State = com::sun::star::beans::PropertyState_DIRECT_VALUE
  }}

The CommandType is is clearly 1, so maybe something is wrong in how
  ODataAccessDescriptor aDescriptor(rProperties);
handles stuff? Ah no:

(gdb) print aDescriptor[daCommandType]
$32 = uno::Any 1

So the problem is in the =? That's weird. Ah... I found it... The Any
contains a sal_Int32, and we are trying to stuff it into a sal_Int16...
Changing nCmdType to a sal_Int32 should solve the problem.

Testing that fix...

-- 
You are receiving this mail because:
You 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 31405] Connecting a SQL query to a form letter without using the mailing wizard

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31405

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

 CC||cedric.bosdonnat.ooo@free.f
   ||r, mst...@redhat.com

--- Comment #17 from Lionel Elie Mamane lio...@mamane.lu ---
Yep, works!

Cédric  Michael, as Writer FindTheExpert, I'll let you judge whether we want
to backport

commit 3f84462b47f070b4921fdd5fdab8397ab1439fd6
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sun Sep 30 08:35:03 2012 +0200

Change-Id: I859c38c3589dc9e9ef5bdd882663aa3386a43237


to libreoffice-3-6; I've originally developed and tested the patch against my
workdir of libreoffice-3-6.

Bug log contains the details.

-- 
You are receiving this mail because:
You 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 31405] Connecting a SQL query to a form letter without using the mailing wizard

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31405

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 55460] New: BUGZILLAASSISTANT: Exclude inactive versions from version selector

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55460

  Priority: high
Bug ID: 55460
CC: webs...@global.libreoffice.org
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: BUGZILLAASSISTANT: Exclude inactive versions from
version selector
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: WWW
   Product: LibreOffice

Since update to 4.2.3 FDO Bugzilla offers as a new feature to mark LibO
Versions as Inactive. These versions will no longer be shown in the Version
selector for submission of new Bug reports, but they are still available in the
selector when you edit existing Bugs.

This feature only can be used if we find a way to exclude these Versions from
BSA Version selector.

Also for the planned Automatic Version Recognition (if reporter uses the Bug
Report link in LibO help menu) will have to consider that a Version might not
be available for Report of new Bugs.

To enable tests I switched LibO version 3.3.0 Beta3 to inactive

-- 
You are receiving this mail because:
You 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 55461] New: TDF Site: Redirect links to Bug Submission Assistant because BSA doues not work at all

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55461

  Priority: medium
Bug ID: 55461
CC: webs...@global.libreoffice.org
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: TDF Site: Redirect links to Bug Submission Assistant
because BSA doues not work at all
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
   URL: https://www.libreoffice.org/get-help/bug/
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: WWW
   Product: LibreOffice

Because of Bug 55442 BUGZILLAASSISTANT: Impossible to submit a Bug - Bugzilla
4.2.3 incompatible? currently BSA does not work at all.

Visitors who have used Bug Report Link in LibO Help menu or clicked Bug on
https://www.libreoffice.org/get-help/ will have to be redirected to
https://wiki.documentfoundation.org/BugReport_Details
(or to
https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMED,
if you prefer.

-- 
You are receiving this mail because:
You 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 55461] TDF Site: Redirect links to Bug Submission Assistant because BSA does not work at all

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55461

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |critical
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|TDF Site: Redirect links to |TDF Site: Redirect links to
   |Bug Submission Assistant|Bug Submission Assistant
   |because BSA doues not work  |because BSA does not work
   |at all  |at all
 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 55430] LO Draw: Changing Selection

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55430

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

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

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Comment on attachment 67834
  -- https://bugs.freedesktop.org/attachment.cgi?id=67834
File with example content, for reproducing the bug

correct mime type

-- 
You are receiving this mail because:
You 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 43283] Words which are added to the personal wordbook and ignored words are not remembered as such

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43283

thack...@nexgo.de changed:

   What|Removed |Added

   Keywords||NEEDINFO

--- Comment #2 from thack...@nexgo.de ---
Hello Mark, *,
I cannot confirm your issue with LO Version 3.6.2.2 (Build ID: da8c1e6) under
Debian Testing x86 ... :( Have you tested it with a newer version than LO 3.4.3
as Sasha has asked you 5 months ago?
Sorry for the inconvenience
Thomas.

-- 
You are receiving this mail because:
You 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 55442] BUGZILLAASSISTANT: Impossible to submit a Bug - Bugzilla 4.2.3 incompatible?

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55442

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||detective.conan.1412@gmail.
   ||com
 Ever confirmed|0   |1

--- Comment #2 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
This is what actually returned by bugzilla. I transformed it into plain text.

---8---
It looks like you didn't come from the right page (you have no valid token for
the create_bug action while processing the 'post_bug.cgi' script). The reason
could be one of:
* You clicked the Back button of your web browser after having successfully
submitted changes, which is generally not a good idea (but harmless).
* You entered the URL in the address bar of your web browser directly, which
should be safe.
* You clicked on a URL which redirected you here without your consent, in which
case this action is much more critical.

Are you sure you want to commit these changes anyway? This may result in
unexpected and undesired results.
[button]Confirm Changes[/button]

Or throw away these changes and go back to index.cgi.
---8---

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


[Libreoffice-bugs] [Bug 55462] New: FILEOPEN Table FORMATTING messed

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55462

  Priority: medium
Bug ID: 55462
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN Table FORMATTING messed
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: detective.conan.1...@gmail.com
  Hardware: All
Status: UNCONFIRMED
   Version: 3.7.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Table formatting messed in recent master.

* Open attachment 64325
* Compare it with attachment 64326

Since Sep 24 daily build on Windows XP, and in my master build Sep 29 on Linux.
Details will come later.

-- 
You are receiving this mail because:
You 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 55430] EDITING: Single mouse click selection of element completely drawn in front of selected filled area impossible

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55430

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |minor
 CC||LibreOffice@bielefeldundbus
   ||s.de, wassert...@nefkom.net
   See Also||https://issues.apache.org/o
   ||oo/show_bug.cgi?id=24048
Summary|LO Draw: Changing Selection |EDITING: Single mouse click
   ||selection of element
   ||completely drawn in front
   ||of selected filled area
   ||impossible
Version|3.6.1.2 release |3.3.0 Beta2
 Ever confirmed|0   |1

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
The report is a little imprecise, but I think reporter wanted to say:

1. Click into the bottom right quarter of the blue rectangle (or on the
   grey border of the rectangle)
Rectangle becomes selected, 8 control points appear
2. do a single click on the characters of the text.
   Expected: Text box containing text fsdfsfssfsfsfsdf becomes selected
   Actual: selection does not change

That's a very old (I see it already in OOo 1.1.5) and more general problem.

As you can see with newsample.ods, If the filled background shape is selected
any object in front of that background shape only can be selected by double
click, a single click will not work (for yellow borders smiley, for example)

Strange, you also can't select red borders smiley (with single click) as long
as background rectangle is selected and if you click on the smiley inside the
background rectangle area. Single click selection will work when you click red
smiley shape outside background rectangle (below mouth, for example).

Same problem for simple line.

Problem does not exist for background object without area filling

To  me this behavior seems confusing and inconsistent.


@Lucas Betschart:
Thank you for your attention!


@Lennard:
You fixed Bug 35079 - EDITING: Drawing element completely in mouse selection
frame not selected, may be the insights you got there can be useful for a fix
here?
Please set Status to ASSIGNED and add yourself to Assigned To if you accept
this Bug or forward the Bug if it's not your turff

-- 
You are receiving this mail because:
You 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 55430] EDITING: Single mouse click selection of element completely drawn in front of selected filled area impossible

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55430

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

  Attachment #67834|0   |1
is obsolete||

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Created attachment 67868
  -- https://bugs.freedesktop.org/attachment.cgi?id=67868action=edit
New Sample Document

-- 
You are receiving this mail because:
You 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 55442] BUGZILLAASSISTANT: Impossible to submit a Bug - Bugzilla 4.2.3 incompatible?

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55442

--- Comment #3 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
From https://wiki.mozilla.org/Bugzilla:REST_API:Objects#Bug
 update_token: Token you'll need to submit to change the bug; supplied only 
 when logged in

Also, tested by submitted a new bug via this bugzilla interface, it sent a
token field when doing POST post_bug.cgi

In conclusion, we need a token string. But I don't know how to get it in BSA.

Possible solutions in my thoughts:

(A) Change BSA to use Bugzilla REST API
https://wiki.mozilla.org/Bugzilla:REST_API But this requires much works, both
by fdo admin and libo sides.

(B) Use Bugzilla API (XML-RPC) http://www.bugzilla.org/docs/4.2/en/html/api/

(C) Maybe some configurations / hacks to turn off checking for token will help.
But this will be less secure and I don't know if this is possible.

Or are there more possible solutions that I can't think of? Probably ;)

-- 
You are receiving this mail because:
You 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 55442] BUGZILLAASSISTANT: Impossible to submit a Bug - Bugzilla 4.2.3 incompatible?

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55442

--- Comment #4 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
Ouch, the token field is in page
  enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMED

and appears as:
  input type=hidden name=token value=$token_value

If only we could get it into BSA ...

-- 
You are receiving this mail because:
You 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 55442] BUGZILLAASSISTANT: Impossible to submit a Bug - Bugzilla 4.2.3 incompatible?

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55442

--- Comment #5 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
(In reply to comment #4)
 Ouch, the token field is in page
   enter_bug.cgi?product=LibreOfficebug_status=UNCONFIRMED

Beware! Token is NOT the same as in enter_bug.cgi (product selection page)

-- 
You are receiving this mail because:
You 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 54961] PDF: Export to PDF- option PDF/A-1a

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54961

--- Comment #5 from pierre-yves samyn pierre-yves.sa...@laposte.net ---
Hello

Still occurs with Version 3.6.2.2 (Build ID: da8c1e6)  windows 7 64bits

(In reply to comment #4)
 I have the same on 3.6.2 rc 2 - Linux. I noticed that if you send by e-mail
 the pdf you do not get any warning and the pdf/a is validated.

With my platform I get the same error with File Send by e-mail pdf

Regards
Pierre-Yves

-- 
You are receiving this mail because:
You 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 55466] New: Problem with bottom edge in merged cells in xls format

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55466

  Priority: medium
Bug ID: 55466
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Problem with bottom edge in merged cells in xls format
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: kosm...@kosmaty.anv.pl
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.0.4 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 67875
  -- https://bugs.freedesktop.org/attachment.cgi?id=67875action=edit
Described problem for cell B31 with bottom edge

Problem description: 

Steps to reproduce:
1. merge cels from B31 to F40
2. set all edges to cell B31
3. save as XLS 97/2000/XP/2003 format

Current behavior:
After reopen cell B31 does not have a bottom edge

Expected behavior:
After reopen cell B31 should have a all edges

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 5.1; rv:15.0) Gecko/20100101 Firefox/15.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 51976] FILEOPEN: Base embedded HSQLDB even slower than 3.5.5: open / scroll through table

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51976

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #11 from rob...@familiegrosskopf.de ---
The problem still exists under LO 3.6.2.1, OpenSuSE 12.1, 64bit.
I tested with https://bugs.freedesktop.org/attachment.cgi?id=63967 . Opening
the table, try to scroll with the button last to the last record and wait ...
wait ... 12 minutes for the 3 rows.
CPU was running with 100%. CPU is Atom(TM) CPU N570 @ 1.66GHz (Netbook).
I set this bug to Status New.

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


[Libreoffice-bugs] [Bug 55269] Calc AutoFilter Performance Affected by Windows 7 Settings

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55269

--- Comment #4 from preechaw preec...@gmail.com ---
(In reply to comment #1)
 Created attachment 67604 [details]
 Sample Document
 
 NOT reproducible with  Server Installation of LibreOffice 3.6.2.1 rc 
 English UI/ German Locale [Build-ID:  ba822cc] on German WIN7 Home Premium
 (64bit) and attached sample document.
 
 I clicked the Filtr3 button, Standard Filter, Condition  Filter3  = 12345,
 works fine with Use visual styles on windows and buttons active
 
 @Reporter:
 Any Ideas?

Have you looked at the attached 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 55307] Drawing Object Copied Using Ctrl+[Mouse-Drag] Is Not Immediately Displayed

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55307

preechaw preec...@gmail.com changed:

   What|Removed |Added

   Severity|minor   |normal

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


[Libreoffice-bugs] [Bug 45630] : Printer Driver Options do not Work with LO Documents (Duplex, Pages per Sheet)

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45630

--- Comment #1 from rob...@familiegrosskopf.de ---
Could you please show the properties of the printer in the printing dialog?
Does this problem still exist in a newer version of LO, for example the version
3.5.6

-- 
You are receiving this mail because:
You 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 45788] UI: Language not unexpectedly not English

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45788

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

--- Comment #2 from rob...@familiegrosskopf.de ---
There isn't an answer for about over 6 months. Seems to be, that the bug has
been solved for the reporter. Set the Status to Resolved and Worksforme.

-- 
You are receiving this mail because:
You 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 45561] all zeros in .ods document disappears in print preview, printed document of in exported PDF

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45561

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME
   Severity|major   |minor
  Component|Writer  |Spreadsheet

--- Comment #2 from rob...@familiegrosskopf.de ---
There is no reaction to this bug from the reporter for about over 6 months.
Could not reproduce the behavior. So I set the Status to Resolved and
Worksforme.

-- 
You are receiving this mail because:
You 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 55442] BUGZILLAASSISTANT: Impossible to submit a Bug - Bugzilla 4.2.3 incompatible?

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55442

--- Comment #6 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
Created attachment 67876
  -- https://bugs.freedesktop.org/attachment.cgi?id=67876action=edit
UNTESTED patch

One of admins please apply the attached patch and see whether it works. 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 45759] EDITING: CRASH when type text

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45759

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de

--- Comment #4 from rob...@familiegrosskopf.de ---
@hubertus,

when you installed the new version of LO, did you delete the content of
%appdata%\libreoffice\3\user before you start the program the first time? A new
installation or uninstalling an old version excludes the content of this
folder.

-- 
You are receiving this mail because:
You 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 54629] EDITING: Hebrew/Arabic text is not clickable in textbox area of Impress slides

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54629

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Version|unspecified |3.6.0.4 release
 Ever confirmed|0   |1

--- Comment #6 from Lior Kaplan kaplanl...@gmail.com ---
Ok, when changing the font to Lohit Hindi I can reproduce the bug. This font
comes from the ttf-indic-fonts-core package in Ubuntu.

-- 
You are receiving this mail because:
You 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 54629] EDITING: Hebrew/Arabic text is not clickable in textbox area of Impress slides (Lohit Hindi font only)

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54629

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

Summary|EDITING: Hebrew/Arabic text |EDITING: Hebrew/Arabic text
   |is not clickable in textbox |is not clickable in textbox
   |area of Impress slides  |area of Impress slides
   ||(Lohit Hindi font only)

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


[Libreoffice-bugs] [Bug 55034] Hebrew text rendering is broken in a few fonts

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55034

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

Summary|Hebrew text rendering   |Hebrew text rendering is
   |completely busted when  |broken in a few fonts
   |first opening writer|

-- 
You are receiving this mail because:
You 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 55399] Writer crashes or does not respond

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55399

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Roman Eisele b...@eikota.de ---
@ eastasiax:

thank you very much for your detailed reply!

*

Because eastasiax has confirmed that Enable Access for assistive devices was
activated, and because the stack trace in his log file is mostly identical to
the one of bug 55156, the reason of this crash seems to be the same as in bug
55156.

This is good, because bug 55156 is already fixed (or band-aided); the fix will
appear in LibreOffice 3.7 (and probably backported to LibreOffice 3.6.3).

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

-- 
You are receiving this mail because:
You 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 55156] Hang on accessing any pane in the application Options dialog, when Cinch is running (related to Mac OS accessibility)

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55156

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 CC||eastas...@163.com

--- Comment #6 from Roman Eisele b...@eikota.de ---
*** Bug 55399 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 55034] Hebrew text rendering is broken in a few fonts

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55034

--- Comment #8 from Lior Kaplan kaplanl...@gmail.com ---
Created attachment 67880
  -- https://bugs.freedesktop.org/attachment.cgi?id=67880action=edit
screenshot of broken hebrew rendering with a few fonts

I don't have the Lucida font on my Debian/Ubuntu, but I could get something
similar with these fonts (screenshot attached) on LibO 3.6.0.4
- Khmer OS
- Phetsarath OT

Eyal - Do you have the problem on Windows? If so, which version.

I think your problem could be fixed by changing in the default font in
share/registry/main.xcd which is space less version of
http://opengrok.libreoffice.org/xref/core/officecfg/registry/data/org/openoffice/VCL.xcu#185

Changing (for Hebrew only):
Lucidasans;Lucida Sans; - lucidasansunicode; Lucida Sans Unicode;

If this fixes your problem, I'll make it permanent.

-- 
You are receiving this mail because:
You 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 55034] Hebrew text rendering is broken in a few fonts

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55034

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Blocks||43808

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


[Libreoffice-bugs] [Bug 43808] Meta bug for Most Annoying RTL related issues

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43808

Lior Kaplan kaplanl...@gmail.com changed:

   What|Removed |Added

 Depends on||55034

-- 
You are receiving this mail because:
You 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 55467] New: Windows explorer freezes with 100% processor load when mouse touches a Liboffice file

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55467

  Priority: high
Bug ID: 55467
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Windows explorer freezes with 100% processor load when
mouse touches a Liboffice file
  Severity: major
Classification: Unclassified
OS: Windows (All)
  Reporter: mr_ra...@web.de
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 3.6.1.2 release
 Component: Libreoffice
   Product: LibreOffice

After installation of LO 3.6.1 everything was fine. But some later the system
(Win XP SP3, Pentium4, 1GB RAM) froze with 100% processor load when the mouse
touched a LO file in the windows explorer. After some minutes the system
recovered by itself, but usually the explorer applications had to be closed
with the Task Manager.
LO could be loaded, file opening with the open menu in LO worked so far, but
everyting seemed to be slower than usual. 
In the meantime I deinstalled LO 3.6.1 and reinstalled LO 3.5.6; up to now the
problem didn't recur, but I will keep an eye on that.
I rated this problem as 'major' as it is a severe disturbance of my daily work.

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


[Libreoffice-bugs] [Bug 55467] Windows explorer freezes with 100% processor load when mouse touches a Liboffice file

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55467

mr_ra...@web.de changed:

   What|Removed |Added

 QA Contact||mr_ra...@web.de
 CC||mr_ra...@web.de

-- 
You are receiving this mail because:
You 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 51976] FILEOPEN: Base embedded HSQLDB even slower than 3.5.5: open / scroll through table

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51976

--- Comment #12 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
A Jump to last record problem is [Reproducible] with Server Installation of
LibreOffice 3.6.2.1 rc  English UI/ German Locale [Build-ID:  da8c1e6] on
German WIN7 Home Premium (64bit) 

Steps how to reproduce with attachment 63257 of Bug 51239 - A double-plus-more
extremely slow search/browse table in embedded HSQLDB since 3.5.5/3.6.0.beta:

1. Open Sample document from LibO Start Center, menu 'File - Open'
2. In Database Pane select 'Tables'
3. In Tables Pane open Sales Invoices with double click
Table opens, showing 23 records in Status bar below table
4. Click 'Last Record' button in Table Data bar (?) below table data
   Expected: Shows record 30849 after few moments 
   Actual: needs 2 Minutes or so with high CPU load

Was still ok with 3.3.3:   3s for step 4
Was some worse with 3.4.2: 15s for step 4, but from then | and |
   only take 1s or so

With 3.5.1.2:  3 Minutes for Step 4 
   (I did not measure time exactly), from then
   | and | still rather slow, takes 1 minute or
so

With 3.5.7.1:  3 Minutes for Step 4,  from then
   | and | still rather slow, takes 30s or so  

With 3.6.2.2:  3,25 Minutes for Step 4 
   (I did not measure time exactly), from then
   | and | still rather slow, takes 20s or so
   only tested with this version: scrolling with
   scroll slider after step 4 still is a mess,
   always stops after few lines for several 
   seconds after I can continue

@robert:
This bug still needs a lot of information to deserve Status NEW due to
https://wiki.documentfoundation.org/BugTriage#Process  item 5:
- What exactly do you mean with scroll? Using scroll slider, Scroll buttons 
 (for that 400s would be acceptable), Mouse whell? Please describe exactly!
- What is the problem here? Slow Fileopen (not reproducible at all
  for me) or slow scrolling? Please decide and correct the summary!
  http://wiki.documentfoundation.org/BugReport#General_information item 4!
- All OS affected or definitively only Linux? 
  -- We need a precise step by step 
 instruction with precise time measurement to keep apart different 
 problems all causing slowness problems
  What exactly is the difference to Bug 51239? 
  I wonder whether WIN was affectet there, I only saw Linux and MAC there, and 
  I still see heavy problems with sample document from that bug

@Lionel:
I am afraid that long discussion here will have no good cost-benefit ration,
may be it will be more effective that you narrow town task of the report to any
obvious all OS) problem and we will see what will happen after a first fix?

-- 
You are receiving this mail because:
You 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 55468] New: fileopen, formatting

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55468

  Priority: medium
Bug ID: 55468
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: fileopen, formatting
  Severity: major
Classification: Unclassified
OS: Linux (All)
  Reporter: ibrahim.ham...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.5.4 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 67881
  -- https://bugs.freedesktop.org/attachment.cgi?id=67881action=edit
a screen shot of an excel sheet made in excel when opened using libreoffice the
place of the object start here is moved; the font of the sheet is much larger
than the original

When opening an excel file created using windows OS in Ubuntu - Libreoffice
Calc the formatting of the sheet will be changed. This means the font used will
be larger; any object placed will be miss placed; and any notes for cells will
be always opened by default (show comment option checked).

-- 
You are receiving this mail because:
You 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 55469] New: math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

  Priority: medium
Bug ID: 55469
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: math fonts have wrong line spacing
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: yury.tarasiev...@gmail.com
  Hardware: Other
Status: NEW
   Version: 3.6.2.1 rc
 Component: Writer
   Product: LibreOffice

Lines spacing is anomally large for some fonts strongly specialising in math
glyphs (at least Asana Math, XITS Math, STIX Math, Neo Euler). This happens
both in Writer and in Formula Editor.

After some testing, I believe that it doesn't matter what glyphs are actually
used, only what parameters (unknown to me) are used in a fontfile. Actually,
this is an old bug, I remember experiencing this problem a year ago, at least.

Ironically, other textprocessors manage better! I'm attaching two files, 1)
with Neo Euler and Asana Math lines, saved in softmaker.com's TextMaker 2012,
2) with Neo Euler and Asana Math and STIX Math and XITS Math, saved in
LibreOffice 3.6.2.1. Also I'm attaching screenshots with both files open in
TextMaker 2008, TextMaker 2012, KWord 4.5.5 (or something), LibreOffice
3.6.2.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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #1 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67882
  -- https://bugs.freedesktop.org/attachment.cgi?id=67882action=edit
file with two math fonts, saved in TextMaker 2012

-- 
You are receiving this mail because:
You 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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #2 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67883
  -- https://bugs.freedesktop.org/attachment.cgi?id=67883action=edit
file with four fonts, saved in LibreOffice 3.6.2.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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #3 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67884
  -- https://bugs.freedesktop.org/attachment.cgi?id=67884action=edit
2fonts_kword

-- 
You are receiving this mail because:
You 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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #4 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67885
  -- https://bugs.freedesktop.org/attachment.cgi?id=67885action=edit
2fonts_libo

-- 
You are receiving this mail because:
You 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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #5 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67886
  -- https://bugs.freedesktop.org/attachment.cgi?id=67886action=edit
2fonts_tm2008

-- 
You are receiving this mail because:
You 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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #6 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67887
  -- https://bugs.freedesktop.org/attachment.cgi?id=67887action=edit
2fonts_tm2012

-- 
You are receiving this mail because:
You 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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #7 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67888
  -- https://bugs.freedesktop.org/attachment.cgi?id=67888action=edit
4fonts_kword

-- 
You are receiving this mail because:
You 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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #8 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67889
  -- https://bugs.freedesktop.org/attachment.cgi?id=67889action=edit
4fonts_libo

-- 
You are receiving this mail because:
You 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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #9 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67890
  -- https://bugs.freedesktop.org/attachment.cgi?id=67890action=edit
4fonts_tm2008

-- 
You are receiving this mail because:
You 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 55469] math fonts have wrong line spacing

2012-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55469

--- Comment #10 from Yury yury.tarasiev...@gmail.com ---
Created attachment 67891
  -- https://bugs.freedesktop.org/attachment.cgi?id=67891action=edit
4fonts_tm2012

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