[Libreoffice-commits] core.git: translations

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

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

Updated core
Project: translations  7db61e0f23b962f97e9246e0a8fb60e47fff0ac9

diff --git a/translations b/translations
index 66306b9..7db61e0 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 66306b922014c7941665d67e1310a88e3e85f99d
+Subproject commit 7db61e0f23b962f97e9246e0a8fb60e47fff0ac9
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-05-26 Thread Sean Young
 vcl/source/gdi/outdev3.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3475ca1ad98c77313c177418f350ba8d03d3543d
Author: Sean Young s...@mess.org
Date:   Sat May 25 20:06:15 2013 +0100

fix OUString conversion

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

Fixes 7d1f4cdec307bb1e761bb5dd3d8231bba5833e10

Change-Id: I2cf61d88c79b3ab33c0ee7d077ee65b16053c05c
Reviewed-on: https://gerrit.libreoffice.org/4035
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx
index 4261787..393c2fb 100644
--- a/vcl/source/gdi/outdev3.cxx
+++ b/vcl/source/gdi/outdev3.cxx
@@ -2392,7 +2392,7 @@ ImplDevFontListData* ImplDevFontList::ImplFindByFont( 
FontSelectPattern rFSD,
 // #114999# special emboldening for Ricoh fonts
 // TODO: smarter check for special cases by using PreMatch 
infrastructure?
 if( (rFSD.GetWeight()  WEIGHT_MEDIUM)
-  aSearchName.equalsIgnoreAsciiCase( hg ) )
+  aSearchName.startsWithIgnoreAsciiCase( hg ) )
 {
 OUString aBoldName;
 if( aSearchName.equalsIgnoreAsciiCase( hggothicb ) )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] fix OUString conversion

2013-05-26 Thread Thomas Arnhold (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/4035

Approvals:
  Thomas Arnhold: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I2cf61d88c79b3ab33c0ee7d077ee65b16053c05c
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Sean Young s...@mess.org
Gerrit-Reviewer: Thomas Arnhold tho...@arnhold.org

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


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

2013-05-26 Thread Thomas Arnhold
 vcl/source/gdi/outdev3.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 5ccdfd28bf05703f2d4b3c0e2040dd6d500eb8d0
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun May 26 08:20:09 2013 +0200

fix OUString conversion

no idea why hgminchob and hgpminchob are/were not handled this way.

Change-Id: Ia69ab790cc961645a806d971ddc4238d8288b573

diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx
index 393c2fb..1900093 100644
--- a/vcl/source/gdi/outdev3.cxx
+++ b/vcl/source/gdi/outdev3.cxx
@@ -2395,13 +2395,13 @@ ImplDevFontListData* ImplDevFontList::ImplFindByFont( 
FontSelectPattern rFSD,
   aSearchName.startsWithIgnoreAsciiCase( hg ) )
 {
 OUString aBoldName;
-if( aSearchName.equalsIgnoreAsciiCase( hggothicb ) )
+if( aSearchName.startsWithIgnoreAsciiCase( hggothicb ) )
 aBoldName = OUString(hggothice);
-else if( aSearchName.equalsIgnoreAsciiCase( hgpgothicb ) )
+else if( aSearchName.startsWithIgnoreAsciiCase( hgpgothicb ) )
 aBoldName = OUString(hgpgothice);
-else if( aSearchName.equalsIgnoreAsciiCase( hgminchol ) )
+else if( aSearchName.startsWithIgnoreAsciiCase( hgminchol ) )
 aBoldName = OUString(hgminchob);
-else if( aSearchName.equalsIgnoreAsciiCase( hgpminchol ) )
+else if( aSearchName.startsWithIgnoreAsciiCase( hgpminchol ) )
 aBoldName = OUString(hgpminchob);
 else if( aSearchName.equalsIgnoreAsciiCase( hgminchob ) )
 aBoldName = OUString(hgminchoe);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-05-26 Thread Zolnai Tamás
 l10ntools/source/stringmerge.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1cb50dc6ec75586975c2d4e528953fa8ca33e1f1
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun May 26 08:30:22 2013 +0200

Escape quotes during stringex export

Change-Id: If53afd3743f44bcfffab33122657d14c0f4aba1e

diff --git a/l10ntools/source/stringmerge.cxx b/l10ntools/source/stringmerge.cxx
index 34c978b..9e3fa7a 100644
--- a/l10ntools/source/stringmerge.cxx
+++ b/l10ntools/source/stringmerge.cxx
@@ -71,7 +71,7 @@ void StringParser::Extract( const OString rPOFile )
 xmlChar* pID = xmlGetProp(pCurrent, (const xmlChar*)(name));
 xmlChar* pText = xmlNodeGetContent(pCurrent);
 const OString sTemp =
-helper::unEscapeAll(helper::xmlStrToOString( pText 
),\\n\\t,\n\t);
+helper::unEscapeAll(helper::xmlStrToOString( pText 
),\\n\\t\\',\n\t\\');
 common::writePoEntry(
 Stringex, aPOStream, m_pSource-name, string,
 helper::xmlStrToOString( pID ), OString(), OString(),
@@ -130,7 +130,7 @@ void StringParser::Merge(
 {
 xmlChar* pText = xmlNodeGetContent(pCurrent);
 const OString sOriginText =
-helper::unEscapeAll(helper::xmlStrToOString( pText 
),\\n\\t,\n\t);
+helper::unEscapeAll(helper::xmlStrToOString( pText 
),\\n\\t\\',\n\t\\');
 xmlFree( pText );
 sNewText = MergeEntrys::GetQTZText(aResData, sOriginText);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-05-26 Thread Zolnai Tamás
 l10ntools/source/stringmerge.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a3eca34a471e4111877bb35170f90f20463a02c3
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun May 26 08:30:22 2013 +0200

Escape quotes during stringex export

Change-Id: If53afd3743f44bcfffab33122657d14c0f4aba1e

diff --git a/l10ntools/source/stringmerge.cxx b/l10ntools/source/stringmerge.cxx
index 34c978b..9e3fa7a 100644
--- a/l10ntools/source/stringmerge.cxx
+++ b/l10ntools/source/stringmerge.cxx
@@ -71,7 +71,7 @@ void StringParser::Extract( const OString rPOFile )
 xmlChar* pID = xmlGetProp(pCurrent, (const xmlChar*)(name));
 xmlChar* pText = xmlNodeGetContent(pCurrent);
 const OString sTemp =
-helper::unEscapeAll(helper::xmlStrToOString( pText 
),\\n\\t,\n\t);
+helper::unEscapeAll(helper::xmlStrToOString( pText 
),\\n\\t\\',\n\t\\');
 common::writePoEntry(
 Stringex, aPOStream, m_pSource-name, string,
 helper::xmlStrToOString( pID ), OString(), OString(),
@@ -130,7 +130,7 @@ void StringParser::Merge(
 {
 xmlChar* pText = xmlNodeGetContent(pCurrent);
 const OString sOriginText =
-helper::unEscapeAll(helper::xmlStrToOString( pText 
),\\n\\t,\n\t);
+helper::unEscapeAll(helper::xmlStrToOString( pText 
),\\n\\t\\',\n\t\\');
 xmlFree( pText );
 sNewText = MergeEntrys::GetQTZText(aResData, sOriginText);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

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

New commits:
commit 5d174f282fadd52f11105e53a816e35e627dd72a
Author: Andras Timar ati...@suse.com
Date:   Sun May 26 10:50:50 2013 +0200

Updated core
Project: translations  d60616b0e1715918e68b7bb3a26a7f901599185b

diff --git a/translations b/translations
index 5fa09e3..d60616b 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 5fa09e332f9da678821eaf7bf39d92cb4e96b36c
+Subproject commit d60616b0e1715918e68b7bb3a26a7f901599185b
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [libreoffice-projects] [ANN] LibreOffice 4.1.0 Beta1 available

2013-05-26 Thread khagaroth
Is anyone else getting a crash (no error message) when selecting Format -
Character..., Format - Paragraph... etc. etc.? (Win7 x64)


On Sun, May 26, 2013 at 1:04 AM, Thorsten Behrens 
t...@documentfoundation.org wrote:

 Dear Community,

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

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

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

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

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

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

   https://bugs.freedesktop.org

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


 http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

 For other ways to get involved with this exciting project - you can
 e.g. contribute code:

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

 translate LibreOffice to your language:

   http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

 or help with funding our operations:

   http://donate.libreoffice.org/

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

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

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

 Yours,

 The Document Foundation Board of Directors

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

 --
 To unsubscribe e-mail to: projects+unsubscr...@global.libreoffice.org
 Problems?
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/projects/
 All messages sent to this list will be publicly archived and cannot be
 deleted


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


Re: [libreoffice-projects] [ANN] LibreOffice 4.1.0 Beta1 available

2013-05-26 Thread Sophie Gautier
Hi,
On 26/05/2013 11:08, khagaroth wrote:
 Is anyone else getting a crash (no error message) when selecting Format -
 Character..., Format - Paragraph... etc. etc.? (Win7 x64)

I didn't test it by myself, but it just has been reported on the QA FR
list, with Format  Page.

Kind regards
Sophie
 
 
 On Sun, May 26, 2013 at 1:04 AM, Thorsten Behrens 
 t...@documentfoundation.org wrote:
 
 Dear Community,

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

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

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

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

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

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

   https://bugs.freedesktop.org

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


 http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

 For other ways to get involved with this exciting project - you can
 e.g. contribute code:

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

 translate LibreOffice to your language:

   http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

 or help with funding our operations:

   http://donate.libreoffice.org/

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

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

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

 Yours,

 The Document Foundation Board of Directors

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

 --
 To unsubscribe e-mail to: projects+unsubscr...@global.libreoffice.org
 Problems?
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/projects/
 All messages sent to this list will be publicly archived and cannot be
 deleted


 


-- 
Sophie Gautier sophie.gaut...@documentfoundation.org
Tel:+33683901545
Membership  Certification Committee Member - Co-founder
The Document Foundation
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 60270] LibreOffice 4.1 most annoying bugs

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

thack...@nexgo.de changed:

   What|Removed |Added

 Depends on||64984

--- Comment #21 from thack...@nexgo.de ---
Hello @ll,
I would like to nominate #64984 as it is IMHO a regression to 4.0.3 ... :(

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


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

2013-05-26 Thread Andras Timar
 cui/uiconfig/ui/customize.ui |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 47fd6b481c137d672466d69128327b3cac48a77e
Author: Andras Timar ati...@suse.com
Date:   Sun May 26 14:31:11 2013 +0200

typo + branding: s/LiberOffice/%PRODUCTNAME/

Change-Id: I8007b4b1b1d620c05c9977d7bd3b8eb28b77f2be

diff --git a/cui/uiconfig/ui/customize.ui b/cui/uiconfig/ui/customize.ui
index d31efbe..4d6cc96 100644
--- a/cui/uiconfig/ui/customize.ui
+++ b/cui/uiconfig/ui/customize.ui
@@ -245,7 +245,7 @@
   object class=GtkLabel id=label4
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=label translatable=yesLiberOffice 
Writer Menus/property
+property name=label translatable=yes%PRODUCTNAME 
Writer Menus/property
   /object
 /child
   /object
@@ -1159,7 +1159,7 @@
   object class=GtkLabel id=label26
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=label translatable=yesLiberOffice 
Writer Toolbars/property
+property name=label translatable=yes%PRODUCTNAME 
Writer Toolbars/property
   /object
 /child
   /object
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-05-26 Thread Andras Timar
 cui/uiconfig/ui/customize.ui |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 87e83a2c9ebf5dd3b30848bd901732d6f17a8ce5
Author: Andras Timar ati...@suse.com
Date:   Sun May 26 14:31:11 2013 +0200

typo + branding: s/LiberOffice/%PRODUCTNAME/

Change-Id: I8007b4b1b1d620c05c9977d7bd3b8eb28b77f2be

diff --git a/cui/uiconfig/ui/customize.ui b/cui/uiconfig/ui/customize.ui
index d31efbe..4d6cc96 100644
--- a/cui/uiconfig/ui/customize.ui
+++ b/cui/uiconfig/ui/customize.ui
@@ -245,7 +245,7 @@
   object class=GtkLabel id=label4
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=label translatable=yesLiberOffice 
Writer Menus/property
+property name=label translatable=yes%PRODUCTNAME 
Writer Menus/property
   /object
 /child
   /object
@@ -1159,7 +1159,7 @@
   object class=GtkLabel id=label26
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=label translatable=yesLiberOffice 
Writer Toolbars/property
+property name=label translatable=yes%PRODUCTNAME 
Writer Toolbars/property
   /object
 /child
   /object
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH libreoffice-4-0] Fix style renaming confusion in ww8 filter (solves fdo#63603...

2013-05-26 Thread Luke Deller (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4039

To pull it, you can do:

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

Fix style renaming confusion in ww8 filter (solves fdo#63603)

(cherry pick my fix from master 2d3d942683d1cce738eab09b58e4fd693d5e7241)
- Mapping LO default style to Word Normal style for docx output used a
  hard coded style name, so it broke when LO's default style was renamed
  in 4.0 (plus it would never have worked for non-English languages)
- This renaming did not cater for nameclashes, leading to fdo#63603
- Similar renaming when importing doc styles did cater for nameclashes,
  but had a minor bug in that

Change-Id: Icd4f27fb1760f0c1ca068c742c48ebcd71d1eb15
---
M sw/source/filter/ww8/writerwordglue.cxx
M sw/source/filter/ww8/wrtw8sty.cxx
2 files changed, 28 insertions(+), 2 deletions(-)



diff --git a/sw/source/filter/ww8/writerwordglue.cxx 
b/sw/source/filter/ww8/writerwordglue.cxx
index 12e9a1c..663e1e1 100644
--- a/sw/source/filter/ww8/writerwordglue.cxx
+++ b/sw/source/filter/ww8/writerwordglue.cxx
@@ -296,11 +296,13 @@
 aName.InsertAscii(WW- , 0);
 
 sal_Int32 nI = 1;
+String aBaseName = aName;
 while (
 0 != (pColl = maHelper.GetStyle(aName)) 
 (nI  SAL_MAX_INT32)
   )
 {
+aName = aBaseName;
 aName += String::CreateFromInt32(nI++);
 }
 }
diff --git a/sw/source/filter/ww8/wrtw8sty.cxx 
b/sw/source/filter/ww8/wrtw8sty.cxx
index d837181..b0371ff 100644
--- a/sw/source/filter/ww8/wrtw8sty.cxx
+++ b/sw/source/filter/ww8/wrtw8sty.cxx
@@ -526,8 +526,32 @@
 GetStyleData( pFmt, bFmtColl, nBase, nWwNext );
 
 String aName = pFmt-GetName();
-if ( aName.EqualsAscii( Default ) )
-aName = rtl::OUString(Normal);
+// We want to map LO's default style to Word's Normal style.
+// Word looks for this specific style name when reading docx files.
+// (It must be the English word regardless of language settings)
+if ( nPos == 0 ) {
+assert( pFmt-GetPoolFmtId() == RES_POOLCOLL_STANDARD );
+aName = OUString(Normal);
+} else if (aName.EqualsIgnoreCaseAscii(Normal)) {
+// If LO has a style named Normal(!) rename it to something 
unique
+aName.InsertAscii(LO- , 0);
+String aBaseName = aName;
+// Check if we still have a clash, in which case we add a suffix
+for ( int nSuffix = 0; ; ++nSuffix ) {
+bool clash=false;
+for ( int n = 1; n  nUsedSlots; ++n )
+if ( pFmtA[n] 
+ pFmtA[n]-GetName().EqualsIgnoreCaseAscii(aName) )
+{
+clash = true;
+break;
+}
+if (!clash)
+break;
+aName = aBaseName;
+aName += OUString::number(++nSuffix);
+}
+}
 
 m_rExport.AttrOutput().StartStyle( aName, bFmtColl,
 nBase, nWwNext, GetWWId( *pFmt ), nPos,

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icd4f27fb1760f0c1ca068c742c48ebcd71d1eb15
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-0
Gerrit-Owner: Luke Deller l...@deller.id.au

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


[Bug 60270] LibreOffice 4.1 most annoying bugs

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

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

   What|Removed |Added

 Depends on||64995

--- Comment #22 from Jorendc joren.libreoff...@telenet.be ---
I nominate Bug 64995 - Area button in toolbar result in crash. Note:
Windows-only so far.

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


Re: Is HelpId still useful for .src files?

2013-05-26 Thread Rodolfo
Thank you for your reply, Markus.
I have some more questions now =)

2013/5/26 Markus Mohrhard markus.mohrh...@googlemail.com:
 2013/5/26 Rodolfo rodolf...@gmail.com:
 I wonder if helpid field could be removed also of (popup) menus
 defined in .SRC files.

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

Ok. Got it.


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

But why the help texts use SID_FM_DELETEROWS (instead of HID_ or SVX_HID_ ?)

msgid To delete a record in the current table, right-click the row
header of the record, and then select emphDelete/emph. ahelp
hid=\SID_FM_DELETEROWS\ visibility=\hidden\Deletes the selected
record./ahelp [1]

And why doesn't use SVX_HID_FM_DELETEROWS straightly?
HID_FM_DELETEROWS is only used to define that string
SVX_HID_FM_DELETEROWS [2] . Would this be a special case?

  30 MenuItem
  31 {
  32 Identifier = SID_FM_DELETEROWS ;
  33 HelpId = SVX_HID_FM_DELETEROWS ;


[1] 
http://opengrok.libreoffice.org/xref/translations/source/pt-BR/helpcontent2/source/text/shared/01.po#16034
[2] 
http://opengrok.libreoffice.org/search?q=HID_FM_DELETEROWSproject=binfilterproject=coreproject=dictionariesproject=helpproject=translationsdefs=refs=path=hist=

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

Hm... Is there a documentation about that help generation/system?

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


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

2013-05-26 Thread Sun Ying
 sd/source/filter/ppt/pptin.cxx |   12 
 1 file changed, 12 insertions(+)

New commits:
commit 28f2af669f01cd304994f1907de0b61245b3d37a
Author: Sun Ying suny...@apache.org
Date:   Fri Aug 17 07:56:17 2012 +

Resolves: #i119866# ppt default outline area bullet lost

Reported by: Li Feng Wang
Patch by: Ying Sun
Review by: Jian Yuan Li
(cherry picked from commit 8d04823a6038d32f6ac9821925616da7c5cc44c9)

Conflicts:
filter/inc/filter/msfilter/svdfppt.hxx
sd/source/filter/ppt/pptin.cxx

Change-Id: I222003a9e8d474ebc4dd9bc83cdcceded88a79f4

diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx
index 67a5e18..a543f5c 100644
--- a/sd/source/filter/ppt/pptin.cxx
+++ b/sd/source/filter/ppt/pptin.cxx
@@ -2332,6 +2332,8 @@ SdrObject* ImplSdPPTImport::ApplyTextObj( PPTTextObj* 
pTextObj, SdrTextObj* pObj
 sal_BoolbVertical = sal_False;
 if ( ( pTextObj-GetShapeType() == mso_sptRectangle ) || ( 
pTextObj-GetShapeType() == mso_sptTextBox ) )
 {
+//if a placeholder with some custom attribute,the 
pTextObj will keep those attr,whose text size is zero,
+//so sdPage should renew a PresObj to process 
placeholder.
 bEmptyPresObj = ( pTextObj-Count() == 0 ) || ( 
pTextObj-Count() == 1  pTextObj-First()-GetTextSize() == 0 );
 switch ( nPlaceholderId )
 {
@@ -2393,6 +2395,16 @@ SdrObject* ImplSdPPTImport::ApplyTextObj( PPTTextObj* 
pTextObj, SdrTextObj* pObj
 ApplyAttributes( rStCtrl, aSet );
 pPresObj-SetLogicRect(pText-GetLogicRect());
 ApplyTextAnchorAttributes( *pTextObj, aSet );
+//set custom font attribute of the placeholder
+if ( pTextObj-Count() == 1 )
+{
+PPTParagraphObj* pPara = pTextObj-First();
+PPTPortionObj* pPor = NULL;
+if ( pPara  pPara-GetTextSize() == 0  
(pPor = pPara-First()))
+{
+pPor-ApplyTo(aSet, 
(SdrPowerPointImport)*this, pTextObj-GetDestinationInstance());
+}
+}
 pPresObj-SetMergedItemSet(aSet);
 
 if ( ( eAktPageKind != PPT_NOTEPAGE )  ( 
nPlacementId != 0x ) )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 8d/04823a6038d32f6ac9821925616da7c5cc44c9

2013-05-26 Thread Caolán McNamara
 8d/04823a6038d32f6ac9821925616da7c5cc44c9 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit e8834ee09acdfa3e60cf806681c04390ddf47d7e
Author: Caolán McNamara caol...@redhat.com
Date:   Sun May 26 15:15:06 2013 +0100

Notes added by 'git notes add'

diff --git a/8d/04823a6038d32f6ac9821925616da7c5cc44c9 
b/8d/04823a6038d32f6ac9821925616da7c5cc44c9
new file mode 100644
index 000..4c3ff6c
--- /dev/null
+++ b/8d/04823a6038d32f6ac9821925616da7c5cc44c9
@@ -0,0 +1 @@
+merged as: 28f2af669f01cd304994f1907de0b61245b3d37a
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Office android

2013-05-26 Thread ja2t5udrajat
File
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Office android

2013-05-26 Thread Tor Lillqvist
No
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[LibreOffice-QA] May 17th, 2013 Meeting Minutes

2013-05-26 Thread Joel Madero

Hi All,

Apologies for the delay, for anyone interested minutes can be found here:
https://wiki.documentfoundation.org/QA/Meetings/2013/May_17



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


[PATCH] Delete double whitespace in optsecuritypage.ui

2013-05-26 Thread Joren De Cuyper (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4040

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/40/4040/1

Delete double whitespace in optsecuritypage.ui

Found this double whitespace during translations. So lets fix it right away.

Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633
---
M cui/uiconfig/ui/optsecuritypage.ui
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/cui/uiconfig/ui/optsecuritypage.ui 
b/cui/uiconfig/ui/optsecuritypage.ui
index 32acdd2..519ab25 100644
--- a/cui/uiconfig/ui/optsecuritypage.ui
+++ b/cui/uiconfig/ui/optsecuritypage.ui
@@ -139,7 +139,7 @@
 property name=row_spacing6/property
 child
   object class=GtkCheckButton 
id=usemasterpassword
-property name=label 
translatable=yesProtected _by a  master passwords (recommended)/property
+property name=label 
translatable=yesProtected _by a master passwords (recommended)/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultFalse/property

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Joren De Cuyper joren.libreoff...@telenet.be

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


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

2013-05-26 Thread Joren De Cuyper
 cui/uiconfig/ui/optsecuritypage.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f45cad5126137a868b9194c66b0eaa940eb6304b
Author: Joren De Cuyper joren.libreoff...@telenet.be
Date:   Sun May 26 18:28:21 2013 +0200

Delete double whitespace in optsecuritypage.ui

Found this double whitespace during translations. So lets fix it right away.

Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633
Reviewed-on: https://gerrit.libreoffice.org/4040
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/cui/uiconfig/ui/optsecuritypage.ui 
b/cui/uiconfig/ui/optsecuritypage.ui
index 32acdd2..519ab25 100644
--- a/cui/uiconfig/ui/optsecuritypage.ui
+++ b/cui/uiconfig/ui/optsecuritypage.ui
@@ -139,7 +139,7 @@
 property name=row_spacing6/property
 child
   object class=GtkCheckButton 
id=usemasterpassword
-property name=label 
translatable=yesProtected _by a  master passwords (recommended)/property
+property name=label 
translatable=yesProtected _by a master passwords (recommended)/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultFalse/property
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Delete double whitespace in optsecuritypage.ui

2013-05-26 Thread Markus Mohrhard (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/4040

Approvals:
  Markus Mohrhard: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Joren De Cuyper joren.libreoff...@telenet.be
Gerrit-Reviewer: Markus Mohrhard markus.mohrh...@googlemail.com

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


[PATCH libreoffice-4-1] Delete double whitespace in optsecuritypage.ui

2013-05-26 Thread Joren De Cuyper (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4041

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/41/4041/1

Delete double whitespace in optsecuritypage.ui

Found this double whitespace during translations. So lets fix it right away.

Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633
---
M cui/uiconfig/ui/optsecuritypage.ui
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/cui/uiconfig/ui/optsecuritypage.ui 
b/cui/uiconfig/ui/optsecuritypage.ui
index 32acdd2..519ab25 100644
--- a/cui/uiconfig/ui/optsecuritypage.ui
+++ b/cui/uiconfig/ui/optsecuritypage.ui
@@ -139,7 +139,7 @@
 property name=row_spacing6/property
 child
   object class=GtkCheckButton 
id=usemasterpassword
-property name=label 
translatable=yesProtected _by a  master passwords (recommended)/property
+property name=label 
translatable=yesProtected _by a master passwords (recommended)/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultFalse/property

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-1
Gerrit-Owner: Joren De Cuyper joren.libreoff...@telenet.be

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


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

2013-05-26 Thread Joren De Cuyper
 cui/uiconfig/ui/optsecuritypage.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f98083890c55318dd4f10c666b749d6092eb4617
Author: Joren De Cuyper joren.libreoff...@telenet.be
Date:   Sun May 26 18:28:21 2013 +0200

Delete double whitespace in optsecuritypage.ui

Found this double whitespace during translations. So lets fix it right away.

Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633
Reviewed-on: https://gerrit.libreoffice.org/4041
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/cui/uiconfig/ui/optsecuritypage.ui 
b/cui/uiconfig/ui/optsecuritypage.ui
index 32acdd2..519ab25 100644
--- a/cui/uiconfig/ui/optsecuritypage.ui
+++ b/cui/uiconfig/ui/optsecuritypage.ui
@@ -139,7 +139,7 @@
 property name=row_spacing6/property
 child
   object class=GtkCheckButton 
id=usemasterpassword
-property name=label 
translatable=yesProtected _by a  master passwords (recommended)/property
+property name=label 
translatable=yesProtected _by a master passwords (recommended)/property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultFalse/property
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED libreoffice-4-1] Delete double whitespace in optsecuritypage.ui

2013-05-26 Thread Markus Mohrhard (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/4041

Approvals:
  Markus Mohrhard: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-1
Gerrit-Owner: Joren De Cuyper joren.libreoff...@telenet.be
Gerrit-Reviewer: Markus Mohrhard markus.mohrh...@googlemail.com

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


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - da/18984094aa5ae4a66731bf581103298b133738

2013-05-26 Thread Caolán McNamara
 da/18984094aa5ae4a66731bf581103298b133738 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 1abc855c774dabf7f920db01b4fd20790f7822c8
Author: Caolán McNamara caol...@redhat.com
Date:   Sun May 26 20:39:19 2013 +0100

Notes added by 'git notes add'

diff --git a/da/18984094aa5ae4a66731bf581103298b133738 
b/da/18984094aa5ae4a66731bf581103298b133738
new file mode 100644
index 000..dfaf860
--- /dev/null
+++ b/da/18984094aa5ae4a66731bf581103298b133738
@@ -0,0 +1 @@
+merged as: 16db62a9c0894e655d8ecc82c8ed64db94187c75
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - framework/source include/svtools svtools/source

2013-05-26 Thread Ariel Constenla-Haile
 framework/source/uielement/generictoolbarcontroller.cxx  |6 +
 framework/source/uielement/recentfilesmenucontroller.cxx |4 
 framework/source/uielement/toolbarmanager.cxx|   16 ++
 include/svtools/toolboxcontroller.hxx|   17 ++-
 svtools/source/uno/toolboxcontroller.cxx |   84 +--
 5 files changed, 69 insertions(+), 58 deletions(-)

New commits:
commit 16db62a9c0894e655d8ecc82c8ed64db94187c75
Author: Ariel Constenla-Haile arie...@apache.org
Date:   Sat May 25 22:10:31 2013 +

Recent file list: small fix when no documents

(cherry picked from commit da18984094aa5ae4a66731bf581103298b133738)

Change-Id: I56413b68d28b206212561dcbf662940862cebeb7

diff --git a/framework/source/uielement/recentfilesmenucontroller.cxx 
b/framework/source/uielement/recentfilesmenucontroller.cxx
index 2be9117..57cf1d2 100644
--- a/framework/source/uielement/recentfilesmenucontroller.cxx
+++ b/framework/source/uielement/recentfilesmenucontroller.cxx
@@ -186,7 +186,9 @@ void RecentFilesMenuController::fillPopupMenu( Reference 
css::awt::XPopupMenu 
 {
 // No recent documents = insert no document string
 pVCLPopupMenu-InsertItem( 1, String( FwkResId( STR_NODOCUMENT ) ) 
);
-pVCLPopupMenu-EnableItem( 1, sal_False );
+// Do not disable it, otherwise the Toolbar controller and 
MenuButton
+// will display SV_RESID_STRING_NOSELECTIONPOSSIBLE instead of 
STR_NODOCUMENT
+pVCLPopupMenu-SetItemBits( 1, pVCLPopupMenu-GetItemBits( 1 ) | 
MIB_NOSELECT );
 }
 }
 }
commit 1e85fc5b2d8aeafb12f414c6bf0692fb2ca221eb
Author: Ariel Constenla-Haile arie...@apache.org
Date:   Sat May 25 22:10:02 2013 +

svt::ToolboxController clean-up

Some small clean-up to use the PopupMenu ToolbarController

(cherry picked from commit e1687ce159e787d98f79d29a3d2131cca4b6ec71)

Conflicts:
svtools/inc/svtools/toolboxcontroller.hxx
svtools/source/uno/toolboxcontroller.cxx

Change-Id: Ie5e0397c32352d52cf2664bdbab920923e74bd03

diff --git a/framework/source/uielement/generictoolbarcontroller.cxx 
b/framework/source/uielement/generictoolbarcontroller.cxx
index 6ed7651..fc6ad41 100644
--- a/framework/source/uielement/generictoolbarcontroller.cxx
+++ b/framework/source/uielement/generictoolbarcontroller.cxx
@@ -362,8 +362,14 @@ MenuToolbarController::createPopupWindow() throw 
(::com::sun::star::uno::Runtime
 }
 }
 
+if ( !pMenu || !m_pToolbar )
+return NULL;
+
+OSL_ENSURE ( pMenu-GetItemCount(), Empty PopupMenu! );
+
 ::Rectangle aRect( m_pToolbar-GetItemRect( m_nID ) );
 pMenu-Execute( m_pToolbar, aRect, POPUPMENU_EXECUTE_DOWN );
+
 return NULL;
 }
 } // namespace
diff --git a/framework/source/uielement/toolbarmanager.cxx 
b/framework/source/uielement/toolbarmanager.cxx
index 2ddcda5..675e839 100644
--- a/framework/source/uielement/toolbarmanager.cxx
+++ b/framework/source/uielement/toolbarmanager.cxx
@@ -928,6 +928,9 @@ void ToolBarManager::CreateControllers()
 aPropValue.Name = OUString( ParentWindow );
 aPropValue.Value= xToolbarWindow;
 aPropertyVector.push_back( makeAny( aPropValue ));
+aPropValue.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
Identifier ));
+aPropValue.Value= uno::makeAny( nId );
+aPropertyVector.push_back( uno::makeAny( aPropValue ) );
 
 if ( nWidth  0 )
 {
@@ -1041,6 +1044,9 @@ void ToolBarManager::CreateControllers()
 aPropValue.Name = OUString( ModuleIdentifier );
 aPropValue.Value = m_aModuleIdentifier;
 aPropertyVector.push_back( makeAny( aPropValue ));
+aPropValue.Name = rtl::OUString( 
RTL_CONSTASCII_USTRINGPARAM( Identifier ));
+aPropValue.Value= uno::makeAny( nId );
+aPropertyVector.push_back( uno::makeAny( aPropValue ) );
 
 if ( nWidth  0 )
 {
@@ -1248,9 +1254,12 @@ void ToolBarManager::FillToolbar( const Reference 
XIndexAccess  rItemContaine
 try
 {
 Reference XIndexAccess  xMenuContainer;
-if ( m_xDocUICfgMgr.is() )
+if ( m_xDocUICfgMgr.is() 
+ m_xDocUICfgMgr-hasSettings( aCommandURL 
) )
 xMenuContainer  = 
m_xDocUICfgMgr-getSettings( aCommandURL, sal_False );
-if ( !xMenuContainer.is()  m_xUICfgMgr.is() )
+if ( !xMenuContainer.is() 
+ m_xUICfgMgr.is() 
+ m_xUICfgMgr-hasSettings( aCommandURL ) )
 xMenuContainer = 

[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - e1/687ce159e787d98f79d29a3d2131cca4b6ec71

2013-05-26 Thread Caolán McNamara
 e1/687ce159e787d98f79d29a3d2131cca4b6ec71 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 384024b976ba1e4c76b619e7e316663b470088ec
Author: Caolán McNamara caol...@redhat.com
Date:   Sun May 26 20:39:32 2013 +0100

Notes added by 'git notes add'

diff --git a/e1/687ce159e787d98f79d29a3d2131cca4b6ec71 
b/e1/687ce159e787d98f79d29a3d2131cca4b6ec71
new file mode 100644
index 000..7197dd1
--- /dev/null
+++ b/e1/687ce159e787d98f79d29a3d2131cca4b6ec71
@@ -0,0 +1 @@
+merged as: 1e85fc5b2d8aeafb12f414c6bf0692fb2ca221eb
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [PATCH] Delete double whitespace in optsecuritypage.ui

2013-05-26 Thread Lionel Elie Mamane
On Sun, May 26, 2013 at 04:29:15PM +, Joren De Cuyper (via Code Review) 
wrote:
 Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633
 ---
 M cui/uiconfig/ui/optsecuritypage.ui
 1 file changed, 1 insertion(+), 1 deletion(-)

 diff --git a/cui/uiconfig/ui/optsecuritypage.ui 
 b/cui/uiconfig/ui/optsecuritypage.ui
 index 32acdd2..519ab25 100644
 --- a/cui/uiconfig/ui/optsecuritypage.ui
 +++ b/cui/uiconfig/ui/optsecuritypage.ui
 @@ -139,7 +139,7 @@
  property name=row_spacing6/property
  child
object class=GtkCheckButton 
 id=usemasterpassword
 -property name=label 
 translatable=yesProtected _by a  master passwords (recommended)/property
 +property name=label 
 translatable=yesProtected _by a master passwords (recommended)/property

Shouldn't this be Protected _by a master password, not Protected
_by a master password*s*?

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


Re: minutes of ESC call ...

2013-05-26 Thread Lionel Elie Mamane
On Fri, May 24, 2013 at 03:07:52PM +0200, Fernand Vanrie wrote:

 i did a lot of googling, but still not know what are this extra
 properties ?

SelectedValue and SelectedValuesx

 Fernansd
 On Fri, May 17, 2013 at 12:49:03PM +0200, Eike Rathke wrote:
 
 On Thursday, 2013-05-16 16:25:40 +0100, Michael Meeks wrote:
+ double check Lionel's list-box / API change (Eike)
 Done. The two properties added to
 com.sun.star.form.component.DataBaseListBox are marked optional which
 doesn't harm existing clients.
 I did that on advice of ... Michael Stahl? ... on IRC to shut up the
 incompatible API change error the build was giving me.
 
 My understanding was that this was for the benefit of putative
 existing *providers* of this service, that since the properties are
 optional, we did not change the requirements under their feet and they
 still conform to the service specification.
 
 I don't understand how the properties being not optional would harm
 *clients* (users of the service): clients written against the old
 specification would simply not use the new properties, would they?
 
 I toyed with the idea of adding a
 com.sun.star.form.component.DataBaseListBox2 that makes them
 non-optional so that users can be assured to have those properties,
 but in the end I did not bother, and now we are past the 4.1 new
 feature freeze.
 
 
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice
 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2013-05-26 Thread Markus Mohrhard
 sc/qa/unit/helper/csv_handler.hxx |4 ++--
 sc/source/core/data/column3.cxx   |4 
 2 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit b84b02b25d07846c2c2283f8cc9b47fef5229c3b
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun May 26 23:26:46 2013 +0200

temporary ugly hack for ordering problem

Currently we have a problem with the ordering of the calls when we come
to old cells that had inherited formats. They may not yet contain a
number format when we get the number format.

Change-Id: I0ddcdd10ff6ff0a43dbfecaf191e5903d3c0f9ce

diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 0b3c64f..eaf0226 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -1721,6 +1721,10 @@ void ScColumn::GetString( SCROW nRow, OUString rString 
) const
 aCell.assign(*maItems[nIndex].pCell);
 if (aCell.meType != CELLTYPE_NOTE)
 {
+// ugly hack for ordering problem with GetNumberFormat and missing 
inherited formats
+if(aCell.meType == CELLTYPE_FORMULA)
+aCell.mpFormula-MaybeInterpret();
+
 sal_uLong nFormat = GetNumberFormat( nRow );
 ScCellFormat::GetString(aCell, nFormat, rString, pColor, 
*(pDocument-GetFormatTable()));
 }
commit 101612e49c50871f70346c4285e6413292b2df80
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat May 25 16:04:39 2013 +0200

use the correct order of arguments for expected and actual in calc tests

Change-Id: I40fc9b46d35e7046ef51c6ea92f9a1595f6d74a1

diff --git a/sc/qa/unit/helper/csv_handler.hxx 
b/sc/qa/unit/helper/csv_handler.hxx
index a591cf8..aa98257 100644
--- a/sc/qa/unit/helper/csv_handler.hxx
+++ b/sc/qa/unit/helper/csv_handler.hxx
@@ -123,7 +123,7 @@ public:
 std::cout  result:   (int)(aCSVString == aString)  
std::endl;
 #endif //DEBUG_CSV_HANDLER
 
-CPPUNIT_ASSERT_EQUAL_MESSAGE(createErrorMessage(mnCol, mnRow, 
mnTab, aCSVString, aString).getStr(), aString, aCSVString);
+CPPUNIT_ASSERT_EQUAL_MESSAGE(createErrorMessage(mnCol, mnRow, 
mnTab, aCSVString, aString).getStr(), aCSVString, aString);
 }
 else
 {
@@ -151,7 +151,7 @@ public:
 std::cout  result:   (int)(aCSVString == aString)  
std::endl;
 #endif //DEBUG_CSV_HANDLER
 
-CPPUNIT_ASSERT_EQUAL_MESSAGE(createErrorMessage(mnCol, mnRow, 
mnTab, aCSVString, aString).getStr(), aString, aCSVString);
+CPPUNIT_ASSERT_EQUAL_MESSAGE(createErrorMessage(mnCol, mnRow, 
mnTab, aCSVString, aString).getStr(), aCSVString, aString);
 }
 else
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


NEEDINFO Bugs

2013-05-26 Thread Joel Madero

Hi All,

I've done the first round of warnings to NEEDINFO bugs that are 
stagnant. You may receive a group of emails about this, within the last 
2 minutes I've done 140 or so.


The link for these bugs can be found here: 
https://bugs.freedesktop.org/buglist.cgi?list_id=304711emailtype1=substringquery_format=advancedemailqa_contact1=1bug_status=NEEDINFOemail1=qa-admin%40libreoffice.org



We will be tracking the progress of these bugs moving forward to see how 
many are not updated by the reporter so that we know how successful this 
project is. Also, I will be doing ~50-100 daily until I am caught up to 
the bugs that have been stagnant for at least 6 months.



Thanks all for your patience, apologies it too me so long to get this done.



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


Help on meanings of SDI fields

2013-05-26 Thread Rodolfo
I need some help with .SDI definition syntax.

Could anyone clarify me for these fields? Specially for AutoUpdate,
Container and Readonly field.

Example:

854 SfxBoolItem ToolBox SID_TOOLBOX
855
856 [
857 /* flags: */
858 AutoUpdate = FALSE,
859 Cachable = Cachable,
860 FastCall = FALSE,
861 HasCoreId = FALSE,
862 HasDialog = FALSE,
863 ReadOnlyDoc = FALSE,
864 Toggle = FALSE,
865 Container = FALSE,
866 RecordAbsolute = FALSE,
867 RecordPerSet;
868 Synchron;
869
870 Readonly = FALSE,
871
872 /* config: */
873 AccelConfig = TRUE,
874 MenuConfig = TRUE,
875 StatusBarConfig = FALSE,
876 ToolBoxConfig = TRUE,
877 GroupId = GID_VIEW;
878 ]

(from: http://opengrok.libreoffice.org/xref/core/starmath/sdi/smath.sdi#931 )

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


Collaborative UML Tool for Google Summer of Code: Flower Dev Center

2013-05-26 Thread Gabriela Popa

Hello GSoC Mentors,

As you are participating to Google Summer of Code, I'm wondering if you 
could consider using Flower Dev Center [1] while working with students.


Flower Dev Center is an online platform for UML modeling diagramming, 
with a strong focus on code synchronization, integration with dev tools 
(Git, SVN, etc) and real time collaboration on diagrams (and a little 
bit on code as well).


We think Flower Dev Center can be helpful for both: mentors and students 
during Google Summer of Code. We have created an article on this topic 
(i.e. Flower Dev Center + GSoC): [2], [3].


If you have a couple of spare minutes, could you tell us if you would 
like to use Flower Dev Center? And/or raise topics that you think are 
important (based on previous GSoC participations) to be supported by 
Flower Dev Center?


REMARK1: The next version of Flower Dev Center, the 2.0.0 planned for 
June/July 2013, has major new features, that we did not demonstrate yet 
and that will improve even more the collaboration between developers.


REMARK2: Flower Dev Center doesn't currently support C++ and Python 
programming languages. But if you are interested in using Flower Dev 
Center, we'll prioritize their implementation and we'll work hard to do 
it ASAP, with Flower Dev Center 2.0.0.


REMARK3: Flower Dev Center will support programming languages that are 
not object oriented, starting with 2.0.0


Thank you in advance!

Best regards,
Gabriela @ Flower Platform Team.

[1] - Flower Dev Center web site - http://www.flower-platform.com
[2] - Video “Flower Dev Center + Google Summer of Code” - 
http://learn-discuss.flower-platform.com/flower_dev_center/videos/flower_dev_center_and_google_summer_of_code_2013_the_video
[3] - Text version with same content as the above video - 
http://learn-discuss.flower-platform.com/flower_dev_center/tutorials/flower_dev_center_and_google_summer_of_code_2013


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


Compilation flag --disable-gconf

2013-05-26 Thread Saulo Aldighieri Moraes
Hello,

 I am trying to find out what kind of functionally will be missed after remove 
GConf with compilation flag: --disable-gconf

 Maybe lock-down support as sabayon integration for building profiles for 
people?

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


java/XEMBED: wrong embedded window size with LibreOffice

2013-05-26 Thread Fernando Digitaldoc
Well, is really same case:

https://issues.apache.org/ooo/show_bug.cgi?id=106352

 

run the OOoBeanViewer demo from the ooo sdk with
-Dsun.awt.xembedserver=true

with jdk1.6.0_11 linux i586

 

expected result: 

openoffice should use the whole space it is supposed to use

 

actual result:

it uses only 200x200 pixels

 

But, we using in test LibreOffice 3.5 or 3.6 .. and too use java 6.35 or
another.

 

Fernando Gomes 

Twitter:  https://twitter.com/#%21/fhgomes_ti fhgomes_ti

 

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


what to do with AOO - Sidebar - experimental feature in libreoffice-4-1 master and the 4.1.0 branch

2013-05-26 Thread V Stuart Foote
OK, so with a bit of git magic, looks like the Apache OpenOffice work on their 
Sidebar implementation of the Symphony contribution has been merged into 
LibreOffice master. And, unless I am really misreading the git logs, has been 
included in the libreoffice-4-1 branch (at commit 
a2c9d4f8bbde97f175bae4df771273a61251f402). 

So while it is too soon for the 4.1 tinderboxes to verify that myself, but 
looking at a master TB 6 build that predates the branch point by several hours:

tinderbox: buildname: Win-x86@6
tinderbox: tree: MASTER
tinderbox: pull time 2013-05-20 20:57:59
tinderbox: git sha1s
core:de00b8bb67b7453b45e081fe602782803eab1349

...the Apache OpenOffice Sidebar feature is present in the 4.1.0 branch as an 
experimental feature, i.e. accessible from Tools - Options - Advanced - 
Optional (unstable) options -- Enable experimental sidebar (on restart)  
check-box.

Not wrong if it makes it into 4.1.0 branch I guess, but it presents some 
logistical issues from a QA perspective, and raises a question.  Does the ESC 
want QA to submit LibreOffice bugs against these experimental features, or 
should we continue to track and test implementation of Sidebar on the AOO side 
where active development resides with Andre, Oliver, and others. Following the 
primary AOO meta bug for Sidebar implementation is 
https://issues.apache.org/ooo/show_bug.cgi?id=121420

I can verify the merged Sidebar already works in LibreOffice, and that it has 
the same UI issues as the AOO Dev builds (several already corrected), but 
beyond that how much of a role will LO Devs take on that I need to split any QA 
effort on?

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


sandbox building libreoffice

2013-05-26 Thread Tem Pora
Hi friends, 



I want to build multiple versions of libreoffice
on a machine (debian 6) and want to test these versions against a set of test 
cases automatically.  I also want to test the given libreoffice version by 
compiling/linking it against multiple versions of allowed GTK and other 
dependencies.


What is the best way to organize the set up for this type of sandboxing and 
testing?
Any pointers in this directions are also welcome.

I don't want to incur the overheads of setting up of multiple virtual machines 
for this job, as I may want to keep on adding (modifying) test cases.


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


(more public) license

2013-05-26 Thread Németh László
All of my past  future contributions to LibreOffice may be licensed
under the MPL/LGPLv3+ dual license.

László Németh

-- Forwarded message --
From: Németh László nem...@numbertext.org
Date: 2011/7/8
Subject: License to my patches
To: le...@documentfoundation.org
Másolatot kap: Andras Timar tima...@gmail.com


Dear Foundation,

All my contributions are under LGPLv3+/MPL.

Best regards,
László Németh
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


how to add a GrapgicFilter to a com.sun.star.drawing.GraphicObjectShape

2013-05-26 Thread Fernand Vanrie
This can been done with the GUI but with the API  i do not found any 
property or method to add a graphicfilter to a 
com.sun.star.drawing.GraphicObjectShape


thanks for any hint
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


imports of screen shots

2013-05-26 Thread Grog

Sirs,

It would be nice if there was a mechanism to take a screen shot and put 
it straight into presentations on linux, as opposed to the current way 
that I can see which is..use (say) ksnapshot', save file, import file 
into libreoffice impress..on the linux side of life...i.e. intergrate 
the grabbing of screens/windows into the libreoffice frame work.


Obviously I apologise if I have not seen this in the latest code. But it 
would save a lot of work for people who need to do this kind of thing.


Thank you.

Grog

--
*Dr Grog Fookes*

Senior Research Geophysicist

Geokinetics

1 Grosvenor Court

Hipley Street

Old Woking, Surrey GU22 9LL

UK

p: +44 (0)1483 776277 | f: +44 (0)1483 776277

grog.foo...@geokinetics.com

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


Re: LO, Python UNO, Glade - how does it fit together?

2013-05-26 Thread Adam Tauno Williams
On Thu, 2013-05-23 at 02:42 +0400, LRN wrote:
 Any HOWTOs for developing Python-UNO extensions for LO? In particular,
 about GUI?
 I know that new LO versions have vastly improved UI design process (with
 Glade UI definitions).

Yes, please.  A BLOB post of a wiki page covering how to do that would
be *fabulous*;  do that and next time your in west Michigan I'll buy the
beer.

 Back in the day i've ported OOoFBTools to LO [1], but i knew next to
 nothing about LO infrastructure back then, so the result was far from
 perfect.
 I'm aiming at refactoring the code, updating it to work with LO4, etc. I
 want to [try to] do it The Right Way™ this time.
 [1] https://www.gitorious.org/lopyfb2tools/lopyfb2tools

Thanks for posting the link;  it is always nice to find some non-trivial
demonstration of PyUNO usage

--
Adam Tauno Williams mailto:awill...@whitemice.org GPG D95ED383
Systems Administrator, Python Developer, LPI / NCLA

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


Wrong embedded window size with LibreOffice when try to use xEmbed in java app

2013-05-26 Thread Fernando Digitaldoc
Well, is really same case:

https://issues.apache.org/ooo/show_bug.cgi?id=106352

 

run the OOoBeanViewer demo from the ooo sdk with
-Dsun.awt.xembedserver=true

with jdk1.6.0_11 linux i586

 

expected result: 

openoffice should use the whole space it is supposed to use

 

actual result:

it uses only 200x200 pixels

 

But, we using in test LibreOffice 3.5 or 3.6 .. and too use java 6.35 or
another.

 

Can be reproduced by example:

https://dl.dropboxusercontent.com/u/30314039/JavaCallLibreOfficeWeb.rar

 

 

Fernando Gomes 

Twitter: fhgomes_ti https://twitter.com/#%21/fhgomes_ti 

 

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


[PATCH] autofit fix for MAB #42134

2013-05-26 Thread Neil Voss
From: Neil Voss (fourier) vossma...@yahoo.com

Change-Id: I7706bf5c05560d0f13f0a03304b975b8cb47005f
---
 svx/source/svdraw/svdotext.cxx | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 7a662aa..667e40d 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -1277,6 +1277,12 @@ void SdrTextObj::ImpAutoFitText( SdrOutliner rOutliner, 
const Size rTextSize,
 fFactor = double(rTextSize.Width())/aCurrTextSize.Width();
 else
 fFactor = double(rTextSize.Height())/aCurrTextSize.Height();
+// fFactor scales in both x and y directions
+// - this is fine for bulleted words
+// - but it scales too much for a long paragraph
+// - taking sqrt scales long paragraphs the best
+// - bulleted words will have to go through more iterations
+fFactor = std::sqrt(fFactor);
 
 sal_uInt16 nCurrStretchX, nCurrStretchY;
 rOutliner.GetGlobalCharStretching(nCurrStretchX, nCurrStretchY);
-- 
1.7.11.7

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


[PATCH] fdo#64671: FILESAVE: Documents containing Ž are mangled in RTF format

2013-05-26 Thread Urmas


From 3905c71ebeb7f1a0c5607c18a61abeb7c62574be Mon Sep 17 00:00:00 2001
From: Urmas davian...@gmail.com
Date: Sun, 26 May 2013 02:06:22 +0700
Subject: [PATCH] fdo#64671 Some special RTF characters were not skipped
 correctly

Some special characters, like { and }, were not skipped when they
occured as a replacement character for \uN keyword.

Change-Id: I54c5ee67179f927f70fc7cac1b3f896017077d62
---
 writerfilter/source/rtftok/rtfdocumentimpl.cxx | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index a5e3f75..07070a4 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -887,9 +887,10 @@ int RTFDocumentImpl::resolveChars(char ch)
 
 bool bUnicodeChecked = false;
 bool bSkipped = false;
-while(!Strm().IsEof()  ch != '{'  ch != '}'  ch != '\\')
+bool bHex = (m_aStates.top().nInternalState == INTERNAL_HEX);
+while(bHex || !Strm().IsEof()  ch != '{'  ch != '}'  ch != '\\')
 {
-if (m_aStates.top().nInternalState == INTERNAL_HEX || (ch != 0x0d  ch != 0x0a))
+if (bHex || (ch != 0x0d  ch != 0x0a))
 {
 if (m_aStates.top().nCharsToSkip == 0)
 {
@@ -907,7 +908,7 @@ int RTFDocumentImpl::resolveChars(char ch)
 }
 }
 // read a single char if we're in hex mode
-if (m_aStates.top().nInternalState == INTERNAL_HEX)
+if (bHex)
 break;
 Strm()  ch;
 }
@@ -1714,6 +1715,11 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
 }
 if (cCh  0)
 {
+if (m_aStates.top().nCharsToSkip  0)
+{
+m_aStates.top().nCharsToSkip--;
+return 0;
+}
 OUString aStr(OStringToOUString(OString(cCh), RTL_TEXTENCODING_MS_1252));
 text(aStr);
 return 0;
-- 
1.8.1.2

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


libreoffice-4.0.3 fails to build

2013-05-26 Thread John Frankish
On an x86_64 machine, using gcc-4.6.1 and binutils-2.21.1, libreoffice-4.0.3 
fails to build - please see details below.

Any troubleshooting recommendations would be gratefully received.

Regards
John

--

CFLAGS=-mtune=generic -Os -pipe CXXFLAGS=-mtune=generic -Os -pipe 
./autogen.sh --prefix=/usr/local --sysconfdir=/usr/local/etc 
--with-lang=en-US --with-alloc=system --without-java --disable-gconf 
--disable-odk --disable-postgresql-sdbc --with-system-boost --with-system-cairo 
--with-system-curl --with-system-expat --with-system-icu --with-system-jpeg 
--with-system-lcms2 --with-system-libpng --with-system-libxml 
--with-system-mesa-headers --with-system-neon --with-system-nss 
--with-system-odbc --with-system-openldap --with-system-openssl 
--with-system-poppler --with-system-redland --with-system-zlib --disable-python

make build
...
[build LNK] Library/vbaobj.uno.so
[build LNK] Library/libscuilo.so
[build CUT] sc_ucalc
`.text._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_'
 referenced in section 
`.rodata._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_[ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection
 ::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any const)]' of 
/usr/src/libreoffice-4.0.3.3/workdir/unxlngx6.pro/CxxObject/sc/source/ui/vba/vbasheetobjects.o:
 defined in discarded section 
`.text._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_[non-virtual
 thunk to ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection 
::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any const)]' of 
/usr/src/libreoffice-4.0.3.3/workdir/unxlngx6.pro/CxxObject/sc/source/ui/vba/vbasheetobjects.o
`.text._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_'
 referenced in section 
`.rodata._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_[ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection
 ::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any const)]' of 
/usr/src/libreoffice-4.0.3.3/workdir/unxlngx6.pro/CxxObject/sc/source/ui/vba/vbasheetobjects.o:
 defined in discarded section 
`.text._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_[non-virtual
 thunk to ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection 
::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any const)]' of 
/usr/src/libreoffice-4.0.3.3/workdir/unxlngx6.pro/CxxObject/sc/source/ui/vba/vbasheetobjects.o
`.text._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_'
 referenced in section 
`.rodata._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_[ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection
 ::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any const)]' of 
/usr/src
/libreoffice-4.0.3.3/workdir/unxlngx6.pro/CxxObject/sc/source/ui/vba/vbasheetobjects.o:
 defined in discarded section 
`.text._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_[non-virtual
 thunk to ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection 
::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any const)]' of 
/usr/src/libreoffice-4.0.3.3/workdir/unxlngx6.pro/CxxObject/sc/source/ui/vba/vbasheetobjects.o
`.text._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_'
 referenced in section 
`.rodata._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_[ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection
 ::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any const)]' of 
/usr/src/libreoffice-4.0.3.3/workdir/unxlngx6.pro/CxxObject/sc/source/ui/vba/vbasheetobjects.o:
 defined in discarded section 
`.text._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_[non-virtual
 thunk to ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection 
::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any const)]' of 
/usr/src/libreoffice-4.0.3.3/workdir/unxlngx6.pro/CxxObject/sc/source/ui/vba/vbasheetobjects.o
`.text._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_'
 referenced in section 
`.rodata._ZN19ScVbaCollectionBaseIN4cppu15WeakImplHelper1IN3ooo3vba11XCollection4ItemERKN3com3sun4star3uno3AnyESD_[ScVbaCollectionBasecppu::WeakImplHelper1ooo::vba::XCollection
 ::Item(com::sun::star::uno::Any const, com::sun::star::uno::Any const)]' of 

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

2013-05-26 Thread Markus Mohrhard
 sc/inc/chartlis.hxx  |2 +
 sc/source/core/tool/chartlis.cxx |5 +++
 sc/source/ui/unoobj/chartuno.cxx |   50 ---
 3 files changed, 33 insertions(+), 24 deletions(-)

New commits:
commit 911186d98f06b43d4563b401244e2cc216b76f33
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon May 27 01:42:46 2013 +0200

remove chart listener when chart is deleted, fdo#64639

Change-Id: I7ebf75f49c89edcb0bba3a597ba24ac1c0a655ef

diff --git a/sc/inc/chartlis.hxx b/sc/inc/chartlis.hxx
index df3c022..ded1f3c 100644
--- a/sc/inc/chartlis.hxx
+++ b/sc/inc/chartlis.hxx
@@ -171,6 +171,8 @@ public:
 const ScChartListener* findByName(const OUString rName) const;
 bool hasListeners() const;
 
+void removeByName(const OUString rName);
+
 const ListenersType getListeners() const;
 ListenersType getListeners();
 StringSetType getNonOleObjectNames();
diff --git a/sc/source/core/tool/chartlis.cxx b/sc/source/core/tool/chartlis.cxx
index ed07960..df584d4 100644
--- a/sc/source/core/tool/chartlis.cxx
+++ b/sc/source/core/tool/chartlis.cxx
@@ -469,6 +469,11 @@ void ScChartListenerCollection::insert(ScChartListener* 
pListener)
 maListeners.insert(aName, pListener);
 }
 
+void ScChartListenerCollection::removeByName(const OUString rName)
+{
+maListeners.erase(rName);
+}
+
 ScChartListener* ScChartListenerCollection::findByName(const OUString rName)
 {
 ListenersType::iterator it = maListeners.find(rName);
diff --git a/sc/source/ui/unoobj/chartuno.cxx b/sc/source/ui/unoobj/chartuno.cxx
index 5ac0dae..0db6aac 100644
--- a/sc/source/ui/unoobj/chartuno.cxx
+++ b/sc/source/ui/unoobj/chartuno.cxx
@@ -300,6 +300,7 @@ void SAL_CALL ScChartsObj::removeByName( const OUString 
aName )
 if (pObj)
 {
 ScDocument* pDoc = pDocShell-GetDocument();
+pDoc-GetChartListenerCollection()-removeByName(aName);
 ScDrawLayer* pModel = pDoc-GetDrawLayer(); // ist nicht 0
 SdrPage* pPage = pModel-GetPage(static_castsal_uInt16(nTab));// 
ist nicht 0
 
commit 8046f0b66ea1b02a91976023c7050e2570e97274
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon May 27 00:15:41 2013 +0200

String to OUString and small stylistic clean-up

Change-Id: Ic479945c143d3dbd647078b17bcca9cab2ad3e5f

diff --git a/sc/source/ui/unoobj/chartuno.cxx b/sc/source/ui/unoobj/chartuno.cxx
index b31200b..5ac0dae 100644
--- a/sc/source/ui/unoobj/chartuno.cxx
+++ b/sc/source/ui/unoobj/chartuno.cxx
@@ -55,7 +55,7 @@ SC_SIMPLE_SERVICE_INFO( ScChartsObj, ScChartsObj, 
com.sun.star.table.TableCha
 
 //
 
-static SdrOle2Obj* lcl_FindChartObj( ScDocShell* pDocShell, SCTAB nTab, const 
String rName )
+static SdrOle2Obj* lcl_FindChartObj( ScDocShell* pDocShell, SCTAB nTab, const 
OUString rName )
 {
 if (pDocShell)
 {
@@ -76,7 +76,7 @@ static SdrOle2Obj* lcl_FindChartObj( ScDocShell* pDocShell, 
SCTAB nTab, const St
 uno::Reference  embed::XEmbeddedObject  xObj = 
((SdrOle2Obj*)pObject)-GetObjRef();
 if ( xObj.is() )
 {
-String aObjName = 
pDocShell-GetEmbeddedObjectContainer().GetEmbeddedObjectName( xObj );
+OUString aObjName = 
pDocShell-GetEmbeddedObjectContainer().GetEmbeddedObjectName( xObj );
 if ( aObjName == rName )
 return (SdrOle2Obj*)pObject;
 }
@@ -157,15 +157,14 @@ ScChartObj* ScChartsObj::GetObjectByIndex_Impl(long 
nIndex) const
 
 ScChartObj* ScChartsObj::GetObjectByName_Impl(const OUString aName) const
 {
-String aNameString(aName);
-if ( lcl_FindChartObj( pDocShell, nTab, aNameString ) )
-return new ScChartObj( pDocShell, nTab, aNameString );
+if ( lcl_FindChartObj( pDocShell, nTab, aName ) )
+return new ScChartObj( pDocShell, nTab, aName );
 return NULL;
 }
 
 // XTableCharts
 
-void SAL_CALL ScChartsObj::addNewByName( const OUString aName,
+void SAL_CALL ScChartsObj::addNewByName( const OUString rName,
 const awt::Rectangle aRect,
 const 
uno::Sequencetable::CellRangeAddress aRanges,
 sal_Bool bColumnHeaders, sal_Bool 
bRowHeaders )
@@ -185,20 +184,20 @@ void SAL_CALL ScChartsObj::addNewByName( const OUString 
aName,
 //  chart can't be inserted if any ole object with that name exists on any 
table
 //  (empty string: generate valid name)
 
-String aNameString(aName);
+OUString aName = rName;
 SCTAB nDummy;
-if ( aNameString.Len()  pModel-GetNamedObject( aNameString, OBJ_OLE2, 
nDummy ) )
+if ( !aName.isEmpty()  pModel-GetNamedObject( aName, OBJ_OLE2, nDummy ) 
)
 {
 //  object exists - only RuntimeException is specified
 

[PATCH libreoffice-4-0] remove chart listener when chart is deleted, fdo#64639

2013-05-26 Thread Markus Mohrhard (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4045

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/45/4045/1

remove chart listener when chart is deleted, fdo#64639

Change-Id: I7ebf75f49c89edcb0bba3a597ba24ac1c0a655ef
---
M sc/inc/chartlis.hxx
M sc/source/core/tool/chartlis.cxx
M sc/source/ui/unoobj/chartuno.cxx
3 files changed, 8 insertions(+), 0 deletions(-)



diff --git a/sc/inc/chartlis.hxx b/sc/inc/chartlis.hxx
index 788c326..e32a1f0 100644
--- a/sc/inc/chartlis.hxx
+++ b/sc/inc/chartlis.hxx
@@ -171,6 +171,8 @@
 const ScChartListener* findByName(const rtl::OUString rName) const;
 bool hasListeners() const;
 
+void removeByName(const OUString rName);
+
 const ListenersType getListeners() const;
 ListenersType getListeners();
 StringSetType getNonOleObjectNames();
diff --git a/sc/source/core/tool/chartlis.cxx b/sc/source/core/tool/chartlis.cxx
index 67da747..712c60a404 100644
--- a/sc/source/core/tool/chartlis.cxx
+++ b/sc/source/core/tool/chartlis.cxx
@@ -469,6 +469,11 @@
 maListeners.insert(aName, pListener);
 }
 
+void ScChartListenerCollection::removeByName(const rtl::OUString rName)
+{
+maListeners.erase(rName);
+}
+
 ScChartListener* ScChartListenerCollection::findByName(const rtl::OUString 
rName)
 {
 ListenersType::iterator it = maListeners.find(rName);
diff --git a/sc/source/ui/unoobj/chartuno.cxx b/sc/source/ui/unoobj/chartuno.cxx
index 8072f3b..092ddce 100644
--- a/sc/source/ui/unoobj/chartuno.cxx
+++ b/sc/source/ui/unoobj/chartuno.cxx
@@ -298,6 +298,7 @@
 if (pObj)
 {
 ScDocument* pDoc = pDocShell-GetDocument();
+pDoc-GetChartListenerCollection()-removeByName(aName);
 ScDrawLayer* pModel = pDoc-GetDrawLayer(); // ist nicht 0
 SdrPage* pPage = pModel-GetPage(static_castsal_uInt16(nTab));// 
ist nicht 0
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7ebf75f49c89edcb0bba3a597ba24ac1c0a655ef
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-0
Gerrit-Owner: Markus Mohrhard markus.mohrh...@googlemail.com

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


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

2013-05-26 Thread Markus Mohrhard
 sc/inc/chartlis.hxx  |2 ++
 sc/source/core/tool/chartlis.cxx |5 +
 sc/source/ui/unoobj/chartuno.cxx |1 +
 3 files changed, 8 insertions(+)

New commits:
commit c96c6d52cf382cfbc3e2e16619a6e3370fb1a40b
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon May 27 01:42:46 2013 +0200

remove chart listener when chart is deleted, fdo#64639

Change-Id: I7ebf75f49c89edcb0bba3a597ba24ac1c0a655ef

diff --git a/sc/inc/chartlis.hxx b/sc/inc/chartlis.hxx
index df3c022..ded1f3c 100644
--- a/sc/inc/chartlis.hxx
+++ b/sc/inc/chartlis.hxx
@@ -171,6 +171,8 @@ public:
 const ScChartListener* findByName(const OUString rName) const;
 bool hasListeners() const;
 
+void removeByName(const OUString rName);
+
 const ListenersType getListeners() const;
 ListenersType getListeners();
 StringSetType getNonOleObjectNames();
diff --git a/sc/source/core/tool/chartlis.cxx b/sc/source/core/tool/chartlis.cxx
index ed07960..df584d4 100644
--- a/sc/source/core/tool/chartlis.cxx
+++ b/sc/source/core/tool/chartlis.cxx
@@ -469,6 +469,11 @@ void ScChartListenerCollection::insert(ScChartListener* 
pListener)
 maListeners.insert(aName, pListener);
 }
 
+void ScChartListenerCollection::removeByName(const OUString rName)
+{
+maListeners.erase(rName);
+}
+
 ScChartListener* ScChartListenerCollection::findByName(const OUString rName)
 {
 ListenersType::iterator it = maListeners.find(rName);
diff --git a/sc/source/ui/unoobj/chartuno.cxx b/sc/source/ui/unoobj/chartuno.cxx
index b31200b..c259aaa 100644
--- a/sc/source/ui/unoobj/chartuno.cxx
+++ b/sc/source/ui/unoobj/chartuno.cxx
@@ -298,6 +298,7 @@ void SAL_CALL ScChartsObj::removeByName( const OUString 
aName )
 if (pObj)
 {
 ScDocument* pDoc = pDocShell-GetDocument();
+pDoc-GetChartListenerCollection()-removeByName(aName);
 ScDrawLayer* pModel = pDoc-GetDrawLayer(); // ist nicht 0
 SdrPage* pPage = pModel-GetPage(static_castsal_uInt16(nTab));// 
ist nicht 0
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH libreoffice-3-6] remove chart listener when chart is deleted, fdo#64639

2013-05-26 Thread Markus Mohrhard (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4046

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/46/4046/1

remove chart listener when chart is deleted, fdo#64639

Change-Id: I7ebf75f49c89edcb0bba3a597ba24ac1c0a655ef
---
M sc/inc/chartlis.hxx
M sc/source/core/tool/chartlis.cxx
M sc/source/ui/unoobj/chartuno.cxx
3 files changed, 8 insertions(+), 0 deletions(-)



diff --git a/sc/inc/chartlis.hxx b/sc/inc/chartlis.hxx
index 8ca2760..791efef 100644
--- a/sc/inc/chartlis.hxx
+++ b/sc/inc/chartlis.hxx
@@ -181,6 +181,8 @@
 const ScChartListener* findByName(const rtl::OUString rName) const;
 bool hasListeners() const;
 
+void removeByName(const OUString rName);
+
 const ListenersType getListeners() const;
 ListenersType getListeners();
 StringSetType getNonOleObjectNames();
diff --git a/sc/source/core/tool/chartlis.cxx b/sc/source/core/tool/chartlis.cxx
index d49fdeb..55239a0 100644
--- a/sc/source/core/tool/chartlis.cxx
+++ b/sc/source/core/tool/chartlis.cxx
@@ -486,6 +486,11 @@
 maListeners.insert(aName, pListener);
 }
 
+void ScChartListenerCollection::removeByName(const rtl::OUString rName)
+{
+maListeners.erase(rName);
+}
+
 ScChartListener* ScChartListenerCollection::findByName(const rtl::OUString 
rName)
 {
 ListenersType::iterator it = maListeners.find(rName);
diff --git a/sc/source/ui/unoobj/chartuno.cxx b/sc/source/ui/unoobj/chartuno.cxx
index 4996586..71bc893 100644
--- a/sc/source/ui/unoobj/chartuno.cxx
+++ b/sc/source/ui/unoobj/chartuno.cxx
@@ -309,6 +309,7 @@
 if (pObj)
 {
 ScDocument* pDoc = pDocShell-GetDocument();
+pDoc-GetChartListenerCollection()-removeByName(aName);
 ScDrawLayer* pModel = pDoc-GetDrawLayer(); // ist nicht 0
 SdrPage* pPage = pModel-GetPage(static_castsal_uInt16(nTab));// 
ist nicht 0
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7ebf75f49c89edcb0bba3a597ba24ac1c0a655ef
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-3-6
Gerrit-Owner: Markus Mohrhard markus.mohrh...@googlemail.com

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


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

2013-05-26 Thread Markus Mohrhard
 oox/source/export/chartexport.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 54fbbc20b8397a8362f5a0878744c3a082464713
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon May 27 02:08:56 2013 +0200

respect element order in OOXML chart export, related fdo#63114

Change-Id: I591a63c38ab18b03a2f86428defbdac0cb96a1c0

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index c52a3b1..b654001 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1530,15 +1530,15 @@ void ChartExport::exportSeries( Reference 
chart2::XChartType  xChartType, sal_
 }
 }
 
+// export data points
+exportDataPoints( uno::Reference beans::XPropertySet ( 
aSeriesSeq[nSeriesIdx], uno::UNO_QUERY ), nSeriesLength );
+
 // export data labels
 // Excel does not like our current data label export
 // for scatter charts
 if( eChartType != chart::TYPEID_SCATTER  eChartType != 
chart::TYPEID_BAR )
 exportDataLabels( uno::Reference beans::XPropertySet 
( aSeriesSeq[nSeriesIdx], uno::UNO_QUERY ), nSeriesLength );
 
-// export data points
-exportDataPoints( uno::Reference beans::XPropertySet ( 
aSeriesSeq[nSeriesIdx], uno::UNO_QUERY ), nSeriesLength );
-
 //export error bars here
 Reference XPropertySet  xSeriesPropSet( xSource, 
uno::UNO_QUERY );
 Reference XPropertySet  xErrorBarYProps;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [libreoffice-projects] [ANN] LibreOffice 4.1.0 Beta1 available

2013-05-26 Thread Joel Madero
Verified, reporting now, obviously a blockerdammit


Best,
Joel


On Sun, May 26, 2013 at 2:12 AM, Sophie Gautier gautier.sop...@gmail.comwrote:

 Hi,
 On 26/05/2013 11:08, khagaroth wrote:
  Is anyone else getting a crash (no error message) when selecting Format
 -
  Character..., Format - Paragraph... etc. etc.? (Win7 x64)

 I didn't test it by myself, but it just has been reported on the QA FR
 list, with Format  Page.

 Kind regards
 Sophie
 
 
  On Sun, May 26, 2013 at 1:04 AM, Thorsten Behrens 
  t...@documentfoundation.org wrote:
 
  Dear Community,
 
  The Document Foundation is pleased to announce the first Beta release
  of our new LibreOffice 4.1. The upcoming 4.1 will be our sixth major
  release in two and a half years, and comes with a nice set of new
  features. Please be aware that LibreOffice 4.1 Beta1 is not ready yet
  for production use, you should continue to use LibreOffice 4.0.3 for
  that.
 
  For further milestones towards 4.1, please refer to our release plan
  timings here:
 
   https://wiki.documentfoundation.org/ReleasePlan/4.1#4.1.0_release
 
  The release is available for Windows, Linux and Mac OS X from our QA
  builds download page at
 
http://www.libreoffice.org/download/pre-releases/
 
  Should you find bugs, please report them to the FreeDesktop Bugzilla:
 
https://bugs.freedesktop.org
 
  A good way to assess the release candidate quality is to run some
  specific manual tests on it, our TCM wiki page has more details:
 
 
 
 http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test
 
  For other ways to get involved with this exciting project - you can
  e.g. contribute code:
 
http://www.libreoffice.org/get-involved/developers/
 
  translate LibreOffice to your language:
 
http://wiki.documentfoundation.org/LibreOffice_Localization_Guide
 
  or help with funding our operations:
 
http://donate.libreoffice.org/
 
  A list of known issues and fixed bugs with 4.1.0 Beta1 is available
  from our wiki:
 
http://wiki.documentfoundation.org/Releases/4.1.0/Beta1
 
  Let us close again with a BIG Thank You! to all of you having
  contributed to the LibreOffice project - this release would not have
  been possible without your help.
 
  Yours,
 
  The Document Foundation Board of Directors
 
  The Document Foundation, Zimmerstr. 69, 10117 Berlin, Germany
  Rechtsfähige Stiftung des bürgerlichen Rechts
  Legal details: http://www.documentfoundation.org/imprint
 
  --
  To unsubscribe e-mail to: projects+unsubscr...@global.libreoffice.org
  Problems?
  http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
  Posting guidelines + more:
 http://wiki.documentfoundation.org/Netiquette
  List archive: http://listarchives.libreoffice.org/global/projects/
  All messages sent to this list will be publicly archived and cannot be
  deleted
 
 
 


 --
 Sophie Gautier sophie.gaut...@documentfoundation.org
 Tel:+33683901545
 Membership  Certification Committee Member - Co-founder
 The Document Foundation

 --
 To unsubscribe e-mail to: projects+unsubscr...@global.libreoffice.org
 Problems?
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/projects/
 All messages sent to this list will be publicly archived and cannot be
 deleted




-- 
*Joel Madero*
LibreOffice QA Volunteer
jmadero@gmail.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [libreoffice-projects] [ANN] LibreOffice 4.1.0 Beta1 available

2013-05-26 Thread Joel Madero
Relevant link: https://bugs.freedesktop.org/show_bug.cgi?id=65022


Best,
Joel


On Sun, May 26, 2013 at 9:49 PM, Joel Madero jmadero@gmail.com wrote:

 Verified, reporting now, obviously a blockerdammit


 Best,
 Joel


 On Sun, May 26, 2013 at 2:12 AM, Sophie Gautier 
 gautier.sop...@gmail.comwrote:

 Hi,
 On 26/05/2013 11:08, khagaroth wrote:
  Is anyone else getting a crash (no error message) when selecting Format
 -
  Character..., Format - Paragraph... etc. etc.? (Win7 x64)

 I didn't test it by myself, but it just has been reported on the QA FR
 list, with Format  Page.

 Kind regards
 Sophie
 
 
  On Sun, May 26, 2013 at 1:04 AM, Thorsten Behrens 
  t...@documentfoundation.org wrote:
 
  Dear Community,
 
  The Document Foundation is pleased to announce the first Beta release
  of our new LibreOffice 4.1. The upcoming 4.1 will be our sixth major
  release in two and a half years, and comes with a nice set of new
  features. Please be aware that LibreOffice 4.1 Beta1 is not ready yet
  for production use, you should continue to use LibreOffice 4.0.3 for
  that.
 
  For further milestones towards 4.1, please refer to our release plan
  timings here:
 
   https://wiki.documentfoundation.org/ReleasePlan/4.1#4.1.0_release
 
  The release is available for Windows, Linux and Mac OS X from our QA
  builds download page at
 
http://www.libreoffice.org/download/pre-releases/
 
  Should you find bugs, please report them to the FreeDesktop Bugzilla:
 
https://bugs.freedesktop.org
 
  A good way to assess the release candidate quality is to run some
  specific manual tests on it, our TCM wiki page has more details:
 
 
 
 http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test
 
  For other ways to get involved with this exciting project - you can
  e.g. contribute code:
 
http://www.libreoffice.org/get-involved/developers/
 
  translate LibreOffice to your language:
 
http://wiki.documentfoundation.org/LibreOffice_Localization_Guide
 
  or help with funding our operations:
 
http://donate.libreoffice.org/
 
  A list of known issues and fixed bugs with 4.1.0 Beta1 is available
  from our wiki:
 
http://wiki.documentfoundation.org/Releases/4.1.0/Beta1
 
  Let us close again with a BIG Thank You! to all of you having
  contributed to the LibreOffice project - this release would not have
  been possible without your help.
 
  Yours,
 
  The Document Foundation Board of Directors
 
  The Document Foundation, Zimmerstr. 69, 10117 Berlin, Germany
  Rechtsfähige Stiftung des bürgerlichen Rechts
  Legal details: http://www.documentfoundation.org/imprint
 
  --
  To unsubscribe e-mail to: projects+unsubscr...@global.libreoffice.org
  Problems?
  http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
  Posting guidelines + more:
 http://wiki.documentfoundation.org/Netiquette
  List archive: http://listarchives.libreoffice.org/global/projects/
  All messages sent to this list will be publicly archived and cannot be
  deleted
 
 
 


 --
 Sophie Gautier sophie.gaut...@documentfoundation.org
 Tel:+33683901545
 Membership  Certification Committee Member - Co-founder
 The Document Foundation

 --
 To unsubscribe e-mail to: projects+unsubscr...@global.libreoffice.org
 Problems?
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/projects/
 All messages sent to this list will be publicly archived and cannot be
 deleted




 --
 *Joel Madero*
 LibreOffice QA Volunteer
 jmadero@gmail.com




-- 
*Joel Madero*
LibreOffice QA Volunteer
jmadero@gmail.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sysui/desktop

2013-05-26 Thread Samuel Mehrbrodt
 sysui/desktop/menus/draw.desktop |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2dd9393c3989b34a1b38e4ffae7cba19a7295603
Author: Samuel Mehrbrodt s.mehrbr...@gmail.com
Date:   Fri May 24 12:28:27 2013 +0200

Add Corel Draw and MS Publisher MIME Types to Draw

Change-Id: Idbaa8cea7427db3103954c6c60aa7caa6784a3ba
Reviewed-on: https://gerrit.libreoffice.org/4022
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com
(cherry picked from commit aa360797608efd5b03e9eccf0ab934410e042734)

Signed-off-by: David Tardon dtar...@redhat.com

diff --git a/sysui/desktop/menus/draw.desktop b/sysui/desktop/menus/draw.desktop
index 7de198b..9e56d05 100755
--- a/sysui/desktop/menus/draw.desktop
+++ b/sysui/desktop/menus/draw.desktop
@@ -22,7 +22,7 @@ Icon=draw
 Type=Application
 
Categories=Office;FlowChart;Graphics;2DGraphics;VectorGraphics;X-Red-Hat-Base;X-MandrivaLinux-Office-Drawing;
 Exec=${UNIXBASISROOTNAME} --draw %%FILE%%
-MimeType=application/vnd.oasis.opendocument.graphics;application/vnd.oasis.opendocument.graphics-template;application/vnd.sun.xml.draw;application/vnd.sun.xml.draw.template;application/vnd.visio;application/x-wpg;
+MimeType=application/vnd.oasis.opendocument.graphics;application/vnd.oasis.opendocument.graphics-template;application/vnd.sun.xml.draw;application/vnd.sun.xml.draw.template;application/vnd.visio;application/x-wpg;application/vnd.corel-draw;application/vnd.ms-publisher;
 Name=%PRODUCTNAME Draw
 GenericName=Drawing Program
 Comment=Create and edit drawings, flow charts and logos by using Draw.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - sysui/desktop

2013-05-26 Thread Samuel Mehrbrodt
 sysui/desktop/menus/draw.desktop |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9201a4829bca821f1691f1749d1917c005b8137e
Author: Samuel Mehrbrodt s.mehrbr...@gmail.com
Date:   Fri May 24 12:28:27 2013 +0200

Add Corel Draw and MS Publisher MIME Types to Draw

Change-Id: Idbaa8cea7427db3103954c6c60aa7caa6784a3ba
Reviewed-on: https://gerrit.libreoffice.org/4022
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com
(cherry picked from commit aa360797608efd5b03e9eccf0ab934410e042734)

Signed-off-by: David Tardon dtar...@redhat.com

diff --git a/sysui/desktop/menus/draw.desktop b/sysui/desktop/menus/draw.desktop
index 4d32a2f..c2669b3 100755
--- a/sysui/desktop/menus/draw.desktop
+++ b/sysui/desktop/menus/draw.desktop
@@ -22,7 +22,7 @@ Icon=draw
 Type=Application
 
Categories=Office;FlowChart;Graphics;2DGraphics;VectorGraphics;X-Red-Hat-Base;X-MandrivaLinux-Office-Drawing;
 Exec=${UNIXBASISROOTNAME} --draw %%FILE%%
-MimeType=application/vnd.oasis.opendocument.graphics;application/vnd.oasis.opendocument.graphics-template;application/vnd.sun.xml.draw;application/vnd.sun.xml.draw.template;application/vnd.visio;application/x-wpg;
+MimeType=application/vnd.oasis.opendocument.graphics;application/vnd.oasis.opendocument.graphics-template;application/vnd.sun.xml.draw;application/vnd.sun.xml.draw.template;application/vnd.visio;application/x-wpg;application/vnd.corel-draw;application/vnd.ms-publisher;
 Name=%PRODUCTNAME Draw
 GenericName=Drawing Program
 Comment=Create and edit drawings, flow charts and logos by using Draw.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-05-26 Thread Luke Deller
 sw/source/filter/xml/xmltbli.cxx |   26 ++
 1 file changed, 6 insertions(+), 20 deletions(-)

New commits:
commit 1834009c19946ab47de343deb97cbc50475fb96a
Author: Luke Deller l...@deller.id.au
Date:   Thu May 23 02:05:36 2013 +1000

fix fdo#64872 infinite loop saving as doc

When loading from odt, table cells which are covered (due to merging of
cells) are replaced with an empty cell by
SwXMLTableContext::ReplaceWithEmptyCell.  However if there is a sequence
of cells covered from above then their replacements are accidentally
inserted in reverse order, which produces this infinite loop problem when
saving as doc.

The reverse ordering in SwXMLTableContext::ReplaceWithEmptyCell was because
the insert position came from SwXMLTableContext::GetPrevStartNode which was
very careful to skip previous covered cells.  However those cells have
already been replaced with an empty cell so they should not be skipped.

Change-Id: I6a022cd1490afa181dbc3e4b2d6ed4af3077b363
Reviewed-on: https://gerrit.libreoffice.org/4028
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx
index 5a367cd..617faf4 100644
--- a/sw/source/filter/xml/xmltbli.cxx
+++ b/sw/source/filter/xml/xmltbli.cxx
@@ -1804,29 +1804,15 @@ const SwStartNode *SwXMLTableContext::GetPrevStartNode( 
sal_uInt32 nRow,
 // The last cell is the right one here.
 pPrevCell = GetCell( pRows-size()-1U, GetColumnCount()-1UL );
 }
-else if( 0UL == nRow )
+else if( nCol  0UL )
 {
-// There are no vertically merged cells within the first row, so the
-// previous cell is the right one always.
-if( nCol  0UL )
-pPrevCell = GetCell( nRow, nCol-1UL );
+// The previous cell in this row.
+pPrevCell = GetCell( nRow, nCol-1UL );
 }
-else
+else if( nRow  0UL )
 {
-// If there is a previous cell in the current row that is not spanned
-// from the previous row, its the right one.
-const SwXMLTableRow_Impl *pPrevRow = (*pRows)[(sal_uInt16)nRow-1U];
-sal_uInt32 i = nCol;
-while( !pPrevCell   i  0UL )
-{
-i--;
-if( 1UL == pPrevRow-GetCell( i )-GetRowSpan() )
-pPrevCell = GetCell( nRow, i );
-}
-
-// Otherwise, the last cell from the previous row is the right one.
-if( !pPrevCell )
-pPrevCell = pPrevRow-GetCell( GetColumnCount()-1UL );
+// The last cell from the previous row.
+pPrevCell = GetCell( nRow-1UL, GetColumnCount()-1UL );
 }
 
 const SwStartNode *pSttNd = 0;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice-qa] [libreoffice-projects] [ANN] LibreOffice 4.1.0 Beta1 available

2013-05-26 Thread Sophie Gautier
Hi,
On 26/05/2013 11:08, khagaroth wrote:
 Is anyone else getting a crash (no error message) when selecting Format -
 Character..., Format - Paragraph... etc. etc.? (Win7 x64)

I didn't test it by myself, but it just has been reported on the QA FR
list, with Format  Page.

Kind regards
Sophie
 
 
 On Sun, May 26, 2013 at 1:04 AM, Thorsten Behrens 
 t...@documentfoundation.org wrote:
 
 Dear Community,

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

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

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

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

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

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

   https://bugs.freedesktop.org

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


 http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

 For other ways to get involved with this exciting project - you can
 e.g. contribute code:

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

 translate LibreOffice to your language:

   http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

 or help with funding our operations:

   http://donate.libreoffice.org/

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

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

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

 Yours,

 The Document Foundation Board of Directors

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

 --
 To unsubscribe e-mail to: projects+unsubscr...@global.libreoffice.org
 Problems?
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/projects/
 All messages sent to this list will be publicly archived and cannot be
 deleted


 


-- 
Sophie Gautier sophie.gaut...@documentfoundation.org
Tel:+33683901545
Membership  Certification Committee Member - Co-founder
The Document Foundation
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [Libreoffice-qa] [libreoffice-projects] [ANN] LibreOffice 4.1.0 Beta1 available

2013-05-26 Thread khagaroth
Is anyone else getting a crash (no error message) when selecting Format -
Character..., Format - Paragraph... etc. etc.? (Win7 x64)


On Sun, May 26, 2013 at 1:04 AM, Thorsten Behrens 
t...@documentfoundation.org wrote:

 Dear Community,

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

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

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

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

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

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

   https://bugs.freedesktop.org

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


 http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

 For other ways to get involved with this exciting project - you can
 e.g. contribute code:

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

 translate LibreOffice to your language:

   http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

 or help with funding our operations:

   http://donate.libreoffice.org/

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

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

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

 Yours,

 The Document Foundation Board of Directors

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

 --
 To unsubscribe e-mail to: projects+unsubscr...@global.libreoffice.org
 Problems?
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/projects/
 All messages sent to this list will be publicly archived and cannot be
 deleted


___
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] Join to the team of testers.

2013-05-26 Thread Italo Vignoli
You should subscribe to the QA mailing list, which is copied here, where
quality assurance volunteers discuss quality issues. I have also copied
Joel Madero, who is the QA team leader. I am sure you will get the right
guidance.

On 05/26/2013 12:03 PM, Александр Чернега wrote:
 Hello team LibreOffice!
 I've long enjoyed your products, especially software LibreOffice Writer.
 I would like to take part in the testing of new products and offer ideas
 to further improve your products.
 Thank you for reading this message.
 Sincerely, Alexander Chernega.

-- 
Italo Vignoli - The Document Foundation
mob +39.348.5653829 - sip/jabber it...@libreoffice.org
skype italovignoli - hangout/jabber italo.vign...@gmail.com
email it...@documentfoundation.org
___
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] Join to the team of testers.

2013-05-26 Thread Joel Madero

On 05/26/2013 05:33 AM, Italo Vignoli wrote:

You should subscribe to the QA mailing list, which is copied here, where
quality assurance volunteers discuss quality issues. I have also copied
Joel Madero, who is the QA team leader. I am sure you will get the right
guidance.

On 05/26/2013 12:03 PM, Александр Чернега wrote:

Hello team LibreOffice!
I've long enjoyed your products, especially software LibreOffice Writer.
I would like to take part in the testing of new products and offer ideas
to further improve your products.
Thank you for reading this message.
Sincerely, Alexander Chernega.

Thanks Italo for the CC.

Alexander, welcome! We'd love any help that you can provide. The best 
place to start is with some basic triaging. Our backlog of UNCONFIRMED 
bugs is slowly going down but it's still well over 1,000. The issue is 
that no bug will be looked at by a developer until QA confirms and 
prioritizes it. So these 1000 plus are just sitting there until we 
confirm them.


Are you comfortable with IRC? If so please join us at 
http://webchat.freenode.net/, put in #libreoffice-qa for channel, and 
whatever name you want for your nick - something that identifies you 
clearly is best (for instance mine is jmadero). Myself, Joren, 
Colonolqubit (Robinson) are in there quite often and will walk you 
through the steps needed.


https://wiki.documentfoundation.org/QA/BugTriage

Those instructions are also good to review.


Thanks for offering to help :)


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

[Libreoffice-qa] [LibreOffice-QA] May 17th, 2013 Meeting Minutes

2013-05-26 Thread Joel Madero

Hi All,

Apologies for the delay, for anyone interested minutes can be found here:
https://wiki.documentfoundation.org/QA/Meetings/2013/May_17



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


Re: [Libreoffice-qa] Join to the team of testers.

2013-05-26 Thread Александр Чернега
Thank you all for your quick response. I think my participation in testing
helps to make the product better.

С уважением, Чернега Александр.


2013/5/26 Joel Madero jmadero@gmail.com

 On 05/26/2013 05:33 AM, Italo Vignoli wrote:

 You should subscribe to the QA mailing list, which is copied here, where
 quality assurance volunteers discuss quality issues. I have also copied
 Joel Madero, who is the QA team leader. I am sure you will get the right
 guidance.

 On 05/26/2013 12:03 PM, Александр Чернега wrote:

 Hello team LibreOffice!
 I've long enjoyed your products, especially software LibreOffice Writer.
 I would like to take part in the testing of new products and offer ideas
 to further improve your products.
 Thank you for reading this message.
 Sincerely, Alexander Chernega.

 Thanks Italo for the CC.

 Alexander, welcome! We'd love any help that you can provide. The best
 place to start is with some basic triaging. Our backlog of UNCONFIRMED bugs
 is slowly going down but it's still well over 1,000. The issue is that no
 bug will be looked at by a developer until QA confirms and prioritizes it.
 So these 1000 plus are just sitting there until we confirm them.

 Are you comfortable with IRC? If so please join us at
 http://webchat.freenode.net/, put in #libreoffice-qa for channel, and
 whatever name you want for your nick - something that identifies you
 clearly is best (for instance mine is jmadero). Myself, Joren, Colonolqubit
 (Robinson) are in there quite often and will walk you through the steps
 needed.

 https://wiki.**documentfoundation.org/QA/**BugTriagehttps://wiki.documentfoundation.org/QA/BugTriage

 Those instructions are also good to review.


 Thanks for offering to help :)


 Best,
 Joel

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

[Libreoffice-bugs] [Bug 64984] EDITING: Creating table with GUI - table could not be saved

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

thack...@nexgo.de changed:

   What|Removed |Added

Version|4.1.0.0.alpha1  |4.1.0.0.beta1
   Keywords||regression

--- Comment #1 from thack...@nexgo.de ---
Hello Robert, *,
I have switched the version field to 4.1.0.0.beta1 :) Was it not available,
when you opened this bug ;? And I set it to regression, as it was possible in
4.0.3. If I am wrong here, feel free to change it back ... ;)

As I have found the bug first and reported it to the Germanophone discuss list,
I want to confirm Robert's observation ... :( I have tested it in two ways:
1. File - New - Database
2. Click through the Database Wizard until you can finish it.
3. Give it a name (and change the path to save it, if you want ... ;) ).
4. Choose either to create a table in design mode or with the help of the
wizard (it does not matter, which one you choose)
5. For simplicity's sake, choose to create it in design mode
6. Enter Name, Address and City (or whatever you want ... ;) ) in the
field names column.
7. Either click on the save icon or choose File - Save or press CTRL+S.
8. Confirm to create a primary key (here I was missing the possibility to save
the table ... :( ).
9. Click on the save icon again or use CRTL+S. Nothing happens ... :( 

You could also try to close it via ALT+F4. You get the dialog, that the
file was changed and if you want to save it. If you confirm to save it, nothing
happens ... :(

Expected behaviour:
LO should ask for a name for the table and save it.

Confirmed with
OS: Debian Testing AMD64
LO  Parallel installed Version: 4.1.0.0.beta1
Build ID: 3a2c2d2417101e45fe07cfd8358acf2204a98f3 (with LO Version 4.0.3.3
(Build ID: 0eaa50a932c8f2199a615e1eb30f7ac74279539) it is possible to create a
table)
Java (if this is important): java version 1.6.0_27
OpenJDK Runtime Environment (IcedTea6 1.12.5) (6b27-1.12.5-1)
OpenJDK 64-Bit Server VM (build 20.0-b12, mixed mode)

Sorry for the inconvenience and have a nice day
Thomas.

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


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

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

Thomas van der Meulen pje...@hotmail.com changed:

   What|Removed |Added

Version|4.1.0.0.alpha1  |4.1.0.0.beta1

--- Comment #2 from Thomas van der Meulen pje...@hotmail.com ---
changed the versuon to beta 1 because it wasn't there wen I reported it.

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


[Libreoffice-bugs] [Bug 64979] File won't open

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

--- Comment #3 from Thomas van der Meulen pje...@hotmail.com ---
Thank you for your bug report, I can't reproduce this bug running libreoffice
Version: 4.1.0.0.beta1
Build ID: 3a2c2d2417101e45fe07cfd8358acf2204a98f3 on Mac osx 10.8.3 

The file opens with out a problem.

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


[Libreoffice-bugs] [Bug 64991] New: RTF: open RTL doc is very slow.

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

  Priority: medium
Bug ID: 64991
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: RTF: open RTL doc is very slow.
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: fahad.alsa...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.3.3 release
 Component: Writer
   Product: LibreOffice

Problem description: 
When you try to open long RTL doc document, it takes ages to import and open. 

Steps to reproduce:
1. download this file: http://www.alargam.com/alquran/quran6236.rar
2. open the quran6236.doc 
3. Have lunch then back. The file will still be in importing mode. 



Operating System: Ubuntu
Version: 4.0.3.3 release

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


[Libreoffice-bugs] [Bug 64632] FORMATTING: mtextra font needed even though it can be mapped to unicode

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

--- Comment #2 from Sean Young s...@mess.org ---
Thanks. I've submitted two patches to solve this problem.

https://gerrit.libreoffice.org/#/c/4036/
https://gerrit.libreoffice.org/#/c/4037/

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


[Libreoffice-bugs] [Bug 64914] FILEOPEN: Libreoffice freezes or even crashes importing a file containing a chart with large data source

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

Thomas van der Meulen pje...@hotmail.com changed:

   What|Removed |Added

   Hardware|Other   |All
 Status|UNCONFIRMED |NEW
 CC||pje...@hotmail.com
 Ever confirmed|0   |1

--- Comment #1 from Thomas van der Meulen pje...@hotmail.com ---
Thank you for your bug report, I can reproduce this bug running libreoffice
Version: 4.1.0.0.beta1
Build ID: 3a2c2d2417101e45fe07cfd8358acf2204a98f3 on Mac osx 10.8.3 
and version 4.0.3.3.

Loading does take like 2 minute and I get the spinning wheel on my mac. 
Wen I look at my system use LibreOffice uses 98.9% of my cpu. after loading
just 0.2%

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


[Libreoffice-bugs] [Bug 40679] UI: Security option 'Ctrl+click' only works for WRITER

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

--- Comment #3 from Zeki Bildirici kobz...@gmail.com ---
Hi,

This is fixed with LibreOffice 4.0.3 and there is only 3.6.7 series left in
3.6.x.

I'm not sure this will merge 3.6.x series.

https://www.libreoffice.org/bugzilla/show_bug.cgi?id=51296 

Maybe someone should mark this bug.

Regards,
Zeki

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


[Libreoffice-bugs] [Bug 64992] New: EDITING: Enhancement - Select next change automatically

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

  Priority: medium
Bug ID: 64992
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Enhancement - Select next change
automatically
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: bugquestcon...@online.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.3.3 release
 Component: Writer
   Product: LibreOffice

Problem description: 

When editing changes (accept/erject) the next change needs always be selected
by clicking a tool button or using a key board short cut which can be assigned.
Both actions are slowing down work. 

Enhancement request to increase productivity
Once a change is accepted or rejected the next change should be selected
automatically.


Operating System: Windows XP
Version: 4.0.3.3 release

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


[Libreoffice-bugs] [Bug 40457] ACCESSIBILITY: Make table captions above tables the default option [accessibility]

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

--- Comment #3 from chtfn stephane.guil...@gmail.com ---
This is still the case for LO 4.0.3

Another motivation for that change is that in most scientific publications,
captions for tables are situated above the table (as opposed to figures).

Giving the user the choice by letting them use the position drop-down menu
(it is curretly greyed-out) should be a minimum (why is it greyed-out at the
moment?).

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


[Libreoffice-bugs] [Bug 64993] New: CONFIGURATION: No Hyperlink warning for Ctrl+Click is required to open links in Calc

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

  Priority: medium
Bug ID: 64993
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: CONFIGURATION: No Hyperlink warning for Ctrl+Click is
required to open links in Calc
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: kobz...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.3.3 release
 Component: Spreadsheet
   Product: LibreOffice

Problem description: 
Hi,

With 4.0.3 release, the security setting for opening hyperlinks with
Ctrl-Click, Calc has missing warning on mouseover or on clicks.

It should warn the user that Ctrl+click is required to open hyperlinks. 

This is a very important notice, as we see there is lots of bug reported saying
Hyperlinks are not working after 4.0.3. We cannot expect everybody to see
detailed changelogs. 

Also this is a usability problem. We have corporate users, and such hyperlinks
are widely used in their spreadsheets, having such problems will cause
marketing problems there if it is persisted on more stable releases 4.0.4-5
etc..


Steps to reproduce:
1. See that security setting for hyperlinks activated on Tools-Options-Security
- Security Options (ctrl-click required for hyperlink)
2. Create an  hyperlink in Calc
3. Try to click it

Current behavior:

No warning provided that Ctrl+Click to open hyperlink or it is required

Expected behavior:

Warning and guidance is provided like Writer. Also additional information to
disable this setting may be provided.

Best regards,
Zeki

Operating System: All
Version: 4.0.3.3 release

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


[Libreoffice-bugs] [Bug 64993] CONFIGURATION: No Hyperlink warning for Ctrl+Click is required to open links in Calc

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

Zeki Bildirici kobz...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |enhancement
   Priority|medium  |high
 CC||kohei.yosh...@suse.de

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


[Libreoffice-bugs] [Bug 64985] REPORTBUILDER: Dynamic Report Not Populating Data

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

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=58892

--- Comment #1 from rob...@familiegrosskopf.de ---
The screenshot doesn't show the Report-Builder. It's the old report-engine. You
could only use this engine, when the Report-Builder isn't installed.
See https://bugs.freedesktop.org/show_bug.cgi?id=58911 .

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


[Libreoffice-bugs] [Bug 58892] FILEOPEN: Old reports, created by the old wizard, could not be opened when based on a query

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

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 64985] Dynamic Report Not Populating Data with old Report-Engine

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

rob...@familiegrosskopf.de changed:

   What|Removed |Added

Summary|REPORTBUILDER: Dynamic  |Dynamic Report Not
   |Report Not Populating Data  |Populating Data with old
   ||Report-Engine

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


[Libreoffice-bugs] [Bug 64991] RTF: open RTL doc is extremely slow and crashes

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

Thomas van der Meulen pje...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |major
Summary|RTF: open RTL doc is very   |RTF: open RTL doc is
   |slow.   |extremely slow and crashes
 Ever confirmed|0   |1

--- Comment #1 from Thomas van der Meulen pje...@hotmail.com ---
Thank you for your bug report, I can reproduce this bug running libreoffice
Version: 4.1.0.0.beta1
Build ID: 3a2c2d2417101e45fe07cfd8358acf2204a98f3 on Mac osx 10.8.3. I let it
run for 5 min and stoped it. after that i tested it on my windows 7 machine and
after 13 minuts it got a screen saying that it had crashed.

opening with Word 2007 or Apple pages is not a problem (1 min to load). so the
file isn't broken.

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


[Libreoffice-bugs] [Bug 64991] RTF: open RTL doc is extremely slow and crashes

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

Thomas van der Meulen pje...@hotmail.com changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Linux (All) |All
 CC||pje...@hotmail.com

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


[Libreoffice-bugs] [Bug 49043] Inserting External Data in Table problem

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

James spa...@gmx.net changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #9 from James spa...@gmx.net ---
Hi Nicola,

LO 4.1.0.0 beta is out. Could you give that a try?

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

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


[Libreoffice-bugs] [Bug 64979] File won't open

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

--- Comment #4 from Thomas van der Meulen pje...@hotmail.com ---
I also can't reproduce this running Version: 4.1.0.0.beta1
Build ID: 5271b34bec742e190e2fe5a7dadb7334a705b54 on windows 7. it opens in 3
sec for me.

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


[Libreoffice-bugs] [Bug 64994] New: Anchor to cell .xls

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

  Priority: high
Bug ID: 64994
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Anchor to cell .xls
  Severity: major
Classification: Unclassified
OS: All
  Reporter: p_kongs...@op.pl
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.0.0.beta1
 Component: Spreadsheet
   Product: LibreOffice

when opening a .xls file with graphic with anchored to cell this is interpreted
as to page.

It must be a regression as 4.0.3.3 respects the anchoring to cell in the file.

The same file saved as .ods shows anchoring to cell. 

To reproduce:

create empty spreadsheet and insert a picture.

anchor picture to cell (I still prefer that the default always would be to cell
and not to page in Scalc).

Save file as .ods

Save the file as .xls

Close the file.

Open file .ods and the anchoring will be to cell

Open file .xls and the anchoring will be to page.

Expected behavior:

Anchored to cell.

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


[Libreoffice-bugs] [Bug 64995] New: Area button in toolbar result in crash

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

  Priority: medium
Bug ID: 64995
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Area button in toolbar result in crash
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: joren.libreoff...@telenet.be
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.0.0.beta1
 Component: UI
   Product: LibreOffice

Hi,

As far I can see this is a Windows (7) only bug. I tested the same using Mac
OSX 10.8.3 , but no crash.

Tested using LibreOffice 4.1.0 beta 1, Windows 7 x64

* Open Impress
* Click on the 'Area' button in the toolbar (located between the color
selectors)

Result: crash

Going to Format  Area doesn't result in a crash. Therefore I mark it as an UI
bug right now. Maybe this has to be changed later.

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


[Libreoffice-bugs] [Bug 64996] New: right click Area on shape result in crash

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

  Priority: medium
Bug ID: 64996
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: right click  Area on shape result in crash
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: joren.libreoff...@telenet.be
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.0.0.beta1
 Component: Writer
   Product: LibreOffice

May be a duplicate of Bug 64995, but I'm reporting it separately because I'm
not that sure.

As far I can see this is a Windows (7) only bug. I tested the same using Mac
OSX 10.8.3 - No crash.

Tested using Windows 7 x64 with LibreOffice 4.1.0 beta 1:

* Open Writer
* View  Toolbar  Drawing
* Draw a 'Rectangle'
* Select the rectangle
* Right click  Area...

Behavior: Crash

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


[Libreoffice-bugs] [Bug 64995] Area button in toolbar result in crash

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

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

   What|Removed |Added

   Severity|normal  |critical

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


[Libreoffice-bugs] [Bug 64996] right click Area on shape result in crash

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

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

   What|Removed |Added

   Severity|normal  |critical

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


[Libreoffice-bugs] [Bug 64996] right click Area on shape result in crash

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

Thomas van der Meulen pje...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Thomas van der Meulen pje...@hotmail.com ---
hello Joren, Thank you for your bug report I canrepoduce this bug running
Version: 4.1.0.0.beta1
Build ID: 5271b34bec742e190e2fe5a7dadb7334a705b54
on Windows 7 x64

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


[Libreoffice-bugs] [Bug 64995] Area button in toolbar result in crash

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

Thomas van der Meulen pje...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Thomas van der Meulen pje...@hotmail.com ---
Hello Joren, Thank you for your bug report I canrepoduce this bug running
Version: 4.1.0.0.beta1
Build ID: 5271b34bec742e190e2fe5a7dadb7334a705b54
on Windows 7 x64

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


[Libreoffice-bugs] [Bug 64994] Anchor to cell .xls

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

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

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Hi p..
thanks for the report. Do you have a simple xls test file?

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


[Libreoffice-bugs] [Bug 64993] CONFIGURATION: No Hyperlink warning for Ctrl+Click is required to open links in Calc

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 64992] EDITING: Enhancement - Select next change automatically

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

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

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Hi,
Did you have a look at the dialog Edit  Changes  Accept or reject (wording
may be slightly different - looking at Dutch version).
That behaves as requested...
regards - Cor

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


[Libreoffice-bugs] [Bug 64994] Anchor to cell .xls

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

--- Comment #2 from p_kongs...@op.pl ---
Created attachment 79795
  -- https://bugs.freedesktop.org/attachment.cgi?id=79795action=edit
xls file with picture anchored to cell

Attached file with issue.

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


[Libreoffice-bugs] [Bug 64994] Anchor to cell .xls

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

--- Comment #3 from p_kongs...@op.pl ---
Created attachment 79796
  -- https://bugs.freedesktop.org/attachment.cgi?id=79796action=edit
ods file same as xls but respects anchor to cell

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


[Libreoffice-bugs] [Bug 64990] PDF: Bad page format when importing PDF

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

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

   What|Removed |Added

   Hardware|Other   |All
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
   Severity|normal  |enhancement
   Priority|medium  |low
 CC||c...@nouenoff.nl
Version|3.6.6.2 release |3.3.0 Beta2
 Ever confirmed|0   |1

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

thanks for your report!

(In reply to comment #0)

 Expected behavior: Use the actual page format used in the pdf for each page.
 (Alternatively use the biggist page format found in the pdf file.)

Since PDF files are imported in Draw, and Draw currenly does not support
multiple page formats in one file I think we have a problem here...

 Note: Unfortunately I can not attach the pdf since I do not have the right
 to distribute it.

You could have made a simple dummy file ;)

Set this one to New, enhancement etc.
Will look for an issue with Draw for multiple page sizes

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


[Libreoffice-bugs] [Bug 64990] Importing PDF does not allow various page formats in one file

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

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

   What|Removed |Added

Summary|PDF: Bad page format when   |Importing PDF does not
   |importing PDF   |allow various page formats
   ||in one file

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


[Libreoffice-bugs] [Bug 64990] Importing PDF does not allow various page formats in one file

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

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

   What|Removed |Added

 Depends on||49787

--- Comment #2 from Cor Nouws c...@nouenoff.nl ---
yes, found the other bug.
Regards - Cor

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


[Libreoffice-bugs] [Bug 49787] Formatting: Allow different page formatting (landscape / portrait, page size) for different slides in the document

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

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

   What|Removed |Added

 Blocks||64990

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


[Libreoffice-bugs] [Bug 64989] A newline is added after pictures when saves as doc file

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

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

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #3 from Cor Nouws c...@nouenoff.nl ---
Hi Etienne,
thanks for the report. Can you pls attach a test document?
regards,
Cor

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


[Libreoffice-bugs] [Bug 64997] New: FILEOPEN: Problem with .doc file conversion

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

  Priority: medium
Bug ID: 64997
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: Problem with .doc file conversion
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: ecoa...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.2.2 release
 Component: Writer
   Product: LibreOffice

Created attachment 79797
  -- https://bugs.freedesktop.org/attachment.cgi?id=79797action=edit
A doc file from my school.

Problem description: 
The software isn't able to open the attached file. When you try to open it the
program crashes.

My OS is Ubuntu 13.04

Steps to reproduce:
1. Open the file

Current behavior:
The program crashes after trying to convert the file.

Expected behavior:
The program opens after converting the file.


Operating System: Ubuntu
Version: 4.0.2.2 release

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


[Libreoffice-bugs] [Bug 64996] right click Area on shape result in crash

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

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

   What|Removed |Added

   Keywords||regression

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


  1   2   3   4   >