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

2013-05-25 Thread David Tardon
 solenv/gbuild/Package.mk |8 
 svx/source/svdraw/svdobj.cxx |2 --
 2 files changed, 8 insertions(+), 2 deletions(-)

New commits:
commit aaff3ae833f1180a17b9738a7825a780bea64a79
Author: David Tardon dtar...@redhat.com
Date:   Sat May 25 10:28:24 2013 +0200

i did not intend to commit this

Change-Id: I4cecd0105156adeb65bf1d42c3b26f8ad669a52b

diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index 11032ad..98e3b9a 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -498,8 +498,6 @@ SdrObject::~SdrObject()
 delete mpViewContact;
 mpViewContact = 0L;
 }
-
-mnLayerID = 59; // random value
 }
 
 void SdrObject::Free( SdrObject* _rpObject )
commit dfc155edb15f632d5e036b260ff2b8bf56e78732
Author: David Tardon dtar...@redhat.com
Date:   Sat May 25 10:27:49 2013 +0200

fix generated deps on headers in $(OUTDIR)/inc

Change-Id: Id4d03f2d500e8fcec4b6ead5365eaffbd0ece19f

diff --git a/solenv/gbuild/Package.mk b/solenv/gbuild/Package.mk
index 63da386..7811ebe 100644
--- a/solenv/gbuild/Package.mk
+++ b/solenv/gbuild/Package.mk
@@ -44,6 +44,14 @@ endef
 $(foreach destination,$(call gb_PackagePart_get_destinations),$(eval \
   $(call gb_PackagePart__rule,$(destination
 
+# Dummy rule to force rebuild of files that depend on headers in
+# $(OUTDIR)/inc (thus the dep files will be rebuild too). Otherwise
+# incremental build will fail with 'No rule to make target ...'.
+#
+# This should be removed again after some time.
+$(OUTDIR)/inc/% :
+   @true
+
 # Deliver one file to the output dir.
 #
 # gb_PackagePart_PackagePart destfile source prep-target outdir
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - svx/source

2013-05-25 Thread David Tardon
 svx/source/svdraw/svdobj.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit f6d39d7e2c64a6aec8c83943caf827a57f067335
Author: David Tardon dtar...@redhat.com
Date:   Sat May 25 10:30:45 2013 +0200

i did not intend to commit this

Change-Id: I126cb90919155ae2dae30a6ed98ca207f6e81d9f

diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index 0577860..98e3b9a 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -498,8 +498,6 @@ SdrObject::~SdrObject()
 delete mpViewContact;
 mpViewContact = 0L;
 }
-
-mnLayerID = static_castSdrLayerID(0xdead);
 }
 
 void SdrObject::Free( SdrObject* _rpObject )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 60270] LibreOffice 4.1 most annoying bugs

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

 Depends on||64957

--- Comment #20 from Jorendc joren.libreoff...@telenet.be ---
I nominate Bug 64957 - EDITING: letters move around during editing/typing
(Mac OSX) due the fact of the markable regression vs 4.0. For some users this
was reproducible with older versions, especially with zoom level != 100%. Now
it is always reproducible.

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


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

2013-05-25 Thread Khaled Hosny
 vcl/generic/glyphs/gcach_layout.cxx |   20 +++-
 vcl/source/gdi/sallayout.cxx|2 +-
 2 files changed, 20 insertions(+), 2 deletions(-)

New commits:
commit c72955bcb196574f7bc682e7aa301264a8a54635
Author: Khaled Hosny khaledho...@eglug.org
Date:   Sat May 25 11:12:56 2013 +0200

Revert Fix improper glyph positioning with old fonts

This reverts commit cef3f3aac2f7a372e796deac4ee3e8155c5eb697.

The previous commit addressed the real issue.

Change-Id: I802e5f19e4a4991c316135f3984a1b9a6533a104

diff --git a/vcl/source/gdi/sallayout.cxx b/vcl/source/gdi/sallayout.cxx
index 31b01b9..bd7a326 100644
--- a/vcl/source/gdi/sallayout.cxx
+++ b/vcl/source/gdi/sallayout.cxx
@@ -1098,7 +1098,7 @@ void GenericSalLayout::ApplyDXArray( ImplLayoutArgs 
rArgs )
 if( m_GlyphItems[j].IsClusterStart() )
 break;
 if( !m_GlyphItems[j].IsDiacritic() ) // #i99367# ignore 
diacritics
-nOldClusterWidth += m_GlyphItems[j].mnNewWidth;
+nOldClusterWidth += m_GlyphItems[j].mnNewWidth - 
m_GlyphItems[j].mnXOffset;
 nNewClusterWidth += pNewGlyphWidths[j];
 }
 const int nDiff = nNewClusterWidth - nOldClusterWidth;
commit 90c6531caa3ec530ef6e9bf1081d289b16fe53ba
Author: Khaled Hosny khaledho...@eglug.org
Date:   Sat May 25 02:24:36 2013 +0200

A hack to fix mark placement in old fonts

We need a way to recognize non spacing marks in fonts lacking GDEF table
(like old Arabic fonts), so I just check for zero advance width and hope
nothing elsewhere will break...

Change-Id: I6fa848e97ba24d71fc9a381ae439e0fb98e50419

diff --git a/vcl/generic/glyphs/gcach_layout.cxx 
b/vcl/generic/glyphs/gcach_layout.cxx
index 6ac7fd4..4fd4cf4 100644
--- a/vcl/generic/glyphs/gcach_layout.cxx
+++ b/vcl/generic/glyphs/gcach_layout.cxx
@@ -428,7 +428,25 @@ bool HbLayoutEngine::layout(ServerFontLayout rLayout, 
ImplLayoutArgs rArgs)
 if (bInCluster)
 nGlyphFlags |= GlyphItem::IS_IN_CLUSTER;
 
-if (hb_ot_layout_get_glyph_class(mpHbFace, nGlyphIndex) == 
HB_OT_LAYOUT_GLYPH_CLASS_MARK)
+bool bDiacritic = false;
+if (hb_ot_layout_has_glyph_classes(mpHbFace))
+{
+// the font has GDEF table
+if (hb_ot_layout_get_glyph_class(mpHbFace, nGlyphIndex) == 
HB_OT_LAYOUT_GLYPH_CLASS_MARK)
+bDiacritic = true;
+}
+else
+{
+// the font lacks GDEF table
+// HACK: if the resolved glyph advance is zero assume it is a
+// combining mark.  The whole IS_DIACRITIC concept is a hack to
+// fix the other hacks we use to second-guess glyph advances in
+// ApplyDXArray and the likes and it needs to die
+if (pHbPositions[i].x_advance == 0)
+bDiacritic = true;
+}
+
+if (bDiacritic)
 nGlyphFlags |= GlyphItem::IS_DIACRITIC;
 
 int32_t nXOffset =  pHbPositions[i].x_offset  6;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - vcl/generic vcl/source

2013-05-25 Thread Khaled Hosny
 vcl/generic/glyphs/gcach_layout.cxx |   20 +++-
 vcl/source/gdi/sallayout.cxx|2 +-
 2 files changed, 20 insertions(+), 2 deletions(-)

New commits:
commit 0e533770125d57d38e8b5505027ac5359abe40b2
Author: Khaled Hosny khaledho...@eglug.org
Date:   Sat May 25 11:12:56 2013 +0200

Revert Fix improper glyph positioning with old fonts

This reverts commit cef3f3aac2f7a372e796deac4ee3e8155c5eb697.

The previous commit addressed the real issue.

Change-Id: I802e5f19e4a4991c316135f3984a1b9a6533a104

diff --git a/vcl/source/gdi/sallayout.cxx b/vcl/source/gdi/sallayout.cxx
index 31b01b9..bd7a326 100644
--- a/vcl/source/gdi/sallayout.cxx
+++ b/vcl/source/gdi/sallayout.cxx
@@ -1098,7 +1098,7 @@ void GenericSalLayout::ApplyDXArray( ImplLayoutArgs 
rArgs )
 if( m_GlyphItems[j].IsClusterStart() )
 break;
 if( !m_GlyphItems[j].IsDiacritic() ) // #i99367# ignore 
diacritics
-nOldClusterWidth += m_GlyphItems[j].mnNewWidth;
+nOldClusterWidth += m_GlyphItems[j].mnNewWidth - 
m_GlyphItems[j].mnXOffset;
 nNewClusterWidth += pNewGlyphWidths[j];
 }
 const int nDiff = nNewClusterWidth - nOldClusterWidth;
commit 4f3d63efb5d87d93171eb542d28fa83a74cdfcd8
Author: Khaled Hosny khaledho...@eglug.org
Date:   Sat May 25 02:24:36 2013 +0200

A hack to fix mark placement in old fonts

We need a way to recognize non spacing marks in fonts lacking GDEF table
(like old Arabic fonts), so I just check for zero advance width and hope
nothing elsewhere will break...

Change-Id: I6fa848e97ba24d71fc9a381ae439e0fb98e50419

diff --git a/vcl/generic/glyphs/gcach_layout.cxx 
b/vcl/generic/glyphs/gcach_layout.cxx
index 6ac7fd4..4fd4cf4 100644
--- a/vcl/generic/glyphs/gcach_layout.cxx
+++ b/vcl/generic/glyphs/gcach_layout.cxx
@@ -428,7 +428,25 @@ bool HbLayoutEngine::layout(ServerFontLayout rLayout, 
ImplLayoutArgs rArgs)
 if (bInCluster)
 nGlyphFlags |= GlyphItem::IS_IN_CLUSTER;
 
-if (hb_ot_layout_get_glyph_class(mpHbFace, nGlyphIndex) == 
HB_OT_LAYOUT_GLYPH_CLASS_MARK)
+bool bDiacritic = false;
+if (hb_ot_layout_has_glyph_classes(mpHbFace))
+{
+// the font has GDEF table
+if (hb_ot_layout_get_glyph_class(mpHbFace, nGlyphIndex) == 
HB_OT_LAYOUT_GLYPH_CLASS_MARK)
+bDiacritic = true;
+}
+else
+{
+// the font lacks GDEF table
+// HACK: if the resolved glyph advance is zero assume it is a
+// combining mark.  The whole IS_DIACRITIC concept is a hack to
+// fix the other hacks we use to second-guess glyph advances in
+// ApplyDXArray and the likes and it needs to die
+if (pHbPositions[i].x_advance == 0)
+bDiacritic = true;
+}
+
+if (bDiacritic)
 nGlyphFlags |= GlyphItem::IS_DIACRITIC;
 
 int32_t nXOffset =  pHbPositions[i].x_offset  6;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - animations/source filter/source include/filter sd/qa sd/source

2013-05-25 Thread Caolán McNamara
 animations/source/animcore/targetpropertiescreator.cxx |   47 ++---
 filter/source/msfilter/svdfppt.cxx |  139 +
 include/filter/msfilter/svdfppt.hxx|3 
 sd/qa/unit/data/xml/fdo64586_0.xml |4 
 sd/qa/unit/data/xml/n758621_0.xml  |8 
 sd/qa/unit/data/xml/n758621_1.xml  |8 
 sd/source/filter/ppt/pptin.cxx |2 
 7 files changed, 178 insertions(+), 33 deletions(-)

New commits:
commit 88b8bd644e8da97b3046f3cbfec53aef2596df47
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 11:48:09 2013 +0100

Resolves: #i119874 Fixed text alignment in RTL layout

This reverts commit 979def88090633bfee0e0445b1a1dac71ed4,
this time manually confirmed that the import layout does change, but that it
appears to be all desirable changes

Change-Id: Iee5e5ebd16989f65569b02f8b4f6570985157dfc

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index e4e1ae1..91891c9 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -7627,4 +7627,143 @@ SdrObject* SdrPowerPointImport::CreateTable( SdrObject* 
pGroup, sal_uInt32* pTab
 return pRet;
 }
 
+sal_Bool SdrPowerPointImport::IsVerticalText() const
+{
+sal_Bool bVerticalText = sal_False;
+if ( IsProperty( DFF_Prop_txflTextFlow ) )
+{
+MSO_TextFlow eTextFlow = (MSO_TextFlow)( GetPropertyValue( 
DFF_Prop_txflTextFlow )  0x );
+switch( eTextFlow )
+{
+case mso_txflTtoBA :// Top to Bottom @-font, above 
- below
+case mso_txflTtoBN :// Top to Bottom non-@, above 
- below
+case mso_txflVertN :// Vertical, non-@, above - 
below
+bVerticalText = !bVerticalText;
+break;
+default: break;
+}
+}
+
+return bVerticalText;
+}
+
+voidSdrPowerPointImport::ApplyTextAnchorAttributes( PPTTextObj rTextObj, 
SfxItemSet rSet ) const
+{
+SdrTextVertAdjust eTVA;
+SdrTextHorzAdjust eTHA;
+
+sal_uInt32 nTextFlags = rTextObj.GetTextFlags();
+
+nTextFlags = PPT_TEXTOBJ_FLAGS_PARA_ALIGNMENT_USED_LEFT   | 
PPT_TEXTOBJ_FLAGS_PARA_ALIGNMENT_USED_RIGHT
+| PPT_TEXTOBJ_FLAGS_PARA_ALIGNMENT_USED_CENTER | 
PPT_TEXTOBJ_FLAGS_PARA_ALIGNMENT_USED_BLOCK;
+
+if ( IsVerticalText() )
+{
+eTVA = SDRTEXTVERTADJUST_BLOCK;
+eTHA = SDRTEXTHORZADJUST_CENTER;
+
+// Textverankerung lesen
+MSO_Anchor eTextAnchor = (MSO_Anchor)GetPropertyValue( 
DFF_Prop_anchorText, mso_anchorTop );
+
+switch( eTextAnchor )
+{
+case mso_anchorTop:
+case mso_anchorTopCentered:
+eTHA = SDRTEXTHORZADJUST_RIGHT;
+break;
+
+case mso_anchorMiddle :
+case mso_anchorMiddleCentered:
+eTHA = SDRTEXTHORZADJUST_CENTER;
+break;
+
+case mso_anchorBottom:
+case mso_anchorBottomCentered:
+eTHA = SDRTEXTHORZADJUST_LEFT;
+break;
+
+default:
+break;
+}
+// if there is a 100% use of following attributes, the textbox can 
been aligned also in vertical direction
+switch ( eTextAnchor )
+{
+case mso_anchorTopCentered :
+case mso_anchorMiddleCentered :
+case mso_anchorBottomCentered :
+{
+// check if it is sensible to use the centered alignment
+sal_uInt32 nMask = PPT_TEXTOBJ_FLAGS_PARA_ALIGNMENT_USED_LEFT 
| PPT_TEXTOBJ_FLAGS_PARA_ALIGNMENT_USED_RIGHT;
+if ( ( nTextFlags  nMask ) != nMask )  // if the textobject 
has left or also right aligned pararagraphs
+eTVA = SDRTEXTVERTADJUST_CENTER;// the text has to be 
displayed using the full width;
+}
+break;
+
+default :
+{
+if ( nTextFlags == PPT_TEXTOBJ_FLAGS_PARA_ALIGNMENT_USED_LEFT )
+eTVA = SDRTEXTVERTADJUST_TOP;
+else if ( nTextFlags == 
PPT_TEXTOBJ_FLAGS_PARA_ALIGNMENT_USED_RIGHT )
+eTVA = SDRTEXTVERTADJUST_BOTTOM;
+}
+break;
+}
+}
+else
+{
+eTVA = SDRTEXTVERTADJUST_CENTER;
+eTHA = SDRTEXTHORZADJUST_BLOCK;
+
+// Textverankerung lesen
+MSO_Anchor eTextAnchor = (MSO_Anchor)GetPropertyValue( 
DFF_Prop_anchorText, mso_anchorTop );
+
+switch( eTextAnchor )
+{
+case mso_anchorTop:
+case mso_anchorTopCentered:
+eTVA = SDRTEXTVERTADJUST_TOP;
+break;
+
+case mso_anchorMiddle :
+case mso_anchorMiddleCentered:
+eTVA = SDRTEXTVERTADJUST_CENTER;
+break;
+
+case mso_anchorBottom:
+case mso_anchorBottomCentered:
+eTVA = 

[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - fb/8df93381493dee3d0e511c556d82d1f177367a

2013-05-25 Thread Caolán McNamara
 fb/8df93381493dee3d0e511c556d82d1f177367a |1 +
 1 file changed, 1 insertion(+)

New commits:
commit ae3604f55277801352844f2ae3b44af81b203a9f
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 12:12:23 2013 +0100

Notes added by 'git notes add'

diff --git a/fb/8df93381493dee3d0e511c556d82d1f177367a 
b/fb/8df93381493dee3d0e511c556d82d1f177367a
new file mode 100644
index 000..55b4872
--- /dev/null
+++ b/fb/8df93381493dee3d0e511c556d82d1f177367a
@@ -0,0 +1 @@
+merged as: 0cc228354f7015ee1e6c0d376c117fbf04f58a5f
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 6e/0c9e4a19c8c16e2332957d72deae9ce6e4da74

2013-05-25 Thread Caolán McNamara
 6e/0c9e4a19c8c16e2332957d72deae9ce6e4da74 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit c681d6ad554844625d102eb5a4996f33c1e94c36
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 12:20:26 2013 +0100

Notes added by 'git notes add'

diff --git a/6e/0c9e4a19c8c16e2332957d72deae9ce6e4da74 
b/6e/0c9e4a19c8c16e2332957d72deae9ce6e4da74
new file mode 100644
index 000..0e39626
--- /dev/null
+++ b/6e/0c9e4a19c8c16e2332957d72deae9ce6e4da74
@@ -0,0 +1 @@
+prefer: d785b3c41fa6d841ca69b26a6a1ea9ce7a92205d
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 58/947b4cf695c4276ef89022ef6bb29394aaeaff

2013-05-25 Thread Caolán McNamara
 58/947b4cf695c4276ef89022ef6bb29394aaeaff |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 94eb03a31c5fc4952c8f193fe02d87a258985676
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 12:22:35 2013 +0100

Notes added by 'git notes add'

diff --git a/58/947b4cf695c4276ef89022ef6bb29394aaeaff 
b/58/947b4cf695c4276ef89022ef6bb29394aaeaff
new file mode 100644
index 000..15739e4
--- /dev/null
+++ b/58/947b4cf695c4276ef89022ef6bb29394aaeaff
@@ -0,0 +1 @@
+prefer: 4634cbc237239da771e0f6a81f78171ecec726ba
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 30/6d33a857c8f6d6393653343fe42b22ce43c2af

2013-05-25 Thread Caolán McNamara
 30/6d33a857c8f6d6393653343fe42b22ce43c2af |1 +
 1 file changed, 1 insertion(+)

New commits:
commit be80209a63dcd6210135f081ff7675f2cf5f2b87
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 12:23:34 2013 +0100

Notes added by 'git notes add'

diff --git a/30/6d33a857c8f6d6393653343fe42b22ce43c2af 
b/30/6d33a857c8f6d6393653343fe42b22ce43c2af
new file mode 100644
index 000..8ebbe55
--- /dev/null
+++ b/30/6d33a857c8f6d6393653343fe42b22ce43c2af
@@ -0,0 +1 @@
+ignore: obsolete
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - vcl/generic

2013-05-25 Thread Khaled Hosny
 vcl/generic/glyphs/gcach_ftyp.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 5e2d59e4b910631c802d5c7c42b7411e5a8b8db6
Author: Khaled Hosny khaledho...@eglug.org
Date:   Sat May 25 13:14:59 2013 +0200

Fix fdo#64972 - strikethrough displays too high

I was calculating the leading before setting the ascent and descent,
oops.

Change-Id: Ic58ecb1a65cb33715ea06f5e3214c4acbcff1e40

diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx 
b/vcl/generic/glyphs/gcach_ftyp.cxx
index 162ba11..e34b38d 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -940,7 +940,6 @@ void ServerFont::FetchFontMetric( ImplFontMetricData rTo, 
long rFactor ) const
 rTo.mnDescent = 0;
 rTo.mnExtLeading = 0;
 rTo.mnSlant = 0;
-rTo.mnIntLeading = (rTo.mnAscent + rTo.mnDescent) - 
((maFaceFT-units_per_EM + 32)  6);
 rTo.mnWidth = mnWidth;
 
 // Calculating ascender and descender:
@@ -994,6 +993,8 @@ void ServerFont::FetchFontMetric( ImplFontMetricData rTo, 
long rFactor ) const
 }
 }
 
+rTo.mnIntLeading = (rTo.mnAscent + rTo.mnDescent) - 
((maFaceFT-units_per_EM + 32)  6);
+
 if( pOS2  (pOS2-version != 0x) )
 {
 // map the panose info from the OS2 table to their VCL counterparts
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 88/1160d0e10ff5202b19045be4e65d41833ab42a

2013-05-25 Thread Caolán McNamara
 88/1160d0e10ff5202b19045be4e65d41833ab42a |1 +
 1 file changed, 1 insertion(+)

New commits:
commit a02d8d7e91f29f312b797286f913a457aac26439
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 12:24:32 2013 +0100

Notes added by 'git notes add'

diff --git a/88/1160d0e10ff5202b19045be4e65d41833ab42a 
b/88/1160d0e10ff5202b19045be4e65d41833ab42a
new file mode 100644
index 000..15739e4
--- /dev/null
+++ b/88/1160d0e10ff5202b19045be4e65d41833ab42a
@@ -0,0 +1 @@
+prefer: 4634cbc237239da771e0f6a81f78171ecec726ba
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/generic

2013-05-25 Thread Khaled Hosny
 vcl/generic/glyphs/gcach_ftyp.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 753f5721970805224e8bdfc5b9fdb2611ba9aa34
Author: Khaled Hosny khaledho...@eglug.org
Date:   Sat May 25 13:14:59 2013 +0200

Fix fdo#64972 - strikethrough displays too high

I was calculating the leading before setting the ascent and descent,
oops.

Change-Id: Ic58ecb1a65cb33715ea06f5e3214c4acbcff1e40

diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx 
b/vcl/generic/glyphs/gcach_ftyp.cxx
index 162ba11..e34b38d 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -940,7 +940,6 @@ void ServerFont::FetchFontMetric( ImplFontMetricData rTo, 
long rFactor ) const
 rTo.mnDescent = 0;
 rTo.mnExtLeading = 0;
 rTo.mnSlant = 0;
-rTo.mnIntLeading = (rTo.mnAscent + rTo.mnDescent) - 
((maFaceFT-units_per_EM + 32)  6);
 rTo.mnWidth = mnWidth;
 
 // Calculating ascender and descender:
@@ -994,6 +993,8 @@ void ServerFont::FetchFontMetric( ImplFontMetricData rTo, 
long rFactor ) const
 }
 }
 
+rTo.mnIntLeading = (rTo.mnAscent + rTo.mnDescent) - 
((maFaceFT-units_per_EM + 32)  6);
+
 if( pOS2  (pOS2-version != 0x) )
 {
 // map the panose info from the OS2 table to their VCL counterparts
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: android/sdremote unixODBC/inc

2013-05-25 Thread Andras Timar
 android/sdremote/res/values/strings.xml |2 +-
 unixODBC/inc/odbc/sqltypes.h|2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 4d08f1a49d277cfd186bca2d39e7d586fd274038
Author: Andras Timar ati...@suse.com
Date:   Sat May 25 13:48:42 2013 +0200

typo: s/recommanded/recommended/

Change-Id: I4a22f856b993ef09556fcf921aa1f01be322cd4b

diff --git a/android/sdremote/res/values/strings.xml 
b/android/sdremote/res/values/strings.xml
index 3500aee..324d852 100644
--- a/android/sdremote/res/values/strings.xml
+++ b/android/sdremote/res/values/strings.xml
@@ -53,7 +53,7 @@
 string name=addserver_cancelCancel/string
 string name=reconnect_description1Your connection has been 
dropped./string
 string name=reconnect_description2Please try to reconnect/string
-string name=wifiAlertMsgThis is still an experimental feature. You 
need to \enable experimental features\ in 
\Preference\-\LibreOffice\-\Advanced\ on your computer. \nThe use over 
Bluetooth is recommanded./string
+string name=wifiAlertMsgThis is still an experimental feature. You 
need to \enable experimental features\ in 
\Preference\-\LibreOffice\-\Advanced\ on your computer. \nThe use over 
Bluetooth is recommended./string
 string-array name=countdown_values
 item 5:00/item
 item 10:00/item
diff --git a/unixODBC/inc/odbc/sqltypes.h b/unixODBC/inc/odbc/sqltypes.h
index 1b0f9d5..8800502 100644
--- a/unixODBC/inc/odbc/sqltypes.h
+++ b/unixODBC/inc/odbc/sqltypes.h
@@ -84,7 +84,7 @@ typedef charCHAR;
 /*
  * NOTE: The Microsoft unicode define is only for apps that want to use TCHARs 
and
  *  be able to compile for both unicode and non-unicode with the same source.
- *  This is not recommanded for linux applications and is not supported
+ *  This is not recommended for linux applications and is not supported
  *  by the standard linux string header files.
  */
 #ifdef SQL_WCHART_CONVERT
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: cui/uiconfig

2013-05-25 Thread Andras Timar
 cui/uiconfig/ui/customize.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 88bec269557d38bf9472020b231201b844832e1e
Author: Andras Timar ati...@suse.com
Date:   Sat May 25 13:49:37 2013 +0200

typo: s/Toolbare/Toolbars/

Change-Id: Id9311252ced86df661f9219fe74478e69d9219ac

diff --git a/cui/uiconfig/ui/customize.ui b/cui/uiconfig/ui/customize.ui
index cb8c889..d31efbe 100644
--- a/cui/uiconfig/ui/customize.ui
+++ b/cui/uiconfig/ui/customize.ui
@@ -973,7 +973,7 @@
   object class=GtkLabel id=label29
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=label 
translatable=yes_Toolbare/property
+property name=label 
translatable=yes_Toolbars/property
 property name=use_underlineTrue/property
   /object
   packing
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - 2 commits - android/sdremote cui/uiconfig unixODBC/inc

2013-05-25 Thread Andras Timar
 android/sdremote/res/values/strings.xml |2 +-
 cui/uiconfig/ui/customize.ui|2 +-
 unixODBC/inc/odbc/sqltypes.h|2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 179c1fcdde5187f53fb435cb41ccdb8093bef685
Author: Andras Timar ati...@suse.com
Date:   Sat May 25 13:49:37 2013 +0200

typo: s/Toolbare/Toolbars/

Change-Id: Id9311252ced86df661f9219fe74478e69d9219ac

diff --git a/cui/uiconfig/ui/customize.ui b/cui/uiconfig/ui/customize.ui
index cb8c889..d31efbe 100644
--- a/cui/uiconfig/ui/customize.ui
+++ b/cui/uiconfig/ui/customize.ui
@@ -973,7 +973,7 @@
   object class=GtkLabel id=label29
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=label 
translatable=yes_Toolbare/property
+property name=label 
translatable=yes_Toolbars/property
 property name=use_underlineTrue/property
   /object
   packing
commit 324fc2c7a50e443ce8c9d6e9f4b9ca5c5417b509
Author: Andras Timar ati...@suse.com
Date:   Sat May 25 13:48:42 2013 +0200

typo: s/recommanded/recommended/

Change-Id: I4a22f856b993ef09556fcf921aa1f01be322cd4b

diff --git a/android/sdremote/res/values/strings.xml 
b/android/sdremote/res/values/strings.xml
index 3500aee..324d852 100644
--- a/android/sdremote/res/values/strings.xml
+++ b/android/sdremote/res/values/strings.xml
@@ -53,7 +53,7 @@
 string name=addserver_cancelCancel/string
 string name=reconnect_description1Your connection has been 
dropped./string
 string name=reconnect_description2Please try to reconnect/string
-string name=wifiAlertMsgThis is still an experimental feature. You 
need to \enable experimental features\ in 
\Preference\-\LibreOffice\-\Advanced\ on your computer. \nThe use over 
Bluetooth is recommanded./string
+string name=wifiAlertMsgThis is still an experimental feature. You 
need to \enable experimental features\ in 
\Preference\-\LibreOffice\-\Advanced\ on your computer. \nThe use over 
Bluetooth is recommended./string
 string-array name=countdown_values
 item 5:00/item
 item 10:00/item
diff --git a/unixODBC/inc/odbc/sqltypes.h b/unixODBC/inc/odbc/sqltypes.h
index 1b0f9d5..8800502 100644
--- a/unixODBC/inc/odbc/sqltypes.h
+++ b/unixODBC/inc/odbc/sqltypes.h
@@ -84,7 +84,7 @@ typedef charCHAR;
 /*
  * NOTE: The Microsoft unicode define is only for apps that want to use TCHARs 
and
  *  be able to compile for both unicode and non-unicode with the same source.
- *  This is not recommanded for linux applications and is not supported
+ *  This is not recommended for linux applications and is not supported
  *  by the standard linux string header files.
  */
 #ifdef SQL_WCHART_CONVERT
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-05-25 Thread Jian Fang Zhang
 include/oox/core/recordparser.hxx|4 +---
 include/svx/sdasitm.hxx  |   17 +
 svx/source/form/fmundo.cxx   |3 +++
 svx/source/items/customshapeitem.cxx |   15 ++-
 4 files changed, 23 insertions(+), 16 deletions(-)

New commits:
commit 853a7ae81de88a9b2903a673a40b6a3943868c6a
Author: Jian Fang Zhang zhan...@apache.org
Date:   Wed Sep 5 03:44:09 2012 +

Resolves: #i120746# FormScriptingEnvironment is never released

when created in the FmXUndoEnvironment ctor it is never released

Found by: zhangjf
Patch by: zhangjf
(cherry picked from commit d52fc99575db0d30b19a69dadcd2c3544584ecab)

Change-Id: Iaeba1018551441f3bb13f90d3d42ac2855e285e6

diff --git a/svx/source/form/fmundo.cxx b/svx/source/form/fmundo.cxx
index cf1567b..7b07764 100644
--- a/svx/source/form/fmundo.cxx
+++ b/svx/source/form/fmundo.cxx
@@ -193,6 +193,9 @@ FmXUndoEnvironment::FmXUndoEnvironment(FmFormModel _rModel)
 FmXUndoEnvironment::~FmXUndoEnvironment()
 {
 DBG_DTOR(FmXUndoEnvironment,NULL);
+if ( !m_bDisposed )   // i120746, call FormScriptingEnvironment::dispose 
to avoid memory leak
+m_pScriptingEnv-dispose();
+
 if (m_pPropertySetCache)
 delete static_castPropertySetInfoCache*(m_pPropertySetCache);
 }
commit a6659d6df6d68a4df43e70376cf6eea1fb54b932
Author: Herbert Dürr h...@apache.org
Date:   Tue Apr 16 12:03:08 2013 +

provide complete types of some SdrCustomShapeGeometryItem functors...

before they are used

(cherry picked from commit 7d6c5e79a17aa2ff392433667187c4bfe4ee2432)

Conflicts:
svx/inc/svx/sdasitm.hxx
svx/source/items/customshapeitem.cxx

Change-Id: Iac3e37bcfd4ab26d97411092259da2cc1879c2de

diff --git a/include/svx/sdasitm.hxx b/include/svx/sdasitm.hxx
index e54bf1f..0f7164e 100644
--- a/include/svx/sdasitm.hxx
+++ b/include/svx/sdasitm.hxx
@@ -127,6 +127,23 @@ public:
 SdrTextAutoGrowSizeItem( SvStream rIn )   :SdrOnOffItem( 
SDRATTR_TEXT_AUTOGROWSIZE, rIn )   {}
 };
 
+// some useful inline methods
+
+inline bool SdrCustomShapeGeometryItem::PropertyEq::operator()( const 
OUString r1, const OUString r2 ) const
+{
+return r1.equals( r2 );
+}
+
+inline bool SdrCustomShapeGeometryItem::PropertyPairEq::operator()( const 
SdrCustomShapeGeometryItem::PropertyPair r1, const 
SdrCustomShapeGeometryItem::PropertyPair r2 ) const
+{
+return ( r1.first.equals( r2.first ) )  ( r1.second.equals( r2.second ) 
);
+}
+
+inline size_t SdrCustomShapeGeometryItem::PropertyPairHash::operator()( const 
SdrCustomShapeGeometryItem::PropertyPair r1 ) const
+{
+return (size_t)r1.first.hashCode() + r1.second.hashCode();
+};
+
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/source/items/customshapeitem.cxx 
b/svx/source/items/customshapeitem.cxx
index 5b8ed9f..87b8cfc 100644
--- a/svx/source/items/customshapeitem.cxx
+++ b/svx/source/items/customshapeitem.cxx
@@ -31,23 +31,12 @@ SdrCustomShapeDataItem::SdrCustomShapeDataItem()
 :   SfxStringItem( SDRATTR_CUSTOMSHAPE_DATA, String() )
 {}
 
-bool SdrCustomShapeGeometryItem::PropertyEq::operator()( const OUString r1, 
const OUString r2 ) const
-{
-return r1.equals( r2 );
-}
-bool SdrCustomShapeGeometryItem::PropertyPairEq::operator()( const 
SdrCustomShapeGeometryItem::PropertyPair r1, const 
SdrCustomShapeGeometryItem::PropertyPair r2 ) const
-{
-return ( r1.first.equals( r2.first ) )  ( r1.second.equals( r2.second ) 
);
-}
-size_t SdrCustomShapeGeometryItem::PropertyPairHash::operator()( const 
SdrCustomShapeGeometryItem::PropertyPair r1 ) const
-{
-return (size_t)r1.first.hashCode() + r1.second.hashCode();
-};
-
 TYPEINIT1_FACTORY( SdrCustomShapeGeometryItem, SfxPoolItem , new  
SdrCustomShapeGeometryItem);
+
 SdrCustomShapeGeometryItem::SdrCustomShapeGeometryItem()
 :   SfxPoolItem( SDRATTR_CUSTOMSHAPE_GEOMETRY )
 {}
+
 SdrCustomShapeGeometryItem::SdrCustomShapeGeometryItem( const uno::Sequence 
beans::PropertyValue  rVal )
 :   SfxPoolItem( SDRATTR_CUSTOMSHAPE_GEOMETRY )
 {
commit 1fb61b87136e556f13537794d30077606f4949c9
Author: Herbert Dürr h...@apache.org
Date:   Tue Apr 16 11:23:34 2013 +

provide complete types of FragmentHandler and RecordInfo before they are 
used

(cherry picked from commit c73bc9587bdcf6a5d3add454fe3383fc9d2c1e65)

Conflicts:
oox/inc/oox/core/recordparser.hxx

Change-Id: I6deecaabe32d4b071a83ce4687f83543354ddac2

diff --git a/include/oox/core/recordparser.hxx 
b/include/oox/core/recordparser.hxx
index 9e417c0..bd89427 100644
--- a/include/oox/core/recordparser.hxx
+++ b/include/oox/core/recordparser.hxx
@@ -25,13 +25,11 @@
 #include com/sun/star/xml/sax/SAXException.hpp
 #include rtl/ref.hxx
 #include oox/helper/binaryinputstream.hxx
+#include oox/core/fragmenthandler.hxx
 
 namespace oox {
 namespace core {
 
-class FragmentHandler;
-struct RecordInfo;
-
 namespace prv { class 

[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 49/9857cc2735c497f027d5440a87bbd84b84f5a9

2013-05-25 Thread Caolán McNamara
 49/9857cc2735c497f027d5440a87bbd84b84f5a9 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 32e361553ac24e8a7a96489aa28496ab0e092b75
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 13:28:57 2013 +0100

Notes added by 'git notes add'

diff --git a/49/9857cc2735c497f027d5440a87bbd84b84f5a9 
b/49/9857cc2735c497f027d5440a87bbd84b84f5a9
new file mode 100644
index 000..085d555
--- /dev/null
+++ b/49/9857cc2735c497f027d5440a87bbd84b84f5a9
@@ -0,0 +1 @@
+prefer: d04fb45caa46db829d21a7f9b96878655ce0f479
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 2 commits - 7d/6c5e79a17aa2ff392433667187c4bfe4ee2432 d5/2fc99575db0d30b19a69dadcd2c3544584ecab

2013-05-25 Thread Caolán McNamara
 7d/6c5e79a17aa2ff392433667187c4bfe4ee2432 |1 +
 d5/2fc99575db0d30b19a69dadcd2c3544584ecab |1 +
 2 files changed, 2 insertions(+)

New commits:
commit 39bc357652abf5339b8d79372ff996029d8c47c1
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 13:29:28 2013 +0100

Notes added by 'git notes add'

diff --git a/7d/6c5e79a17aa2ff392433667187c4bfe4ee2432 
b/7d/6c5e79a17aa2ff392433667187c4bfe4ee2432
new file mode 100644
index 000..491d9ef
--- /dev/null
+++ b/7d/6c5e79a17aa2ff392433667187c4bfe4ee2432
@@ -0,0 +1 @@
+merged as: a6659d6df6d68a4df43e70376cf6eea1fb54b932
commit a8c13fb6ec5d2f1a4fbd2522979b332ea884d45e
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 13:29:16 2013 +0100

Notes added by 'git notes add'

diff --git a/d5/2fc99575db0d30b19a69dadcd2c3544584ecab 
b/d5/2fc99575db0d30b19a69dadcd2c3544584ecab
new file mode 100644
index 000..3faf3e8
--- /dev/null
+++ b/d5/2fc99575db0d30b19a69dadcd2c3544584ecab
@@ -0,0 +1 @@
+merged as: 853a7ae81de88a9b2903a673a40b6a3943868c6a
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - c7/3bc9587bdcf6a5d3add454fe3383fc9d2c1e65

2013-05-25 Thread Caolán McNamara
 c7/3bc9587bdcf6a5d3add454fe3383fc9d2c1e65 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit d65f99cce7d92de238bda8f7720b7cd4bbcfeddf
Author: Caolán McNamara caol...@redhat.com
Date:   Sat May 25 13:29:38 2013 +0100

Notes added by 'git notes add'

diff --git a/c7/3bc9587bdcf6a5d3add454fe3383fc9d2c1e65 
b/c7/3bc9587bdcf6a5d3add454fe3383fc9d2c1e65
new file mode 100644
index 000..125fb67
--- /dev/null
+++ b/c7/3bc9587bdcf6a5d3add454fe3383fc9d2c1e65
@@ -0,0 +1 @@
+merged as: 1fb61b87136e556f13537794d30077606f4949c9
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Fix fdo#64685 - Superscript broken in master

2013-05-25 Thread Khaled Hosny (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4032

To pull it, you can do:

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

Fix fdo#64685 - Superscript broken in master

After f22006dc6ac34a35a060e15466cf6b2d2058617d the position member of
SwDrawTextInfo is no longer a pointer, so changing the passed Point
after calling SetPos() has no effect, but some code seems to be relying
on it being pointer. Moving SetPos() to after changing the point seems
to do the trick, but there may be other similarly broken code like
SwSubFont::_DrawStretchText() below.

Change-Id: I2f563c1543ff7bff68e573f69fce39694181b370
---
M sw/source/core/txtnode/swfont.cxx
1 file changed, 2 insertions(+), 2 deletions(-)



diff --git a/sw/source/core/txtnode/swfont.cxx 
b/sw/source/core/txtnode/swfont.cxx
index 02b5add..068fd71 100644
--- a/sw/source/core/txtnode/swfont.cxx
+++ b/sw/source/core/txtnode/swfont.cxx
@@ -850,12 +850,12 @@
 SwDigitModeModifier aDigitModeModifier( rInf.GetOut(), 
rInf.GetFont()-GetLanguage() );
 
 Point aPos( rInf.GetPos() );
-const Point rOld = rInf.GetPos();
-rInf.SetPos( aPos );
 
 if( GetEscapement() )
 CalcEsc( rInf, aPos );
 
+const Point rOld = rInf.GetPos();
+rInf.SetPos( aPos );
 rInf.SetKern( CheckKerning() + rInf.GetSperren() / 
SPACING_PRECISION_FACTOR );
 
 if( IsCapital() )

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2f563c1543ff7bff68e573f69fce39694181b370
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Khaled Hosny khaledho...@eglug.org

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


[Libreoffice-commits] core.git: Branch 'feature/inherited-number-format-removal' - 2 commits - sc/inc sc/qa sc/source

2013-05-25 Thread Markus Mohrhard
 sc/inc/formulacell.hxx  |5 
 sc/qa/unit/ucalc.cxx|  342 +---
 sc/source/core/data/column2.cxx |5 
 sc/source/core/data/formulacell.cxx |   21 --
 sc/source/core/tool/cellform.cxx|4 
 sc/source/core/tool/interpr4.cxx|2 
 sc/source/ui/unoobj/chart2uno.cxx   |   12 -
 7 files changed, 211 insertions(+), 180 deletions(-)

New commits:
commit 48c0d09e8218f00ec038c94dea635ee1bcc67c47
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat May 25 14:45:53 2013 +0200

let us use clean test environments

The additional typing and the duplicated code benefit cleaner test
execution. Test failures might be hidden by a dirty test environment or
random test failures might be produced by it.

Change-Id: I97283009b65facbaad82e41ae6f1258430684438

diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index 091872f..d1ca50d 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -101,7 +101,17 @@ public:
 void testRangeList();
 void testInput();
 void testFormulaHashAndTag();
-void testCellFunctions();
+void testFuncSUM();
+void testFuncPRODUCT();
+void testFuncN();
+void testFuncCOUNTIF();
+void testFuncNUMBERVALUE();
+void testFuncVLOOKUP();
+void testFuncMATCH();
+void testFuncCELL();
+void testFuncDATEDIF();
+void testFuncINDIRECT();
+void testFuncIFERROR();
 void testCopyToDocument();
 /**
  * Make sure the SHEETS function gets properly updated during sheet
@@ -261,7 +271,17 @@ public:
 CPPUNIT_TEST(testRangeList);
 CPPUNIT_TEST(testInput);
 CPPUNIT_TEST(testFormulaHashAndTag);
-CPPUNIT_TEST(testCellFunctions);
+CPPUNIT_TEST(testFuncSUM);
+CPPUNIT_TEST(testFuncPRODUCT);
+CPPUNIT_TEST(testFuncN);
+CPPUNIT_TEST(testFuncCOUNTIF);
+CPPUNIT_TEST(testFuncNUMBERVALUE);
+CPPUNIT_TEST(testFuncVLOOKUP);
+CPPUNIT_TEST(testFuncMATCH);
+CPPUNIT_TEST(testFuncCELL);
+CPPUNIT_TEST(testFuncDATEDIF);
+CPPUNIT_TEST(testFuncINDIRECT);
+CPPUNIT_TEST(testFuncIFERROR);
 CPPUNIT_TEST(testCopyToDocument);
 CPPUNIT_TEST(testSheetsFunc);
 CPPUNIT_TEST(testVolatileFunc);
@@ -493,90 +513,106 @@ void Test::testInput()
 m_pDoc-DeleteTab(0);
 }
 
-void testFuncSUM(ScDocument* pDoc)
+void Test::testFuncSUM()
 {
+OUString aTabName(foo);
+CPPUNIT_ASSERT_MESSAGE (failed to insert sheet,
+m_pDoc-InsertTab (0, aTabName));
+
 double val = 1;
 double result;
-pDoc-SetValue (0, 0, 0, val);
-pDoc-SetValue (0, 1, 0, val);
-pDoc-SetString (0, 2, 0, OUString(=SUM(A1:A2)));
-pDoc-CalcAll();
-pDoc-GetValue (0, 2, 0, result);
+m_pDoc-SetValue (0, 0, 0, val);
+m_pDoc-SetValue (0, 1, 0, val);
+m_pDoc-SetString (0, 2, 0, OUString(=SUM(A1:A2)));
+m_pDoc-CalcAll();
+m_pDoc-GetValue (0, 2, 0, result);
 CPPUNIT_ASSERT_MESSAGE (calculation failed, result == 2.0);
+
+m_pDoc-DeleteTab(0);
 }
 
-void testFuncPRODUCT(ScDocument* pDoc)
+void Test::testFuncPRODUCT()
 {
+OUString aTabName(foo);
+CPPUNIT_ASSERT_MESSAGE (failed to insert sheet,
+m_pDoc-InsertTab (0, aTabName));
+
 double val = 1;
 double result;
-pDoc-SetValue(0, 0, 0, val);
+m_pDoc-SetValue(0, 0, 0, val);
 val = 2;
-pDoc-SetValue(0, 1, 0, val);
+m_pDoc-SetValue(0, 1, 0, val);
 val = 3;
-pDoc-SetValue(0, 2, 0, val);
-pDoc-SetString(0, 3, 0, OUString(=PRODUCT(A1:A3)));
-pDoc-CalcAll();
-pDoc-GetValue(0, 3, 0, result);
+m_pDoc-SetValue(0, 2, 0, val);
+m_pDoc-SetString(0, 3, 0, OUString(=PRODUCT(A1:A3)));
+m_pDoc-CalcAll();
+m_pDoc-GetValue(0, 3, 0, result);
 CPPUNIT_ASSERT_MESSAGE(Calculation of PRODUCT failed, result == 6.0);
 
-pDoc-SetString(0, 4, 0, OUString(=PRODUCT({1;2;3})));
-pDoc-CalcAll();
-pDoc-GetValue(0, 4, 0, result);
+m_pDoc-SetString(0, 4, 0, OUString(=PRODUCT({1;2;3})));
+m_pDoc-CalcAll();
+m_pDoc-GetValue(0, 4, 0, result);
 CPPUNIT_ASSERT_MESSAGE(Calculation of PRODUCT with inline array failed, 
result == 6.0);
+
+m_pDoc-DeleteTab(0);
 }
 
-void testFuncN(ScDocument* pDoc)
+void Test::testFuncN()
 {
+OUString aTabName(foo);
+CPPUNIT_ASSERT_MESSAGE (failed to insert sheet,
+m_pDoc-InsertTab (0, aTabName));
+
 double result;
 
 // Clear the area first.
-clearRange(pDoc, ScRange(0, 0, 0, 1, 20, 0));
+clearRange(m_pDoc, ScRange(0, 0, 0, 1, 20, 0));
 
 // Put values to reference.
 double val = 0;
-pDoc-SetValue(0, 0, 0, val);
-pDoc-SetString(0, 2, 0, OUString(Text));
+m_pDoc-SetValue(0, 0, 0, val);
+m_pDoc-SetString(0, 2, 0, OUString(Text));
 val = 1;
-pDoc-SetValue(0, 3, 0, val);
+m_pDoc-SetValue(0, 3, 0, val);
 val = -1;
-pDoc-SetValue(0, 4, 0, val);
+m_pDoc-SetValue(0, 4, 0, val);
 val = 12.3;

[Libreoffice-commits] core.git: download.lst libwps/UnpackedTarball_libwps.mk

2013-05-25 Thread Fridrich Štrba
 download.lst |2 +-
 libwps/UnpackedTarball_libwps.mk |7 ---
 2 files changed, 1 insertion(+), 8 deletions(-)

New commits:
commit 989da70779af441436fc46bbe7b95902e1da837e
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Sat May 25 15:36:46 2013 +0200

Uploading libwps 0.2.9

Change-Id: I3307208226ffa8bc06e7b860d10e92c9a6e04758
Reviewed-on: https://gerrit.libreoffice.org/4033
Reviewed-by: Fridrich Strba fridr...@documentfoundation.org
Tested-by: Fridrich Strba fridr...@documentfoundation.org

diff --git a/download.lst b/download.lst
index 50ecc7f..5398cc2 100644
--- a/download.lst
+++ b/download.lst
@@ -86,7 +86,7 @@ export UCPP_TARBALL := 
0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
 export VIGRA_TARBALL := ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz
 export WPD_TARBALL := 972afb8fdf02d9e7517e258b7fa7f0eb-libwpd-0.9.8.tar.bz2
 export WPG_TARBALL := b85436266b2ac91d351ab5684b181151-libwpg-0.2.2.tar.bz2
-export WPS_TARBALL := 78196c097db366fac66841d032b1ddac-libwps-0.2.8.tar.bz2
+export WPS_TARBALL := 46eb0e7f213ad61bd5dee0c494132cb0-libwps-0.2.9.tar.bz2
 export XPDF_TARBALL := 599dc4cc65a07ee868cf92a667a913d2-xpdf-3.02.tar.gz
 export XSLTML_TARBALL := a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
 export ZLIB_TARBALL := 2ab442d169156f34c379c968f3f482dd-zlib-1.2.7.tar.bz2
diff --git a/libwps/UnpackedTarball_libwps.mk b/libwps/UnpackedTarball_libwps.mk
index 7c31bf8..1fd633a 100644
--- a/libwps/UnpackedTarball_libwps.mk
+++ b/libwps/UnpackedTarball_libwps.mk
@@ -11,11 +11,4 @@ $(eval $(call gb_UnpackedTarball_UnpackedTarball,libwps))
 
 $(eval $(call gb_UnpackedTarball_set_tarball,libwps,$(WPS_TARBALL)))
 
-# HACK to avoid the need to deliver the headers to $(OUTDIR). This
-# should be removed when libwps is updated.
-$(eval $(call gb_UnpackedTarball_set_post_action,libwps,\
-   mkdir -p inc/libwps  \
-   cp -f src/lib/libwps.h src/lib/WPSDocument.h inc/libwps \
-))
-
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Uploading libwps 0.2.9

2013-05-25 Thread Fridrich Strba (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/4033

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I3307208226ffa8bc06e7b860d10e92c9a6e04758
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org

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


[PATCH] Uploading libwps 0.2.9

2013-05-25 Thread Fridrich Strba (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4033

To pull it, you can do:

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

Uploading libwps 0.2.9

Change-Id: I3307208226ffa8bc06e7b860d10e92c9a6e04758
---
M download.lst
M libwps/UnpackedTarball_libwps.mk
2 files changed, 1 insertion(+), 8 deletions(-)



diff --git a/download.lst b/download.lst
index 50ecc7f..5398cc2 100644
--- a/download.lst
+++ b/download.lst
@@ -86,7 +86,7 @@
 export VIGRA_TARBALL := ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz
 export WPD_TARBALL := 972afb8fdf02d9e7517e258b7fa7f0eb-libwpd-0.9.8.tar.bz2
 export WPG_TARBALL := b85436266b2ac91d351ab5684b181151-libwpg-0.2.2.tar.bz2
-export WPS_TARBALL := 78196c097db366fac66841d032b1ddac-libwps-0.2.8.tar.bz2
+export WPS_TARBALL := 46eb0e7f213ad61bd5dee0c494132cb0-libwps-0.2.9.tar.bz2
 export XPDF_TARBALL := 599dc4cc65a07ee868cf92a667a913d2-xpdf-3.02.tar.gz
 export XSLTML_TARBALL := a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
 export ZLIB_TARBALL := 2ab442d169156f34c379c968f3f482dd-zlib-1.2.7.tar.bz2
diff --git a/libwps/UnpackedTarball_libwps.mk b/libwps/UnpackedTarball_libwps.mk
index 7c31bf8..1fd633a 100644
--- a/libwps/UnpackedTarball_libwps.mk
+++ b/libwps/UnpackedTarball_libwps.mk
@@ -11,11 +11,4 @@
 
 $(eval $(call gb_UnpackedTarball_set_tarball,libwps,$(WPS_TARBALL)))
 
-# HACK to avoid the need to deliver the headers to $(OUTDIR). This
-# should be removed when libwps is updated.
-$(eval $(call gb_UnpackedTarball_set_post_action,libwps,\
-   mkdir -p inc/libwps  \
-   cp -f src/lib/libwps.h src/lib/WPSDocument.h inc/libwps \
-))
-
 # vim: set noet sw=4 ts=4:

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3307208226ffa8bc06e7b860d10e92c9a6e04758
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Fridrich Strba fridr...@documentfoundation.org

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - download.lst libwps/ExternalPackage_libwps.mk

2013-05-25 Thread Fridrich Štrba
 download.lst |2 +-
 libwps/ExternalPackage_libwps.mk |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit d294d12693cd363340592dc3185d75896b06fd07
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Sat May 25 15:36:46 2013 +0200

Uploading libwps 0.2.9

Change-Id: I3307208226ffa8bc06e7b860d10e92c9a6e04758
Reviewed-on: https://gerrit.libreoffice.org/4033
Reviewed-by: Fridrich Strba fridr...@documentfoundation.org
Tested-by: Fridrich Strba fridr...@documentfoundation.org
(cherry picked from commit 989da70779af441436fc46bbe7b95902e1da837e)
Reviewed-on: https://gerrit.libreoffice.org/4034

diff --git a/download.lst b/download.lst
index 38466ab..040b6b4 100644
--- a/download.lst
+++ b/download.lst
@@ -86,7 +86,7 @@ export UCPP_TARBALL := 
0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
 export VIGRA_TARBALL := ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz
 export WPD_TARBALL := 972afb8fdf02d9e7517e258b7fa7f0eb-libwpd-0.9.8.tar.bz2
 export WPG_TARBALL := b85436266b2ac91d351ab5684b181151-libwpg-0.2.2.tar.bz2
-export WPS_TARBALL := 78196c097db366fac66841d032b1ddac-libwps-0.2.8.tar.bz2
+export WPS_TARBALL := 46eb0e7f213ad61bd5dee0c494132cb0-libwps-0.2.9.tar.bz2
 export XPDF_TARBALL := 599dc4cc65a07ee868cf92a667a913d2-xpdf-3.02.tar.gz
 export XSLTML_TARBALL := a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
 export ZLIB_TARBALL := 2ab442d169156f34c379c968f3f482dd-zlib-1.2.7.tar.bz2
diff --git a/libwps/ExternalPackage_libwps.mk b/libwps/ExternalPackage_libwps.mk
index 995ec7c..5bf77ff 100644
--- a/libwps/ExternalPackage_libwps.mk
+++ b/libwps/ExternalPackage_libwps.mk
@@ -10,8 +10,8 @@
 $(eval $(call gb_ExternalPackage_ExternalPackage,libwps,libwps))
 
 $(eval $(call 
gb_ExternalPackage_add_unpacked_files,libwps,inc/external/libwps,\
-   src/lib/libwps.h \
-   src/lib/WPSDocument.h \
+   inc/libwps/libwps.h \
+   inc/libwps/WPSDocument.h \
 ))
 
 $(eval $(call gb_ExternalPackage_use_external_project,libwps,libwps))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH libreoffice-4-1] Uploading libwps 0.2.9

2013-05-25 Thread Fridrich Strba (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4034

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/34/4034/1

Uploading libwps 0.2.9

Change-Id: I3307208226ffa8bc06e7b860d10e92c9a6e04758
Reviewed-on: https://gerrit.libreoffice.org/4033
Reviewed-by: Fridrich Strba fridr...@documentfoundation.org
Tested-by: Fridrich Strba fridr...@documentfoundation.org
(cherry picked from commit 989da70779af441436fc46bbe7b95902e1da837e)
---
M download.lst
M libwps/ExternalPackage_libwps.mk
2 files changed, 3 insertions(+), 3 deletions(-)



diff --git a/download.lst b/download.lst
index 38466ab..040b6b4 100644
--- a/download.lst
+++ b/download.lst
@@ -86,7 +86,7 @@
 export VIGRA_TARBALL := ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz
 export WPD_TARBALL := 972afb8fdf02d9e7517e258b7fa7f0eb-libwpd-0.9.8.tar.bz2
 export WPG_TARBALL := b85436266b2ac91d351ab5684b181151-libwpg-0.2.2.tar.bz2
-export WPS_TARBALL := 78196c097db366fac66841d032b1ddac-libwps-0.2.8.tar.bz2
+export WPS_TARBALL := 46eb0e7f213ad61bd5dee0c494132cb0-libwps-0.2.9.tar.bz2
 export XPDF_TARBALL := 599dc4cc65a07ee868cf92a667a913d2-xpdf-3.02.tar.gz
 export XSLTML_TARBALL := a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
 export ZLIB_TARBALL := 2ab442d169156f34c379c968f3f482dd-zlib-1.2.7.tar.bz2
diff --git a/libwps/ExternalPackage_libwps.mk b/libwps/ExternalPackage_libwps.mk
index 995ec7c..5bf77ff 100644
--- a/libwps/ExternalPackage_libwps.mk
+++ b/libwps/ExternalPackage_libwps.mk
@@ -10,8 +10,8 @@
 $(eval $(call gb_ExternalPackage_ExternalPackage,libwps,libwps))
 
 $(eval $(call 
gb_ExternalPackage_add_unpacked_files,libwps,inc/external/libwps,\
-   src/lib/libwps.h \
-   src/lib/WPSDocument.h \
+   inc/libwps/libwps.h \
+   inc/libwps/WPSDocument.h \
 ))
 
 $(eval $(call gb_ExternalPackage_use_external_project,libwps,libwps))

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3307208226ffa8bc06e7b860d10e92c9a6e04758
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-1
Gerrit-Owner: Fridrich Strba fridr...@documentfoundation.org

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


[PUSHED libreoffice-4-1] Uploading libwps 0.2.9

2013-05-25 Thread Fridrich Strba (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/4034

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I3307208226ffa8bc06e7b860d10e92c9a6e04758
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-1
Gerrit-Owner: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org

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


[Libreoffice-commits] core.git: Branch 'feature/inherited-number-format-removal' - sc/inc sc/source

2013-05-25 Thread Markus Mohrhard
 sc/inc/formulacell.hxx  |4 
 sc/source/core/data/formulacell.cxx |   15 +--
 sc/source/core/tool/cellform.cxx|5 -
 sc/source/filter/xml/xmlexprt.cxx   |   28 +---
 sc/source/ui/app/transobj.cxx   |   12 
 sc/source/ui/unoobj/funcuno.cxx |   24 
 sc/source/ui/view/tabvwsha.cxx  |7 ---
 7 files changed, 6 insertions(+), 89 deletions(-)

New commits:
commit 245fb6e3fa6302abaafbcfa28b7922427cea2564
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat May 25 15:12:24 2013 +0200

all formula cells have now an explicit number format

Remove ScFormulaCell::GetStandardFormat

Change-Id: I0b19f572cfcf5c08c81009b0f10e7cc44a1aa2f4

diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx
index cd9767c..54aac68 100644
--- a/sc/inc/formulacell.hxx
+++ b/sc/inc/formulacell.hxx
@@ -236,10 +236,6 @@ public:
 voidSetInChangeTrack( bool bVal ) { bInChangeTrack = bVal; }
 boolIsInChangeTrack() const { return bInChangeTrack; }
 
-// standard format for type and format
-// for format Standard possibly the format used in the 
formula cell
-sal_uLong   GetStandardFormat( SvNumberFormatter rFormatter, 
sal_uLong nFormat ) const;
-
 // For import filters!
 voidAddRecalcMode( formula::ScRecalcMode );
 /** For import only: set a double result. */
diff --git a/sc/source/core/data/formulacell.cxx 
b/sc/source/core/data/formulacell.cxx
index d5651c7..291769d 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -1492,16 +1492,6 @@ void ScFormulaCell::GetMatColsRows( SCCOL  nCols, SCROW 
 nRows ) const
 }
 
 
-sal_uLong ScFormulaCell::GetStandardFormat( SvNumberFormatter rFormatter, 
sal_uLong nFormat ) const
-{
-//! not ScFormulaCell::IsValue(), that could reinterpret the formula again.
-if ( aResult.IsValue() )
-return ScGlobal::GetStandardFormat( aResult.GetDouble(), rFormatter, 
nFormat, nFormatType );
-else
-return ScGlobal::GetStandardFormat( rFormatter, nFormat, nFormatType );
-}
-
-
 void ScFormulaCell::Notify( SvtBroadcaster, const SfxHint rHint)
 {
 if ( !pDocument-IsInDtorClear()  !pDocument-GetHardRecalcState() )
@@ -1649,10 +1639,7 @@ void ScFormulaCell::GetURLResult( OUString rURL, 
OUString rCellText )
 sal_uLong nCellFormat = pDocument-GetNumberFormat( aPos );
 SvNumberFormatter* pFormatter = pDocument-GetFormatTable();
 
-if ( (nCellFormat % SV_COUNTRY_LANGUAGE_OFFSET) == 0 )
-nCellFormat = GetStandardFormat( *pFormatter,nCellFormat );
-
-   sal_uLong nURLFormat = ScGlobal::GetStandardFormat( 
*pFormatter,nCellFormat, NUMBERFORMAT_NUMBER);
+sal_uLong nURLFormat = ScGlobal::GetStandardFormat( *pFormatter, 
nCellFormat, NUMBERFORMAT_NUMBER);
 
 if ( IsValue() )
 {
diff --git a/sc/source/core/tool/cellform.cxx b/sc/source/core/tool/cellform.cxx
index 6846874..a33405f 100644
--- a/sc/source/core/tool/cellform.cxx
+++ b/sc/source/core/tool/cellform.cxx
@@ -101,11 +101,6 @@ void ScCellFormat::GetString( ScRefCellValue rCell, 
sal_uLong nFormat, OUString
 {
 sal_uInt16 nErrCode = pFCell-GetErrCode();
 
-// get the number format only after interpretation 
(GetErrCode):
-if ( (nFormat % SV_COUNTRY_LANGUAGE_OFFSET) == 0 )
-nFormat = pFCell-GetStandardFormat( rFormatter,
-nFormat );
-
 if (nErrCode != 0)
 rString = ScGlobal::GetErrorString(nErrCode);
 else if ( pFCell-IsEmptyDisplayedAsString() )
diff --git a/sc/source/filter/xml/xmlexprt.cxx 
b/sc/source/filter/xml/xmlexprt.cxx
index c78c4df..d39900f 100644
--- a/sc/source/filter/xml/xmlexprt.cxx
+++ b/sc/source/filter/xml/xmlexprt.cxx
@@ -2936,33 +2936,15 @@ void ScXMLExport::WriteCell(ScMyCell aCell, sal_Int32 
nEqualCellCount)
 bool bIsStandard;
 OUString sCurrency;
 
GetNumberFormatAttributesExportHelper()-GetCellType(aCell.nNumberFormat, 
sCurrency, bIsStandard);
-if (bIsStandard)
+if (pDoc)
 {
-if (pDoc)
-{
-
GetNumberFormatAttributesExportHelper()-SetNumberFormatAttributes(
-
pFormulaCell-GetStandardFormat(*pDoc-GetFormatTable(), 0),
-pDoc-GetValue( aCellPos ));
-if( getDefaultVersion() = 
SvtSaveOptions::ODFVER_012 )
-{
-
GetNumberFormatAttributesExportHelper()-SetNumberFormatAttributes(
-

[Libreoffice-commits] core.git: freetype/ExternalProject_freetype.mk

2013-05-25 Thread David Tardon
 freetype/ExternalProject_freetype.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3f42e3196f3b574afbf7d0df022dd68271cab0dc
Author: David Tardon dtar...@redhat.com
Date:   Sat May 25 13:02:30 2013 +0200

blind attempt to unbreak android build

Change-Id: I633568f2bfd2af6b14f8bcc192cd2fcc32521131

diff --git a/freetype/ExternalProject_freetype.mk 
b/freetype/ExternalProject_freetype.mk
index 8e2108c..ba22a64 100644
--- a/freetype/ExternalProject_freetype.mk
+++ b/freetype/ExternalProject_freetype.mk
@@ -20,7 +20,7 @@ $(call gb_ExternalProject_get_state_target,freetype,build) :
--disable-shared \
--without-zlib \
--without-bzip2 \
-   --prefix=$(OUTDIR) --includedir=$(OUTDIR)/inc/external \
+   --prefix=$(OUTDIR) --includedir=$(call 
gb_UnpackedTarball_get_dir,freetype)/include \
--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \
 chmod +x builds/unix/freetype-config \
 $(MAKE) \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: cui/uiconfig dbaccess/uiconfig starmath/uiconfig svx/uiconfig sw/uiconfig xmlsecurity/uiconfig

2013-05-25 Thread Andras Timar
 cui/uiconfig/ui/backgroundpage.ui |2 +-
 cui/uiconfig/ui/optadvancedpage.ui|2 +-
 cui/uiconfig/ui/optpathspage.ui   |2 +-
 dbaccess/uiconfig/ui/generalpagewizard.ui |2 +-
 dbaccess/uiconfig/ui/querypropertiesdialog.ui |4 ++--
 starmath/uiconfig/smath/ui/alignmentdialog.ui |2 +-
 starmath/uiconfig/smath/ui/spacingdialog.ui   |2 +-
 svx/uiconfig/ui/headfootformatpage.ui |2 +-
 sw/uiconfig/swriter/ui/editsectiondialog.ui   |2 +-
 xmlsecurity/uiconfig/ui/securitytrustpage.ui  |2 +-
 10 files changed, 11 insertions(+), 11 deletions(-)

New commits:
commit 05eaada40d22ca02cebd1392e44beabcdd8d3964
Author: Andras Timar ati...@suse.com
Date:   Sat May 25 17:26:49 2013 +0200

translatable=yes for some elements in .ui files

Change-Id: I915cd6e73f907850f17b102c7860a827b91eef37

diff --git a/cui/uiconfig/ui/backgroundpage.ui 
b/cui/uiconfig/ui/backgroundpage.ui
index 5fcb803..68a550a 100644
--- a/cui/uiconfig/ui/backgroundpage.ui
+++ b/cui/uiconfig/ui/backgroundpage.ui
@@ -293,7 +293,7 @@
 property name=no_show_allTrue/property
 property name=hexpandTrue/property
 property name=xalign0/property
-property name=labellt;FILENAMEgt;/property
+property name=label 
translatable=yeslt;FILENAMEgt;/property
   /object
   packing
 property name=left_attach0/property
diff --git a/cui/uiconfig/ui/optadvancedpage.ui 
b/cui/uiconfig/ui/optadvancedpage.ui
index 02415e4..5d703d3 100644
--- a/cui/uiconfig/ui/optadvancedpage.ui
+++ b/cui/uiconfig/ui/optadvancedpage.ui
@@ -93,7 +93,7 @@
 property name=layout_stylestart/property
 child
   object class=GtkButton id=add
-property name=label_Add.../property
+property name=label 
translatable=yes_Add.../property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultTrue/property
diff --git a/cui/uiconfig/ui/optpathspage.ui b/cui/uiconfig/ui/optpathspage.ui
index 64f0b80..a273f7b 100644
--- a/cui/uiconfig/ui/optpathspage.ui
+++ b/cui/uiconfig/ui/optpathspage.ui
@@ -148,7 +148,7 @@
 /child
 child
   object class=GtkButton id=edit
-property name=label_Edit.../property
+property name=label translatable=yes_Edit.../property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultTrue/property
diff --git a/dbaccess/uiconfig/ui/generalpagewizard.ui 
b/dbaccess/uiconfig/ui/generalpagewizard.ui
index 95025e7..0e41080 100644
--- a/dbaccess/uiconfig/ui/generalpagewizard.ui
+++ b/dbaccess/uiconfig/ui/generalpagewizard.ui
@@ -136,7 +136,7 @@
 /child
 child
   object class=dbulo-OpenDocumentButton id=openDatabase
-property name=labelOpen/property
+property name=label translatable=yesOpen/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultTrue/property
diff --git a/dbaccess/uiconfig/ui/querypropertiesdialog.ui 
b/dbaccess/uiconfig/ui/querypropertiesdialog.ui
index 6f55af2..ddd5936 100644
--- a/dbaccess/uiconfig/ui/querypropertiesdialog.ui
+++ b/dbaccess/uiconfig/ui/querypropertiesdialog.ui
@@ -118,7 +118,7 @@
 property name=layout_stylestart/property
 child
   object class=GtkRadioButton id=distinct
-property name=labelYes/property
+property name=label 
translatable=yesYes/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultFalse/property
@@ -134,7 +134,7 @@
 /child
 child
   object class=GtkRadioButton id=nondistinct
-property name=labelNo/property
+property name=label 
translatable=yesNo/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultFalse/property
diff --git a/starmath/uiconfig/smath/ui/alignmentdialog.ui 
b/starmath/uiconfig/smath/ui/alignmentdialog.ui
index 25ae7dc..7368f21 100644
--- 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - cui/uiconfig dbaccess/uiconfig svx/uiconfig sw/uiconfig xmlsecurity/uiconfig

2013-05-25 Thread Andras Timar
 cui/uiconfig/ui/backgroundpage.ui |2 +-
 cui/uiconfig/ui/optadvancedpage.ui|2 +-
 cui/uiconfig/ui/optpathspage.ui   |2 +-
 dbaccess/uiconfig/ui/generalpagewizard.ui |2 +-
 dbaccess/uiconfig/ui/querypropertiesdialog.ui |4 ++--
 svx/uiconfig/ui/headfootformatpage.ui |2 +-
 sw/uiconfig/swriter/ui/editsectiondialog.ui   |2 +-
 xmlsecurity/uiconfig/ui/securitytrustpage.ui  |2 +-
 8 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit 2f5a4b914daac00c8881ca69783c879d074fed9d
Author: Andras Timar ati...@suse.com
Date:   Sat May 25 17:26:49 2013 +0200

translatable=yes for some elements in .ui files

Conflicts:
starmath/uiconfig/smath/ui/alignmentdialog.ui
starmath/uiconfig/smath/ui/spacingdialog.ui

Change-Id: I915cd6e73f907850f17b102c7860a827b91eef37

diff --git a/cui/uiconfig/ui/backgroundpage.ui 
b/cui/uiconfig/ui/backgroundpage.ui
index 5fcb803..68a550a 100644
--- a/cui/uiconfig/ui/backgroundpage.ui
+++ b/cui/uiconfig/ui/backgroundpage.ui
@@ -293,7 +293,7 @@
 property name=no_show_allTrue/property
 property name=hexpandTrue/property
 property name=xalign0/property
-property name=labellt;FILENAMEgt;/property
+property name=label 
translatable=yeslt;FILENAMEgt;/property
   /object
   packing
 property name=left_attach0/property
diff --git a/cui/uiconfig/ui/optadvancedpage.ui 
b/cui/uiconfig/ui/optadvancedpage.ui
index 1c54497..cb23222 100644
--- a/cui/uiconfig/ui/optadvancedpage.ui
+++ b/cui/uiconfig/ui/optadvancedpage.ui
@@ -93,7 +93,7 @@
 property name=layout_stylestart/property
 child
   object class=GtkButton id=add
-property name=label_Add.../property
+property name=label 
translatable=yes_Add.../property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultTrue/property
diff --git a/cui/uiconfig/ui/optpathspage.ui b/cui/uiconfig/ui/optpathspage.ui
index 64f0b80..a273f7b 100644
--- a/cui/uiconfig/ui/optpathspage.ui
+++ b/cui/uiconfig/ui/optpathspage.ui
@@ -148,7 +148,7 @@
 /child
 child
   object class=GtkButton id=edit
-property name=label_Edit.../property
+property name=label translatable=yes_Edit.../property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultTrue/property
diff --git a/dbaccess/uiconfig/ui/generalpagewizard.ui 
b/dbaccess/uiconfig/ui/generalpagewizard.ui
index 95025e7..0e41080 100644
--- a/dbaccess/uiconfig/ui/generalpagewizard.ui
+++ b/dbaccess/uiconfig/ui/generalpagewizard.ui
@@ -136,7 +136,7 @@
 /child
 child
   object class=dbulo-OpenDocumentButton id=openDatabase
-property name=labelOpen/property
+property name=label translatable=yesOpen/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property name=receives_defaultTrue/property
diff --git a/dbaccess/uiconfig/ui/querypropertiesdialog.ui 
b/dbaccess/uiconfig/ui/querypropertiesdialog.ui
index 6f55af2..ddd5936 100644
--- a/dbaccess/uiconfig/ui/querypropertiesdialog.ui
+++ b/dbaccess/uiconfig/ui/querypropertiesdialog.ui
@@ -118,7 +118,7 @@
 property name=layout_stylestart/property
 child
   object class=GtkRadioButton id=distinct
-property name=labelYes/property
+property name=label 
translatable=yesYes/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultFalse/property
@@ -134,7 +134,7 @@
 /child
 child
   object class=GtkRadioButton id=nondistinct
-property name=labelNo/property
+property name=label 
translatable=yesNo/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultFalse/property
diff --git a/svx/uiconfig/ui/headfootformatpage.ui 
b/svx/uiconfig/ui/headfootformatpage.ui
index 8fe9008..c77abad 100644
--- a/svx/uiconfig/ui/headfootformatpage.ui

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

2013-05-25 Thread Miklos Vajna
 sw/source/core/inc/flowfrm.hxx|   36 +--
 sw/source/core/layout/flowfrm.cxx |  349 +++---
 sw/source/core/layout/sectfrm.cxx |4 
 3 files changed, 195 insertions(+), 194 deletions(-)

New commits:
commit dc54d78398bc7bf464ac02b241086ed6f44ba2de
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat May 25 19:50:01 2013 +0200

SwFlowFrm: rename member variables missing their prefix

Change-Id: Id7d1271408232e37aa23373dcd1ae6872ac8574b

diff --git a/sw/source/core/inc/flowfrm.hxx b/sw/source/core/inc/flowfrm.hxx
index d7be42d..2a75f9c 100644
--- a/sw/source/core/inc/flowfrm.hxx
+++ b/sw/source/core/inc/flowfrm.hxx
@@ -70,7 +70,7 @@ class SwFlowFrm
 
 friend class SwNode2LayImpl;
 
-SwFrm rThis;
+SwFrm m_rThis;
 
 // helper methods for MoveSubTree()
 static SwLayoutFrm *CutTree( SwFrm* );
@@ -82,7 +82,7 @@ class SwFlowFrm
 pages can be skipped at the same time. In addition, it is evaluated by
 the MoveBwd() method in TabFrm.
 */
-static sal_Bool bMoveBwdJump;
+static sal_Bool m_bMoveBwdJump;
 
 /** helper method to determine previous frame for calculation of the
 upper space
@@ -114,9 +114,9 @@ protected:
 SwFlowFrm *m_pFollow;
 SwFlowFrm *m_pPrecede;
 
-sal_Bool bLockJoin  :1; // if sal_True than joins (and thus deletes) are 
prohibited!
-sal_Bool bUndersized:1; // I am smaller than needed
-sal_Bool bFlyLock   :1; // stop positioning of at-character flyframes
+sal_Bool m_bLockJoin  :1; // if sal_True than joins (and thus deletes) are 
prohibited!
+sal_Bool m_bUndersized:1; // I am smaller than needed
+sal_Bool m_bFlyLock   :1; // stop positioning of at-character flyframes
 
 // checks if forward flow makes sense to prevent infinite moves
 inline sal_Bool IsFwdMoveAllowed();
@@ -133,8 +133,8 @@ protected:
 */
 sal_uInt8 BwdMoveNecessary( const SwPageFrm *pPage, const SwRect rRect );
 
-void LockJoin()   { bLockJoin = sal_True;  }
-void UnlockJoin() { bLockJoin = sal_False; }
+void LockJoin()   { m_bLockJoin = sal_True;  }
+void UnlockJoin() { m_bLockJoin = sal_False; }
 
 sal_Bool CheckMoveFwd( bool rbMakePage, sal_Bool bKeep, sal_Bool 
bMovedBwd );
 sal_Bool MoveFwd( sal_Bool bMakePage, sal_Bool bPageBreak, sal_Bool 
bMoveAlways = sal_False );
@@ -145,14 +145,14 @@ public:
 SwFlowFrm( SwFrm rFrm );
 virtual ~SwFlowFrm();
 
-const SwFrm *GetFrm() const { return rThis; }
-  SwFrm *GetFrm()   { return rThis; }
+const SwFrm *GetFrm() const { return m_rThis; }
+  SwFrm *GetFrm()   { return m_rThis; }
 
-static sal_Bool IsMoveBwdJump() { return bMoveBwdJump; }
-static void SetMoveBwdJump( sal_Bool bNew ){ bMoveBwdJump = bNew; }
+static sal_Bool IsMoveBwdJump() { return m_bMoveBwdJump; }
+static void SetMoveBwdJump( sal_Bool bNew ){ m_bMoveBwdJump = bNew; }
 
-inline void SetUndersized( const sal_Bool bNew ) { bUndersized = bNew; }
-inline sal_Bool IsUndersized()  const { return bUndersized; }
+inline void SetUndersized( const sal_Bool bNew ) { m_bUndersized = bNew; }
+inline sal_Bool IsUndersized()  const { return m_bUndersized; }
 
 sal_Bool IsPrevObjMove() const;
 
@@ -169,8 +169,8 @@ public:
 const SwFlowFrm *GetPrecede() const { return m_pPrecede; }
   SwFlowFrm *GetPrecede()   { return m_pPrecede; }
 
-sal_Bool IsJoinLocked() const { return bLockJoin; }
-sal_Bool IsAnyJoinLocked() const { return bLockJoin || HasLockedFollow(); }
+sal_Bool IsJoinLocked() const { return m_bLockJoin; }
+sal_Bool IsAnyJoinLocked() const { return m_bLockJoin || 
HasLockedFollow(); }
 
 sal_Bool IsPageBreak( sal_Bool bAct ) const;
 sal_Bool IsColBreak( sal_Bool bAct ) const;
@@ -221,8 +221,8 @@ public:
 
 void CheckKeep();
 
-void SetFlyLock( sal_Bool bNew ){ bFlyLock = bNew; }
-sal_Bool IsFlyLock() const {return bFlyLock; }
+void SetFlyLock( sal_Bool bNew ){ m_bFlyLock = bNew; }
+sal_Bool IsFlyLock() const {return m_bFlyLock; }
 
 // Casting of a Frm into a FlowFrm (if it is one, otherwise 0)
 // These methods need to be customized in subclasses!
@@ -232,7 +232,7 @@ public:
 
 inline sal_Bool SwFlowFrm::IsFwdMoveAllowed()
 {
-return rThis.GetIndPrev() != 0;
+return m_rThis.GetIndPrev() != 0;
 }
 #endif
 
diff --git a/sw/source/core/layout/flowfrm.cxx 
b/sw/source/core/layout/flowfrm.cxx
index 14bfc39..5158525 100644
--- a/sw/source/core/layout/flowfrm.cxx
+++ b/sw/source/core/layout/flowfrm.cxx
@@ -58,7 +58,7 @@
 #include fmtfollowtextflow.hxx
 #include switerator.hxx
 
-sal_Bool SwFlowFrm::bMoveBwdJump = sal_False;
+sal_Bool SwFlowFrm::m_bMoveBwdJump = sal_False;
 
 
 /*
@@ -69,12 +69,12 @@ sal_Bool SwFlowFrm::bMoveBwdJump = sal_False;
 
 
 SwFlowFrm::SwFlowFrm( SwFrm rFrm ) :
-rThis( rFrm ),
+m_rThis( rFrm ),
 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - translations

2013-05-25 Thread Andras Timar
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0c9b9892168940b32b680b82b56ebd30ccaf03df
Author: Andras Timar ati...@suse.com
Date:   Sat May 25 20:03:16 2013 +0200

Updated core
Project: translations  95ad094a5398f83e05fade22a13a6fefe3307129

diff --git a/translations b/translations
index ede3fe6..95ad094 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit ede3fe62d4b30ebe82d2e2b837bd5d8247b73438
+Subproject commit 95ad094a5398f83e05fade22a13a6fefe3307129
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] mso-dumper.git: src/docrecord.py

2013-05-25 Thread Miklos Vajna
 src/docrecord.py |   31 +--
 1 file changed, 17 insertions(+), 14 deletions(-)

New commits:
commit e9cae449e8121de7f6b042efd36b5697eb9e3e7b
Author: Miklos Vajna vmik...@suse.cz
Date:   Sat May 25 21:26:45 2013 +0200

STD: guard against reading too much

Triggered by fdo49108-1.doc.

diff --git a/src/docrecord.py b/src/docrecord.py
index c2a73d0..2e01e47 100644
--- a/src/docrecord.py
+++ b/src/docrecord.py
@@ -2313,14 +2313,15 @@ class Stdf(DOCDirStream):
 self.stdfBase = StdfBase(self.bytes, self.mainStream, self.pos)
 self.stdfBase.dump()
 self.pos += self.stdfBase.size
-stsh = self.std.lpstd.stsh # root of the stylesheet table
-cbSTDBaseInFile = stsh.lpstshi.stshi.stshif.cbSTDBaseInFile
-print 'stdfPost2000OrNone cbSTDBaseInFile=%s' % 
hex(cbSTDBaseInFile)
-if cbSTDBaseInFile == 0x0012:
-stdfPost2000 = StdfPost2000(self)
-stdfPost2000.dump()
-self.pos = stdfPost2000.pos
-print '/stdfPost2000OrNone'
+if self.pos - self.std.pos  self.std.size:
+stsh = self.std.lpstd.stsh # root of the stylesheet table
+cbSTDBaseInFile = stsh.lpstshi.stshi.stshif.cbSTDBaseInFile
+print 'stdfPost2000OrNone cbSTDBaseInFile=%s' % 
hex(cbSTDBaseInFile)
+if cbSTDBaseInFile == 0x0012:
+stdfPost2000 = StdfPost2000(self)
+stdfPost2000.dump()
+self.pos = stdfPost2000.pos
+print '/stdfPost2000OrNone'
 print '/stdf'
 
 class Xst(DOCDirStream):
@@ -2566,6 +2567,7 @@ class STD(DOCDirStream):
 DOCDirStream.__init__(self, lpstd.bytes, mainStream = lpstd.mainStream)
 self.lpstd = lpstd
 self.pos = lpstd.pos
+self.posOrig = self.pos
 self.size = lpstd.cbStd
 
 def dump(self):
@@ -2573,12 +2575,13 @@ class STD(DOCDirStream):
 self.stdf = Stdf(self)
 self.stdf.dump()
 self.pos = self.stdf.pos
-xstzName = Xstz(self)
-xstzName.dump()
-self.pos = xstzName.pos
-grLPUpxSw = GrLPUpxSw(self)
-grLPUpxSw.dump()
-self.pos = grLPUpxSw.pos
+if self.pos - self.posOrig  self.size:
+xstzName = Xstz(self)
+xstzName.dump()
+self.pos = xstzName.pos
+grLPUpxSw = GrLPUpxSw(self)
+grLPUpxSw.dump()
+self.pos = grLPUpxSw.pos
 print '/std'
 
 class LPStd(DOCDirStream):
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-05-25 Thread Zolnai Tamás
 l10ntools/source/export.cxx |2 +-
 l10ntools/source/helper.cxx |4 
 2 files changed, 5 insertions(+), 1 deletion(-)

New commits:
commit f21a2374dc623604d26cec5ec3d5a8f7a8958b63
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sat May 25 22:23:57 2013 +0200

Fix some escaping bug in l10ntools

1. A typo in export.cxx makes not working replacing
2. EscapeAll() ignored single backlash characters

Change-Id: I1a5309778acdd601391f643ebf3c66d04a6601d4

diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
index 5d285ad..c15d81f 100644
--- a/l10ntools/source/export.cxx
+++ b/l10ntools/source/export.cxx
@@ -1201,7 +1201,7 @@ void Export::ConvertMergeContent( OString rText )
 sal_Bool bNoClose = !rText.endsWith(\\\);
 
 
-rText = rText.replaceAll(\\\',\'); // Temporary: until PO files 
contain escaped single quotes
+rText = rText.replaceAll(\\\',\'); // Temporary: until PO files 
contain escaped single quotes
 // (Maybe next PO update solve 
this)
 rText =
 helper::escapeAll(
diff --git a/l10ntools/source/helper.cxx b/l10ntools/source/helper.cxx
index 6c3a0455..85bfe4a 100644
--- a/l10ntools/source/helper.cxx
+++ b/l10ntools/source/helper.cxx
@@ -46,6 +46,10 @@ OString unEscapeAll(
 sReturn.append(rUnEscaped[nEscapedOne/2]);
 ++nIndex;
 }
+else
+{
+sReturn.append(rText[nIndex]);
+}
 }
 else
 sReturn.append(rText[nIndex]);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: src/cppunit

2013-05-25 Thread Libreoffice Gerrit user
 src/cppunit/UnixDynamicLibraryManager.cpp |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 13244fdaa4ff563bdb0e853b8e081fe4ebb4001f
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat May 25 22:49:09 2013 +0200

report dlerror messages on unix

Upstream Libreoffice patch.

diff --git a/src/cppunit/UnixDynamicLibraryManager.cpp 
b/src/cppunit/UnixDynamicLibraryManager.cpp
index f235cce..4de32cf 100644
--- a/src/cppunit/UnixDynamicLibraryManager.cpp
+++ b/src/cppunit/UnixDynamicLibraryManager.cpp
@@ -34,7 +34,11 @@ DynamicLibraryManager::doFindSymbol( const std::string 
symbol )
 std::string 
 DynamicLibraryManager::getLastErrorDetail() const
 {
-  return ;
+const char* last_error = ::dlerror();
+if(last_error)
+return last_error;
+else
+return ;
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - l10ntools/source

2013-05-25 Thread Zolnai Tamás
 l10ntools/source/export.cxx |2 +-
 l10ntools/source/helper.cxx |4 
 2 files changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 4e41e4aaa39e78102e989146c24154a85a08a59b
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sat May 25 22:23:57 2013 +0200

Fix some escaping bug in l10ntools

1. A typo in export.cxx makes not working replacing
2. EscapeAll() ignored single backlash characters

Change-Id: I1a5309778acdd601391f643ebf3c66d04a6601d4

diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
index 5d285ad..c15d81f 100644
--- a/l10ntools/source/export.cxx
+++ b/l10ntools/source/export.cxx
@@ -1201,7 +1201,7 @@ void Export::ConvertMergeContent( OString rText )
 sal_Bool bNoClose = !rText.endsWith(\\\);
 
 
-rText = rText.replaceAll(\\\',\'); // Temporary: until PO files 
contain escaped single quotes
+rText = rText.replaceAll(\\\',\'); // Temporary: until PO files 
contain escaped single quotes
 // (Maybe next PO update solve 
this)
 rText =
 helper::escapeAll(
diff --git a/l10ntools/source/helper.cxx b/l10ntools/source/helper.cxx
index 6c3a0455..85bfe4a 100644
--- a/l10ntools/source/helper.cxx
+++ b/l10ntools/source/helper.cxx
@@ -46,6 +46,10 @@ OString unEscapeAll(
 sReturn.append(rUnEscaped[nEscapedOne/2]);
 ++nIndex;
 }
+else
+{
+sReturn.append(rText[nIndex]);
+}
 }
 else
 sReturn.append(rText[nIndex]);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: NEWS

2013-05-25 Thread Libreoffice Gerrit user
 NEWS |9 +
 1 file changed, 9 insertions(+)

New commits:
commit 9953a5621b9feef624f97df7e45e88af0ff38184
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat May 25 23:06:16 2013 +0200

update NEWS file with 1.13.2 changes

diff --git a/NEWS b/NEWS
index 4712771..efbf5d2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+  New in CppUnit 1.13.2:
+  -
+
+* Portability:
+  - Supports 64 bit build on windows
+
+  - Report errors from dlopen and dlclose on windows through dlerror on
+unix.
+
   New in CppUnit 1.13.0:
   --
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: NEWS

2013-05-25 Thread Libreoffice Gerrit user
 NEWS |   12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 89abdff7b0dcba8c050ce9ef7f68760511814f2f
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat May 25 23:21:14 2013 +0200

add cppunit 1.13.1 changes to NEWS

diff --git a/NEWS b/NEWS
index efbf5d2..f85f037 100644
--- a/NEWS
+++ b/NEWS
@@ -4,8 +4,16 @@
 * Portability:
   - Supports 64 bit build on windows
 
-  - Report errors from dlopen and dlclose on windows through dlerror on
-unix.
+  - Report errors from dlopen and dlclose through dlerror on
+unix/linux.
+
+  New in CppUnit 1.13.1:
+  -
+
+* Portability:
+  - Use portable way to use free (fdo#52536)
+
+  - Prevent crash when demangling fails with gcc (fdo#52539)
 
   New in CppUnit 1.13.0:
   --
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - extensions.lst

2013-05-25 Thread Andrea Pescetti
 extensions.lst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b3ed6fe8cdcb98090a434482dc1eb6f6cbdbc869
Author: Andrea Pescetti pesce...@apache.org
Date:   Sat May 25 21:14:04 2013 +

Update Swedish dictionary.

diff --git a/extensions.lst b/extensions.lst
index 905169d..dcd1799 100644
--- a/extensions.lst
+++ b/extensions.lst
@@ -117,7 +117,7 @@
 
 # Swedish.
 [ language=sv ]
-249b3bd3d9de4928ab8c809623dc9c4f 
http://sourceforge.net/projects/aoo-extensions/files/5959/0/dict-sv.oxt/download
 dict-sv.oxt
+32ab4edf1496a7cf5469ee1643eb0128 
http://sourceforge.net/projects/aoo-extensions/files/5959/1/dict-sv.oxt/download
 dict-sv.oxt
 
 # Korean.
 [ language=ko ]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] fix OUString conversion

2013-05-25 Thread Sean Young (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4035

To pull it, you can do:

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

fix OUString conversion

This used to be equalsAscii( hg, 0, 2 ) before conversion.

Fixes 7d1f4cdec307bb1e761bb5dd3d8231bba5833e10

Change-Id: I2cf61d88c79b3ab33c0ee7d077ee65b16053c05c
---
M vcl/source/gdi/outdev3.cxx
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx
index 4261787..393c2fb 100644
--- a/vcl/source/gdi/outdev3.cxx
+++ b/vcl/source/gdi/outdev3.cxx
@@ -2392,7 +2392,7 @@
 // #114999# special emboldening for Ricoh fonts
 // TODO: smarter check for special cases by using PreMatch 
infrastructure?
 if( (rFSD.GetWeight()  WEIGHT_MEDIUM)
-  aSearchName.equalsIgnoreAsciiCase( hg ) )
+  aSearchName.startsWithIgnoreAsciiCase( hg ) )
 {
 OUString aBoldName;
 if( aSearchName.equalsIgnoreAsciiCase( hggothicb ) )

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2cf61d88c79b3ab33c0ee7d077ee65b16053c05c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Sean Young s...@mess.org

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


[PATCH] If a Symbol font is missing, ensure that conversion is done

2013-05-25 Thread Sean Young (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4037

To pull it, you can do:

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

If a Symbol font is missing, ensure that conversion is done

ImplDevFontList::ImplFindByFont() will nearly always return a font, so
we do not go through the code path which sets up conversion.

Change-Id: Ice361f183c9f42aa562d4caab1d589417ad3fc9a
---
M vcl/source/gdi/outdev3.cxx
1 file changed, 7 insertions(+), 0 deletions(-)



diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx
index 393c2fb..f5332fe 100644
--- a/vcl/source/gdi/outdev3.cxx
+++ b/vcl/source/gdi/outdev3.cxx
@@ -2309,6 +2309,13 @@
 maFontInstanceList[ aFontSelData ] = pEntry;
 }
 
+// We might have selected a non-symbol font as a fallback for a
+// symbol font. Ensure that conversion is done
+if (aFontSelData.IsSymbolFont()  !pEntry-maMetric.IsSymbolFont()  
!pEntry-mpConversion)
+{
+pEntry-mpConversion = ConvertChar::GetRecodeData( 
aFontSelData.maTargetName, aFontSelData.maSearchName );
+}
+
 mpFirstEntry = pEntry;
 return pEntry;
 }

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ice361f183c9f42aa562d4caab1d589417ad3fc9a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Sean Young s...@mess.org

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


[PATCH] The MT Extra font mapping is incomplete

2013-05-25 Thread Sean Young (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4036

To pull it, you can do:

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

The MT Extra font mapping is incomplete

Many points are missing. Replace entire table with the mapping provided by
the original creator. Note that point 0xe7 (Apple Logo) is not in unicode
so no mapping is provided for that.

http://www.dessci.com/en/support/mathtype/tech/encodings/mtextra.htm

Change-Id: I05acd36772ae6432614ff3b284e43b86049bed66
---
M unotools/source/misc/fontcvt.cxx
1 file changed, 43 insertions(+), 43 deletions(-)



diff --git a/unotools/source/misc/fontcvt.cxx b/unotools/source/misc/fontcvt.cxx
index ed34a5b..67cf552 100644
--- a/unotools/source/misc/fontcvt.cxx
+++ b/unotools/source/misc/fontcvt.cxx
@@ -648,39 +648,39 @@
 static const sal_Unicode aMTExtraTab[224] =
 {
 // F020
-0x0020, 0, 0,0xE095,
-0xE091,0xE096,0x02D9, 0,
-0xE093, 0, 0, 0,
+0x0020, 0, 0,0x0300,
+0x0302,0x0303,0x0307, 0,
+0x2323,0x2322, 0, 0,
  0, 0, 0, 0,
 // F030
- 0, 0, 0, 0,
- 0, 0, 0, 0,
- 0, 0, 0, 0,
-0x25C1, 0,0x25B7, 0,
+ 0,0xEC00,0xEC01,0xEC02,
+0xEC03,0xEC0B,0xEC04,0xEC05,
+0xEC06, 0,0x223C,0x2243,
+0x22B2,0x226A,0x22B3,0x226B,
 // F040
- 0, 0,0x2210,0x019b,
- 0, 0, 0, 0,
- 0,0x2229, 0,0xE08B,
+0x225C,0x2259,0x2250,0x2210,
+0x019B,0xEC0E,0xEC0F,0xEC10,
+0xEC11,0x2229,0x2127,0x2026,
 0x22EF,0x22EE,0x22F0,0x22F1,
 // F050
- 0, 0, 0, 0,
- 0, 0, 0, 0,
- 0, 0, 0, 0,
- 0, 0, 0, 0,
+0x2225,0x2235,0x2221,0x,
+ 0,0x222A,0x25B3,0x25A1,
+0x25AD,0x25B1,0x2197,0x2199,
+0xEB05,0x2198,0x2196,0xEB06,
 // F060
-0xE095, 0,0xE25C,0xE4BA,
- 0, 0,0x210F, 0,
- 0, 0, 0, 0,
-0x2113,0x2213, 0,0x00B0,
+0x2035,0x21A6,0x2195,0x21D5,
+0x25CB,0x2299,0x227B,0xE98F,
+0x210F,0xEE00,0xEE01, 0,
+0x2113,0x2213,0xFFFD,0x2218,
 // F070
- 0, 0,0xE098, 0,
- 0,0xE097, 0, 0,
- 0, 0, 0,0xE081,
- 0,0xE082, 0, 0,
+0x227A,0xEB1A,0x20D7,0x20D6,
+0x20E1,0xEB00,0x20D1,0x20D0,
+0xEB19, 0, 0,0xFE38,
+0xEC0C,0xFE37,0xEC0D, 0,
 // F080
- 0, 0, 0, 0,
- 0, 0, 0, 0,
- 0, 0, 0, 0,
+0x21C4,0xEB01,0xEB02,0x21CC,
+0xEB03,0xEB04,0x21C0,0x21BD,
+0xF8E7, 0, 0, 0,
  0, 0, 0, 0,
 // F090
  0, 0, 0, 0,
@@ -688,35 +688,35 @@
  0, 0, 0, 0,
  0, 0, 0, 0,
 // F0a0
- 0, 0, 0, 0,
- 0, 0, 0, 0,
- 0, 0, 0, 0,
- 0, 0, 0, 0,
+ 0,0x211D,0x2124,0x2102,
+0x211A,0x2115, 0,0x301A,
+0x301B,0xEC22,0xEC23,0xEC24,
+0xEC25,0xEC26,0xEC27, 0,
 // F0b0
- 0, 0, 0, 0,
- 0, 0, 0, 0,
- 0, 0, 0, 0,
- 0, 0, 0, 0,
+0xEE04,0xEE05,0xEE06, 0,
+ 0,0xEE07,0xEE08,0xEE09,
+ 0, 0,0xEE0A,0xEE0B,
+0xEE0C, 0, 0, 0,
 // F0c0
- 0, 0, 0, 0,
+0xEE0D,0xEE0E,0xEE0F,0xEE10,
  0, 0, 0, 0,
  0, 0, 0, 0,
  0, 0, 0, 0,
 // F0d0
- 0, 0, 0, 0,
- 0, 0,   

[ANN] LibreOffice 4.1.0 Beta1 available

2013-05-25 Thread Thorsten Behrens
Dear Community,

The Document Foundation is pleased to announce the first Beta release
of our new LibreOffice 4.1. The upcoming 4.1 will be our sixth major
release in two and a half years, and comes with a nice set of new
features. Please be aware that LibreOffice 4.1 Beta1 is not ready yet
for production use, you should continue to use LibreOffice 4.0.3 for
that.

For further milestones towards 4.1, please refer to our release plan
timings here:

 https://wiki.documentfoundation.org/ReleasePlan/4.1#4.1.0_release

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

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

Should you find bugs, please report them to the FreeDesktop Bugzilla:

  https://bugs.freedesktop.org

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

 
http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test
 
For other ways to get involved with this exciting project - you can
e.g. contribute code:

  http://www.libreoffice.org/get-involved/developers/

translate LibreOffice to your language:

  http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

or help with funding our operations:

  http://donate.libreoffice.org/

A list of known issues and fixed bugs with 4.1.0 Beta1 is available
from our wiki:

  http://wiki.documentfoundation.org/Releases/4.1.0/Beta1

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

Yours,

The Document Foundation Board of Directors

The Document Foundation, Zimmerstr. 69, 10117 Berlin, Germany
Rechtsfähige Stiftung des bürgerlichen Rechts
Legal details: http://www.documentfoundation.org/imprint


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


Is HelpId still useful for .src files?

2013-05-25 Thread Rodolfo
After see commit 15175a00c976d48f132bc3458e961d1cb2e62a9b [1] remove
obsolete helpids and cleanup uiconfig XML,
I wonder if helpid field could be removed also of (popup) menus
defined in .SRC files.

Like these cases:
http://opengrok.libreoffice.org/xref/core/sw/source/ui/inc/toolbox.hrc#34

ToolBoxItem\
{\
Identifier = SID_ATTR_CHAR_FONTHEIGHT ; \
HelpID = SID_ATTR_CHAR_FONTHEIGHT ; \
};\

or
http://opengrok.libreoffice.org/xref/core/svx/source/fmcomp/gridctrl.src#33

 26 Menu RID_SVXMNU_ROWS
 27 {
 28 ItemList =
 29 {
 30 MenuItem
 31 {
 32 Identifier = SID_FM_DELETEROWS ;
 33 HelpId = HID_FM_DELETEROWS ;
 34 Text [ en-US ] = Delete Rows ;
 35 };

There's a lot of similar cases.

Regards,
Rodolfo

[1] 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=15175a00c976d48f132bc3458e961d1cb2e62a9b
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Is HelpId still useful for .src files?

2013-05-25 Thread Markus Mohrhard
Hey,

2013/5/26 Rodolfo rodolf...@gmail.com:
 After see commit 15175a00c976d48f132bc3458e961d1cb2e62a9b [1] remove
 obsolete helpids and cleanup uiconfig XML,
 I wonder if helpid field could be removed also of (popup) menus
 defined in .SRC files.

No. We only removed the old id based help ids that are unused because
the mapping is done by the uno command name.


 Like these cases:
 http://opengrok.libreoffice.org/xref/core/sw/source/ui/inc/toolbox.hrc#34

 ToolBoxItem\
 {\
 Identifier = SID_ATTR_CHAR_FONTHEIGHT ; \
 HelpID = SID_ATTR_CHAR_FONTHEIGHT ; \
 };\

 or
 http://opengrok.libreoffice.org/xref/core/svx/source/fmcomp/gridctrl.src#33

  26 Menu RID_SVXMNU_ROWS
  27 {
  28 ItemList =
  29 {
  30 MenuItem
  31 {
  32 Identifier = SID_FM_DELETEROWS ;
  33 HelpId = HID_FM_DELETEROWS ;
  34 Text [ en-US ] = Delete Rows ;
  35 };


The second one is a correct help id as HID_FM_DELETEROWS expands to
SVX_HID_FM_DELETEROWS which can be read by the resource manager and is
mapped to the help text Deletes the selected record. in english.

The first one is a bit more tricky and I think is missing a help id
nowadays as it is an id based help id which I think has no
representation anymore in the help system. The longer I look at it I
come to the conclusion that the first one is an error. I think it
should be HID_ATTR_CHAR_FONTHEIGHT and that should be mapped to a
correct string and to the correct help text (if there is one at all).

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


[Libreoffice-qa] Bibisect Whiteboard Status

2013-05-25 Thread Joel Madero
I finally got around to updating the wiki: 
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Whiteboard#Bibisect


Let's not use all the other options now and stick with:

bibisected
PreBibisect
bibisectrequest

I think that's more than sufficient - even bibisectrequest is a bit 
redundant as a regression within a release after 3.5.4 should be 
sufficient to tell us that a bibisect could be used but, we'll keep the 
status unless there are objections :)


So again, no more bibisect40 and all that. Instead what might be nice is 
when you leave a comment just saying what bibisect package you used so 
that we know (daily from what day? bibisected40 package or the tagged 
package.


Also, can someone update the how to bibisect link to show the daily 
builds? I haven't used it yet so not comfortable updating it.



Thanks all!


Joel
___
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] Bibisect Whiteboard Status

2013-05-25 Thread Joel Madero

On 05/25/2013 12:56 PM, dk...@torfree.net wrote:

Quoting Joel Madero jmadero@gmail.com:


Also, can someone update the how to bibisect link to show the daily 
builds? I haven't used it yet so not comfortable updating it.


I am working on it.  Bjoern Michaelson has said he will review my 
changes to keep me on the straght and narrow.


Terry.


+1, Thanks Terry!



Best,
Joel
___
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 64976] New: FORMATTING: Where is Graphics On/Off

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64976

  Priority: medium
Bug ID: 64976
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: Where is Graphics On/Off
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: ysex...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.3.3 release
 Component: Writer
   Product: LibreOffice

Problem description: 
I only have frames where all my graphics and pictures belong. 
Since I upgraded, I have no pictures in my documents.
The help file tells me to click the Graphics On/Off button on the toolbar, but
it is not there.

Steps to reproduce:
1. Always
2. 
3. 

Current behavior:
No pictures in document

Expected behavior:
Pictures in document

Please help. Thanks
Operating System: Windows 7
Version: 4.0.3.3 release

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


[Libreoffice-bugs] [Bug 64717] When registering the png file with alpha information to the toolbar, it was discolored.

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64717

--- Comment #6 from Miday mi...@info.email.ne.jp ---
(In reply to comment #5)
It is a 8-pixel picture smaller than 16-pixels.
http://www.ne.jp/asahi/soft/miday/Calc_Moji/8pngdata.zip

Windows XP LibreOffice 3.5.4.2

A 8/26/32-pixel picture is normal.
I think that the resizing processing by Windows is satisfactory.

-- 
You are receiving this mail because:
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 46447] Embedded Pictures disappear from document contents

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46447

--- Comment #32 from Marcus Hudritsch m.hudrit...@vtxmail.ch ---
(In reply to comment #31)
 (In reply to comment #29)
  Finally, after many months of waiting, LO4.0.2 and LO4.3 no longer loses
  images from the presentation (Debian Wheezy).
 
 So, case closed?

It looks like the problem is gone. Thanks a lot!

-- 
You are receiving this mail because:
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 64969] File status is modified immediately after FILEOPEN

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64969

Urmas davian...@gmail.com changed:

   What|Removed |Added

  Attachment #79776|Open the file and then  |Example
description|execute File  Close. |
   |Message box says the file   |
   |name been modified even if  |
   |it hasn't been. |
  Attachment #79776|text/plain  |application/octet-stream
  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 64969] File status is modified immediately after FILEOPEN

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64969

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #2 from Urmas davian...@gmail.com ---
Confirmed in master.

-- 
You are receiving this mail because:
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 64926] Tibetan word breaking

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64926

--- Comment #1 from Elie Roux elie.r...@telecom-bretagne.eu ---
I realize I did not specify the reason word breaking wouldn't work with Tibetan
without ICU: in Tibetan, syllables (what we could call words) are separated by
tshegs, character ་, not by spaces. Dzongkha is exactly the same.

-- 
You are receiving this mail because:
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 46447] Embedded Pictures disappear from document contents

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46447

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

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

--- Comment #33 from Jorendc joren.libreoff...@telenet.be ---
Thanks for the feedback!

Lets mark it as RESOLVED FIXED then, although we don't know which commit fixed
this issue we can be sure something fixed this behavior (thanks to the many
confirmations).

Kind regards,
Joren

PS: there are more NEW and UNCONFIRMED bugs out to (re)test. Feel free to help!

-- 
You are receiving this mail because:
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 61917] can't fetch data from web using webquery

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61917

--- Comment #4 from Edmund Laugasson edmund.laugas...@gmail.com ---
Currently I use 4.0.3 and here it works.

Steps to reproduce:
1. Open LibreOffice Calc
2. Open web browser and go to address
http://www.x-rates.com/table/?from=EURamount=1.00  -- an example address I
searched
3. copy the URL above
4. Open Insert-Link to external data...
5. paste the URL to the first field
6. click to the pull down menu arrow once and just close it
7. wait for few moments and then Import options dialog box appears
8. additional dialog box appears and asks, which language I would use when
importing tables. I chose automatic and then press OK
9. Then it shows available tables/ranges, which can be imported and I chose
HTML_tables and press OK. You can choose also HTML_1, HTML_2 if there are
several tables.
10. tables were imported

If connection is lost or other problem (e.g. HTML_all did not succeed), then it
announces The link could not be updated, otherwise tables will be appear into
Calc.

I tried also with addresses:
https://www.swedbank.ee/private/home/more/pricesrates/rates?language=ENG
https://www.swedbank.ee/private/home/more/pricesrates/rates?language=EST
... all succeeded

So - in version LibreOffice Version 4.0.3.3 (Build ID:
0eaa50a932c8f2199a615e1eb30f7ac74279539) it seems to work. I use 64-bit Ubuntu
12.04 LTS with all current updates + latest stable kernel (currently 3.9.3).

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


[Libreoffice-bugs] [Bug 64893] FILEOPEN RTF: Error during type detection

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64893

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE
Summary|FILEOPEN: I/O Error |FILEOPEN RTF: Error during
   |FIleOPEN: LibreOffice   |type detection
   |crashes  on opening the |
   |file.   |

--- Comment #3 from Urmas davian...@gmail.com ---
Apparently a dupe.

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

-- 
You are receiving this mail because:
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 64894] FILEOPEN RTF Some characters prevent type autodetection

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64894

--- Comment #3 from Urmas davian...@gmail.com ---
*** Bug 64893 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 61917] can't fetch data from web using webquery

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61917

--- Comment #5 from Edmund Laugasson edmund.laugas...@gmail.com ---
...
4. Open Insert-Link to external data...

... I meaned this in LibreOffice Calc - choose pull down menu Insert and from
there the choice Link to external data...

Just for clarification - I forgot to mention before and this environment does
not allow to correct comments - so I provide new one.

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


[Libreoffice-bugs] [Bug 64941] : Imported SVG graphics is not displayed correctly

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64941

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Linux (All) |All
 Status|UNCONFIRMED |NEW
   Priority|medium  |low
 QA Contact||joren.libreoffice@telenet.b
   ||e
 Ever confirmed|0   |1

--- Comment #1 from Jorendc joren.libreoff...@telenet.be ---
Thanks for reporting!

I can reproduce this using Mac OSX 10.8.3 with LibreOffice 4.0.3.3. Also
reproducible when importing this file using Writer. So components 'all'.

Kind regards,
Joren

-- 
You are receiving this mail because:
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 64910] : Crashing (fall into desktop)

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64910

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||joren.libreoffice@telenet.b
   ||e
 Ever confirmed|0   |1

--- Comment #1 from Jorendc joren.libreoff...@telenet.be ---
Hi,

Thanks for reporting. Is this issue still reproducible after an user profile
reset (guide:
https://wiki.documentfoundation.org/UserProfile#Resetting_the_user_profile)?

Kind regards,
Joren

-- 
You are receiving this mail because:
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 61941] Server Installation GUI 3.0: Overwrites existing Server Installation without warning

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61941

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

 CC||reisi...@gmail.com

--- Comment #1 from Jorendc joren.libreoff...@telenet.be ---
@Flo: I think this might be interesting for you :)

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


[Libreoffice-bugs] [Bug 61856] VIEWING: Chart content miss placement

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61856

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from Jorendc joren.libreoff...@telenet.be ---
I can't reproduce either.
Is this problem still reproducible after upgrading to LibreOffice 4.0.3 an
reseting your user profile (guide:
https://wiki.documentfoundation.org/UserProfile#Resetting_the_user_profile)?

Kind regards?
Joren

-- 
You are receiving this mail because:
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 41889] SLIDESHOW: second display visual

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41889

Samuel M. s.mehrbr...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |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 61941] Server Installation GUI 3.0: Overwrites existing Server Installation without warning

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61941

Florian Reisinger reisi...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Assignee|libreoffice-b...@lists.free |reisi...@gmail.com
   |desktop.org |
 QA Contact||joren.libreoffice@telenet.b
   ||e
 Ever confirmed|0   |1

--- Comment #2 from Florian Reisinger reisi...@gmail.com ---
Year, that is true...
You are QA contact: Poke me, if this bug is not 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 64977] New: Adding Tibetan Language Support

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64977

  Priority: medium
Bug ID: 64977
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Adding Tibetan Language Support
  Severity: trivial
Classification: Unclassified
OS: All
  Reporter: elie.r...@telecom-bretagne.eu
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Linguistic
   Product: LibreOffice

Created attachment 79782
  -- https://bugs.freedesktop.org/attachment.cgi?id=79782action=edit
patch for the core/ directory

Dear all,

I would like to add Tibetan in the list of available languages (I'm currently
writing a hunspell dictionnary). I made a git patch for the core/ directory
(attached), adding the locales and a few more little things.

I just had a problem: in the files

oovbaapi/ooo/vba/word/WdLanguageID.idl
oovbaapi/ooo/vba/office/MsoLanguageID.idl

the constants associated with Tibetan have number 1105 while it is 2121 in 

l10ntools/source/ulfconv/msi-encodinglist.txt

Is it normal?

Also, I would like to be able to select Tibetan in the list
Tools-Options-Languages Settings-Languages-CTL. How should I add it? I
wasn't able to find...

As for my previous bug 64926, I could not test it...

Thank you,
-- 
Elie

-- 
You are receiving this mail because:
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 46808] Adapt UNO services to new-style

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46808

--- Comment #314 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Stephan Bergmann committed a patch related to this issue.
It has been pushed to libreoffice-4-1:

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

Revert fdo#46808, Convert awt::UnoControlDialogModel to new style


It will be available in LibreOffice 4.1.

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

-- 
You are receiving this mail because:
You are 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 46808] Adapt UNO services to new-style

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46808

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

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

Revert fdo#46808, Convert awt::UnoControlDialogModel to new style



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

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


[Libreoffice-bugs] [Bug 64957] EDITING: letters move around during editing/typing

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64957

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

Summary|EDITING: letters move   |EDITING: letters move
   |around during editing   |around during
   ||editing/typing

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

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

 Depends on||64957

--- Comment #20 from Jorendc joren.libreoff...@telenet.be ---
I nominate Bug 64957 - EDITING: letters move around during editing/typing
(Mac OSX) due the fact of the markable regression vs 4.0. For some users this
was reproducible with older versions, especially with zoom level != 100%. Now
it is always reproducible.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
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 64957] EDITING: letters move around during editing/typing

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64957

Jorendc joren.libreoff...@telenet.be changed:

   What|Removed |Added

 Blocks||60270

-- 
You are receiving this mail because:
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 64977] Adding Tibetan Language Support

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64977

--- Comment #1 from Urmas davian...@gmail.com ---
1105 is for China
2121 is for Bhutan

-- 
You are receiving this mail because:
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 49043] Inserting External Data in Table problem

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49043

--- Comment #8 from Nicola Ricciarelli ricci...@libero.it ---
(In reply to comment #7)
 Created attachment 79780 [details]
 Example dialog screenshots showing working query.
 
 Nicola, I just tried the query provided in the description here under
 GNU/Linux with v4.0.3.3 (Build ID: 0eaa50a932c8f2199a615e1eb30f7ac74279539)
 without issue. I have attached some screenshots of the dialogs showing the
 data. I have no idea if what I am seeing is correct in terms of the data,
 but the process appears to work for me.

Hi Owen, thanks for screenshots. 
That problem nomore affect all recent stable v4.* versions. 
It happened that 3.* rc versions had that problem while the stable versions had
no problems (so unusual). 
For Libreoffice v4.* I've not checked if rc versions still continue to have
that problem, I just checked stable released ones .. but I'll test next rc to
check that error presence.

Nicola

-- 
You are receiving this mail because:
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 63932] EDITING: Very slow Calc

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63932

--- Comment #10 from krec...@myopera.com ---
I think that strange behavior of Calc is connected with system clipboard. My
problems with very slow work of Calc starts together with Ctl+C/Ctrl+V
problems. It was described here as well as Libreoffice freezing or problems
with copy/paste function.

-- 
You are receiving this mail because:
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 64300] WW8: font size after table changes from 2 to 12 pt while exporting

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64300

--- Comment #10 from tommy27 ba...@quipo.it ---
just wanted to add that PDF export is not affected by this bug.
it seems that the 2 -- 12 font size change only affects the DOC format.

-- 
You are receiving this mail because:
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 64969] File status is modified immediately after FILEOPEN

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64969

--- Comment #3 from mariosv mari...@miguelangel.mobi ---
I can not confirm in:
Win7x64 Ultimate
Version: 4.1.0.0.beta1 Build ID: 5271b34bec742e190e2fe5a7dadb7334a705b54

Maybe the option in:
Menu/Tools/Options/LibreOffice/General - Allow to save document even when the
document is not modified.
is enable. Can you verify it?

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


[Libreoffice-bugs] [Bug 64972] 4.1.0.0.beta1: strikethrough displays too high, like overline

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64972

Khaled Hosny khaledho...@eglug.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |khaledho...@eglug.org
   |desktop.org |
 CC||khaledho...@eglug.org
 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 64979] New: File won't open

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64979

  Priority: medium
Bug ID: 64979
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: File won't open
  Severity: critical
Classification: Unclassified
OS: Windows (All)
  Reporter: philrosspilg...@gmail.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.1.0.0.alpha1
 Component: Writer
   Product: LibreOffice

Created attachment 79784
  -- https://bugs.freedesktop.org/attachment.cgi?id=79784action=edit
400 page book with lots of formatting.

Libreoffice crashes upon opening attached file. Windows 7.

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


[Libreoffice-bugs] [Bug 64921] LO 4.1 beta1: superscript behave alike subscript

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64921

Khaled Hosny khaledho...@eglug.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE
 CC||khaledho...@eglug.org

--- Comment #2 from Khaled Hosny khaledho...@eglug.org ---


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

-- 
You are receiving this mail because:
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 64685] Superscript broken in master

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64685

Khaled Hosny khaledho...@eglug.org changed:

   What|Removed |Added

 CC||quest...@o2.pl

--- Comment #5 from Khaled Hosny khaledho...@eglug.org ---
*** Bug 64921 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 63932] EDITING: Very slow Calc

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63932

--- Comment #11 from mariosv mari...@miguelangel.mobi ---
 I think that strange behavior of Calc is connected with system clipboard. My
 problems with very slow work of Calc starts together with Ctl+C/Ctrl+V
 problems. It was described here as well as Libreoffice freezing or problems
 with copy/paste function.
(In reply to comment #10)

Please can you attach a sample file?, at least to discard as source of the
problem.

Have you tried to see if there is any difference with the portable version?:
http://www.libreoffice.org/download

-- 
You are receiving this mail because:
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 64977] Adding Tibetan Language Support

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64977

--- Comment #2 from Elie Roux elie.r...@telecom-bretagne.eu ---
Oh, ok then, thank you!

Do you think someone will review the patches I sent?

-- 
You are receiving this mail because:
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 37407] Calc XY (scatter) chart Sort by x values has wrong x, y in tooltip

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37407

Christopher M. Penalver christopher.m.penal...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #4 from Christopher M. Penalver christopher.m.penal...@gmail.com 
---
ign_christian, thank you for your comments. Using the attachment noted in the
Description https://bugs.freedesktop.org/attachment.cgi?id=46954 one may open
Microsoft Office Professional Plus 2010 Excel Version 14.0.6023.1000 (32-bit),
hover over the noted data point, and it displays the correct tooltip
information. For future triaging, let the focus be on the noted attachment.

Problem in Description reproducible in:
Microsoft Windows Vista Business x86 6.0.6002 Service Pack 2 Build 6002
Version: 4.2.0.0.alpha0+
Build ID: 979def88090633bfee0e0445b1a1dac71ed

-- 
You are receiving this mail because:
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 64918] EDITING: Find by format doesn't work with non-integer font sizes

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64918

Christopher M. Penalver christopher.m.penal...@gmail.com changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #1 from Christopher M. Penalver christopher.m.penal...@gmail.com 
---
Unreproducible due to option noted in Description not being available in:
Version: 4.2.0.0.alpha0+
Build ID: 979def88090633bfee0e0445b1a1dac71ed
Microsoft Windows Vista Business x86 6.0.6002 Service Pack 2 Build 6002

Would this functionality be provided by an extension?

-- 
You are receiving this mail because:
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 40077] Bottom portion (Descenders) of characters cropped in gtk-based VCL Edit control (with or without combo)

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40077

Samuel M. s.mehrbr...@gmail.com changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #9 from Samuel M. s.mehrbr...@gmail.com ---
pavelz, you are right. This is a theme issue.
Closing as NOTOURBUG

-- 
You are receiving this mail because:
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 64830] RTL: The Arabic languages for the CTL spellcheck should be merged into one

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64830

Khaled Hosny khaledho...@eglug.org changed:

   What|Removed |Added

 CC||khaledho...@eglug.org

--- Comment #1 from Khaled Hosny khaledho...@eglug.org ---
AFAIK, the spell dictionaries was duplicated per country because OpenOffice
didn’t look for “ab” dictionary if it didn’t find “ab_CD” one. So we need to
check is this still the case and fix that (but I’m might be tricky, IIRC for
some locales such behaviour would be undesired). There is probably a bug for
this somewhere in the OpenOffice issue tracker.

-- 
You are receiving this mail because:
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 64907] Remember 'Insert reference to' selection in insert cross reference dialogue

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64907

Andrew Pitonyak and...@pitonyak.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||and...@pitonyak.org
 Ever confirmed|0   |1

--- Comment #1 from Andrew Pitonyak and...@pitonyak.org ---
Nice enhancement request... This has annoyed me for a long time. Adding myself
to the CC list.

-- 
You are receiving this mail because:
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 63553] Cross-references are broken, when copied to other document or part of the document

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=63553

Andrew Pitonyak and...@pitonyak.org changed:

   What|Removed |Added

 CC||and...@pitonyak.org

--- Comment #3 from Andrew Pitonyak and...@pitonyak.org ---
The error still exists in 4.0.1.2 on 64-bit Linux. 

I was able to reproduce also by selecting from Table 3 reference to end of
document. In other words, even while selecting less text.

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


[Libreoffice-bugs] [Bug 40077] Bottom portion (Descenders) of characters cropped in gtk-based VCL Edit control (with or without combo)

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40077

Samuel M. s.mehrbr...@gmail.com changed:

   What|Removed |Added

   See Also||https://launchpad.net/bugs/
   ||1184141

--- Comment #10 from Samuel M. s.mehrbr...@gmail.com ---
I reported this in the ubuntu-themes package:
https://bugs.launchpad.net/ubuntu-themes/+bug/1184141

-- 
You are receiving this mail because:
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 60360] cross-reference to an illustration does not work if 'Illustration' is changed to 'Figure'

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60360

Andrew Pitonyak and...@pitonyak.org changed:

   What|Removed |Added

 CC||and...@pitonyak.org

--- Comment #3 from Andrew Pitonyak and...@pitonyak.org ---
This is a problem for the translation team as well. They have no easy way to
change Figure in the LO documentation while translating from English to some
other Language. Adding myself to the CC list.

-- 
You are receiving this mail because:
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 57711] All cross references become undefined

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57711

Andrew Pitonyak and...@pitonyak.org changed:

   What|Removed |Added

 CC||and...@pitonyak.org

--- Comment #2 from Andrew Pitonyak and...@pitonyak.org ---
Steve, consider keeping backups (based on how many changes you make). 

If you see this behaviour again, copy your latest backup to say doc1.odt and
the damaged document without references to doc2.odt. Open doc1.odt and use 

Edit  Compare Document

To compare doc1.odt to doc2.odt

This should add doc2.odt to doc1.odt with change tracking. This might be a
faster way to restore. 

That said, if you can generate a reproducible situation, it would help them fix
it. I know, very difficult. I had a hard crash bug affect me three times in a
row (related to editing GUIs in the IDE). When I decided to open a bug report,
I was not able to reproduce. Annoying.

-- 
You are receiving this mail because:
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 62875] EDITING: The showing problem of the Chinese punctuation

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62875

Urmas davian...@gmail.com changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 60666] VIEWING: Calc doesn't show cell color background when dark theme is use in the desktop

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60666

--- Comment #5 from chalu...@gmail.com ---
I found a solution here: http://en.libreofficeforum.org/node/4612

Unchecking a bow in:
Tools  Options  LibreOffice  Accessibility  Automatically detect
high-contrast mode of the operating system

It works for me (Libre Office 4.0.3.3)

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


[Libreoffice-bugs] [Bug 64980] New: : Ordered list with subbullets does an unexpected indentation to the left when moving text

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64980

  Priority: medium
Bug ID: 64980
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: : Ordered list with subbullets does an unexpected
indentation to the left when moving text
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: ecli...@pellebye.dk
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.3.3 release
 Component: Writer
   Product: LibreOffice

Created attachment 79785
  -- https://bugs.freedesktop.org/attachment.cgi?id=79785action=edit
Ordered list with subbullets does an unexpected indentation to the left when
moving text

Problem description: 

Steps to reproduce:
1. Create an ordered list with bullets (First part of attachment).
2. Be sure to have bullets as subbullets.
3. Draw text from one subbullet to another (Second part of attachment).

Current behavior: Text is moved as expected but the target subbullet moves one
indentation to the left.

Expected behavior: Text should just move from one subbullet to the other.


Operating System: Windows 7
Version: 4.0.3.3 release

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


[Libreoffice-bugs] [Bug 42362] Can't open file if filename contains high ASCII

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42362

Fiable.biz mongolie2006-freedesk...@yahoo.fr changed:

   What|Removed |Added

   See Also||https://bugs.mageia.org/sho
   ||w_bug.cgi?id=7797

-- 
You are receiving this mail because:
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 42362] Can't open file if filename contains high ASCII

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42362

Fiable.biz mongolie2006-freedesk...@yahoo.fr changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=11456

-- 
You are receiving this mail because:
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 64941] : Imported SVG graphics is not displayed correctly

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64941

--- Comment #2 from marco cammarata marcoca...@gmail.com ---
Note that loading the same file in draw I can see the horizontal lines but
the axis labels are wrong ...

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


[Libreoffice-bugs] [Bug 64930] : Reference to label invalid after FILESAVE/FILEOPEN

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64930

Kohei Yoshida kohei.yosh...@suse.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Whiteboard||target:4.0.x
 Resolution|--- |WORKSFORME

--- Comment #4 from Kohei Yoshida kohei.yosh...@suse.de ---
No idea. And since the 3.6.x line is nearing its EOL, I'd say let's close this
since it works in the 4.0.x line (due to resource constraints). If someone
wants this fixed in 3.6, then I'd recommend buying support from a support
vendor.

-- 
You are receiving this mail because:
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 64981] New: Web links in Calc program no longer work

2013-05-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64981

  Priority: medium
Bug ID: 64981
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Web links in Calc program no longer work
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: jpoze...@yahoo.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.3.3 release
 Component: Libreoffice
   Product: LibreOffice

Web links that I have defined in existing spreadsheets that were working, no
longer 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


  1   2   >