[Libreoffice-commits] .: Branch 'libreoffice-3-6' - xmloff/source

2012-08-04 Thread Ivan Timofeev
 xmloff/source/style/PageMasterImportPropMapper.cxx |  103 ++---
 1 file changed, 52 insertions(+), 51 deletions(-)

New commits:
commit eb42588dcdfe27df5812f9f41b56022e0d5b4cf4
Author: Michael Stahl mst...@redhat.com
Date:   Fri Aug 3 21:09:34 2012 +0200

fdo#38056: fix XMLTextImportPropertyMapper regression:

The invalidation introduced in 7f9928bfa561ccb6ed4e2baacc7d6960bc1ce231
is unfortunately in the wrong place; the pAllFoo actually point at
vector elements, and so they must not be dereferenced after new elements
are added to the vector, so move the invalidation up a bit.

Change-Id: I244d1d5cfd40469ff6d2c081e057355460d34cf4
(cherry picked from commit 9e74e9f3c0931f34fb5421056851a06b83501ce9)

Signed-off-by: Ivan Timofeev timofeev@gmail.com

diff --git a/xmloff/source/style/PageMasterImportPropMapper.cxx 
b/xmloff/source/style/PageMasterImportPropMapper.cxx
index 005c732..0cacf02 100644
--- a/xmloff/source/style/PageMasterImportPropMapper.cxx
+++ b/xmloff/source/style/PageMasterImportPropMapper.cxx
@@ -353,6 +353,58 @@ void 
PageMasterImportPropertyMapper::finished(::std::vector XMLPropertyState 
 aAny.setValue( bValue, ::getBooleanCppuType() );
 pFooterDynamic = new XMLPropertyState(pFooterMinHeight-mnIndex + 1, 
aAny);
 }
+
+// fdo#38056: nerf the various AllFoo properties so they do not override
+// the individual Foo properties later on
+if (pAllPaddingProperty)
+{
+pAllPaddingProperty-mnIndex = -1;
+}
+if (pAllBorderProperty)
+{
+pAllBorderProperty-mnIndex = -1;
+}
+if (pAllBorderWidthProperty)
+{
+pAllBorderWidthProperty-mnIndex = -1;
+}
+if (pAllHeaderPaddingProperty)
+{
+pAllHeaderPaddingProperty-mnIndex = -1;
+}
+if (pAllHeaderBorderProperty)
+{
+pAllHeaderBorderProperty-mnIndex = -1;
+}
+if (pAllHeaderBorderWidthProperty)
+{
+pAllHeaderBorderWidthProperty-mnIndex = -1;
+}
+if (pAllFooterPaddingProperty)
+{
+pAllFooterPaddingProperty-mnIndex = -1;
+}
+if (pAllFooterBorderProperty)
+{
+pAllFooterBorderProperty-mnIndex = -1;
+}
+if (pAllFooterBorderWidthProperty)
+{
+pAllFooterBorderWidthProperty-mnIndex = -1;
+}
+if (pAllMarginProperty)
+{
+pAllMarginProperty-mnIndex = -1;
+}
+if (pAllHeaderMarginProperty)
+{
+pAllHeaderMarginProperty-mnIndex = -1;
+}
+if (pAllFooterMarginProperty)
+{
+pAllFooterMarginProperty-mnIndex = -1;
+}
+
 for (sal_uInt16 i = 0; i  4; i++)
 {
 if (pNewMargins[i].get())
@@ -408,57 +460,6 @@ void 
PageMasterImportPropertyMapper::finished(::std::vector XMLPropertyState 
 rProperties.push_back(*pFooterDynamic);
 delete pFooterDynamic;
 }
-
-// fdo#38056: nerf the various AllFoo properties so they do not override
-// the individual Foo properties later on
-if (pAllPaddingProperty)
-{
-pAllPaddingProperty-mnIndex = -1;
-}
-if (pAllBorderProperty)
-{
-pAllBorderProperty-mnIndex = -1;
-}
-if (pAllBorderWidthProperty)
-{
-pAllBorderWidthProperty-mnIndex = -1;
-}
-if (pAllHeaderPaddingProperty)
-{
-pAllHeaderPaddingProperty-mnIndex = -1;
-}
-if (pAllHeaderBorderProperty)
-{
-pAllHeaderBorderProperty-mnIndex = -1;
-}
-if (pAllHeaderBorderWidthProperty)
-{
-pAllHeaderBorderWidthProperty-mnIndex = -1;
-}
-if (pAllFooterPaddingProperty)
-{
-pAllFooterPaddingProperty-mnIndex = -1;
-}
-if (pAllFooterBorderProperty)
-{
-pAllFooterBorderProperty-mnIndex = -1;
-}
-if (pAllFooterBorderWidthProperty)
-{
-pAllFooterBorderWidthProperty-mnIndex = -1;
-}
-if (pAllMarginProperty)
-{
-pAllMarginProperty-mnIndex = -1;
-}
-if (pAllHeaderMarginProperty)
-{
-pAllHeaderMarginProperty-mnIndex = -1;
-}
-if (pAllFooterMarginProperty)
-{
-pAllFooterMarginProperty-mnIndex = -1;
-}
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [PUSHED 3-6][REVIEW][3-5-6] regression in fix for fdo#38056

2012-08-04 Thread Ivan Timofeev

On 04.08.2012 01:35, Michael Stahl wrote:


this is a rather stupid regression in 3.5.6, introduced by the fix for
fdo#38056 which can cause crashes because the invalidation is in the
wrong place

please push the fix to libreoffice-3-5-6 and libreoffice-3-6

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


pushed to libreoffice-3-6, we need 2 more reviews for 3-5-6.

Thanks!

Ivan

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


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - xmloff/source

2012-08-04 Thread Ivan Timofeev
 xmloff/source/style/PageMasterImportPropMapper.cxx |  103 ++---
 1 file changed, 52 insertions(+), 51 deletions(-)

New commits:
commit 3347e2644f44d4a4165d594126bcd1c924b82a9a
Author: Michael Stahl mst...@redhat.com
Date:   Fri Aug 3 21:09:34 2012 +0200

fdo#38056: fix XMLTextImportPropertyMapper regression:

The invalidation introduced in 7f9928bfa561ccb6ed4e2baacc7d6960bc1ce231
is unfortunately in the wrong place; the pAllFoo actually point at
vector elements, and so they must not be dereferenced after new elements
are added to the vector, so move the invalidation up a bit.

Change-Id: I244d1d5cfd40469ff6d2c081e057355460d34cf4
(cherry picked from commit 9e74e9f3c0931f34fb5421056851a06b83501ce9)

Signed-off-by: Ivan Timofeev timofeev@gmail.com

diff --git a/xmloff/source/style/PageMasterImportPropMapper.cxx 
b/xmloff/source/style/PageMasterImportPropMapper.cxx
index 005c732..0cacf02 100644
--- a/xmloff/source/style/PageMasterImportPropMapper.cxx
+++ b/xmloff/source/style/PageMasterImportPropMapper.cxx
@@ -353,6 +353,58 @@ void 
PageMasterImportPropertyMapper::finished(::std::vector XMLPropertyState 
 aAny.setValue( bValue, ::getBooleanCppuType() );
 pFooterDynamic = new XMLPropertyState(pFooterMinHeight-mnIndex + 1, 
aAny);
 }
+
+// fdo#38056: nerf the various AllFoo properties so they do not override
+// the individual Foo properties later on
+if (pAllPaddingProperty)
+{
+pAllPaddingProperty-mnIndex = -1;
+}
+if (pAllBorderProperty)
+{
+pAllBorderProperty-mnIndex = -1;
+}
+if (pAllBorderWidthProperty)
+{
+pAllBorderWidthProperty-mnIndex = -1;
+}
+if (pAllHeaderPaddingProperty)
+{
+pAllHeaderPaddingProperty-mnIndex = -1;
+}
+if (pAllHeaderBorderProperty)
+{
+pAllHeaderBorderProperty-mnIndex = -1;
+}
+if (pAllHeaderBorderWidthProperty)
+{
+pAllHeaderBorderWidthProperty-mnIndex = -1;
+}
+if (pAllFooterPaddingProperty)
+{
+pAllFooterPaddingProperty-mnIndex = -1;
+}
+if (pAllFooterBorderProperty)
+{
+pAllFooterBorderProperty-mnIndex = -1;
+}
+if (pAllFooterBorderWidthProperty)
+{
+pAllFooterBorderWidthProperty-mnIndex = -1;
+}
+if (pAllMarginProperty)
+{
+pAllMarginProperty-mnIndex = -1;
+}
+if (pAllHeaderMarginProperty)
+{
+pAllHeaderMarginProperty-mnIndex = -1;
+}
+if (pAllFooterMarginProperty)
+{
+pAllFooterMarginProperty-mnIndex = -1;
+}
+
 for (sal_uInt16 i = 0; i  4; i++)
 {
 if (pNewMargins[i].get())
@@ -408,57 +460,6 @@ void 
PageMasterImportPropertyMapper::finished(::std::vector XMLPropertyState 
 rProperties.push_back(*pFooterDynamic);
 delete pFooterDynamic;
 }
-
-// fdo#38056: nerf the various AllFoo properties so they do not override
-// the individual Foo properties later on
-if (pAllPaddingProperty)
-{
-pAllPaddingProperty-mnIndex = -1;
-}
-if (pAllBorderProperty)
-{
-pAllBorderProperty-mnIndex = -1;
-}
-if (pAllBorderWidthProperty)
-{
-pAllBorderWidthProperty-mnIndex = -1;
-}
-if (pAllHeaderPaddingProperty)
-{
-pAllHeaderPaddingProperty-mnIndex = -1;
-}
-if (pAllHeaderBorderProperty)
-{
-pAllHeaderBorderProperty-mnIndex = -1;
-}
-if (pAllHeaderBorderWidthProperty)
-{
-pAllHeaderBorderWidthProperty-mnIndex = -1;
-}
-if (pAllFooterPaddingProperty)
-{
-pAllFooterPaddingProperty-mnIndex = -1;
-}
-if (pAllFooterBorderProperty)
-{
-pAllFooterBorderProperty-mnIndex = -1;
-}
-if (pAllFooterBorderWidthProperty)
-{
-pAllFooterBorderWidthProperty-mnIndex = -1;
-}
-if (pAllMarginProperty)
-{
-pAllMarginProperty-mnIndex = -1;
-}
-if (pAllHeaderMarginProperty)
-{
-pAllHeaderMarginProperty-mnIndex = -1;
-}
-if (pAllFooterMarginProperty)
-{
-pAllFooterMarginProperty-mnIndex = -1;
-}
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [PUSHED 3-6 3-5][REVIEW][3-5-6] regression in fix for fdo#38056

2012-08-04 Thread Ivan Timofeev

On 04.08.2012 10:36, Ivan Timofeev wrote:

On 04.08.2012 01:35, Michael Stahl wrote:


this is a rather stupid regression in 3.5.6, introduced by the fix for
fdo#38056 which can cause crashes because the invalidation is in the
wrong place

please push the fix to libreoffice-3-5-6 and libreoffice-3-6

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



pushed to libreoffice-3-6, we need 2 more reviews for 3-5-6.


oh, and pushed to libreoffice-3-5 of course.

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


Re: [PUSHED] fdo#48549 System::Beep() removal

2012-08-04 Thread Ivan Timofeev

Adding [PUSHED] to the subject.
http://cgit.freedesktop.org/libreoffice/core/commit/?id=85cb9084533605657aca0394afe4516058a8e4ef
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


gcov/lcov run on LibreOffice

2012-08-04 Thread John Smith
On Mon, Jul 30, 2012 at 4:49 PM, bfo bfo.bugm...@spamgourmet.com wrote:

 This is a very interesting report to read. Maybe after you are done with
 this you will be interested in playing with gcov/lcov - code coverage report
 tool? Thread with some resources is here:
 http://nabble.documentfoundation.org/LibreOffice-code-coverage-tp3994901p3998038.html
 and bug report here: https://bugs.freedesktop.org/show_bug.cgi?id=38840.
 Setting up such reports would be great for improving the LO package for
 sure.
 Have fun!


Hi,


I just tried to 'make test' after I ran './configure
--with-system-libs', and I get the following error:

http://pastebin.com/0WKpK86G

I get the impression that that is c aused by '--with-system-libs'. If
that is correct, should I just configure without that parameter ?


Thanks,


Regards,


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


Re: gcov/lcov run on LibreOffice

2012-08-04 Thread Matúš Kukan
On 4 August 2012 09:50, John Smith lbalba...@gmail.com wrote:
 I just tried to 'make test' after I ran './configure
 --with-system-libs', and I get the following error:

You can't just run 'make test'.
test/ is module as others and you can build it separately only after
full 'make'.
Maybe you want to run 'make check' ?

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


[GSOC-UPDATE](03.08) Impress Remote

2012-08-04 Thread Andrzej J. R. Hunt

Hi everyone,

A slightly delayed status update of yesterday:
- Implemented the server selection screen.
- Added server caching and deletion to the backend.
- rebased onto master

The last item is still causing some issues (not commited yet..) -- 
intially I tried a debug build, but this failed on the bridgetest in 
testtools -- this appears to be something to do with recently released 
distros, which someone else has also been experiencing. (I'm doing a 
separate build from master to look into this -- not using --enable-debug 
circumvents the issue). My build is now failing because of a missing 
libxml/tree.h which is included in xmlsec/base64.h, which one of my 
files uses, i.e. I'm now onto fixing my code to work with master.


Assuming I get this into master, I should be able to complete the code 
for pairing next week., and will then probably start publishing compiled 
.apk files for testing.


Cheers,

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


Re: gcov/lcov run on LibreOffice

2012-08-04 Thread John Smith
On Sat, Aug 4, 2012 at 10:55 AM, Matúš Kukan matus.ku...@gmail.com wrote:
 On 4 August 2012 09:50, John Smith lbalba...@gmail.com wrote:
 I just tried to 'make test' after I ran './configure
 --with-system-libs', and I get the following error:

 You can't just run 'make test'.
 test/ is module as others and you can build it separately only after
 full 'make'.
 Maybe you want to run 'make check' ?

 Best,
 Matus
Reading back my previous email, I see I clearly was too
tired/frustrated too make any sense.
;)
Thanks. Once the build is done, I do indeed intend to run 'make check'.


Thanks,


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


Re: gcov/lcov run on LibreOffice

2012-08-04 Thread John Smith
Hi,

While attempting to set up my build dir for gcov/lcov Im running into
a compile error that I cannot explain

My configure and make lines were (if that's relevant) :

./configure --enable-debug --with-system-libcmis=no
--with-system-saxon=no --with-system-libs
CFLAGS+='-fprofile-arcs -ftest-coverage' CXXFLAGS+='-fprofile-arcs
-ftest-coverage' make

Ive attached my 'build_error.log' for details.


Regards,


John Smith.


build_error.log
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: 2 commits - sc/source

2012-08-04 Thread Ivan Timofeev
 sc/source/ui/app/inputwin.cxx |   13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

New commits:
commit 8e9f9afbe6eb9d676e678f208db48f30a6561af1
Author: Ivan Timofeev timofeev@gmail.com
Date:   Sat Aug 4 17:29:06 2012 +0400

calc input line: don't reset the scrollbar thumb on resize

Change-Id: I78d5bb455e8d175cf3813e24854a76407931a0e3

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index f107349..65b1a0d 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -976,9 +976,6 @@ void ScInputBarGroup::Resize()
 aScrollBar.SetLineSize( aMultiTextWnd.GetTextHeight() );
 aScrollBar.SetRange( Range( 0, aMultiTextWnd.GetEditEngTxtHeight() ) );
 
-if ( aMultiTextWnd.GetEditView() )
-aScrollBar.SetThumbPos( 0 );
-
 aScrollBar.Resize();
 aScrollBar.Show();
 }
commit 5081ea1a076c61c01ae3837aa2396501860ae4e9
Author: Ivan Timofeev timofeev@gmail.com
Date:   Sat Aug 4 17:26:59 2012 +0400

calc input line: don't leave an empty area at the bottom if possible

Change-Id: Iaaf82ee6b79d091c349a501f3a09e760c295546f

diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index d819e0c..f107349 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -1197,8 +1197,16 @@ void ScMultiTextWnd::Resize()
 if(pEditView)
 {
 Size aOutputSize = GetOutputSizePixel();
+Rectangle aOutputArea = PixelToLogic( Rectangle( Point(), aOutputSize 
));
+pEditView-SetOutputArea( aOutputArea );
+
+// Don't leave an empty area at the bottom if we can move the text 
down.
+long nMaxVisAreaTop = pEditEngine-GetTextHeight() - 
aOutputArea.GetHeight();
+if (pEditView-GetVisArea().Top()  nMaxVisAreaTop)
+{
+pEditView-Scroll(0, pEditView-GetVisArea().Top() - 
nMaxVisAreaTop);
+}
 
-pEditView-SetOutputArea( PixelToLogic( Rectangle( Point(), 
aOutputSize ) ) );
 pEditEngine-SetPaperSize( PixelToLogic( Size( aOutputSize.Width(), 
1 ) ) );
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [GSOC-UPDATE](03.08) Impress Remote

2012-08-04 Thread Andrzej J. R. Hunt

Hi again,

Everything now builds, courtesy of adding the following to the correct 
build file:

$(eval $(call gb_Library_use_externals,sd,\
 libxml2 \
))

I'm not entirely sure why this should be done when I'm not using libxml 
directly -- I'm going to try and look for what has changed in master on 
Monday.


On 08/04/2012 11:36 AM, Andrzej J. R. Hunt wrote:

Hi everyone,

A slightly delayed status update of yesterday:
- Implemented the server selection screen.
- Added server caching and deletion to the backend.
- rebased onto master

The last item is still causing some issues (not commited yet..) -- 
intially I tried a debug build, but this failed on the bridgetest in 
testtools -- this appears to be something to do with recently released 
distros, which someone else has also been experiencing. (I'm doing a 
separate build from master to look into this -- not using 
--enable-debug circumvents the issue). My build is now failing because 
of a missing libxml/tree.h which is included in xmlsec/base64.h, which 
one of my files uses, i.e. I'm now onto fixing my code to work with 
master.


Assuming I get this into master, I should be able to complete the code 
for pairing next week., and will then probably start publishing 
compiled .apk files for testing.


Cheers,

Andrzej

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


[Libreoffice-commits] .: 2 commits - editeng/source sc/source sfx2/source svx/source sw/source

2012-08-04 Thread Bjoern Michaelsen
 editeng/source/items/textitem.cxx   |   13 -
 sc/source/core/data/stlsheet.cxx|4 +---
 sfx2/source/control/bindings.cxx|2 +-
 svx/source/sdr/properties/defaultproperties.cxx |2 +-
 svx/source/unodraw/unoshape.cxx |2 +-
 sw/source/core/doc/docfmt.cxx   |4 +---
 sw/source/core/doc/docnew.cxx   |4 +---
 sw/source/core/unocore/unosect.cxx  |6 ++
 sw/source/core/unocore/unotext.cxx  |4 +---
 sw/source/ui/uiview/viewtab.cxx |4 +---
 10 files changed, 14 insertions(+), 31 deletions(-)

New commits:
commit 1af0e36fb6b1a013db6b4f2875be8a85fd67c2a2
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Sat Aug 4 15:17:03 2012 +0200

kill va_args abuse for SfxItemSet

Change-Id: I200addfdf551f1b8437b704c481d397c53440dcd

diff --git a/sc/source/core/data/stlsheet.cxx b/sc/source/core/data/stlsheet.cxx
index e13f0ec..0b5fd72 100644
--- a/sc/source/core/data/stlsheet.cxx
+++ b/sc/source/core/data/stlsheet.cxx
@@ -240,9 +240,7 @@ SfxItemSet ScStyleSheet::GetItemSet()
 
 case SFX_STYLE_FAMILY_PARA:
 default:
-pSet = new SfxItemSet( GetPool().GetPool(),
-   ATTR_PATTERN_START, ATTR_PATTERN_END,
-   0 );
+pSet = new SfxItemSet( GetPool().GetPool(), 
ATTR_PATTERN_START, ATTR_PATTERN_END );
 break;
 }
 bMySet = true;
diff --git a/sfx2/source/control/bindings.cxx b/sfx2/source/control/bindings.cxx
index 495a070..963c169 100644
--- a/sfx2/source/control/bindings.cxx
+++ b/sfx2/source/control/bindings.cxx
@@ -1211,7 +1211,7 @@ void SfxBindings::Execute_Impl( SfxRequest aReq, const 
SfxSlot* pSlot, SfxShell
 {
 // The value is attached to a toggleable attribute (Bools)
 sal_uInt16 nWhich = pSlot-GetWhich(rPool);
-SfxItemSet aSet(rPool, nWhich, nWhich, 0);
+SfxItemSet aSet(rPool, nWhich, nWhich);
 SfxStateFunc aFunc  = pSlot-GetStateFnc();
 pShell-CallState( aFunc, aSet );
 const SfxPoolItem *pOldItem;
diff --git a/svx/source/sdr/properties/defaultproperties.cxx 
b/svx/source/sdr/properties/defaultproperties.cxx
index aa6b10c..11874f1 100644
--- a/svx/source/sdr/properties/defaultproperties.cxx
+++ b/svx/source/sdr/properties/defaultproperties.cxx
@@ -154,7 +154,7 @@ namespace sdr
 const SfxPoolItem *pPoolItem;
 std::vector sal_uInt16  aPostItemChangeList;
 sal_Bool bDidChange(sal_False);
-SfxItemSet aSet(*GetSdrObject().GetObjectItemPool(), 
SDRATTR_START, EE_ITEMS_END, 0, 0);
+SfxItemSet aSet(*GetSdrObject().GetObjectItemPool(), 
SDRATTR_START, EE_ITEMS_END);
 
 // give a hint to STL_Vector
 aPostItemChangeList.reserve(rSet.Count());
diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx
index 447979a..4aea0ed 100644
--- a/svx/source/unodraw/unoshape.cxx
+++ b/svx/source/unodraw/unoshape.cxx
@@ -675,7 +675,7 @@ void SvxShape::ObtainSettingsFromPropertySet(const 
SvxItemPropertySet rPropSet)
 DBG_TESTSOLARMUTEX();
 if(mpObj.is()  rPropSet.AreThereOwnUsrAnys()  mpModel)
 {
-SfxItemSet aSet( mpModel-GetItemPool(), SDRATTR_START, SDRATTR_END, 
0);
+SfxItemSet aSet( mpModel-GetItemPool(), SDRATTR_START, SDRATTR_END);
 Reference beans::XPropertySet  xShape( (OWeakObject*)this, UNO_QUERY 
);
 SvxItemPropertySet_ObtainSettingsFromPropertySet(rPropSet, aSet, 
xShape, mpPropSet-getPropertyMap() );
 
diff --git a/sw/source/core/doc/docfmt.cxx b/sw/source/core/doc/docfmt.cxx
index f0bc6bc..6b749df 100644
--- a/sw/source/core/doc/docfmt.cxx
+++ b/sw/source/core/doc/docfmt.cxx
@@ -200,9 +200,7 @@ sal_Bool lcl_RstAttr( const SwNodePtr rpNd, void* pArgs )
 std::vectorsal_uInt16 aClearWhichIds;
 // restoring all paragraph list attributes
 {
-SfxItemSet aListAttrSet( pDoc-GetAttrPool(),
- RES_PARATR_LIST_BEGIN, 
RES_PARATR_LIST_END - 1,
- 0 );
+SfxItemSet aListAttrSet( pDoc-GetAttrPool(), 
RES_PARATR_LIST_BEGIN, RES_PARATR_LIST_END - 1 );
 aListAttrSet.Set( *pSet );
 if ( aListAttrSet.Count() )
 {
diff --git a/sw/source/core/doc/docnew.cxx b/sw/source/core/doc/docnew.cxx
index 4ddf95e..878223c 100644
--- a/sw/source/core/doc/docnew.cxx
+++ b/sw/source/core/doc/docnew.cxx
@@ -423,9 +423,7 @@ SwDoc::SwDoc()
 // pass empty item set containing the paragraph's list attributes
 // as ignorable items to the stype manager.
 {
-SfxItemSet aIgnorableParagraphItems( GetAttrPool(),
- RES_PARATR_LIST_BEGIN, 
RES_PARATR_LIST_END-1,
-   

[PATCH] fix WhichRange management in SfxItemSet

2012-08-04 Thread Gerrit
From Björn Michaelsen bjoern.michael...@canonical.com:

Björn Michaelsen has uploaded a new change for review.

Change subject: fix WhichRange management in SfxItemSet
..

fix WhichRange management in SfxItemSet

* Remove SetRanges() function
  - has always been misleading and easy to abuse
* dont use naked new/delete memory allocation for the WhichRanges
* use a scoped_ptr to a std::vector for the ranges instead
  - also use stl algorithms were possible
* add lots and lots of SAL_WARN/SAL_INFO goodness
* add lcl_PrintItemSet() debug function
* finally kill off the abomination call nranges

Change-Id: Ie702c37152097a0012e76c630712b6ea37b7f9dc
---
M svl/Package_inc.mk
M svl/inc/svl/itemset.hxx
D svl/inc/svl/nranges.hxx
M svl/source/items/itemset.cxx
D svl/source/items/nranges.cxx
5 files changed, 301 insertions(+), 1,169 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/67/367/1
--
To view, visit https://gerrit.libreoffice.org/367
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie702c37152097a0012e76c630712b6ea37b7f9dc
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Björn Michaelsen bjoern.michael...@canonical.com

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


Re: Change in core[master]: Translate German comments in sw/source/core/docnode/ndcopy.c...

2012-08-04 Thread Philipp Riemer
Hey Bertrand,
2012/8/4 Gerrit ger...@gerrit.libreoffice.org:
 From Bertrand Lorentz bertrand.lore...@gmail.com:

 Hello Philipp Riemer,

 I'd like you to reexamine a change.  Please visit

 https://gerrit.libreoffice.org/365

 to look at the new patch set (#3).

 Change subject: Translate German comments in sw/source/core/docnode/ndcopy.cxx
 ..

 Translate German comments in sw/source/core/docnode/ndcopy.cxx

 Change-Id: I6de2586d54d3e0938e2e9701885a043c76f686ae
 ---
 M sw/source/core/docnode/ndcopy.cxx
 1 file changed, 91 insertions(+), 99 deletions(-)

Good work! However, I couldn't find your name on
https://wiki.documentfoundation.org/Development/Developers and also
no license statement of you (but the search page for the mailing
archives is quite buggy)... Did you already send such a mail to the
LibreOffice mailing list? If you did, could you please send me a link
to the respective nabble/archive/... url? I will then add you to the
wiki page and also integrate the patch as soon as possible.

Have a great weekend!
Philipp
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


License statement for Bertrand Lorentz

2012-08-04 Thread Bertrand Lorentz
All of my past and future contributions to LibreOffice may be licensed under the
MPL/LGPLv3+ dual license.

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


Re: gcov/lcov run on LibreOffice

2012-08-04 Thread Norbert Thiebaud
On Sat, Aug 4, 2012 at 6:13 AM, John Smith lbalba...@gmail.com wrote:
 Hi,

 While attempting to set up my build dir for gcov/lcov Im running into
 a compile error that I cannot explain

 My configure and make lines were (if that's relevant) :

 ./configure --enable-debug --with-system-libcmis=no
 --with-system-saxon=no --with-system-libs
 CFLAGS+='-fprofile-arcs -ftest-coverage' CXXFLAGS+='-fprofile-arcs
 -ftest-coverage' make

 Ive attached my 'build_error.log' for details.


missing -lgcov at link time ?

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


[Libreoffice-commits] .: 5 commits - filter/source registry/source registry/tools unodevtools/source xmloff/source xmlsecurity/source

2012-08-04 Thread Arnaud Versini
 filter/source/pdf/impdialog.cxx   |5 +-
 registry/source/keyimpl.cxx   |   21 
+-
 registry/source/reflwrit.cxx  |2 
 registry/source/regimpl.cxx   |4 -
 registry/tools/regcompare.cxx |2 
 unodevtools/source/unodevtools/typeblob.cxx   |   20 
+
 xmloff/source/core/attrlist.cxx   |4 -
 xmloff/source/core/unoatrcn.cxx   |4 -
 xmloff/source/core/xmlexp.cxx |4 +
 xmloff/source/core/xmlimp.cxx |5 +-
 xmloff/source/style/StyleMap.cxx  |5 +-
 xmloff/source/transform/MutableAttrList.cxx   |5 +-
 xmloff/source/transform/OOo2Oasis.cxx |2 
 xmloff/source/transform/Oasis2OOo.cxx |2 
 xmlsecurity/source/xmlsec/mscrypt/securityenvironment_mscryptimpl.cxx |7 
+--
 xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx |4 +
 xmlsecurity/source/xmlsec/nss/ciphercontext.cxx   |   14 
+++---
 xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx |2 
 xmlsecurity/source/xmlsec/nss/x509certificate_nssimpl.cxx |2 
 xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx|3 -
 20 files changed, 64 insertions(+), 53 deletions(-)

New commits:
commit 9d314ab71ed25a4bc5b4b1b6720cc24577137f04
Author: Arnaud Versini arnaud.vers...@gmail.com
Date:   Sat Aug 4 16:42:11 2012 +0200

Replace usage of rtl/memory.h in unodevtools with equivalent from string.h

Change-Id: Id13d0be47071345508ea1ddd3a8c4b8e656fcfe8

diff --git a/unodevtools/source/unodevtools/typeblob.cxx 
b/unodevtools/source/unodevtools/typeblob.cxx
index b2377b1..d877e44 100644
--- a/unodevtools/source/unodevtools/typeblob.cxx
+++ b/unodevtools/source/unodevtools/typeblob.cxx
@@ -17,6 +17,8 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include string.h
+
 #include rtl/alloc.h
 #include registry/writer.hxx
 
@@ -316,7 +318,7 @@ void* getTypeBlob(Reference XHierarchicalNameAccess  
xTDmgr,
 
 const void* p = writer.getBlob(blobsize);
 pBlob = (sal_uInt8*)rtl_allocateMemory(*blobsize);
-rtl_copyMemory(pBlob, p, *blobsize);
+memcpy(pBlob, p, *blobsize);
 }
 break;
 case TypeClass_MODULE:
@@ -358,7 +360,7 @@ void* getTypeBlob(Reference XHierarchicalNameAccess  
xTDmgr,
 
 const void* p = writer.getBlob(blobsize);
 pBlob = (sal_uInt8*)rtl_allocateMemory(*blobsize);
-rtl_copyMemory(pBlob, p, *blobsize);
+memcpy(pBlob, p, *blobsize);
 }
 break;
 case TypeClass_INTERFACE:
@@ -470,7 +472,7 @@ void* getTypeBlob(Reference XHierarchicalNameAccess  
xTDmgr,
 
 const void* p = writer.getBlob(blobsize);
 pBlob = (sal_uInt8*)rtl_allocateMemory(*blobsize);
-rtl_copyMemory(pBlob, p, *blobsize);
+memcpy(pBlob, p, *blobsize);
 }
 break;
 case TypeClass_STRUCT:
@@ -530,7 +532,7 @@ void* getTypeBlob(Reference XHierarchicalNameAccess  
xTDmgr,
 
 const void* p = writer.getBlob(blobsize);
 pBlob = (sal_uInt8*)rtl_allocateMemory(*blobsize);
-rtl_copyMemory(pBlob, p, *blobsize);
+memcpy(pBlob, p, *blobsize);
 }
 break;
 case TypeClass_EXCEPTION:
@@ -572,7 +574,7 @@ void* getTypeBlob(Reference XHierarchicalNameAccess  
xTDmgr,
 
 const void* p = writer.getBlob(blobsize);
 pBlob = (sal_uInt8*)rtl_allocateMemory(*blobsize);
-rtl_copyMemory(pBlob, p, *blobsize);
+memcpy(pBlob, p, *blobsize);
 }
 break;
 case TypeClass_ENUM:
@@ -603,7 +605,7 @@ void* getTypeBlob(Reference XHierarchicalNameAccess  
xTDmgr,
 
 const void* p = writer.getBlob(blobsize);
 pBlob = (sal_uInt8*)rtl_allocateMemory(*blobsize);
-rtl_copyMemory(pBlob, p, *blobsize);
+memcpy(pBlob, p, *blobsize);
 }
 break;
 case TypeClass_TYPEDEF:
@@ -623,7 +625,7 @@ void* getTypeBlob(Reference XHierarchicalNameAccess  
xTDmgr,
 
 const void* p = writer.getBlob(blobsize);
 pBlob = (sal_uInt8*)rtl_allocateMemory(*blobsize);
-rtl_copyMemory(pBlob, p, *blobsize);
+memcpy(pBlob, p, *blobsize);
 }
 break;
 case TypeClass_SERVICE:
@@ -760,7 +762,7 @@ void* getTypeBlob(Reference XHierarchicalNameAccess  
xTDmgr,
 
 const void* p = writer.getBlob(blobsize);
 pBlob = (sal_uInt8*)rtl_allocateMemory(*blobsize);
-rtl_copyMemory(pBlob, p, *blobsize);
+memcpy(pBlob, p, *blobsize);
 }
 break;
 case TypeClass_SINGLETON:
@@ 

Re: feature/gbuild_ure needs testing

2012-08-04 Thread Norbert Thiebaud
on mac I get:

[ build LNK ] CppunitTest/libtest_svl_lngmisc.dylib

 error: no simple registry service!
 dying...
make[2]: *** 
[/Volumes/Raid0/rel/workdir/unxmacxi.pro/CustomTarget/testtools/uno_test.done]
Error 1
make[2]: *** Waiting for unfinished jobs
/bin/sh: line 1: 78722 Abort trap
DYLD_LIBRARY_PATH=$O/lib DBGSV_ERROR_OUT=shell
STAR_RESOURCEPATH=$O/bin/ $O/bin/cppunit/cppunittester
$W/LinkTarget/CppunitTest/libtest_sot_test_sot.dylib --headless
-env:UNO_TYPES=file://$O/bin/offapi.rdb file://$O/bin/udkapi.rdb
-env:UNO_SERVICES=file://$O/xml/ure/services.rdb
-env:URE_INTERNAL_LIB_DIR=file://$O/lib -env:LO_LIB_DIR=file://$O/lib
--protector unoexceptionprotector.dylib unoexceptionprotector
--protector unobootstrapprotector.dylib unobootstrapprotector 
$W/CppunitTest/sot_test_sot.test.log 21
terminate called after throwing an instance of
'com::sun::star::loader::CannotActivateFactoryException'

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


Re: gcov/lcov run on LibreOffice

2012-08-04 Thread John Smith
On Sat, Aug 4, 2012 at 5:50 PM, Norbert Thiebaud nthieb...@gmail.com wrote:

 missing -lgcov at link time ?

 Norbert
Thanks: I indeed did not add LDFLAGS+='-lgcov'. But now, even when I
specify that for make, I still see these errors (see attachment) as
soon as I run ./configure '--with-system-libs'. If I leave
'--with-system-libs' out of my ./configure line, it does seem to work.

I dont get it.
:(

Also: When I ran the clang analyzer, people didnt want to see 3rd
party code in the final analysis, so I guessed that same rule would
apply here. If I can do without  '--with-system-libs' in this case, im
done. If I do need  '--with-system-libs', then I need some help.




Regards,


John Smith.


build_error.log
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: feature/gbuild_ure needs testing

2012-08-04 Thread Norbert Thiebaud
on windows:

I needed:
$ git diff
diff --git a/solenv/gbuild/CliLibrary.mk b/solenv/gbuild/CliLibrary.mk
index 36352b7..d4f6841 100644
--- a/solenv/gbuild/CliLibrary.mk
+++ b/solenv/gbuild/CliLibrary.mk
@@ -20,17 +20,17 @@ gb_CliLibraryTarget_CSCFLAGS_DEBUG := \
-define:DEBUG \
-define:TRACE \

-define gb_CliLibraryTarget__get_csflags
+
 ifeq ($(strip $(debug)),)
 ifeq ($(strip $(PRODUCT)),)
-$(gb_CliLibraryTarget_CSCFLAGS) $(gb_CliLibraryTarget_CSCFLAGS_DEBUG)
+gb_CliLibraryTarget__get_csflags=$(gb_CliLibraryTarget_CSCFLAGS)
$(gb_CliLibraryTarget_CSCFLAGS_D
 else
-$(gb_CliLibraryTarget_CSCFLAGS) -o
+gb_CliLibraryTarget__get_csflags=$(gb_CliLibraryTarget_CSCFLAGS) -o
 endif
 else
-$(gb_CliLibraryTarget_CSCFLAGS) $(gb_CliLibraryTarget_CSCFLAGS_DEBUG) -debug+
+gb_CliLibraryTarget__get_csflags=$(gb_CliLibraryTarget_CSCFLAGS)
$(gb_CliLibraryTarget_CSCFLAGS_D
 endif
-endef
+

 gb_CliLibraryTarget__get_source = $(SRCDIR)/$(1).cs
 gb_CliLibraryTarget__get_generated_source = $(WORKDIR)/$(1).cs

to work around
S=C:/lo/core  O=$S/solver/wntmsci12.pro 
W=$S/workdir/wntmsci12.pro   csc ifeq (,)
/bin/sh: -c: line 0: syntax error near unexpected token `('
/bin/sh: -c: line 0: `S=C:/lo/core  O=$S/solver/wntmsci12.pro 
W=$S/workdir/wntmsci12.pro   csc ifeq (,)'

re-running it clean now...

Norbert

PS: both mac and windows are built with tinderbox setting so
--disable-dependency-tracking   I will try to shake out the potential
dep issue later...
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: feature/gbuild_ure needs testing

2012-08-04 Thread Norbert Thiebaud
arghh the previous diff got mangled.. here is a corrected version:

--- a/solenv/gbuild/CliLibrary.mk
+++ b/solenv/gbuild/CliLibrary.mk
@@ -20,17 +20,17 @@ gb_CliLibraryTarget_CSCFLAGS_DEBUG := \
-define:DEBUG \
-define:TRACE \

-define gb_CliLibraryTarget__get_csflags
+
 ifeq ($(strip $(debug)),)
 ifeq ($(strip $(PRODUCT)),)
-$(gb_CliLibraryTarget_CSCFLAGS) $(gb_CliLibraryTarget_CSCFLAGS_DEBUG)
+gb_CliLibraryTarget__get_csflags=$(gb_CliLibraryTarget_CSCFLAGS)
$(gb_CliLibraryTarget_CSCFLAGS_DEBUG)
 else
-$(gb_CliLibraryTarget_CSCFLAGS) -o
+gb_CliLibraryTarget__get_csflags=$(gb_CliLibraryTarget_CSCFLAGS) -o
 endif
 else
-$(gb_CliLibraryTarget_CSCFLAGS) $(gb_CliLibraryTarget_CSCFLAGS_DEBUG) -debug+
+gb_CliLibraryTarget__get_csflags=$(gb_CliLibraryTarget_CSCFLAGS)
$(gb_CliLibraryTarget_CSCFLAGS_DEBUG) -debug+
 endif
-endef
+

 gb_CliLibraryTarget__get_source = $(SRCDIR)/$(1).cs
 gb_CliLibraryTarget__get_generated_source = $(WORKDIR)/$(1).cs
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: gcov/lcov run on LibreOffice

2012-08-04 Thread John Smith
Hrm.

Looks like I cheered to soon.
:(


Even if I dont specify '--with-system-libs', and do specify
LDFLAGS+='-lgcov', I still get the errors although they appear at
a later stage during make.



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


Re: gcov/lcov run on LibreOffice

2012-08-04 Thread John Smith
On Sat, Aug 4, 2012 at 7:41 PM, John Smith lbalba...@gmail.com wrote:
 Hrm.

 Looks like I cheered to soon.
 :(


 Even if I dont specify '--with-system-libs', and do specify
 LDFLAGS+='-lgcov', I still get the errors although they appear at
 a later stage during make.



 - John

Sorry, forgot the attachment.


build_error.log.gz
Description: GNU Zip compressed data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] code cleanup

2012-08-04 Thread Gerrit
From Rob Snelders libreoff...@ertai.nl:

Rob Snelders has uploaded a new change for review.

Change subject: code cleanup
..

code cleanup

Change-Id: Ib154cd53253e4d802d13a024a20f6c34d499e672
---
M svtools/inc/svtools/slidesorterbaropt.hxx
M svtools/source/config/slidesorterbaropt.cxx
2 files changed, 132 insertions(+), 160 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/68/368/1
--
To view, visit https://gerrit.libreoffice.org/368
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib154cd53253e4d802d13a024a20f6c34d499e672
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rob Snelders libreoff...@ertai.nl

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


Re: [PATCH] code cleanup

2012-08-04 Thread Rob Snelders

Hi All,

I have cleaned this up after an email from Tor (see attachment) 
explaining what needs to be done to clean it up.
When something needs to be different then please let me know, as there 
are more a-like classes and I want to clean those up the same way, but I 
want to verify if this is ok before I change those.


--
Greetings,
Rob

Op 04-08-12 20:48, Gerrit schreef:

From Rob Snelders libreoff...@ertai.nl:

Rob Snelders has uploaded a new change for review.

Change subject: code cleanup
..

code cleanup

Change-Id: Ib154cd53253e4d802d13a024a20f6c34d499e672
---
M svtools/inc/svtools/slidesorterbaropt.hxx
M svtools/source/config/slidesorterbaropt.cxx
2 files changed, 132 insertions(+), 160 deletions(-)


   git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/68/368/1
--
To view, visit https://gerrit.libreoffice.org/368
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib154cd53253e4d802d13a024a20f6c34d499e672
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rob Snelders libreoff...@ertai.nl

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


I am sorry but I still have some critique of the patch... Please don't
take this too harshly.

Is this use of IsDisposing state variable really necessary? Or is
that band-aid protection against some bug (mismanagement of
dynamically allocated objects) elsewhere?

The use of the GetPropertyNames() static method seems a bit overly
complicated and duplicate to me; Is it really necessary to have this
method *and* local variables here and there initialised by calling it?
Could this be done in some simpler way? Can't this table just be a
static variable in the source file?

The SvtSlideSorterBarOptions::m_nRefCount thing seems a bit odd. The
use of the reference count term is misleading, it doesn't correspond
to what is normally thought of as reference counting, does it? (And if
it does, then we already have some mechanisms in LO to build reference
countig upon, no need to write your own.)

Is it really necessary to hide simple boolean fields behind public
setters and getters? Couldn't the fields just be made public instead?

The comments We implement these class with a refcount mechanism!
Every instance of this class increase it at create and decrease it at
delete time - but all instances use the same data container! He is
implemented as a static member ...  , We use these class as internal
member to support small memory requirements. You can create the
container if it is neccessary. The class which use these mechanism is
faster and smaller then a complete implementation! and impl. data
container as dynamic pointer for smaller memory requirements! make me
suspect you attempt some questionable micro-optimisation. I.e. make
the code a lot more complex for dubious gain in speed and size.

The use of naming like _impl suffix easily misleads the code reader
into thinking that it is the common Pimpl idiom that is used, while in
fact it is something else, a dynamically allocated block of static
variables? Or am I missing something? Anyway, what is the real gain
here? Does other similar code in LO use similar constructs?

The rest is just style issues,  if you can improve that too, that
would be great.

The capitalization of the description texts added to
officecfg/registry/schema/org/openoffice/Office/Impress.xcs is a bit
odd. Is the user and translators supposed to understand the difference
betwee Slide Sorter with a space and SlideSorter without space?

if (SvtSlideSorterBarOptions().GetVisibleImpressView()==sal_True)

should surely be written as

if (SvtSlideSorterBarOptions().GetVisibleImpressView()) , etc

The style of Doxygen (?) comments added is inconsistent; does /*@short
 really work, when elsewhere you seem to use /**   @short etc?
Sometimes you put the terminating */ right after the last word,
sometimes on a line by itself.

Why lots of spaces in front of semicolons in some places, to align
semicolons, but not consistently, and that is not something LO code
does elsewhere, is it?

OUString has a constructor that takes a string literal, doesn't it, no
need to use the RTL_CONSTASCII_USTRINGPARAM stuff I think.

In newly written code we shouldn't use sal_Bool and sal_Int32 unless
necessary; just bool and int is fine.

It is not clear who we and you in comments refer to. we = the
class in which the comment is located, you = code of subclasses?

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


Tomorrow's Triaging

2012-08-04 Thread Joel Madero
Hi All,

Tomorrow morning I'll be opening up an IRC room (#libreoffice-qa) at 9am
(GMT-7). Starting at 9:30 (GMT-7) we're just going to spend an hour going
through unconfirmed bugs and trying to confirm them and prioritize them. I
suspect the first 10-15 minutes will be organizational, I've created a
couple spreadsheets with lists of bugs for Brennan and Florian who have
already confirmed that they can help out. If you can help out feel free to
join the room in the morning or shoot me an email and I'll prepare a list
of unconfirmed bugs for you. Thanks to everyone, I know I've
beenaggressive with bugging people to help us out.


Joel

On Thu, Aug 2, 2012 at 4:54 PM, Brennan T Vincent 
brenn...@email.arizona.edu wrote:

 Hi, this is uman from freenode signing up for sunday triaging session

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


Re: feature/gbuild_ure needs testing

2012-08-04 Thread Norbert Thiebaud
ok so now windows fail with

C:/lo/core/solenv/gbuild/Package.mk:44: *** gb_Deliver_deliver: file
does not exist in solver, and cannot be delivered:
C:/lo/core/solver/wntmsci12.pro/bin/cliuno.snk.  Stop.
make[2]: *** Waiting for unfinished jobs

the following seens to fix that:
diff --git a/cli_ure/Package_config.mk b/cli_ure/Package_config.mk
index 820f25e..175fd33 100644
--- a/cli_ure/Package_config.mk
+++ b/cli_ure/Package_config.mk
@@ -9,7 +9,7 @@

 $(eval $(call gb_Package_Package,cli_ure_cliuno,$(SRCDIR)/cli_ure/source))

-$(eval $(call gb_Package_add_files,bin,\
+$(eval $(call gb_Package_add_files,cli_ure_cliuno,bin,\
climaker/climaker.exe.config \
cliuno.snk \
 ))


and then I get
  ### call $(gb_Helper_abbreviate_dirs) --
  ### arg 0 for call $(gb_Helper_abbreviate_dirs) is 'gb_Helper_abbreviate_dirs'
  ### arg 1 for call $(gb_Helper_abbreviate_dirs) is ' csc -noconfig
-warnaserror+ -o  -target:library
-out:C:/lo/core/workdir/wntmsci12.pro/CliLibraryTarget/cli_basetypes.dll
-reference:System.dll   C:/lo/core/cli_ure/source/basetypes/uno/Any.cs
C:/lo/core/cli_ure/source/basetypes/uno/BoundAttribute.cs
C:/lo/core/cli_ure/source/basetypes/uno/ExceptionAttribute.cs
C:/lo/core/cli_ure/source/basetypes/uno/OnewayAttribute.cs
C:/lo/core/cli_ure/source/basetypes/uno/ParameterizedTypeAttribute.cs
C:/lo/core/cli_ure/source/basetypes/uno/PolymorphicType.cs
C:/lo/core/cli_ure/source/basetypes/uno/TypeArgumentsAttribute.cs
C:/lo/core/cli_ure/source/basetypes/uno/TypeParametersAttribute.cs
C:/lo/core/workdir/wntmsci12.pro/CustomTarget/cli_ure/source/basetypes/assembly.cs
'
  ### arg 2 for call $(gb_Helper_abbreviate_dirs) is implicit
  ### arg 3 for call $(gb_Helper_abbreviate_dirs) is implicit
  ### arg 4 for call $(gb_Helper_abbreviate_dirs) is implicit
  ### arg 5 for call $(gb_Helper_abbreviate_dirs) is implicit
  ### call to $(gb_Helper_abbreviate_dirs) expended into
S=C:/lo/core  O=$S/solver/wntmsci12.pro 
W=$S/workdir/wntmsci12.pro   csc -noconfig -warnaserror+ -o
-target:library -out:$W/CliLibraryTarget/cli_basetypes.dll
-reference:System.dll   $S/cli_ure/source/basetypes/uno/Any.cs
$S/cli_ure/source/basetypes/uno/BoundAttribute.cs
$S/cli_ure/source/basetypes/uno/ExceptionAttribute.cs
$S/cli_ure/source/basetypes/uno/OnewayAttribute.cs
$S/cli_ure/source/basetypes/uno/ParameterizedTypeAttribute.cs
$S/cli_ure/source/basetypes/uno/PolymorphicType.cs
$S/cli_ure/source/basetypes/uno/TypeArgumentsAttribute.cs
$S/cli_ure/source/basetypes/uno/TypeParametersAttribute.cs
$W/CustomTarget/cli_ure/source/basetypes/assembly.cs
  ### call $(gb_Helper_abbreviate_dirs) --
 ### call to $(gb_CliLibraryTarget__command) expended into

S=C:/lo/core  O=$S/solver/wntmsci12.pro 
W=$S/workdir/wntmsci12.pro   csc -noconfig -warnaserror+ -o
-target:library -out:$W/CliLibraryTarget/cli_basetypes.dll
-reference:System.dll   $S/cli_ure/source/basetypes/uno/Any.cs
$S/cli_ure/source/basetypes/uno/BoundAttribute.cs
$S/cli_ure/source/basetypes/uno/ExceptionAttribute.cs
$S/cli_ure/source/basetypes/uno/OnewayAttribute.cs
$S/cli_ure/source/basetypes/uno/ParameterizedTypeAttribute.cs
$S/cli_ure/source/basetypes/uno/PolymorphicType.cs
$S/cli_ure/source/basetypes/uno/TypeArgumentsAttribute.cs
$S/cli_ure/source/basetypes/uno/TypeParametersAttribute.cs
$W/CustomTarget/cli_ure/source/basetypes/assembly.cs
 ### call $(gb_CliLibraryTarget__command) --
S=C:/lo/core  O=$S/solver/wntmsci12.pro 
W=$S/workdir/wntmsci12.pro   csc -noconfig -warnaserror+ -o
-target:library -out:$W/CliLibraryTarget/cli_basetypes.dll
-reference:System.dll   $S/cli_ure/source/basetypes/uno/Any.cs
$S/cli_ure/source/basetypes/uno/BoundAttribute.cs
$S/cli_ure/source/basetypes/uno/ExceptionAttribute.cs
$S/cli_ure/source/basetypes/uno/OnewayAttribute.cs
$S/cli_ure/source/basetypes/uno/ParameterizedTypeAttribute.cs
$S/cli_ure/source/basetypes/uno/PolymorphicType.cs
$S/cli_ure/source/basetypes/uno/TypeArgumentsAttribute.cs
$S/cli_ure/source/basetypes/uno/TypeParametersAttribute.cs
$W/CustomTarget/cli_ure/source/basetypes/assembly.cs
Microsoft (R) Visual C# 2008 Compiler version 3.5.30729.5420
for Microsoft (R) .NET Framework version 3.5
Copyright (C) Microsoft Corporation. All rights reserved.

error CS1504: Source file 'c:\lo\core\cli_ure\Any.cs' could not be
opened ('The system cannot find the file specified. ')
error CS1504: Source file 'c:\lo\core\cli_ure\BoundAttribute.cs' could
not be opened ('The system cannot find the file specified. ')
error CS1504: Source file 'c:\lo\core\cli_ure\ExceptionAttribute.cs'
could not be opened ('The system cannot find the file specified. ')
error CS1504: Source file 'c:\lo\core\cli_ure\OnewayAttribute.cs'
could not be opened ('The system cannot find the file specified. ')
error CS1504: Source file
'c:\lo\core\cli_ure\ParameterizedTypeAttribute.cs' could not be opened
('The system cannot find the file specified. ')
error CS1504: Source file 'c:\lo\core\cli_ure\PolymorphicType.cs'
could not be opened ('The system cannot find 

android / activation helpers / return values ?

2012-08-04 Thread Michael Meeks
Hi there,

I was just trying to chase down the reason why custom shapes would bust
loading in the android port; still not quite to the bottom of why they
initialize these language-checkers so early ;-) but - the attached fixes
it and prints:

No ExtensionManager: exception 'component context fails to
supply singleton com.sun.star.deployment.ExtensionManager of
type ...

Is it intended that that would throw an exception rather than returning
NULL ? that was apparently not clear to either to Caolan, or me reading
it :-)

Having said that - it's some lovely work there Caolan to get the
caching right based on new extensions being installed - that is sexy :-)

Of course - Android has no real need for the extension manager, we'll
bundle a static image - so this sort of thing is expected; so just a
question: is a nil return, or an exception ideal ? and/or is some
QUERY_THROW type annotation wanted ? :-)

Either way - with this, I can load much more interesting writer
documents on Android/x86 Tor :-) [ though I have a batch of other
commits / cleanups to push Monday to make that fly ].

Thanks,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot
diff --git a/linguistic/source/lngsvcmgr.cxx b/linguistic/source/lngsvcmgr.cxx
index 6dc2d69..40bc684 100644
--- a/linguistic/source/lngsvcmgr.cxx
+++ b/linguistic/source/lngsvcmgr.cxx
@@ -491,8 +493,15 @@ LngSvcMgr::LngSvcMgr()
 // request to be notified if an extension has been added/removed
 uno::Referenceuno::XComponentContext xContext(comphelper::getProcessComponentContext());
 
-uno::Referencedeployment::XExtensionManager xExtensionManager(
-deployment::ExtensionManager::get(xContext));
+uno::Referencedeployment::XExtensionManager xExtensionManager;
+try {
+xExtensionManager = deployment::ExtensionManager::get(xContext);
+} catch (const uno::Exception e) {
+// FIXME: I'd really want the above to return a NULL pointer not
+// throw an exception on error ...
+fprintf( stderr, No ExtensionManager: exception '%s'\n,
+ rtl::OUStringToOString(e.Message, RTL_TEXTENCODING_UTF8).getStr());
+}
 if (xExtensionManager.is())
 {
 xMB = uno::Referenceutil::XModifyBroadcaster(xExtensionManager, uno::UNO_QUERY_THROW);
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: 2 commits - Makefile.top svl/inc svl/source

2012-08-04 Thread Michael Stahl
 Makefile.top |4 +-
 svl/inc/svl/brdcst.hxx   |   11 ++-
 svl/source/notify/brdcst.cxx |   67 ++-
 3 files changed, 53 insertions(+), 29 deletions(-)

New commits:
commit 2a26650105507cd700b7e91bd55c8a5f61e7dd7c
Author: Michael Stahl mst...@redhat.com
Date:   Sat Aug 4 21:31:33 2012 +0200

make dev-install: don't list all files when unzipping on WNT

Change-Id: I9b04e3ba7125ac0b7a38f47d0cbdedee9d844e28

diff --git a/Makefile.top b/Makefile.top
index b14f2c4..b10643b 100644
--- a/Makefile.top
+++ b/Makefile.top
@@ -434,7 +434,7 @@ dev-install: build
@mkdir $(DEVINSTALLDIR)
 ifeq ($(OS_FOR_BUILD),WNT)
cd instsetoo_native  unset MAKEFLAGS  $(SOLARENV)/bin/build.pl 
PKGFORMAT=archive
-   unzip -d $(DEVINSTALLDIR) 
$(SRCDIR)/instsetoo_native/$(INPATH)/LibreOffice_Dev/archive/install/en-US/LibO*_install-arc_en-US.zip
+   unzip -q -d $(DEVINSTALLDIR) 
$(SRCDIR)/instsetoo_native/$(INPATH)/LibreOffice_Dev/archive/install/en-US/LibO*_install-arc_en-US.zip
mv $(DEVINSTALLDIR)/LibO*_install-arc_en-US/* $(DEVINSTALLDIR)/opt
 else
 ifeq ($(DISABLE_LINKOO),TRUE)
@@ -451,7 +451,7 @@ install-tb:
@mkdir $(DEVINSTALLDIR)
 ifeq ($(OS_FOR_BUILD),WNT)
cd instsetoo_native  unset MAKEFLAGS  $(SOLARENV)/bin/build.pl 
PKGFORMAT=archive
-   unzip -d $(DEVINSTALLDIR) 
$(SRCDIR)/instsetoo_native/$(INPATH)/LibreOffice_Dev/archive/install/en-US/LibO*_install-arc_en-US.zip
+   unzip -q -d $(DEVINSTALLDIR) 
$(SRCDIR)/instsetoo_native/$(INPATH)/LibreOffice_Dev/archive/install/en-US/LibO*_install-arc_en-US.zip
mv $(DEVINSTALLDIR)/LibO*_install-arc_en-US/* $(DEVINSTALLDIR)/opt
 else
@ooinstall $(DEVINSTALLDIR)/opt
commit 6868efe203cffda0ab60db2abc4637433e6caf90
Author: Michael Stahl mst...@redhat.com
Date:   Sat Aug 4 20:53:31 2012 +0200

SfxBroadcaster: fix STL conversion:

50cf7caee5bc6d8e066580d13c72b40926fcb69a introduced a regression that
makes the smoketest fail on Windows (though strangely not on Linux),
because it removed the special handling of null pointers in the
SfxBroadcaster's listener array.  It is evidently possible that
a listener may be either added or removed at the SfxBroadcaster
while that SfxBroadcaster is currently doing a Broadcast, hence
AddListener and RemoveListener must be careful not to make the in
progress iteration through the listener array fail.

svllo.dll!SfxBroadcaster::AddListener(SfxListener  rListener={...}) Line 
114 + 0x43 bytes   C++
svllo.dll!SfxListener::StartListening(SfxBroadcaster  rBroadcaster={...}, 
unsigned char bPreventDups=0)  Line 89  C++
sfxlo.dll!SfxPrintHelper::initialize(const 
com::sun::star::uno::Sequencecom::sun::star::uno::Any  aArguments={...})  
Line 162 C++
sfxlo.dll!SfxBaseModel::impl_getPrintHelper()  Line 3693C++
sfxlo.dll!SfxBaseModel::Notify(SfxBroadcaster  rBC={...}, const SfxHint  
rHint={...})  Line 2583   C++
svllo.dll!SfxBroadcaster::Broadcast(const SfxHint  rHint={...}) Line 56 + 
0xb bytes C++
sfxlo.dll!SfxApplication::NotifyEvent(const SfxEventHint  
rEventHint={...}, bool bSynchron=true)  Line 918C++
sfxlo.dll!SfxObjectShell::SetInitialized_Impl(const bool 
i_fromInitNew=true)  Line 1146 + 0x37 bytes C++
sfxlo.dll!SfxObjectShell::FinishedLoading(unsigned short nFlags=3) Line 
1302   C++

Change-Id: Id27d08faaa2472b57947960a92f19c44df55b72b

diff --git a/svl/inc/svl/brdcst.hxx b/svl/inc/svl/brdcst.hxx
index d434a83..258cf60 100644
--- a/svl/inc/svl/brdcst.hxx
+++ b/svl/inc/svl/brdcst.hxx
@@ -33,7 +33,7 @@ class SVL_DLLPUBLIC SfxBroadcaster
 friend class SfxListener;
 typedef std::vectorSfxListener* SfxListenerArr_Impl;
 
-SfxListenerArr_Impl aListeners;
+SfxListenerArr_Impl m_Listeners;
 
 private:
 voidAddListener( SfxListener rListener );
@@ -52,17 +52,14 @@ public:
 virtual ~SfxBroadcaster();
 
 voidBroadcast( const SfxHint rHint );
-boolHasListeners() const
-{
-return !aListeners.empty();
-}
+boolHasListeners() const;
 size_t  GetListenerCount() const
 {
-return aListeners.size();
+return m_Listeners.size();
 }
 SfxListener*GetListener( sal_uInt16 nNo ) const
 {
-return aListeners[nNo];
+return m_Listeners[nNo];
 }
 };
 
diff --git a/svl/source/notify/brdcst.cxx b/svl/source/notify/brdcst.cxx
index 62fc638..b5a17cd 100644
--- a/svl/source/notify/brdcst.cxx
+++ b/svl/source/notify/brdcst.cxx
@@ -17,9 +17,9 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include assert.h
 
 #include tools/debug.hxx
-#include osl/diagnose.h
 
 #include svl/hint.hxx
 #include svl/smplhint.hxx
@@ -37,16 +37,17 @@ TYPEINIT0(SfxBroadcaster);
 

Re: gcov/lcov run on LibreOffice

2012-08-04 Thread John Smith
Submitted Bug 53129 for this issue.

https://bugs.freedesktop.org/show_bug.cgi?id=53129
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: 7 commits - sc/source tubes/inc tubes/Package_inc.mk tubes/qa tubes/source

2012-08-04 Thread Matus Kukan
 sc/source/ui/collab/sccollaboration.cxx   |   11 +-
 sc/source/ui/collab/sendfunc.cxx  |  101 ++
 sc/source/ui/collab/sendfunc.hxx  |   22 
 sc/source/ui/inc/sccollaboration.hxx  |1 
 tubes/Package_inc.mk  |1 
 tubes/inc/tubes/collaboration.hxx |1 
 tubes/inc/tubes/conference.hxx|   19 
 tubes/inc/tubes/manager.hxx   |   19 ++--
 tubes/inc/tubes/warnings_guard_boost_signals2.hpp |   44 -
 tubes/qa/test_manager.cxx |   31 --
 tubes/source/conference.cxx   |   74 
 tubes/source/contacts.cxx |   24 +
 tubes/source/contacts.hrc |1 
 tubes/source/contacts.src |6 +
 tubes/source/manager.cxx  |   95 
 15 files changed, 164 insertions(+), 286 deletions(-)

New commits:
commit c3c9ae052bd062c9057fd08675e0593d00ccd601
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sat Aug 4 22:40:40 2012 +0200

tubes: do not queue incoming packets

Change-Id: Ida0f3b9ce7cebdb0517457900d2b0b2377e6c8ab

diff --git a/tubes/inc/tubes/conference.hxx b/tubes/inc/tubes/conference.hxx
index ad5ae1e..9222f0f 100644
--- a/tubes/inc/tubes/conference.hxx
+++ b/tubes/inc/tubes/conference.hxx
@@ -59,17 +59,14 @@ public:
 
 TUBES_DLLPUBLIC boolsendPacket( const OString rPacket );
 
-/** Pop a received packet. */
-boolpopPacket( OString rPacket );
-
 voidinvite( TpContact *pContact );
 
 typedef void  (*FileSentCallback)( bool aSuccess, void* pUserData);
 TUBES_DLLPUBLIC voidsendFile( TpContact* pContact, rtl::OUString 
localUri, FileSentCallback pCallback, void* pUserData);
 const OString  getUuid() const { return msUuid; }
 
-Collaboration*  getCollaboration() const { return mpCollaboration; 
}
-voidsetCollaboration( Collaboration* pCollaboration ) 
{ mpCollaboration = pCollaboration; }
+Collaboration*  getCollaboration() const;
+voidsetCollaboration( Collaboration* pCollaboration );
 
 // --- following only to be called only by manager's callbacks ---
 // TODO: make friends instead
@@ -82,8 +79,6 @@ public:
 voidsetTubeOfferedHandlerInvoked( bool b );
 boolisTubeOfferedHandlerInvoked() const;
 boolisMaster() const;
-/** Queue incoming data as OString */
-voidqueue( const OString rPacket );
 voidsetUuid( const OString rUuid ) { msUuid = rUuid; }
 
 private:
diff --git a/tubes/qa/test_manager.cxx b/tubes/qa/test_manager.cxx
index 89afd11..850d5d5 100644
--- a/tubes/qa/test_manager.cxx
+++ b/tubes/qa/test_manager.cxx
@@ -221,22 +221,7 @@ void TestTeleTubes::testReceivePacket()
  * and extracting UUID from the name.
  */
 
-sal_uInt32 nReceivedPackets = 0;
-/* We expect to get every packet we send pushed
- * onto the queue to be echoed locally.
- */
-bool bOk;
-do
-{
-OString aReceived;
-bOk = mpConference1-popPacket( aReceived );
-if (bOk)
-{
-++nReceivedPackets;
-CPPUNIT_ASSERT( from 1 to 2 == aReceived );
-}
-} while (bOk);
-CPPUNIT_ASSERT( nReceivedPackets == mnSentPackets );
+// TODO implement me
 }
 
 void TestTeleTubes::FileSent( bool success, void * )
diff --git a/tubes/source/conference.cxx b/tubes/source/conference.cxx
index 4eaaf8c..88109df 100644
--- a/tubes/source/conference.cxx
+++ b/tubes/source/conference.cxx
@@ -34,7 +34,6 @@
 #include tubes/manager.hxx
 
 #include telepathy-glib/telepathy-glib.h
-#include queue
 
 #if defined SAL_LOG_INFO
 namespace
@@ -65,11 +64,8 @@ struct InfoLogger
 
 class TeleConferenceImpl
 {
-typedef ::std::queueOString TelePacketQueue;
-
 public:
 guint   maObjectRegistrationId;
-TelePacketQueue maPacketQueue;
 GDBusConnection*mpTube;
 boolmbTubeOfferedHandlerInvoked : 1;
 
@@ -129,7 +125,8 @@ static void TeleConference_MethodCallHandler(
 SAL_INFO( tubes, TeleConference_MethodCallHandler: received packet from 
sender 
  (pSender ? pSender : (null))   with size   nPacketSize);
 OString aPacket( pPacketData, nPacketSize );
-pConference-queue( aPacket );
+if (pConference-getCollaboration())
+pConference-getCollaboration()-PacketReceived( aPacket );
 // Master needs to send the packet back to impose ordering,
 // so the slave can execute his command.
 if (pConference-isMaster())
@@ -447,8 +444,8 @@ bool TeleConference::sendPacket( const OString rPacket )
 -1, NULL, NULL, NULL);
 
 // If 

[Libreoffice-commits] .: tubes/inc

2012-08-04 Thread Matus Kukan
 tubes/inc/tubes/conference.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6c946727a87374366f66cb39861b0142bd148a54
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sun Aug 5 00:27:04 2012 +0200

tubes: fix build

Change-Id: I3251d6282df132c3df0217187eb140beb95718e6

diff --git a/tubes/inc/tubes/conference.hxx b/tubes/inc/tubes/conference.hxx
index 9222f0f..3f600e0 100644
--- a/tubes/inc/tubes/conference.hxx
+++ b/tubes/inc/tubes/conference.hxx
@@ -66,7 +66,7 @@ public:
 const OString  getUuid() const { return msUuid; }
 
 Collaboration*  getCollaboration() const;
-voidsetCollaboration( Collaboration* pCollaboration );
+TUBES_DLLPUBLIC voidsetCollaboration( Collaboration* pCollaboration );
 
 // --- following only to be called only by manager's callbacks ---
 // TODO: make friends instead
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice-qa] minutes of ESC call ...

2012-08-04 Thread Jochen

Hi *,

can you please put the TOP problems/bgus with LO in LO3.6.0 on the 
agenda for the next call (see e.g. [1]).


[1] https://bugs.freedesktop.org/show_bug.cgi?id=53115

Regards

Jochen
___
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-qa] Tomorrow's Triaging

2012-08-04 Thread Joel Madero
Hi All,

Tomorrow morning I'll be opening up an IRC room (#libreoffice-qa) at 9am
(GMT-7). Starting at 9:30 (GMT-7) we're just going to spend an hour going
through unconfirmed bugs and trying to confirm them and prioritize them. I
suspect the first 10-15 minutes will be organizational, I've created a
couple spreadsheets with lists of bugs for Brennan and Florian who have
already confirmed that they can help out. If you can help out feel free to
join the room in the morning or shoot me an email and I'll prepare a list
of unconfirmed bugs for you. Thanks to everyone, I know I've
beenaggressive with bugging people to help us out.


Joel

On Thu, Aug 2, 2012 at 4:54 PM, Brennan T Vincent 
brenn...@email.arizona.edu wrote:

 Hi, this is uman from freenode signing up for sunday triaging session

___
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-qa] OLE Objects and Impress/Draw

2012-08-04 Thread Olivier Hallot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

The context menu of an OLE object inside Impress or Draw shows OLE
Object entry. However, clicking on it does absolutely nothing (since LO
3.3). What this entry is supposed to do? (I tried with a Calc range
pasted in Impress as calc8 object)

It also seems that we cannot paste a range of cell inside Impress or
Draw as a DDE link... but we can do it in Writer. Is that correct?

Thank you
- -- 
Olivier Hallot
Founder, Board of Directors Member - The Document Foundation
The Document Foundation, Zimmerstr. 69, 10117 Berlin, Germany
Fundação responsável civilmente, de acordo com o direito civil
Detalhes Legais: http://www.documentfoundation.org/imprint
LibreOffice translation leader for Brazilian Portuguese
+55-21-8822-8812
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJQHYZyAAoJEJp3R7nH3vLxsVYH/2Ms3FlHl8RhF/y+t5OdF9qZ
QqVk0iYQ15deHgBalLxSbwb/4ReWD1gn6qQwqPARFWzGdmRVtR1Xrqe1hxNbxgpt
9QOjCZczJWxru/tcckYai7NA1JgPS1oNVKpDC3BHo6BcZfIfVCHKL4ezjO/PredB
2pJ50oquIcWoAZPDyXIojHn3Afvyk0Y//eavLURlRvAOKc2sg3QkahFmUyyZaFn0
VOt9L+WazVN3HYXZNP8Ccn9BLJX37pzpWeb1psnJn0UA9sVd0kV+iKJxTXZ75XxA
O59M0T3NOy0wDGNDG0VCqNQ2rq28SQWq99uYG08P4TrUCrbVxB/2Gwc+/It6yFo=
=RPQr
-END PGP SIGNATURE-
___
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] Online update in 3.6

2012-08-04 Thread Pedro

Jan Holesovsky wrote
 
 I plan to remove the RC information from there when the 3.6 is final,
 and will present just 3.6.0 in the update dialog.  I think the testers
 of the pre-release versions know what is going on, and the real users
 will not see that, so I hope we are good :-)
 

Remove manually?

Wouldn't it be easier to have a table on the server like

Version RC
3.5.4.1 True
3.5.4.2 False
etc
3.6.0.4 True

When 3.6.0.4 (or any RC) changes to Release you just need a script that
compares the CRC or MD5 or whatever of the RC to the Stable build and
changes True to False.

This would also allow a user which hasn't updated his 3.5.4.1 build to get
some information. E.g.

The installed version is LibreOffice 3.5.4.1 which is a Release Candidate
The latest stable release for the 3.5 branch is version 3.5.5.3
The latest release candidate for the 3.5 branch is version 3.5.6.1
The bleeding edge release candidate is version 3.6.0.4

 (why do you insist on hiding the last digit in the Update dialog???) 

My suggestion is that someone who is running an RC version (checked against
the list on the server) is probably interested in other RCs. However this
could be manually changed in some setting?

Just more thoughts... I hope someone finds them interesting enough...

Regards,
Pedro



--
View this message in context: 
http://nabble.documentfoundation.org/Libreoffice-qa-Online-update-in-3-6-tp3992549p3999317.html
Sent from the QA mailing list archive at Nabble.com.
___
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 40254] Combo Box properties in form editing mode do not display count field

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40254

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME

--- Comment #6 from rob...@familiegrosskopf.de 2012-08-04 06:10:45 UTC ---
When I open a form for editing and have a look at the properties of a listbox →
Data there is could be choosen Bound Field in LO 3.3.4 and in LO 3.6.0.4. The
bug has been reported for 3.4.2.
Seems, that the bug don't exist any more.
I set this bug on Resolved and Worksforme.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53113] DOCX filter loses shape containing text

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53113

--- Comment #1 from ape os...@yandex.ru 2012-08-04 06:17:48 UTC ---
I think that there are such errors Writer:
a) Information about shapes (into DOCX file) is read incorrectly or not read.
b) Text box of shapes are not passed into the DOCX file.
c) Some shapes are not passed into DOCX file, and some shapes are passed no
correctly.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 33491] Database not storing last field entry using ENTER or TAB.

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33491

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME

--- Comment #7 from rob...@familiegrosskopf.de 2012-08-04 06:34:59 UTC ---
There is no reaction and no attachment, which shows the wrong behaviour.
The behavior of a form I discribed is a normal behaviour, not a bug. The
tabsops must be sorted the right way.
I set this bug to Resolved and Worksforme.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38667] Syntax error: 9.99 vs 9, 99 (SQL Status: HY000)

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38667

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #11 from rob...@familiegrosskopf.de 2012-08-04 07:01:08 UTC ---
The bug already exists. But it is only a bug in the query-wizard. When you
enter 9,99 in Create Query in Design-View it works.
The query-wizard doesn't work correctly, when there is given a
decimal-separator with a comma. And you could not set this to a
decimal-separator with a point - then the wizard sets this to 0,00.
I would change the title of this bug. Everybody has to see, that it's a problem
of the wizard, not of the GUI.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38667] Query-Wizard produces syntax error: 9.99 vs 9, 99 (SQL Status: HY000)

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38667

rob...@familiegrosskopf.de changed:

   What|Removed |Added

Summary|Syntax error: 9.99 vs 9,99  |Query-Wizard produces
   |(SQL Status: HY000) |syntax error: 9.99 vs 9,99
   ||(SQL Status: HY000)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53115] New: EDITING: Wizards destroys *.odb

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53115

 Bug #: 53115
   Summary: EDITING: Wizards destroys *.odb
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 rc
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: rob...@familiegrosskopf.de


Same as reported in https://bugs.freedesktop.org/show_bug.cgi?id=52639. When I
execute the query-wizard in Base, save the query, close Base and LO and then
try to open the database-file again it could not be opened.
I had a look with a pack-programm inide the *.odb-File. META-INF/manifest.xml
is a file with 0 Byte.
Same behaviour of the program with the wizard for tables and the wizard for
forms. Every wizard destroys the whole *.odb-file!
My System: OpenSuSE 11.4, 32bit-rpm.
For working with databases this program is unusable. We have no bugs to fix for
databases, before this bug isn't fixed.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53116] New: VIEWING: LO consume 100% CPU opening Huawei NGN/IMS presentation

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53116

 Bug #: 53116
   Summary: VIEWING: LO consume 100% CPU opening Huawei NGN/IMS
presentation
Classification: Unclassified
   Product: LibreOffice
   Version: 3.7.0.0.alpha0+ Master
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Presentation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: o...@ojab.ru


1. Open attached file.
2. LO hangs with 100% CPU load

Version 3.7.0.0.alpha0+ (Build ID: 8c739e), linux x86_64

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53116] VIEWING: LO consume 100% CPU opening Huawei NGN/IMS presentation

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53116

--- Comment #1 from ojab o...@ojab.ru 2012-08-04 07:23:59 UTC ---
Presentation file is too large (7,9 Mb), you can download it from
http://ojab.ru/huawei.pps

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53115] EDITING: Wizards destroys *.odb

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53115

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53115] EDITING: Wizards destroys *.odb

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53115

rob...@familiegrosskopf.de changed:

   What|Removed |Added

   Priority|medium  |highest

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53115] EDITING: Wizards destroy *.odb-files

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53115

rob...@familiegrosskopf.de changed:

   What|Removed |Added

Summary|EDITING: Wizards destroys   |EDITING: Wizards destroy
   |*.odb   |*.odb-files

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 34124] On dual screen setup, Base insists on opening windows on the small laptop screen

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34124

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38667] Query-Wizard produces syntax error: 9.99 vs 9, 99 (SQL Status: HY000)

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38667

--- Comment #12 from Jochen d...@jochenschiffers.de 2012-08-04 07:38:11 UTC 
---
(In reply to comment #11)
Hi Robert,

 I would change the title of this bug.
IMHO you have changed. Right?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 41036] LO Base does not allow COALESCE() SQL function to be passed to SQL server

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41036

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 39417] not creating nor viewing Forms

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39417

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 37333] EDITING: can't add rows to tables containing unique fields

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37333

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49147] : LibreOffice Base locks up and has trouble closing.

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49147

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49145] EDITING: LibreOffice Base should use dropdown list to input fields having a foreign key

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49145

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||WORKSFORME

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46612] Functionality Request: Charts in Base

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46612

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||WORKSFORME

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 34467] FORMATTING Fit to Frame for text boxes is broken

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34467

--- Comment #10 from Rodolfo rodolf...@gmail.com 2012-08-04 07:52:31 UTC ---
So maybe this is related to Bug 49618?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52410] Conditional Formatting of rows does not work if cell contains formula

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52410

--- Comment #4 from Roman Eisele b...@eikota.de 2012-08-04 07:52:52 UTC ---
Created attachment 65110
  -- https://bugs.freedesktop.org/attachment.cgi?id=65110
Screenshot of ZKB Kapitalgewinn, LibO 3.5.5.3 MacOS X

(In reply to comment #3)
 I attached an example of one of my files for which the error still persists.

Thank you very much for the sample file!

Just to make sure that we are speeking about exactly the same issue:
When I open your sample file, I see (cf. my attached screenshot) only one cell
with wrong background color (cell B11). However, this cell does not contain a
formula (like in your original description), but just a plain numeric value
(1615). Do you mean this cell, or are there other cells in this sample file
with a background color you regard as wrong?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53117] New: cann't paste all if the paragraph include esc and /esc code in a netpage

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53117

 Bug #: 53117
   Summary: cann't paste all if the paragraph include esc and
/esc code in a netpage
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: zuihuizhaoma...@163.com


for example,

if a netpage have a paragraph like below:
A confirmation email has been sent containing a link to continue creating an
account. The link will expire if an account is not created within 3 days. 

but the source code is :
A confirmation email has been sent containing esc a link to continue creating
an account. The link will expire /esc if an account is not created within 3
days. 

in firefox you will see:
A confirmation email has been sent containing a link to continue creating an
account. The link will expire if an account is not created within 3 days. 

and you select it and copy, then paste it to LibreOfficeWriter, then you can
see:
A confirmation email has been sent containing  if an account is not created
within 3 days. 

the words between esc and /esc had been lost.
i don't know why somebody put the tag ecs and /ecs in a netpage, but i
really find it in http://www.linuxeden.com/html/news/20120221/120473.html.

that is all.

thank you !

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35079] EDITING: Drawing element completely in mouse selection frame not selected

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35079

--- Comment #20 from Lennard Wasserthal wassert...@nefkom.net 2012-08-04 
08:22:50 UTC ---
Solved!

I found out that if you 
Change in

drawinglayer/source/primitive2d/baseprimitive2d.cxx# Line Nr about 127 in
my git

Function

basegfx::B2DRange getB2DRangeFromPrimitive2DReference(const
Primitive2DReference rCandidate, const geometry::ViewInformation2D
aViewInformation)

in a way that after

if(rCandidate.is())
{
You add the further condition
if ((dynamic_cast
BasePrimitive2D*(rCandidate.get()))-getPrimitive2DID()!=45) // Excludes
auxiliary selection shape which is wrongly rotated
{
the Problem ceases to exist.

Should I submit this now, or should I first watch what adverse effects this
brings with itself?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52410] Conditional Formatting of rows does not work if cell contains formula

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52410

--- Comment #5 from jean-paul.h...@gmx.net 2012-08-04 09:20:34 UTC ---
Hi Roman

All cells which do not have a formula are affected (A, B, C). As soon as I
enter a date in column A the formatting for that cell is lost. The same happens
if I enter values into columns B and C. As soon as I have entered a value unto
a cell in column C, the calculation for columns D to J is done and for these
cells the formatting remains correct.

You should be able to reproduce this with the attached Calc file.

Best regards

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52410] Conditional Formatting of rows does not work if cell contains formula

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52410

--- Comment #6 from jean-paul.h...@gmx.net 2012-08-04 09:22:00 UTC ---
Created attachment 65112
  -- https://bugs.freedesktop.org/attachment.cgi?id=65112
Calc file showing the behavior

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 39596] use the CLang++ static analyser to find bugs

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39596

--- Comment #14 from John Smith lbalba...@gmail.com 2012-08-04 10:24:04 UTC 
---
Please do note that the C++ *analyzer* (not the compiler) is still very much
regarded as a 'work-in-progress' at this point in time (2012-08-01), so you are
likely to run into false positives. And of course, if you do find a false
positive, you can always consider assisting in improving the analyzer by
submitting a test-case and bug report over here ;)  :

http://clang-analyzer.llvm.org/filing_bugs.html

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 51686] FORMATTING Background Colour No Fill and Font Colour Automatic cause LibreOffice to crash on MacOS X when RightZoom is installed

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51686

--- Comment #10 from Roman Eisele b...@eikota.de 2012-08-04 10:35:21 UTC ---
Created attachment 65116
  -- https://bugs.freedesktop.org/attachment.cgi?id=65116
LibO 3.5.6.1 Font Color crash log (MacOS X 10.6.8, Intel, RightZoom running)

I'm sorry to say so, but this bug is still REPRODUCIBLE with LibO 3.5.6.1 on
MacOS X 10.6.8 (Intel), when RightZoom is running and activated. So the patch
68a81bb592f269712372173abcc50483dd556d56 which was backported to 3.5.x (see

http://cgit.freedesktop.org/libreoffice/core/commit/?id=68a81bb592f269712372173abcc50483dd556d56g=libreoffice-3-5

) did not solve this issue.

Attached you find the MacOS X log file created for the 1st variant of this
crash: selecting Font Color Automatic from the pulldown color palette from
the toolbar crashes LibreOffice 3.5.6.1.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 51686] FORMATTING Background Colour No Fill and Font Colour Automatic cause LibreOffice to crash on MacOS X when RightZoom is installed

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51686

--- Comment #11 from Roman Eisele b...@eikota.de 2012-08-04 10:36:46 UTC ---
Created attachment 65117
  -- https://bugs.freedesktop.org/attachment.cgi?id=65117
LibO 3.5.6.1 Highlighting Color crash log

Attached you find the MacOS X log file created for the 2nd variant of this
crash: selecting Highlighting Color No fill from the pulldown color palette
from the toolbar crashes LibreOffice 3.5.6.1.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 51686] FORMATTING Background Colour No Fill and Font Colour Automatic cause LibreOffice to crash on MacOS X when RightZoom is installed

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51686

--- Comment #12 from Roman Eisele b...@eikota.de 2012-08-04 10:37:37 UTC ---
Created attachment 65118
  -- https://bugs.freedesktop.org/attachment.cgi?id=65118
LibO 3.5.6.1 (paragraph) Background Color crash log

Attached you find the MacOS X log file created for the 3rd variant of this
crash: selecting (paragraph) Background Color No fill from the pulldown color
palette from the toolbar crashes LibreOffice 3.5.6.1.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 47368] Many crashes when accessibility enabled on MacOS X

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47368

--- Comment #68 from Roman Eisele b...@eikota.de 2012-08-04 10:51:43 UTC ---
(In reply to comment #66)
 (In reply to comment #65)
  if there's good feedback for the patch (and yes it's hard to see how the
  color selector change could fix any mac a11y problem) I'll cherry-pick
  it to libreoffice-3-5 ...
 
 Please do so. Then we can see if color selection via the color pulldown
 palettes will be fixed in 3.5.x, too (this would mean that Michael’s patch did
 the job [...]), or not

I have tested again with LibreOffice 3.5.6.1, which contains the patch
mentioned above (see comment #67), and I am sorry to say that selecting Font
Color Automatic or Highlighting Color No Fill or (paragraph) Background
color No Fill from the color pulldown palettes or from the Character and
Paragraph dialog windows still crashes LibreOffice 3.5.6.1. Please see the
crash logs:
* attachment 65116
* attachment 65117
* attachment 65118
All three log files are very similar. At the beginning of the files I have
noted down the steps necessary to reproduce the crash.

Also, all of the other ways to crash LibreOffice enumerated by me in comment
#57 still work (i.e., crash) with LibreOffice 3.5.6.1.

What this means should be judged by the developers, but I fear that it is still
true what Michael Meeks stated in comment #62.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52603] Excel Visual Basic compatibility issue in LibreOffice Calc: Application.ScreenUpdating = False does not work!

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52603

tor24_1975...@t-online.de changed:

   What|Removed |Added

Summary|Excel Visual Basic code |Excel Visual Basic
   |compatibility issue in  |compatibility issue in
   |LibreOffice Calc:   |LibreOffice Calc:
   |Application.ScreenUpdating |Application.ScreenUpdating
   |= False does not work! |= False does not work!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52602] Excel Visual Basic compatibility issue in LibreOffice Calc: NumberFormat to date/time

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52602

tor24_1975...@t-online.de changed:

   What|Removed |Added

Summary|Excel Visual Basic code |Excel Visual Basic
   |compatibility issue in  |compatibility issue in
   |LibreOffice Calc:   |LibreOffice Calc:
   |NumberFormat to date/time   |NumberFormat to date/time

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52601] Excel Visual Basic compatibility issue in LibreOffice Calc: If Not ... Like … Then

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52601

tor24_1975...@t-online.de changed:

   What|Removed |Added

Summary|Excel Visual Basic code |Excel Visual Basic
   |compatibility issue in  |compatibility issue in
   |LibreOffice Calc: If Not|LibreOffice Calc: If Not
   |... Like … Then |... Like … Then

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52600] Excel Visual Basic compatibility issue in LibreOffice Calc: Inserted Calc formula with Excel Visual Basic Code

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52600

tor24_1975...@t-online.de changed:

   What|Removed |Added

Summary|Excel Visual Basic code |Excel Visual Basic
   |compatibility issue in  |compatibility issue in
   |LibreOffice Calc: Inserted  |LibreOffice Calc: Inserted
   |Calc formula with Excel |Calc formula with Excel
   |Visual Basic Code   |Visual Basic Code

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 51683] FORMATTING: Incorrect table format

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51683

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

   What|Removed |Added

Version|3.6.0.4 rc  |3.6.0.0.beta2

--- Comment #7 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-08-04 12:13:59 UTC ---
Sorry for the trouble, dany. But still I don't understand. :(

Could you please answer the followings:
- Which attachment has a problem? attachment 63752 in comment 0? Other
attachments don't have problem, right?
- Is the problem for spacing located below or above the word CONCLUSION? or
both?
- From the screenshot, what it should be is the word CONCLUSION is in page 1.
So, the bug is that it is in page 2, right?
- Are you using same version of LibreOffice for creating screenshots? I mean,
is this bug newly occurred with 3.6.x version but not 3.5.x? or it already
occurred with 3.5.x? or you didn't test this?

Also, in the screenshot, could you please points, circles, or marks the
problem? and then upload it again.

Last, I changed the version field back to 3.6.0.0.beta2 because it should be
the earliest version with problem. Thanks and sorry again.


For others if you are reading this, the steps are:
1. Download attachment 63752 and save as D:\temp001.odt
2. Start LibO
3. Tools  Macros..  Organize Macros  LibO Basic
4. Click Edit button on the right-hand side
5. Copy the content in attachment 65073 to replace all codes in the window
6. Press F5 on the keyboard. The document should be shown.

Note that you might modify the line
 adressedoc=convertToUrl(d:\temp001.odt)
to path/to/your/file accordingly.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52183] CONFIGURATION: Wrong file association

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52183

--- Comment #1 from ribotb rib...@gmail.com 2012-08-04 12:50:56 UTC ---
I confirm on Windows 7 Home Edition SP1 :
1. Uninstall previous version 3.5.5
2. Install 3.6.0.4 : associaations lost (odt, ods, odb)

Not delete may user profile.

Bernard Ribot

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 45771] : Inserting SVG images into a document.

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45771

--- Comment #4 from Poustre Lakos pousta...@yahoo.gr 2012-08-04 12:54:03 UTC 
---
Created attachment 65119
  -- https://bugs.freedesktop.org/attachment.cgi?id=65119
visio svg

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 45771] : Inserting SVG images into a document.

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45771

--- Comment #5 from Poustre Lakos pousta...@yahoo.gr 2012-08-04 12:54:43 UTC 
---
Created attachment 65120
  -- https://bugs.freedesktop.org/attachment.cgi?id=65120
libreoffice draw svg

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53120] New: LibreOffice crash when saving a large file from Writer

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53120

 Bug #: 53120
   Summary: LibreOffice crash when saving a large file from Writer
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.5.3 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: mic...@nallino.net


OS: Windows 7 Home Premium 64 bits SP1 (French)
Java: SE 7 U5 or SE 6 U33
System RAM: 16 GB
LibreOffice 3.5.5
Extensions: French, Spanish, Italian and English dictionaries; PDF import;
presentation minimizer.

Bug occurs with a large odt file (350 pages, 99 images, 232 MB). Once the file
is loaded, the RAM used by soffice.bin is some 130-160 MB. 

When saving the file the first time, it appears that soffice.bin, as seen in
task manager, increases considerably the RAM it uses, up to 800-900 MB
(particularly at the end of the saving process, when the screen is freezed).
When the file is saved and the access to document is released again,
soffice.bin does not go back to its former RAM use, but uses some 250 MB
(even when not doing anything).

After each time the file is saved, the RAM used by soffice.bin is higher and
higher, up to 450 MB when not doing anything. From this state, at the next
saving of the file, the RAM used climbs up to 1.2 GB, and, once this amount is
reached, Writer / LibreOffice crashes.

Three to four successive saves of the file (including automatic saves) are
enough to go to the crash.
This resembles to a memory leak in soffice.bin.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 45771] : Inserting SVG images into a document.

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45771

Poustre Lakos pousta...@yahoo.gr changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53120] LibreOffice crash when saving a large file from Writer

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53120

--- Comment #1 from mic...@nallino.net 2012-08-04 13:00:39 UTC ---
Bug is seen with LibreOffice 3.5.5; it did not exist with 3.4.6 version, on the
same computer with the same file.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53123] New: UNCONFIRMED - XML displays midway thru document

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53123

 Bug #: 53123
   Summary: UNCONFIRMED - XML displays midway thru document
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.5.2 rc
  Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: ron.e.w...@ieee.org


Created attachment 65123
  -- https://bugs.freedesktop.org/attachment.cgi?id=65123
the offending document

I open a .doc sent to me from a MS Word user. Its 26 pages long and looks fine.
I make some minor edits (word replacements mostly), the .doc still looks fine
and is still 26 pages long. I save the .doc (using the MSWord ...2003 option)
and then reload it. Now, the page count shows as 92 and starting midway thru
page 8, beginning with ADDIN EN.CITE ... the document now displays what I
assume is its underlying XML format. This has happened several times in editing
this document. Yes, I've rebooted and reviewed, still a mess. Interestingly,
viewing the document in Word, it looks fine.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52159] EDITING: error bars lost/transformed

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52159

Rafael Dominguez venccsra...@gmail.com changed:

   What|Removed |Added

 AssignedTo|libreoffice-b...@lists.free |venccsra...@gmail.com
   |desktop.org |

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50527] OLE Chart Creation with missing x-values-column

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50527

Rafael Dominguez venccsra...@gmail.com changed:

   What|Removed |Added

 AssignedTo|libreoffice-b...@lists.free |venccsra...@gmail.com
   |desktop.org |

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53126] New: VIEWING: Base scrolling malfunctioning

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53126

 Bug #: 53126
   Summary: VIEWING: Base scrolling malfunctioning
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: aren...@videotron.ca


Problem description: 

Steps to reproduce:
1  Base opened. 
2. Display
3. 

Current behavior:up scrolling all the display changes to one record only 

Expected behavior:scrolling the records  

Platform (if different from the browser): 

Browser: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:14.0) Gecko/20100101
Firefox/14.0.1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53126] VIEWING: Base scrolling malfunctioning

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53126

narea92 aren...@videotron.ca changed:

   What|Removed |Added

   Platform|Other   |x86-64 (AMD64)
 OS/Version|All |Linux (All)
   Priority|medium  |high

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53089] Numbers from external URL are always interpreted as text

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53089

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 CC||jbf.fa...@orange.fr

--- Comment #1 from Jean-Baptiste Faure jbf.fa...@orange.fr 2012-08-04 
17:45:51 UTC ---
LO says : impossible to update the link ...
Perhaps cookies problem ?

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53103] FILEOPEN INSERT 'Link to external data' 'Select the language to use for import' does not make a difference with dates/numbers

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53103

joaquin narebeest...@yahoo.com changed:

   What|Removed |Added

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53098] FORMATTING: When entering dates 1/2/* or 1/4/* system interpretes first 2 elements (day/month or month/day according to language) as fractions.

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53098

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||NOTABUG
 CC||jbf.fa...@orange.fr

--- Comment #3 from Jean-Baptiste Faure jbf.fa...@orange.fr 2012-08-04 
17:55:22 UTC ---
Not a bug, only a side-effet of auto-correction.
Two solutions:
1/ disable autocorrection
2/ type two digits when you want dates : 01/02/*

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53113] DOCX filter loses shape containing text

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53113

ape os...@yandex.ru changed:

   What|Removed |Added

   Severity|major   |critical

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53107] Insert Comment missing after .XLS save and file re-opened

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53107

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE
 CC||jbf.fa...@orange.fr

--- Comment #4 from Jean-Baptiste Faure jbf.fa...@orange.fr 2012-08-04 
18:24:46 UTC ---
duplicate of bug 52998

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53127] New: XForm don't save in file

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53127

 Bug #: 53127
   Summary: XForm don't save in file
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: massi...@gmail.com


Created attachment 65128
  -- https://bugs.freedesktop.org/attachment.cgi?id=65128
This file i have tested on Apache OpenOffice

I have created an XForm with LibreOffice 3.5.5.3 under windows7. I have created
an submission istance for save content some an xml file on drive. But when i
click on button for save, they will save only an void xml file.
I have opened the same form under Apache OpenOffice 3.4 and when i click on
save button that will save a correct xml file with content. 

There is problem with mailto: submission. It's don't work.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53127] XForm don't save in file

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53127

Francesco massi...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed|0   |1

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53127] XForm don't save in file

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53127

Francesco massi...@gmail.com changed:

   What|Removed |Added

Version|unspecified |3.5.5.3 release

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53129] New: compile fails when specifying LDFLAGS+='-lgcov' CFLAGS+='-fprofile-arcs -ftest-coverage'

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53129

 Bug #: 53129
   Summary: compile fails when specifying LDFLAGS+='-lgcov'
CFLAGS+='-fprofile-arcs -ftest-coverage'
Classification: Unclassified
   Product: LibreOffice
   Version: 3.7.0.0.alpha0+ Master
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: lbalba...@gmail.com


Created attachment 65130
  -- https://bugs.freedesktop.org/attachment.cgi?id=65130
log of failed build

When preparing LibreOffice for gcov/lcov, you have to specify
LDFLAGS+='-lgcov' CFLAGS+='-fprofile-arcs -ftest-coverage'
CXXFLAGS+='-fprofile-arcs -ftest-coverage' CPPFLAGS+='-fprofile-arcs
-ftest-coverage'.

But when you do this, the build fails.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53129] compile fails when specifying LDFLAGS+='-lgcov' CFLAGS/CXXFLAGS+='-fprofile-arcs -ftest-coverage'

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53129

John Smith lbalba...@gmail.com changed:

   What|Removed |Added

Summary|compile fails when  |compile fails when
   |specifying  |specifying
   |LDFLAGS+='-lgcov'   |LDFLAGS+='-lgcov'
   |CFLAGS+='-fprofile-arcs |CFLAGS/CXXFLAGS+='-fprofile
   |-ftest-coverage'|-arcs -ftest-coverage'

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 52410] Conditional Formatting of rows does not work if cell contains formula

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52410

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

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #7 from Roman Eisele b...@eikota.de 2012-08-04 19:52:41 UTC ---
REPRODUCIBLE with the reporter's sample file (attachment 65112) and
* LibreOffice 3.5.5.3 (Build ID: 7122e39-92ed229-498d286-15e43b4-d70da21) and
* LibreOffice 3.6.0.4 (Build ID: 932b512),
both with German langpack installed and both on MacOS X 10.6.8 (Intel).

(In reply to comment #5)
 All cells which do not have a formula are affected (A, B, C). As soon as I
 enter a date in column A the formatting for that cell is lost. The same 
 happens
 if I enter values into columns B and C. As soon as I have entered a value unto
 a cell in column C, the calculation for columns D to J is done and for these
 cells the formatting remains correct.

I can confirm this.

If I open the sample file, everything looks correct -- even data rows (4, 6,
etc.) have a white background, and odd (5, 7, etc.) data rows have a grey
background. But as soon as I try to add another row by entering a date into
column A or currency numbers in column B or C, the cell gets a white
background, regardless of the current row. This does not even change if I save,
close, and open again the file: the cells still have a white background.
However,
-- the background of the cells with formulas (column D to J)
   calculated automatically is correct, even in new rows;
-- if I try to change the contents of any cell from A4 to C13,
   which already contain the correct background color,
   the background color remains correct.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38840] add coverage analysis to unit tests

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38840

John Smith lbalba...@gmail.com changed:

   What|Removed |Added

 Depends on||53129

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs



[Libreoffice-bugs] [Bug 53129] compile fails when specifying LDFLAGS+='-lgcov' CFLAGS/CXXFLAGS+='-fprofile-arcs -ftest-coverage'

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53129

John Smith lbalba...@gmail.com changed:

   What|Removed |Added

 Blocks||38840

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 53120] LibreOffice crash when saving a large file from Writer

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53120

Jean-Baptiste Faure jbf.fa...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbf.fa...@orange.fr
 Ever Confirmed|0   |1

--- Comment #2 from Jean-Baptiste Faure jbf.fa...@orange.fr 2012-08-04 
20:11:30 UTC ---
What file format do you use for saving your document? odt or doc?

Without a file to make tests it not possible to confirm your bug report.

Best regards. JBF

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 47674] calc: remember settings in dialogs

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47674

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

   What|Removed |Added

 Status|NEW |ASSIGNED
 AssignedTo|libreoffice-b...@lists.free |jumbo4...@yahoo.fr
   |desktop.org |

--- Comment #5 from Laurent BP jumbo4...@yahoo.fr 2012-08-04 20:34:48 UTC ---
Created attachment 65131
  -- https://bugs.freedesktop.org/attachment.cgi?id=65131
Save settings of Import Text from clipboard

Hello,

Thanks to the detailed steps given by Eike Rathke Comment 2, I propose this
first patch. It concerns only the case of Paste unformatted text from
clipboard.
Next step will be to save also for Text to column
Third step will be to remove unnecessary parameter cSep.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 40762] EDITING

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40762

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||NOTABUG

--- Comment #6 from Jochen d...@jochenschiffers.de 2012-08-04 21:19:44 UTC ---
Test passed successfully

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 44721] Report builder: upon mouse-resize control, (nearly) infinite loop and memory consumption

2012-08-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44721

Jochen d...@jochenschiffers.de changed:

   What|Removed |Added

 Status|REOPENED|NEW
   Severity|major   |critical
   Priority|high|medium

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
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   >