[Libreoffice-commits] .: filter/source

2012-08-19 Thread Libreoffice Gerrit user
 filter/source/graphicfilter/epict/epict.cxx |2 +-
 filter/source/msfilter/msdffimp.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ef1fabb29d8b38da11c75384cec8979bfbc2dca4
Author: David Tardon dtar...@redhat.com
Date:   Sun Aug 19 07:31:26 2012 +0200

fix mangled comments breaking build

Change-Id: I4684ba6c30a2499093ceefeb096d9cfc3de76de9

diff --git a/filter/source/graphicfilter/epict/epict.cxx 
b/filter/source/graphicfilter/epict/epict.cxx
index 3ca6863..3efdacc 100644
--- a/filter/source/graphicfilter/epict/epict.cxx
+++ b/filter/source/graphicfilter/epict/epict.cxx
@@ -920,7 +920,7 @@ void PictWriter::WriteOpcode_BitsRect(const Point  rPoint, 
const Size  rSize,
 // If 24-Bit, then create the Opcode 'DirectBitsRect':
 if ( nBitsPerPixel == 24 )
 {
-:Anzahl Bytes einer (ungepackten) Zeile in Quelle und Ziel berechnen:
+// Anzahl Bytes einer (ungepackten) Zeile in Quelle und Ziel berechnen:
 nSrcRowBytes =( ( 3 * nWidth ) + 0x0003 )  0xfffc;
 nDstRowBytes = nWidth * 4;
 
diff --git a/filter/source/msfilter/msdffimp.cxx 
b/filter/source/msfilter/msdffimp.cxx
index 4f7ebcb..501d04b 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -6470,7 +6470,7 @@ sal_Bool SvxMSDffManager::GetBLIP( sal_uLong nIdx_, 
Graphic rData, Rectangle* p
 
 // passende Info-Struct aus unserem Pointer Array nehmen
 SvxMSDffBLIPInfo rInfo = (*pBLIPInfos)[ nIdx-1 ];
-in the data streamim Daten Stream anspringen
+// das BLIP Atom im Daten Stream anspringen
 pStData-Seek( rInfo.nFilePos );
 // ggfs. Fehlerstatus zuruecksetzen
 if( pStData-GetError() )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Few notes about optimizing files (Windows OS)

2012-08-19 Thread ape
Hi all!

Few notes about optimizing files that are loaded into RAM at startup
LibreOffice.

1. Icons of executable files contain extra pictures the size of 128 by 128
pixels. Desktop environment of operating systems Windows XP-7 don’t need
these pictures. Best appearance requires that icons contain pictures size 20
at 20 pixels (for Windows XP: 120% or 120 dpi) and 24 on 24 pixel (for
Windows 7: 150% or 144 dpi). Changing these resources reduces the size of
executable files from 50 to 40 kilobytes.

2. The file “soffice.bin” is loaded into RAM, but serves an additional
function: it shows the file icons in Explorer. Propose to entrust this
function to an additional file loicons.dll which will not be loaded into
RAM when running LibreOffice. This solution makes it possible to compile
file soffice.bin only with the necessary icons and reduces the file size
from 680 to 96 kilobytes.

3. The Windows operating system does not assign icons of text documents,
spreadsheets, presentations or databases. This makes the program that opens
files. Icons for ODF files and Microsoft’s documents appear identically
because of this reason. File size soffice.bin will grow, if you eliminate
this problem. Consequently, program’s startup time will increase too. It's
not going to happen, if the program will have a separate library of icons
(loicons.dll) for Windows Explorer.

I don't know programming and use the resource editor for this purpose. Files
(LibO-3.7.0_alpha+) that allow you to check my notes are attached. I can
explain the purpose of each of the icons contained in the files, and publish
all PNG images here, if someone will fix the code.
--
ape




--
View this message in context: 
http://nabble.documentfoundation.org/Few-notes-about-optimizing-files-Windows-OS-tp4002255.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: basic/source

2012-08-19 Thread Libreoffice Gerrit user
 basic/source/comp/dim.cxx   |   88 
 basic/source/comp/loops.cxx |4 -
 basic/source/comp/parser.cxx|8 +--
 basic/source/inc/namecont.hxx   |   16 +++
 basic/source/inc/parser.hxx |   16 +++
 basic/source/uno/dlgcont.cxx|8 +--
 basic/source/uno/namecont.cxx   |   40 +-
 basic/source/uno/scriptcont.cxx |8 +--
 8 files changed, 94 insertions(+), 94 deletions(-)

New commits:
commit 38f3fe04324f68af67478f2f582129513c6c567e
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Sun Aug 19 17:49:02 2012 +0900

sal_Bool to bool

Change-Id: I6206ee7e17e12388ea644123e180842df3e3a7ee

diff --git a/basic/source/comp/dim.cxx b/basic/source/comp/dim.cxx
index 7fa0c00..ea27e63 100644
--- a/basic/source/comp/dim.cxx
+++ b/basic/source/comp/dim.cxx
@@ -29,7 +29,7 @@ SbxObject* cloneTypeObjectImpl( const SbxObject rTypeObj );
 // Return-value: a new instance, which were inserted and then deleted.
 // Array-Indexex were returned as SbiDimList
 
-SbiSymDef* SbiParser::VarDecl( SbiDimList** ppDim, sal_Bool bStatic, sal_Bool 
bConst )
+SbiSymDef* SbiParser::VarDecl( SbiDimList** ppDim, bool bStatic, bool bConst )
 {
 bool bWithEvents = false;
 if( Peek() == WITHEVENTS )
@@ -188,34 +188,34 @@ void SbiParser::TypeDecl( SbiSymDef rDef, sal_Bool 
bAsNewAlreadyParsed )
 
 void SbiParser::Dim()
 {
-DefVar( _DIM, ( pProc  bVBASupportOn ) ? pProc-IsStatic() : sal_False );
+DefVar( _DIM, ( pProc  bVBASupportOn ) ? pProc-IsStatic() : false );
 }
 
-void SbiParser::DefVar( SbiOpcode eOp, sal_Bool bStatic )
+void SbiParser::DefVar( SbiOpcode eOp, bool bStatic )
 {
 SbiSymPool* pOldPool = pPool;
-sal_Bool bSwitchPool = sal_False;
-sal_Bool bPersistantGlobal = sal_False;
+bool bSwitchPool = false;
+bool bPersistantGlobal = false;
 SbiToken eFirstTok = eCurTok;
 if( pProc  ( eCurTok == GLOBAL || eCurTok == PUBLIC || eCurTok == 
PRIVATE ) )
 Error( SbERR_NOT_IN_SUBR, eCurTok );
 if( eCurTok == PUBLIC || eCurTok == GLOBAL )
 {
-bSwitchPool = sal_True; // at the right moment switch to the 
global pool
+bSwitchPool = true; // at the right moment switch to the global 
pool
 if( eCurTok == GLOBAL )
-bPersistantGlobal = sal_True;
+bPersistantGlobal = true;
 }
 // behavior in VBA is that a module scope variable's lifetime is
 // tied to the document. e.g. a module scope variable is global
if(  GetBasic()-IsDocBasic()  bVBASupportOn  !pProc )
-bPersistantGlobal = sal_True;
+bPersistantGlobal = true;
 // PRIVATE is a synonymous for DIM
 // _CONST_?
-sal_Bool bConst = sal_False;
+bool bConst = false;
 if( eCurTok == _CONST_ )
-bConst = sal_True;
+bConst = true;
 else if( Peek() == _CONST_ )
-Next(), bConst = sal_True;
+Next(), bConst = true;
 
 // #110004 It can also be a sub/function
 if( !bConst  (eCurTok == SUB || eCurTok == FUNCTION || eCurTok == 
PROPERTY ||
@@ -236,7 +236,7 @@ void SbiParser::DefVar( SbiOpcode eOp, sal_Bool bStatic )
 if( bNewGblDefs  nGblChain == 0 )
 {
 nGblChain = aGen.Gen( _JUMP, 0 );
-bNewGblDefs = sal_False;
+bNewGblDefs = false;
 }
 Next();
 DefProc( sal_False, bPrivate );
@@ -293,7 +293,7 @@ void SbiParser::DefVar( SbiOpcode eOp, sal_Bool bStatic )
 aGen.Statement();   // catch up on static here
 }
 
-sal_Bool bDefined = sal_False;
+bool bDefined = false;
 while( ( pDef = VarDecl( pDim, bStatic, bConst ) ) != NULL )
 {
 EnableErrors();
@@ -302,12 +302,12 @@ void SbiParser::DefVar( SbiOpcode eOp, sal_Bool bStatic )
 pPool = aGlobals;
 SbiSymDef* pOld = pPool-Find( pDef-GetName() );
 // search also in the Runtime-Library
-sal_Bool bRtlSym = sal_False;
+bool bRtlSym = false;
 if( !pOld )
 {
 pOld = CheckRTLForSym( pDef-GetName(), SbxVARIANT );
 if( pOld )
-bRtlSym = sal_True;
+bRtlSym = true;
 }
 if( pOld  !(eOp == _REDIM || eOp == _REDIMP) )
 {
@@ -316,7 +316,7 @@ void SbiParser::DefVar( SbiOpcode eOp, sal_Bool bStatic )
 }
 if( pOld )
 {
-bDefined = sal_True;
+bDefined = true;
 // always an error at a RTL-S
 if( !bRtlSym  (eOp == _REDIM || eOp == _REDIMP) )
 {
@@ -362,7 +362,7 @@ void SbiParser::DefVar( SbiOpcode eOp, sal_Bool bStatic )
 }
 global: aGen.BackChain( nGblChain );
 nGblChain = 0;
-bGblDefs = bNewGblDefs = sal_True;
+bGblDefs = bNewGblDefs = true;
 

Re: Few notes about optimizing files (Windows OS)

2012-08-19 Thread Noel Grandin
Are you offering to implement these ideas?

We're not short on ideas, but we need more hands on deck, so if you're
keen, start by visiting the 'libreoffice native build' page and get
hacking.
Feel free to ask on this list if you get stuck.

On Sunday, 19 August 2012, ape wrote:

 Hi all!

 Few notes about optimizing files that are loaded into RAM at startup
 LibreOffice.

 1. Icons of executable files contain extra pictures the size of 128 by 128
 pixels. Desktop environment of operating systems Windows XP-7 don’t need
 these pictures. Best appearance requires that icons contain pictures size
 20
 at 20 pixels (for Windows XP: 120% or 120 dpi) and 24 on 24 pixel (for
 Windows 7: 150% or 144 dpi). Changing these resources reduces the size of
 executable files from 50 to 40 kilobytes.

 2. The file “soffice.bin” is loaded into RAM, but serves an additional
 function: it shows the file icons in Explorer. Propose to entrust this
 function to an additional file loicons.dll which will not be loaded into
 RAM when running LibreOffice. This solution makes it possible to compile
 file soffice.bin only with the necessary icons and reduces the file size
 from 680 to 96 kilobytes.

 3. The Windows operating system does not assign icons of text documents,
 spreadsheets, presentations or databases. This makes the program that opens
 files. Icons for ODF files and Microsoft’s documents appear identically
 because of this reason. File size soffice.bin will grow, if you eliminate
 this problem. Consequently, program’s startup time will increase too. It's
 not going to happen, if the program will have a separate library of icons
 (loicons.dll) for Windows Explorer.

 I don't know programming and use the resource editor for this purpose.
 Files
 (LibO-3.7.0_alpha+) that allow you to check my notes are attached. I can
 explain the purpose of each of the icons contained in the files, and
 publish
 all PNG images here, if someone will fix the code.
 --
 ape




 --
 View this message in context:
 http://nabble.documentfoundation.org/Few-notes-about-optimizing-files-Windows-OS-tp4002255.html
 Sent from the Dev mailing list archive at Nabble.com.
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org javascript:;
 http://lists.freedesktop.org/mailman/listinfo/libreoffice

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


Re: Few notes about optimizing files (Windows OS)

2012-08-19 Thread ape
Hi, Noel!

I made a mistake and was not able to attach the ZIP file to the 1st post.
--
ape
http://nabble.documentfoundation.org/file/n4002279/LO37win.zip LO37win.zip 



--
View this message in context: 
http://nabble.documentfoundation.org/Few-notes-about-optimizing-files-Windows-OS-tp4002255p4002279.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [GSoC 2012][svg export filter] embedded svg pictures

2012-08-19 Thread Marco Cecchetti


Hi all,
I have an XShape instance that supports the GraphicObjectShape
service and embedding an svg image.
How can I get the image embedded into the XShape instance,
check its mime type, and in case is of type image/svg excract
the svg document ?

Cheers,
-- Marco


--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] Fix TDE VCL interface

2012-08-19 Thread Timothy Pearson
This patch restores the TDE VCL and filepicker interfaces to full
functionality in LO 3.6.0:
http://git.trinitydesktop.org/cgit/tde/plain/main/thirdparty/libreoffice/3.6.0/patches/libreoffice-fix-tde-vcl.diff

This patch does not affect the KDE3 plugin and should be committed to LO
GIT.  The LO code currently in GIT both does not display widgets and also
hangs when used under TDE; this patch resolves these issues.

As always if you have any questions please feel free to ask!

Thank you,

Timothy Pearson
Trinity Desktop Project

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


Re: pptx import filter

2012-08-19 Thread Jean-Tiare LE BIGOT

Hi all,

Thanks for the tip. I spend hours tracing the bug with GDB but I stuck. 
I can not figure out where to fix it.


Here is the situation: I have a pptx file with

- title (fine)
- 4 items in a list (buggy)

In Powerpoint, all the text in the list is 18p but a signe word is 8p.
In Impress, the begin of the text is 20p, the word at 8p is 8p an the 
remaining text is 8p also.


After bisecting the pptx file, it appears that there is an empty span 
at the very beginning of the first list item. It's size is set to 20p. 
The only other span with a size specified is the one at 8p. All other 
elements have no size information on them.


When an element has no size specified, it is imported with the same size 
as the immediate previous element whereas it should take the default 
size specified in the theme. In my case, the size is specified in the 
MasterSlide-OtherStyle-lvl1pPr.


in the import filter, there is a file 
oox/source/drawingml/textrun.cxx:63 This is the only line where the size 
appears to be used in a computation. Ideed, manually forcing the size to 
18 when at 0 fixes the problem for me.


But... It's really not the right place nor the right way to do it since 
it would orverride the theme...

I also know the themes in the master slide are imported properly.

I also traced the code down to pptshape.cxx where the text seems to be 
imported into the core. I obviously missed something...


My question is: where can I fix this 

Thanks a lot for your help (and patient reading)

Le 2012-08-17 15:31, Miklos Vajna a écrit :

On Fri, Aug 17, 2012 at 03:54:25PM +0200, Jean-Tiare LE BIGOT ad...@jtlebi.fr 
wrote:

Is there anyone already working on the pptx import filter ?
I'd like to work on the font size import.

Is there any code shared between the pptx/docx/... filters ?


Hi,

Look under the oox/ module, that's shared between docx/xlsx/pptx.

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




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


Re: notice: module dictionaries converted to gbuild

2012-08-19 Thread Andrea Pescetti

On 07/08/2012 David Tardon wrote:

When testing the conversion--I wrote a script to compare the old and new
content of all the dictionaries--I have identified several files that
have not been packed into the extensions previously ...
dictionaries/it_IT/CHANGELOG.txt


I added this one to the Italian dictionary recently, so it should be 
added to the generated extensions package too.


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


Re: notice: module dictionaries converted to gbuild

2012-08-19 Thread Andrea Pescetti

On 07/08/2012 David Tardon wrote:

When testing the conversion--I wrote a script to compare the old and new
content of all the dictionaries--I have identified several files that
have not been packed into the extensions previously ...
dictionaries/it_IT/CHANGELOG.txt


I added this one to the Italian dictionary recently, so it should be 
added to the generated extension package too.


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


Closing NEEDINFO bugs

2012-08-19 Thread Florian Reisinger
Hi!

About one week ago, I did a mass change, here is pre-final statistic (by
bugzilla):

In fact, it was a good choice... (I hope you can read this table...)

*
*UNCONFIRMED1https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=UNCONFIRMED
NEW51https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=NEW
REOPENED37https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=REOPENED
RESOLVED800https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=RESOLVED
CLOSED1https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=CLOSED

[Libreoffice-commits] .: solenv/bin

2012-08-19 Thread Libreoffice Gerrit user
 solenv/bin/make_installer.pl|   46 ++--
 solenv/bin/modules/installer/globals.pm |3 --
 2 files changed, 15 insertions(+), 34 deletions(-)

New commits:
commit fa98546caa64ff830c5fa91bc603f2685e99c64f
Author: Tim Retout t...@retout.co.uk
Date:   Sun Aug 19 13:33:53 2012 +0100

installer: Some cleanup of packages loop and unused globals.

Change-Id: I219247cacc9924eed33d0aeb85097dbbe73697d0

diff --git a/solenv/bin/make_installer.pl b/solenv/bin/make_installer.pl
index 1603c5d..18f3838 100644
--- a/solenv/bin/make_installer.pl
+++ b/solenv/bin/make_installer.pl
@@ -1071,18 +1071,24 @@ for ( my $n = 0; $n = 
$#installer::globals::languageproducts; $n++ )
 
 if (  $installer::globals::issolarisbuild ) { 
installer::epmfile::read_packagemap($allvariableshashref, $includepatharrayref, 
$languagesarrayref); }
 
+###
+# Checking epm state
+###
+
 my $epmexecutable = ;
-my $found_epm = 0;
+if ( $installer::globals::call_epm )
+{
+$epmexecutable = 
installer::epmfile::find_epm_on_system($includepatharrayref);
+installer::epmfile::set_patch_state($epmexecutable);# setting 
$installer::globals::is_special_epm
+}
 
 # shuffle array to reduce parallel packaging process in pool
 installer::worker::shuffle_array($packages)
 unless $installer::globals::simple;
 
 # iterating over all packages
-for ( my $k = 0; $k = $#{$packages}; $k++ )
+for my $onepackage ( @{$packages} )
 {
-my $onepackage = ${$packages}[$k];
-
 # checking, if this is a language pack or a project pack.
 # Creating language packs only, if 
$installer::globals::languagepack is set. Parameter: -languagepack
 
@@ -1123,14 +1129,11 @@ for ( my $n = 0; $n = 
$#installer::globals::languageproducts; $n++ )
 # Debian allows no underline in package name
 if ( $installer::globals::debian ) { $packagename =~ s/_/-/g; }
 
-# Debian allows no underline in package name
-if ( $installer::globals::debian ) { $packagename =~ s/_/-/g; }
-
 
 # Header for this package into log file
 
 
-installer::logger::include_header_into_logfile(Creating package: 
$packagename ($k));
+installer::logger::include_header_into_logfile(Creating package: 
$packagename);
 
 ###
 # Root path, can be defined as parameter
@@ -1218,29 +1221,10 @@ for ( my $n = 0; $n = 
$#installer::globals::languageproducts; $n++ )
 strip_libraries($filesinpackage, $languagestringref);
 }
 
-###
-# Simple installation mechanism
-###
-
-if ( $installer::globals::simple ) { 
installer::worker::install_simple($onepackagename, $$languagestringref, 
$dirsinpackage, $filesinpackage, $linksinpackage, $unixlinksinpackage); }
-
-###
-# Checking epm state
-###
-
-if (( $installer::globals::call_epm )  ( ! $found_epm ))
-{
-$epmexecutable = 
installer::epmfile::find_epm_on_system($includepatharrayref);
-installer::epmfile::set_patch_state($epmexecutable);# 
setting $installer::globals::is_special_epm
-$found_epm = 1; # searching only once
+if ( $installer::globals::simple ) {
+installer::worker::install_simple($onepackagename, 
$$languagestringref, $dirsinpackage, $filesinpackage, $linksinpackage, 
$unixlinksinpackage);
 }
-
-###
-# Creating epm list file
-###
-
-if ( ! $installer::globals::simple )
-{
+else {
 # epm list file format:
 # type mode owner group destination source options
 # Example for a file: f 755 root sys /usr/bin/foo foo
@@ -1372,7 +1356,7 @@ for ( my $n = 0; $n = 
$#installer::globals::languageproducts; $n++ )
 
 } # end of if ( ! $installer::globals::simple )
 
-}   # end of for ( my $k = 0; $k = $#{$packages}; $k++ )
+}   # end of for ( @{$packages} )
 
 ##
 # Post epm functionality, after the last package is packed
diff --git a/solenv/bin/modules/installer/globals.pm 
b/solenv/bin/modules/installer/globals.pm
index 

Re: [Libreoffice-qa] Closing NEEDINFO bugs

2012-08-19 Thread Bjoern Michaelsen
Hi Flo, all,

On Sun, Aug 19, 2012 at 07:53:35PM +0300, Florian Reisinger wrote:
 In fact, it was a good choice... (I hope you can read this table...)

While the statistic alone do not really prove this to be good move, but there
was a consensus on the qa call(*) and the qa list that this needs to be done to
allow the QA team to keep moving and not getting bogged down in thousends of
incomplete or controversal bug reports.

Now, of course, such a bulk move will always hit some false positives. If that
is the case for one of the bugs you reported (that is: the bug is
welldocumented, complete and noncontroversial) please check:

 http://wiki.documentfoundation.org/BugTriage

if the bug indeed contains all the information needed and thus send it back to
REOPENED.

Thanks!

Best,

Bjoern

(*) 
http://nabble.documentfoundation.org/minutes-of-the-LibreOffice-QA-Call-2012-06-29-1400UTC-td3992888.html
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Bug 38840 - Adding coverage analysis to unit tests

2012-08-19 Thread John Smith
Hi,


Im playing around with gcov/lcov coverage analysis for a bit, and one
of the things im running into/wondering about is what 'tests' should
be run ? I believe there are a few 'make targets' that sound like good
candidates, but which one to run ? Is 'make check' enough ?  Or should
I (also/instead) run 'make unitcheck' and 'make slowcheck' ? Or any
others ?


Regards,


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


Re: Bug 38840 - Adding coverage analysis to unit tests

2012-08-19 Thread Bjoern Michaelsen
Hi,

On Sun, Aug 19, 2012 at 08:51:16PM +0200, John Smith wrote:
 Im playing around with gcov/lcov coverage analysis for a bit, and one
 of the things im running into/wondering about is what 'tests' should
 be run ? I believe there are a few 'make targets' that sound like good
 candidates, but which one to run ? Is 'make check' enough ?  Or should
 I (also/instead) run 'make unitcheck' and 'make slowcheck' ? Or any
 others ?

We you run plain make in a module, it the default target already runs the
unitcheck target. If you run make from the top-level, it also runs slowcheck.

If you are doing really tricky work (like changing a very lowlevel class), I
would recommend to also run 'make subsequentcheck' -- or at least closely watch
the Linux-RHEL6-x86_64_14-with-check tinderbox that runs these tests too (as
you can see from all the [ build SCK ] in its log.

Best,

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


[Libreoffice-commits] .: solenv/bin

2012-08-19 Thread Libreoffice Gerrit user
 solenv/bin/modules/installer/epmfile.pm   |   16 ++---
 solenv/bin/modules/installer/systemactions.pm |   32 --
 2 files changed, 8 insertions(+), 40 deletions(-)

New commits:
commit c55a340a992199c5eb2d8b9cbe2fea539c6f83aa
Author: Tim Retout t...@retout.co.uk
Date:   Sun Aug 19 19:50:05 2012 +0100

installer: Replace remove_empty_directory with rmdir.

Change-Id: Ief3248e0b591a9216ac243fca38904366bab6391

diff --git a/solenv/bin/modules/installer/epmfile.pm 
b/solenv/bin/modules/installer/epmfile.pm
index 36fd78d..7d7da01 100644
--- a/solenv/bin/modules/installer/epmfile.pm
+++ b/solenv/bin/modules/installer/epmfile.pm
@@ -2602,14 +2602,14 @@ sub create_new_directory_structure
 
 if ( $machine ne  )
 {
-
installer::systemactions::remove_empty_directory($installer::globals::epmoutpath/RPMS/$machine);
-}
-
installer::systemactions::remove_empty_directory($installer::globals::epmoutpath/RPMS/powerpc);
-
installer::systemactions::remove_empty_directory($installer::globals::epmoutpath/RPMS/x86_64);
-
installer::systemactions::remove_empty_directory($installer::globals::epmoutpath/RPMS/i586);
-
installer::systemactions::remove_empty_directory($installer::globals::epmoutpath/RPMS/i386);
-
installer::systemactions::remove_empty_directory($installer::globals::epmoutpath/RPMS);
-
+rmdir $installer::globals::epmoutpath/RPMS/$machine;
+}
+rmdir $installer::globals::epmoutpath/RPMS/powerpc;
+rmdir $installer::globals::epmoutpath/RPMS/x86_64;
+rmdir $installer::globals::epmoutpath/RPMS/i586;
+rmdir $installer::globals::epmoutpath/RPMS/i386;
+rmdir $installer::globals::epmoutpath/RPMS
+or warn Could not remove RPMS dir: $!;
 }
 
 # Setting unix rights to 775 for $newdir (RPMS or packages)
diff --git a/solenv/bin/modules/installer/systemactions.pm 
b/solenv/bin/modules/installer/systemactions.pm
index 2607588..3c54ed1 100644
--- a/solenv/bin/modules/installer/systemactions.pm
+++ b/solenv/bin/modules/installer/systemactions.pm
@@ -154,38 +154,6 @@ sub create_directory_with_privileges
 }
 }
 
-##
-# Removing a new direcotory
-##
-
-sub remove_empty_directory
-{
-my ($directory) = @_;
-
-my $returnvalue = 1;
-
-if (-d $directory)
-{
-my $systemcall = rmdir $directory;
-
-$returnvalue = system($systemcall);
-
-my $infoline = Systemcall: $systemcall\n;
-push( @installer::globals::logfileinfo, $infoline);
-
-if ($returnvalue)
-{
-$infoline = ERROR: Could not remove \$directory\!\n;
-push( @installer::globals::logfileinfo, $infoline);
-}
-else
-{
-$infoline = Success: Removed \$directory\!\n;
-push( @installer::globals::logfileinfo, $infoline);
-}
-}
-}
-
 ###
 # Calculating the number of languages in the string
 ###
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Bug 38840 - Adding coverage analysis to unit tests

2012-08-19 Thread John Smith
On Sun, Aug 19, 2012 at 9:03 PM, Bjoern Michaelsen
bjoern.michael...@canonical.com wrote:
 Hi,

 We you run plain make in a module, it the default target already runs the
 unitcheck target. If you run make from the top-level, it also runs slowcheck.

Perhaps I got it all wrong, what gets run during the plain 'make' in
the toplevel is not really relevant here. The point is to figure out
how much code is actually 'tested' with the make check/etc target(s).

- First you run a plain make in the top level directory to build LO
(with analysis stuff enabled).
- then you create a 'baseline' with lcov (sort of create a 'before
snapshot' of LO)
- *then* you run all your tests (whatever they may be)
- then you re-run lcov to create an 'after snapshot'
- then you compare the 'before' and 'after' snapshots, and you can
tell what code was actually executed and therefore tested by your
tests.

At least, thats the way I understand it to be.

When I run 'make help' I get this :

   unitcheckrun unit tests
   slowcheckrun slow unit tests
   subsequentcheck  run system tests (requires full installation)
   checkrun unit tests and if in toplevel subsequentcheck

Which gives me the idea that, when run from the top level, 'make
check' also runs 'make subsequentcheck ', and that it would make sense
to also run 'make unitcheck' and 'make slowcheck' here ? Or am I
missing something ?


Thanks for the feedback,


Regards,


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


[Bug 44446] LibreOffice 3.6 most annoying bugs

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

Mikeyy mikeyy@gmail.com changed:

   What|Removed |Added

 Depends on||52240

--- Comment #82 from Mikeyy mikeyy@gmail.com 2012-08-19 19:54:11 UTC ---
Added bug 52240 since it's more then annoying. If this is intentional feature
from LO team, I'm not upgrading any of my 300 users from 3.5.x to 3.6. Also,
you can find my comment in connected bug:
https://bugs.freedesktop.org/show_bug.cgi?id=52288#c4

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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] .: solenv/bin

2012-08-19 Thread Libreoffice Gerrit user
 solenv/bin/modules/installer/control.pm |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 32dafb7494ec3b7023c5f71ec1d921c1c7e074c2
Author: Tim Retout t...@retout.co.uk
Date:   Sun Aug 19 20:54:02 2012 +0100

installer::control: Put back changing of $local_pathseparator on cygwin.

Change-Id: Ia4fdbe027eb09e297c3d8abbd5817ff062722874

diff --git a/solenv/bin/modules/installer/control.pm 
b/solenv/bin/modules/installer/control.pm
index c097fb1..45994b1 100644
--- a/solenv/bin/modules/installer/control.pm
+++ b/solenv/bin/modules/installer/control.pm
@@ -97,6 +97,7 @@ sub check_system_path
 $pathvariable = join ';',
 map { $dir = qx{cygpath -m $_}; chomp($dir); $dir }
 split /\Q$local_pathseparator\E\s*/, $pathvariable;
+$local_pathseparator = ';';
 }
 my $patharrayref = 
installer::converter::convert_stringlist_into_array(\$pathvariable, 
$local_pathseparator);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Use Thunderbird-like certificate selection GUI in pdf signin...

2012-08-19 Thread Gerrit
From Gökçen Eraslan gokcen.eras...@gmail.com:

Gökçen Eraslan has uploaded a new change for review.

Change subject: Use Thunderbird-like certificate selection GUI in pdf signing.
..

Use Thunderbird-like certificate selection GUI in pdf signing.

Change-Id: Ibe834f1aecc60ba09a2c19d75b094881b82c248a
---
M filter/source/pdf/impdialog.cxx
M filter/source/pdf/impdialog.hrc
M filter/source/pdf/impdialog.hxx
M filter/source/pdf/impdialog.src
4 files changed, 81 insertions(+), 50 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibe834f1aecc60ba09a2c19d75b094881b82c248a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Gökçen Eraslan gokcen.eras...@gmail.com

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


Announcing LibreOffice HardHacks!

2012-08-19 Thread Bjoern Michaelsen
Hi,

as already hinted at in the ESC minutes, here is the full announcement of the
LibreOffice HardHacks:

 http://skyfromme.wordpress.com/2012/08/20/announcing-libreoffice-hardhacks/

Best,

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


Re: minutes of ESC call ...

2012-08-19 Thread Bjoern Michaelsen
On Thu, Aug 16, 2012 at 04:36:17PM +0100, Michael Meeks wrote:
   + introducing 'HardHacks' (Bjoern)
   + 3.6.0 flameage
   + QA team suggested picking five top-bugs each
 two weeks in their call, need to be:
   + among MAB
   + triaged as far as possible
   + best prepared bugs: symbol traces,
 reproducible etc.
   + throw these over to the ESC
   + quest for volunteers here to dig into them.
   + want a hard-hacks query - with five hits
   + bug list into minutes for call etc. (5mins)
   + briefly discuss them each week
   + suck it see next week (Rainer)
   + Bjoern's hard-hack idea ...

Uhem, where is the AI for me to announce it. Anyway: done. ;)

Best,

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


[Libreoffice-commits] .: basic/source

2012-08-19 Thread Libreoffice Gerrit user
 basic/source/comp/dim.cxx |   26 +-
 basic/source/comp/io.cxx  |   14 +++---
 basic/source/comp/parser.cxx  |   42 +-
 basic/source/comp/symtbl.cxx  |2 +-
 basic/source/inc/namecont.hxx |2 +-
 basic/source/inc/parser.hxx   |   26 +-
 basic/source/inc/symtbl.hxx   |6 +++---
 basic/source/uno/namecont.cxx |   30 +++---
 8 files changed, 74 insertions(+), 74 deletions(-)

New commits:
commit a8647dd0301c179b25aa819d3479e04ea672fd8f
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Mon Aug 20 09:44:32 2012 +0900

sal_Bool to bool

Change-Id: I427e9bb30cab4698a2495de7445a4a4982abd7b4

diff --git a/basic/source/comp/dim.cxx b/basic/source/comp/dim.cxx
index ea27e63..5ca13e5 100644
--- a/basic/source/comp/dim.cxx
+++ b/basic/source/comp/dim.cxx
@@ -68,7 +68,7 @@ SbiSymDef* SbiParser::VarDecl( SbiDimList** ppDim, bool 
bStatic, bool bConst )
 // Resolving of a AS-Type-Declaration
 // The data type were inserted into the handed over variable
 
-void SbiParser::TypeDecl( SbiSymDef rDef, sal_Bool bAsNewAlreadyParsed )
+void SbiParser::TypeDecl( SbiSymDef rDef, bool bAsNewAlreadyParsed )
 {
 SbxDataType eType = rDef.GetType();
 if( bAsNewAlreadyParsed || Peek() == AS )
@@ -239,7 +239,7 @@ void SbiParser::DefVar( SbiOpcode eOp, bool bStatic )
 bNewGblDefs = false;
 }
 Next();
-DefProc( sal_False, bPrivate );
+DefProc( false, bPrivate );
 return;
 }
 else if( eCurTok == ENUM )
@@ -547,10 +547,10 @@ void SbiParser::Erase()
 
 void SbiParser::Type()
 {
-DefType( sal_False );
+DefType( false );
 }
 
-void SbiParser::DefType( sal_Bool bPrivate )
+void SbiParser::DefType( bool bPrivate )
 {
 // TODO: Use bPrivate
 (void)bPrivate;
@@ -671,10 +671,10 @@ void SbiParser::DefType( sal_Bool bPrivate )
 
 void SbiParser::Enum()
 {
-DefEnum( sal_False );
+DefEnum( false );
 }
 
-void SbiParser::DefEnum( sal_Bool bPrivate )
+void SbiParser::DefEnum( bool bPrivate )
 {
 // Read a the new Token. It had to be a symbol
 if (!TestSymbol())
@@ -937,10 +937,10 @@ SbiProcDef* SbiParser::ProcDecl( bool bDecl )
 
 void SbiParser::Declare()
 {
-DefDeclare( sal_False );
+DefDeclare( false );
 }
 
-void SbiParser::DefDeclare( sal_Bool bPrivate )
+void SbiParser::DefDeclare( bool bPrivate )
 {
 Next();
 if( eCurTok != SUB  eCurTok != FUNCTION )
@@ -1071,12 +1071,12 @@ void SbiParser::Call()
 
 void SbiParser::SubFunc()
 {
-DefProc( sal_False, sal_False );
+DefProc( false, false );
 }
 
 // Read in of a procedure
 
-void SbiParser::DefProc( sal_Bool bStatic, sal_Bool bPrivate )
+void SbiParser::DefProc( bool bStatic, bool bPrivate )
 {
 sal_uInt16 l1 = nLine, l2 = nLine;
 bool bSub = ( eCurTok == SUB );
@@ -1181,10 +1181,10 @@ void SbiParser::DefProc( sal_Bool bStatic, sal_Bool 
bPrivate )
 
 void SbiParser::Static()
 {
-DefStatic( sal_False );
+DefStatic( false );
 }
 
-void SbiParser::DefStatic( sal_Bool bPrivate )
+void SbiParser::DefStatic( bool bPrivate )
 {
 switch( Peek() )
 {
@@ -1199,7 +1199,7 @@ void SbiParser::DefStatic( sal_Bool bPrivate )
 bNewGblDefs = false;
 }
 Next();
-DefProc( sal_True, bPrivate );
+DefProc( true, bPrivate );
 break;
 default: {
 if( !pProc )
diff --git a/basic/source/comp/io.cxx b/basic/source/comp/io.cxx
index 2d503da..2fb5091 100644
--- a/basic/source/comp/io.cxx
+++ b/basic/source/comp/io.cxx
@@ -22,9 +22,9 @@
 
 // test if there's an I/O channel
 
-sal_Bool SbiParser::Channel( sal_Bool bAlways )
+bool SbiParser::Channel( bool bAlways )
 {
-sal_Bool bRes = sal_False;
+bool bRes = false;
 Peek();
 if( IsHash() )
 {
@@ -33,7 +33,7 @@ sal_Bool SbiParser::Channel( sal_Bool bAlways )
 Next();
 aExpr.Gen();
 aGen.Gen( _CHANNEL );
-bRes = sal_True;
+bRes = true;
 }
 else if( bAlways )
 Error( SbERR_EXPECTED, # );
@@ -45,7 +45,7 @@ sal_Bool SbiParser::Channel( sal_Bool bAlways )
 
 void SbiParser::Print()
 {
-sal_Bool bChan = Channel();
+bool bChan = Channel();
 
 while( !bAbort )
 {
@@ -76,7 +76,7 @@ void SbiParser::Print()
 
 void SbiParser::Write()
 {
-sal_Bool bChan = Channel();
+bool bChan = Channel();
 
 while( !bAbort )
 {
@@ -128,7 +128,7 @@ void SbiParser::Line()
 
 void SbiParser::LineInput()
 {
-Channel( sal_True );
+Channel( true );
 SbiExpression* pExpr = new SbiExpression( this, SbOPERAND );
 if( !pExpr-IsVariable() )
 Error( SbERR_VAR_EXPECTED );
@@ -145,7 +145,7 @@ void SbiParser::LineInput()
 void SbiParser::Input()
 {
 aGen.Gen( _RESTART );
-Channel( sal_True );
+Channel( true );
 SbiExpression* pExpr = new SbiExpression( this, 

[Libreoffice-commits] .: sw/source

2012-08-19 Thread Libreoffice Gerrit user
 sw/source/filter/ww8/docxattributeoutput.cxx |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

New commits:
commit 82c46f1877c65042ac976312267c14bf0e5847f4
Author: Cédric Bosdonnat cedric.bosdon...@free.fr
Date:   Mon Aug 20 05:36:21 2012 +0200

fdo#53175: docx export, close hyperlinks before fields

Change-Id: Ic723149675c3fe2fca08c4ec095d14c5a39f4a8f

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index cbca1b6..c3143e1 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -575,17 +575,18 @@ void DocxAttributeOutput::EndRun()
 
 WritePostponedMath();
 
-while ( m_Fields.begin() != m_Fields.end() )
-{
-EndField_Impl( m_Fields.front( ) );
-m_Fields.erase( m_Fields.begin( ) );
-}
+// Close fields before any field end as we have started them after the 
field
 if ( m_closeHyperlinkInThisRun )
 {
 m_pSerializer-endElementNS( XML_w, XML_hyperlink );
 m_closeHyperlinkInThisRun = false;
 }
 
+while ( m_Fields.begin() != m_Fields.end() )
+{
+EndField_Impl( m_Fields.front( ) );
+m_Fields.erase( m_Fields.begin( ) );
+}
 // if there is some redlining in the document, output it
 EndRedline();
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Disable opening a template while in save mode.

2012-08-19 Thread Gerrit
From Rafael Dominguez venccsra...@gmail.com:

Rafael Dominguez has uploaded a new change for review.

Change subject: Disable opening a template while in save mode.
..

Disable opening a template while in save mode.

Change-Id: If63cc2f6e2c46a54fd6f380f4f218c10427befe3
---
M sfx2/source/doc/templatedlg.cxx
1 file changed, 16 insertions(+), 13 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If63cc2f6e2c46a54fd6f380f4f218c10427befe3
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[PATCH] Fix filtering items in thumbnailview when painting.

2012-08-19 Thread Gerrit
From Rafael Dominguez venccsra...@gmail.com:

Rafael Dominguez has uploaded a new change for review.

Change subject: Fix filtering items in thumbnailview when painting.
..

Fix filtering items in thumbnailview when painting.

Change-Id: I2ec3f6d93246b690a5c28305b3173143b53dab35
---
M sfx2/source/control/thumbnailview.cxx
1 file changed, 51 insertions(+), 25 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2ec3f6d93246b690a5c28305b3173143b53dab35
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[PATCH] Remove unused functions.

2012-08-19 Thread Gerrit
From Rafael Dominguez venccsra...@gmail.com:

Rafael Dominguez has uploaded a new change for review.

Change subject: Remove unused functions.
..

Remove unused functions.

Change-Id: Ie02db475949809254bfb941b6acbf1c887bfd8e5
---
M sfx2/inc/sfx2/thumbnailview.hxx
M sfx2/source/control/thumbnailview.cxx
2 files changed, 0 insertions(+), 66 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie02db475949809254bfb941b6acbf1c887bfd8e5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[PATCH] Set correct scrollbar size depending on the item count of th...

2012-08-19 Thread Gerrit
From Rafael Dominguez venccsra...@gmail.com:

Rafael Dominguez has uploaded a new change for review.

Change subject: Set correct scrollbar size depending on the item count of the 
view.
..

Set correct scrollbar size depending on the item count of the view.

Change-Id: Ic659f8c3616f43d0e4dd5b4fcc6ec02474c36818
---
M sfx2/source/control/thumbnailview.cxx
1 file changed, 5 insertions(+), 2 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic659f8c3616f43d0e4dd5b4fcc6ec02474c36818
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[PATCH] Filter overlay with the last selected filter.

2012-08-19 Thread Gerrit
From Rafael Dominguez venccsra...@gmail.com:

Rafael Dominguez has uploaded a new change for review.

Change subject: Filter overlay with the last selected filter.
..

Filter overlay with the last selected filter.

Change-Id: I85a7c8837d69e1fc57c03f89f57d78327cd8f9bc
---
M sfx2/source/control/templatelocalview.cxx
1 file changed, 1 insertion(+), 2 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I85a7c8837d69e1fc57c03f89f57d78327cd8f9bc
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[PATCH] Hide template export option for remote repositories.

2012-08-19 Thread Gerrit
From Rafael Dominguez venccsra...@gmail.com:

Rafael Dominguez has uploaded a new change for review.

Change subject: Hide template export option for remote repositories.
..

Hide template export option for remote repositories.

Change-Id: I065e6bb271d4fb646feaaf99a211fedff7edc83c
---
M sfx2/source/doc/templatedlg.cxx
1 file changed, 4 insertions(+), 2 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I065e6bb271d4fb646feaaf99a211fedff7edc83c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[PATCH] Ask user if it wants to overwrite a template

2012-08-19 Thread Gerrit
From Rafael Dominguez venccsra...@gmail.com:

Rafael Dominguez has uploaded a new change for review.

Change subject: Ask user if it wants to overwrite a template
..

Ask user if it wants to overwrite a template

Change-Id: I4e0aa8938ebd197b4b77767b9930a389569ba98d
---
M sfx2/inc/sfx2/templatelocalview.hxx
M sfx2/source/control/templatelocalview.cxx
M sfx2/source/doc/templatedlg.cxx
M sfx2/source/doc/templatedlg.hrc
M sfx2/source/doc/templatedlg.src
5 files changed, 55 insertions(+), 1 deletion(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4e0aa8938ebd197b4b77767b9930a389569ba98d
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[PATCH] Ask user if it wants to delete selected folder.

2012-08-19 Thread Gerrit
From Rafael Dominguez venccsra...@gmail.com:

Rafael Dominguez has uploaded a new change for review.

Change subject: Ask user if it wants to delete selected folder.
..

Ask user if it wants to delete selected folder.

Change-Id: If878c2a8ffab4c392df9a5171aa206bd23f4cfca
---
M sfx2/source/doc/templatedlg.cxx
M sfx2/source/doc/templatedlg.hrc
M sfx2/source/doc/templatedlg.src
3 files changed, 12 insertions(+), 0 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If878c2a8ffab4c392df9a5171aa206bd23f4cfca
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[PUSHED] Disable opening a template while in save mode.

2012-08-19 Thread Gerrit
From Bosdonnat Cedric cedric.bosdon...@free.fr:

Bosdonnat Cedric has submitted this change and it was merged.

Change subject: Disable opening a template while in save mode.
..


Disable opening a template while in save mode.

Change-Id: If63cc2f6e2c46a54fd6f380f4f218c10427befe3
---
M sfx2/source/doc/templatedlg.cxx
1 file changed, 16 insertions(+), 13 deletions(-)

Approvals:
  Bosdonnat Cedric: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: If63cc2f6e2c46a54fd6f380f4f218c10427befe3
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com
Gerrit-Reviewer: Bosdonnat Cedric cedric.bosdon...@free.fr

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


[Libreoffice-commits] .: 7 commits - sfx2/inc sfx2/source

2012-08-19 Thread Libreoffice Gerrit user
 sfx2/inc/sfx2/templatelocalview.hxx   |2 
 sfx2/inc/sfx2/thumbnailview.hxx   |9 -
 sfx2/source/control/templatelocalview.cxx |   26 +
 sfx2/source/control/thumbnailview.cxx |  138 +++---
 sfx2/source/doc/templatedlg.cxx   |   36 +++
 sfx2/source/doc/templatedlg.hrc   |3 
 sfx2/source/doc/templatedlg.src   |   10 ++
 7 files changed, 127 insertions(+), 97 deletions(-)

New commits:
commit 6b697baf5bbfede880e1564111aa92503e4f3102
Author: Rafael Dominguez venccsra...@gmail.com
Date:   Sun Aug 19 14:08:08 2012 -0430

Ask user if it wants to overwrite a template

Change-Id: I4e0aa8938ebd197b4b77767b9930a389569ba98d

diff --git a/sfx2/inc/sfx2/templatelocalview.hxx 
b/sfx2/inc/sfx2/templatelocalview.hxx
index 03c4558..268ca8e 100644
--- a/sfx2/inc/sfx2/templatelocalview.hxx
+++ b/sfx2/inc/sfx2/templatelocalview.hxx
@@ -71,6 +71,8 @@ public:
  
com::sun::star::uno::Referencecom::sun::star::frame::XModel rModel,
  const OUString rName);
 
+bool isTemplateNameUnique (const sal_uInt16 nRegionItemId, const OUString 
rName) const;
+
 private:
 
 virtual void OnItemDblClicked (ThumbnailViewItem *pRegionItem);
diff --git a/sfx2/source/control/templatelocalview.cxx 
b/sfx2/source/control/templatelocalview.cxx
index 89704b4..79e382f 100644
--- a/sfx2/source/control/templatelocalview.cxx
+++ b/sfx2/source/control/templatelocalview.cxx
@@ -679,6 +679,29 @@ bool TemplateLocalView::saveTemplateAs(const 
TemplateLocalViewItem *pDstItem,
 return true;
 }
 
+bool TemplateLocalView::isTemplateNameUnique(const sal_uInt16 nRegionItemId, 
const OUString rName) const
+{
+for (size_t i = 0, n = mItemList.size(); i  n; ++i)
+{
+if (mItemList[i]-mnId == nRegionItemId)
+{
+TemplateLocalViewItem *pRegItem =
+static_castTemplateLocalViewItem*(mItemList[i]);
+
+std::vectorTemplateItemProperties::iterator aIter;
+for (aIter = pRegItem-maTemplates.begin(); aIter != 
pRegItem-maTemplates.end(); ++aIter)
+{
+if (aIter-aName == rName)
+return false;
+}
+
+break;
+}
+}
+
+return true;
+}
+
 void TemplateLocalView::OnItemDblClicked (ThumbnailViewItem *pRegionItem)
 {
 // Fill templates
diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx
index 0422e36..fa37e3d 100644
--- a/sfx2/source/doc/templatedlg.cxx
+++ b/sfx2/source/doc/templatedlg.cxx
@@ -1156,10 +1156,23 @@ void SfxTemplateManagerDlg::OnTemplateSaveAs()
 if (!aName.isEmpty())
 {
 OUString aFolderList;
+OUString aQMsg(SfxResId(STR_QMSG_TEMPLATE_OVERWRITE).toString());
+QueryBox aQueryDlg(this,WB_YES_NO | WB_DEF_YES, OUString());
 
 if (maView-isOverlayVisible())
 {
-if 
(!maView-saveTemplateAs(maView-getOverlayRegionId()+1,m_xModel,aName))
+sal_uInt16 nRegionItemId = maView-getOverlayRegionId()+1;
+
+if (!maView-isTemplateNameUnique(nRegionItemId,aName))
+{
+aQMsg = aQMsg.replaceFirst($1,aName);
+
aQueryDlg.SetMessText(aQMsg.replaceFirst($2,maView-getOverlayName()));
+
+if (aQueryDlg.Execute() == RET_NO)
+return;
+}
+
+if (!maView-saveTemplateAs(nRegionItemId,m_xModel,aName))
 aFolderList = maView-getOverlayName();
 }
 else
@@ -1168,6 +1181,16 @@ void SfxTemplateManagerDlg::OnTemplateSaveAs()
 for (pIter = maSelFolders.begin(); pIter != 
maSelFolders.end(); ++pIter)
 {
 TemplateLocalViewItem *pItem = 
(TemplateLocalViewItem*)(*pIter);
+
+if (!maView-isTemplateNameUnique(pItem-mnId,aName))
+{
+OUString aDQMsg = aQMsg.replaceFirst($1,aName);
+
aQueryDlg.SetMessText(aDQMsg.replaceFirst($2,pItem-maTitle));
+
+if (aQueryDlg.Execute() == RET_NO)
+continue;
+}
+
 if (!maView-saveTemplateAs(pItem,m_xModel,aName))
 {
 if (aFolderList.isEmpty())
diff --git a/sfx2/source/doc/templatedlg.hrc b/sfx2/source/doc/templatedlg.hrc
index 5676654..aced42a 100644
--- a/sfx2/source/doc/templatedlg.hrc
+++ b/sfx2/source/doc/templatedlg.hrc
@@ -70,6 +70,7 @@
 #define STR_INPUT_TEMPLATE_NEW  288
 
 #define STR_QMSG_SEL_FOLDER_DELETE  289
+#define STR_QMSG_TEMPLATE_OVERWRITE 290
 
 #define IMG_ACTION_SORT 304
 #define IMG_ACTION_REFRESH  305
diff --git a/sfx2/source/doc/templatedlg.src b/sfx2/source/doc/templatedlg.src
index c0ddde8..4098472 100644
--- 

[PUSHED] Hide template export option for remote repositories.

2012-08-19 Thread Gerrit
From Bosdonnat Cedric cedric.bosdon...@free.fr:

Bosdonnat Cedric has submitted this change and it was merged.

Change subject: Hide template export option for remote repositories.
..


Hide template export option for remote repositories.

Change-Id: I065e6bb271d4fb646feaaf99a211fedff7edc83c
---
M sfx2/source/doc/templatedlg.cxx
1 file changed, 4 insertions(+), 2 deletions(-)


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I065e6bb271d4fb646feaaf99a211fedff7edc83c
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com
Gerrit-Reviewer: Bosdonnat Cedric cedric.bosdon...@free.fr
Gerrit-Reviewer: Rafael Dominguez venccsra...@gmail.com

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


[PUSHED] Ask user if it wants to overwrite a template

2012-08-19 Thread Gerrit
From Bosdonnat Cedric cedric.bosdon...@free.fr:

Bosdonnat Cedric has submitted this change and it was merged.

Change subject: Ask user if it wants to overwrite a template
..


Ask user if it wants to overwrite a template

Change-Id: I4e0aa8938ebd197b4b77767b9930a389569ba98d
---
M sfx2/inc/sfx2/templatelocalview.hxx
M sfx2/source/control/templatelocalview.cxx
M sfx2/source/doc/templatedlg.cxx
M sfx2/source/doc/templatedlg.hrc
M sfx2/source/doc/templatedlg.src
5 files changed, 55 insertions(+), 1 deletion(-)


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I4e0aa8938ebd197b4b77767b9930a389569ba98d
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com
Gerrit-Reviewer: Bosdonnat Cedric cedric.bosdon...@free.fr
Gerrit-Reviewer: Rafael Dominguez venccsra...@gmail.com

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


[PUSHED] Filter overlay with the last selected filter.

2012-08-19 Thread Gerrit
From Bosdonnat Cedric cedric.bosdon...@free.fr:

Bosdonnat Cedric has submitted this change and it was merged.

Change subject: Filter overlay with the last selected filter.
..


Filter overlay with the last selected filter.

Change-Id: I85a7c8837d69e1fc57c03f89f57d78327cd8f9bc
---
M sfx2/source/control/templatelocalview.cxx
1 file changed, 1 insertion(+), 2 deletions(-)


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I85a7c8837d69e1fc57c03f89f57d78327cd8f9bc
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com
Gerrit-Reviewer: Bosdonnat Cedric cedric.bosdon...@free.fr
Gerrit-Reviewer: Rafael Dominguez venccsra...@gmail.com

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


[PUSHED] Remove unused functions.

2012-08-19 Thread Gerrit
From Bosdonnat Cedric cedric.bosdon...@free.fr:

Bosdonnat Cedric has submitted this change and it was merged.

Change subject: Remove unused functions.
..


Remove unused functions.

Change-Id: Ie02db475949809254bfb941b6acbf1c887bfd8e5
---
M sfx2/inc/sfx2/thumbnailview.hxx
M sfx2/source/control/thumbnailview.cxx
2 files changed, 0 insertions(+), 66 deletions(-)


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie02db475949809254bfb941b6acbf1c887bfd8e5
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com
Gerrit-Reviewer: Bosdonnat Cedric cedric.bosdon...@free.fr
Gerrit-Reviewer: Rafael Dominguez venccsra...@gmail.com

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


[PUSHED] Fix filtering items in thumbnailview when painting.

2012-08-19 Thread Gerrit
From Bosdonnat Cedric cedric.bosdon...@free.fr:

Bosdonnat Cedric has submitted this change and it was merged.

Change subject: Fix filtering items in thumbnailview when painting.
..


Fix filtering items in thumbnailview when painting.

Change-Id: I2ec3f6d93246b690a5c28305b3173143b53dab35
---
M sfx2/source/control/thumbnailview.cxx
1 file changed, 51 insertions(+), 25 deletions(-)


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I2ec3f6d93246b690a5c28305b3173143b53dab35
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com
Gerrit-Reviewer: Bosdonnat Cedric cedric.bosdon...@free.fr
Gerrit-Reviewer: Rafael Dominguez venccsra...@gmail.com

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


[PUSHED] Set correct scrollbar size depending on the item count of th...

2012-08-19 Thread Gerrit
From Bosdonnat Cedric cedric.bosdon...@free.fr:

Bosdonnat Cedric has submitted this change and it was merged.

Change subject: Set correct scrollbar size depending on the item count of the 
view.
..


Set correct scrollbar size depending on the item count of the view.

Change-Id: Ic659f8c3616f43d0e4dd5b4fcc6ec02474c36818
---
M sfx2/source/control/thumbnailview.cxx
1 file changed, 5 insertions(+), 2 deletions(-)


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic659f8c3616f43d0e4dd5b4fcc6ec02474c36818
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com
Gerrit-Reviewer: Bosdonnat Cedric cedric.bosdon...@free.fr
Gerrit-Reviewer: Rafael Dominguez venccsra...@gmail.com

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


[PUSHED] Ask user if it wants to delete selected folder.

2012-08-19 Thread Gerrit
From Bosdonnat Cedric cedric.bosdon...@free.fr:

Bosdonnat Cedric has submitted this change and it was merged.

Change subject: Ask user if it wants to delete selected folder.
..


Ask user if it wants to delete selected folder.

Change-Id: If878c2a8ffab4c392df9a5171aa206bd23f4cfca
---
M sfx2/source/doc/templatedlg.cxx
M sfx2/source/doc/templatedlg.hrc
M sfx2/source/doc/templatedlg.src
3 files changed, 12 insertions(+), 0 deletions(-)


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

Gerrit-MessageType: merged
Gerrit-Change-Id: If878c2a8ffab4c392df9a5171aa206bd23f4cfca
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com
Gerrit-Reviewer: Bosdonnat Cedric cedric.bosdon...@free.fr
Gerrit-Reviewer: Rafael Dominguez venccsra...@gmail.com

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


[PATCH] remove two empty methods

2012-08-19 Thread Gerrit
From Thomas Arnhold tho...@arnhold.org:

Thomas Arnhold has uploaded a new change for review.

Change subject: remove two empty methods
..

remove two empty methods

Change-Id: Iadf5948fd3657916fa4056536fc71285171a45ea
---
M sfx2/inc/sfx2/app.hxx
M sfx2/inc/sfx2/objsh.hxx
M sfx2/source/appl/app.cxx
M sfx2/source/appl/appmain.cxx
M sfx2/source/doc/objmisc.cxx
5 files changed, 0 insertions(+), 15 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iadf5948fd3657916fa4056536fc71285171a45ea
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Thomas Arnhold tho...@arnhold.org

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


[PATCH] binfilter: remove two unused methods

2012-08-19 Thread Thomas Arnhold
From 91563824581c9125edc8d1b478d57804d2d4e405 Mon Sep 17 00:00:00 2001
From: Thomas Arnhold tho...@arnhold.org
Date: Mon, 20 Aug 2012 07:26:17 +0200
Subject: [PATCH] remove two unused methods

Change-Id: Ib71b21246af0815d349ba1e5fca3613b86b9c12d
---
 binfilter/bf_sfx2/source/appl/sfx2_app.cxx | 1 -
 binfilter/bf_sfx2/source/appl/sfx2_appmain.cxx | 5 -
 binfilter/bf_sfx2/source/doc/sfx2_objmisc.cxx  | 7 ---
 binfilter/inc/bf_sfx2/app.hxx  | 1 -
 binfilter/inc/bf_sfx2/objsh.hxx| 1 -
 5 files changed, 15 deletions(-)

diff --git a/binfilter/bf_sfx2/source/appl/sfx2_app.cxx b/binfilter/bf_sfx2/source/appl/sfx2_app.cxx
index 2bab8e1..d99dc12 100644
--- a/binfilter/bf_sfx2/source/appl/sfx2_app.cxx
+++ b/binfilter/bf_sfx2/source/appl/sfx2_app.cxx
@@ -116,7 +116,6 @@ SfxApplication* SfxApplication::pApp = NULL;
 /*N*/
 /*N*/   pAppData_Impl = new SfxAppData_Impl( this );
 /*N*/ pAppData_Impl-m_xImeStatusWindow-init();
-/*N*/ pApp-PreInit();
 /*N*/
 /*N*/ pCfgMgr = new SfxConfigManager;
 /*N*/ }
diff --git a/binfilter/bf_sfx2/source/appl/sfx2_appmain.cxx b/binfilter/bf_sfx2/source/appl/sfx2_appmain.cxx
index 48d612e..fa9dd2f 100644
--- a/binfilter/bf_sfx2/source/appl/sfx2_appmain.cxx
+++ b/binfilter/bf_sfx2/source/appl/sfx2_appmain.cxx
@@ -167,11 +167,6 @@ SV_DECL_PTRARR(SfxInitLinkList, LinkPtr, 4, 4)
 
 //---
 
-/*N*/ void SfxApplication::PreInit( )
-/*N*/ {
-/*N*/ }
-
-
 void SfxApplication::Main( )
 {
 }
diff --git a/binfilter/bf_sfx2/source/doc/sfx2_objmisc.cxx b/binfilter/bf_sfx2/source/doc/sfx2_objmisc.cxx
index f809c55..9c53209 100644
--- a/binfilter/bf_sfx2/source/doc/sfx2_objmisc.cxx
+++ b/binfilter/bf_sfx2/source/doc/sfx2_objmisc.cxx
@@ -571,13 +571,6 @@ namespace binfilter {
 
 //
 
-void SfxObjectShell::MemoryError()
-{
-DBG_BF_ASSERT(0, STRIP);  // VIRTUAL
-}
-
-//
-
 /*N*/ SfxProgress* SfxObjectShell::GetProgress() const
 /*N*/ {
 /*N*/   return pImp-pProgress;
diff --git a/binfilter/inc/bf_sfx2/app.hxx b/binfilter/inc/bf_sfx2/app.hxx
index 7222fed..8f30f5b 100644
--- a/binfilter/inc/bf_sfx2/app.hxx
+++ b/binfilter/inc/bf_sfx2/app.hxx
@@ -216,7 +216,6 @@ public:
 
 virtual voidMain( );
 
-voidPreInit( );
 static SfxApplication*  GetOrCreate();
 voidQuit();
 voidInitLabelResMgr( const char* );
diff --git a/binfilter/inc/bf_sfx2/objsh.hxx b/binfilter/inc/bf_sfx2/objsh.hxx
index 6111770..42c2cc6 100644
--- a/binfilter/inc/bf_sfx2/objsh.hxx
+++ b/binfilter/inc/bf_sfx2/objsh.hxx
@@ -274,7 +274,6 @@ public:
 // Misc
 sal_BoolIsPreview() const;
 SfxObjectCreateMode GetCreateMode() const { return eCreateMode; }
-virtual voidMemoryError();
 SfxProgress*GetProgress() const;
 
 // Naming Interface
-- 
1.7.11.5

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


Re: [Libreoffice-qa] Adding Accessibility component to Bug Assistant

2012-08-19 Thread Roman Eisele

Am 18.08.12 03:57, schrieb Marc Paré:

Would it make sense to add Accessibility as another component to the
Bug Assistant? Maybe this would encourage people to submit more
accessibility bugs? Not to mention that the component would show at the
very first steps of reporting, which may help people find it more easily
if they are reporting with the use of a reader?


IMHO we should not have too many components, because this will make it 
more difficult (instead of easier) to find the matching one, but I 
second this proposal. Free and open software should be open for as many 
people as possible, so accessibility is a very important feature for a 
FLOSS office suite like LibreOffice, and therefore it may be helpful to 
have a special component for issues related to accessibility. At least 
the special component will remind us all everyday about the importance 
of considering accessibility everywhere ;-).


Just my 2 cents ;-)

Roman

___
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] Adding Accessibility component to Bug Assistant

2012-08-19 Thread Rainer Bielefeld

Roman Eisele schrieb:

Am 18.08.12 03:57, schrieb Marc Paré:

Would it make sense to add Accessibility as another component to the
Bug Assistant? Maybe this would encourage people to submit more
accessibility bugs? Not to mention that the component would show at the
very first steps of reporting, which may help people find it more easily
if they are reporting with the use of a reader?


IMHO we should not have too many components, because this will make it
more difficult (instead of easier) to find the matching one, but I
second this proposal. Free and open software should be open for as many
people as possible, so accessibility is a very important feature for a
FLOSS office suite like LibreOffice, and therefore it may be helpful to
have a special component for issues related to accessibility. At least
the special component will remind us all everyday about the importance
of considering accessibility everywhere ;-).

Just my 2 cents ;-)



Hello,

I agree with Roman, but it might be a problem for a disabled user do 
have to search BSA until he finds ACCESSIBILITY at UI?


One way would be to add it as Sub Component to all relevant Components, 
or of course, adding a component.


May be we can get advice from accessibil...@global.libreoffice.org?

Best regards

Rainer
___
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] Closing NEEDINFO bugs

2012-08-19 Thread Florian Reisinger
Hi!

About one week ago, I did a mass change, here is pre-final statistic (by
bugzilla):

In fact, it was a good choice... (I hope you can read this table...)

*
*UNCONFIRMED1https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=UNCONFIRMED
NEW51https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=NEW
REOPENED37https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=REOPENED
RESOLVED800https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=RESOLVED
CLOSED1https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=CLOSED

Re: [Libreoffice-qa] Closing NEEDINFO bugs

2012-08-19 Thread Jochen

Hi Florian,

is my conclusion right?

One week ago there are 899 bugreports with status NEEDINFO and today 
there are only 9 bugreports with status NEEDINFO?


Regards

Jochen


Am 19.08.2012 18:53, schrieb Florian Reisinger:

Hi!

About one week ago, I did a mass change, here is pre-final statistic (by
bugzilla):

In fact, it was a good choice... (I hope you can read this table...)

*
*   
UNCONFIRMED 1
https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=UNCONFIRMED

NEW 51
https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=NEW

REOPENED37
https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=REOPENED

RESOLVED800
https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=RESOLVED

CLOSED  1
https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=CLOSED

NEEDINFO9

[Libreoffice-qa] Fwd: Re: Closing NEEDINFO bugs

2012-08-19 Thread Jochen

Hi Florian,

I don´t understand [1]
See [2]: there are alone 7 bugreports witht status NEEDINFO

[1] 
https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=NEEDINFO 



[2] 
https://bugs.freedesktop.org/buglist.cgi?resolution=---query_format=advancedbug_status=NEEDINFOcomponent=Databaseproduct=LibreOfficelist_id=110217


Regards

Jochen

 Original-Nachricht 
Betreff: Re: [Libreoffice-qa] Closing NEEDINFO bugs
Datum: Sun, 19 Aug 2012 20:08:55 +0300
Von: Florian Reisinger reisi...@gmail.com
An: Jochen oo...@jochenschiffers.de

Hi Jochen!

__
Florian Reisinger

Von meinem iPad gesendet
Sent via iPad

Am 19.08.2012 um 20:00 schrieb Jochen oo...@jochenschiffers.de:


Hi Florian,

is my conclusion right?

One week ago there are 899 bugreports with status NEEDINFO and today there are only 9 
bugreports with status NEEDINFO?


Yes, because there was no answer for 6 months+
see the table online:

https://bugs.freedesktop.org/report.cgi?bug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactbug_status=UNCONFIRMEDbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=RESOLVEDbug_status=VERIFIEDbug_status=CLOSEDbug_status=NEEDINFObug_status=PLEASETESTchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopkeywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0
-0-0=x_axis_field=bug_statusx_labels_vertical=1y_axis_field=z_axis_field=width=700height=350action=wrapformat=table

PS: Only 11% answered, that is why there are that much RESOLVED INVALID...



Regards

Jochen


Am 19.08.2012 18:53, schrieb Florian Reisinger:

Hi!

About one week ago, I did a mass change, here is pre-final statistic (by
bugzilla):

In fact, it was a good choice... (I hope you can read this table...)

(...) useless


__
Florian Reisinger

Von meinem iPad gesendet
Sent via iPad


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


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






___
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] Fwd: Re: Closing NEEDINFO bugs

2012-08-19 Thread Florian Reisinger
__
Florian Reisinger

Von meinem iPad gesendet
Sent via iPad

Am 19.08.2012 um 20:12 schrieb Jochen oo...@jochenschiffers.de:

 Hi Florian,




 I don´t understand [1]
 See [2]: there are alone 7 bugreports witht status NEEDINFO

All of these bugs were in NEEDINFO status for 6 months +
https://bugs.freedesktop.org/buglist.cgi?action=wrapcumulate=1height=350longdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGwidth=700x_labels_vertical=1bug_status=UNCONFIRMEDbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=RESOLVEDbug_status=VERIFIEDbug_status=CLOSEDbug_status=NEEDINFObug_status=PLEASETESTlist_id=110234

Now, most of them have not answered -- Closed
If they answer -- Reopen + check


__
Florian Reisinger

Von meinem iPad gesendet
Sent via iPad




 [1] 
 https://bugs.freedesktop.org/buglist.cgi?action=wrapbug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopheight=350keywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=width=700x_labels_vertical=1=bug_status=NEEDINFO

 [2] 
 https://bugs.freedesktop.org/buglist.cgi?resolution=---query_format=advancedbug_status=NEEDINFOcomponent=Databaseproduct=LibreOfficelist_id=110217

 Regards

 Jochen

  Original-Nachricht 
 Betreff: Re: [Libreoffice-qa] Closing NEEDINFO bugs
 Datum: Sun, 19 Aug 2012 20:08:55 +0300
 Von: Florian Reisinger reisi...@gmail.com
 An: Jochen oo...@jochenschiffers.de

 Hi Jochen!

 __
 Florian Reisinger

 Von meinem iPad gesendet
 Sent via iPad

 Am 19.08.2012 um 20:00 schrieb Jochen oo...@jochenschiffers.de:

 Hi Florian,

 is my conclusion right?

 One week ago there are 899 bugreports with status NEEDINFO and today there 
 are only 9 bugreports with status NEEDINFO?

 Yes, because there was no answer for 6 months+
 see the table online:

 https://bugs.freedesktop.org/report.cgi?bug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactbug_status=UNCONFIRMEDbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=RESOLVEDbug_status=VERIFIEDbug_status=CLOSEDbug_status=NEEDINFObug_status=PLEASETESTchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopkeywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0
 -0-0=x_axis_field=bug_statusx_labels_vertical=1y_axis_field=z_axis_field=width=700height=350action=wrapformat=table

 PS: Only 11% answered, that is why there are that much RESOLVED INVALID...


 Regards

 Jochen


 Am 19.08.2012 18:53, schrieb Florian Reisinger:
 Hi!

 About one week ago, I did a mass change, here is pre-final statistic (by
 bugzilla):

 In fact, it was a good choice... (I hope you can read this table...)

 (...) useless


 __
 Florian Reisinger

 Von meinem iPad gesendet
 Sent via iPad


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

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

[Libreoffice-qa] Fwd: Closing NEEDINFO bugs

2012-08-19 Thread Florian Reisinger
Forgot to REPLY TO ALL...

__
Florian Reisinger

Von meinem iPad gesendet
Sent via iPad

Anfang der weitergeleiteten E‑Mail:

*Von:* Florian Reisinger reisi...@gmail.com
*Datum:* 19. August 2012 20:08:55 OESZ
*An:* Jochen oo...@jochenschiffers.de
*Betreff:* *Re: [Libreoffice-qa] Closing NEEDINFO bugs*

Hi Jochen!

__
Florian Reisinger

Von meinem iPad gesendet
Sent via iPad

Am 19.08.2012 um 20:00 schrieb Jochen oo...@jochenschiffers.de:

Hi Florian,


is my conclusion right?


One week ago there are 899 bugreports with status NEEDINFO and today
there are only 9 bugreports with status NEEDINFO?


Yes, because there was no answer for 6 months+
see the table online:

https://bugs.freedesktop.org/report.cgi?bug_file_loc=bug_file_loc_type=allwordssubstrbug_id=bug_id_type=anyexactbug_status=UNCONFIRMEDbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=RESOLVEDbug_status=VERIFIEDbug_status=CLOSEDbug_status=NEEDINFObug_status=PLEASETESTchfieldfrom=chfieldto=Nowchfieldvalue=cumulate=1email1=email2=email3=emailassigned_to1=1emailassigned_to2=1emailcc2=1emailqa_contact2=1emailreporter2=1emailtype1=substringemailtype2=substringemailtype3=substringfield0-0-0=noopkeywords=keywords_type=allwordslongdesc=Due%20to%20the%20fact%2C%20that%20there%20are%20a%20lot%20of%20NEEDINFO%20bugslongdesc_type=allwordssubstrproduct=LibreOfficeresolution=---resolution=FIXEDresolution=INVALIDresolution=WONTFIXresolution=DUPLICATEresolution=WORKSFORMEresolution=MOVEDresolution=NOTABUGresolution=NOTOURBUGshort_desc=short_desc_type=allwordssubstrstatus_whiteboard=status_whiteboard_type=allwordssubstrtype0-0-0=noopvalue0-0-0=x_axis_field=bug_statusx_labels_vertical=1y_axis_field=z_axis_field=width=700height=350action=wrapformat=table

PS: Only 11% answered, that is why there are that much RESOLVED INVALID...


Regards


Jochen



Am 19.08.2012 18:53, schrieb Florian Reisinger:

Hi!


About one week ago, I did a mass change, here is pre-final statistic (by

bugzilla):


In fact, it was a good choice... (I hope you can read this table...)


(...) useless



__

Florian Reisinger


Von meinem iPad gesendet

Sent via iPad



___

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/


___

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/
___
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] Closing NEEDINFO bugs

2012-08-19 Thread Bjoern Michaelsen
Hi Flo, all,

On Sun, Aug 19, 2012 at 07:53:35PM +0300, Florian Reisinger wrote:
 In fact, it was a good choice... (I hope you can read this table...)

While the statistic alone do not really prove this to be good move, but there
was a consensus on the qa call(*) and the qa list that this needs to be done to
allow the QA team to keep moving and not getting bogged down in thousends of
incomplete or controversal bug reports.

Now, of course, such a bulk move will always hit some false positives. If that
is the case for one of the bugs you reported (that is: the bug is
welldocumented, complete and noncontroversial) please check:

 http://wiki.documentfoundation.org/BugTriage

if the bug indeed contains all the information needed and thus send it back to
REOPENED.

Thanks!

Best,

Bjoern

(*) 
http://nabble.documentfoundation.org/minutes-of-the-LibreOffice-QA-Call-2012-06-29-1400UTC-td3992888.html
___
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] Fwd: Re: Closing NEEDINFO bugs

2012-08-19 Thread Alex Thurgood

On 19/08/2012 19:20, Florian Reisinger wrote:

__




Now, most of them have not answered -- Closed
If they answer -- Reopen + check


If you look more closely, quite a few of these (I have no stats to back 
me up) were reports that Bjoern had reset in November to NEEDINFO when 
he did his first clean-up off the cuff, by resetting declared bugs to 
the NEEDINFO status. Since many of the OPs at the time were unaware what 
that meant, it is hardly surprising, IMO, that they then remained 
untreated/unresponded for so long. I, for one, fell foul of this 
sleight of hand, and forgot the many issues that I had opened (under a 
different e-mail address at the time), that Florian so broad-handedly 
then disqualified.


My own personal take on this is that if you guys want to regularly 
schmeiss out bug reports that someone else has happened to sweepingly 
set as NEEDINFO, then I'm wasting my time here in QA. In my opinion, you 
have thrown the baby out with the bath water, but hey, just carry on 
like that and the world will be well. I know, I'll think I'll just wait 
3 months and set a load of bugs to NEEDINFO, and then 3 months later 
strike them all out as INVALID - sounds fair ? No, didn't think so.


The reasoning that says the stats go to show..., sorry, I don't buy 
it, it doesn't take into account the negative impact that the first bug 
clean sweep had on the OPs, and certainly not the second one. If I were 
an OP and saw what happened, I'd likely have one of the following 
reactions :


(a) ignore the disappointing approach from QA and leave LO to the hell 
it is getting itself into ;


(b) vociferously tell the LO project to p*ss off (we've had at least two 
or three of those already)


(c) maybe, just maybe, grit my teeth and reset the issue to re-opened, 
IF, and only IF, I give a damn.


The statistics you invoke as justification only take account of option 
(c), which is a false assumption of social behaviour.



Sorry for what appears to be a rant, but this whole sordid affair has 
left me with a very bitter taste in my mouth, it was bad enough the 
first time around, and now this comes as the icing on the cake. Well, if 
that's how the project wants to play, so be it, but I'm a hair's breadth 
away from walking away from it. What has been played out here is clearly 
an attempt to alleviate a perceived lack of control of increasing bug 
count within the project. It might not have been planned that way, but 
that is how it looks to the outside and casual bug reporter. And then we 
have the gall to say that we need more people for QA - come on, who are 
we kidding if we act like that ?



My motivation for staying is directly linked to the usage I have on a 
professional level of the software with regard to databases. If mine, 
and others, bug reports can be swept under the carpet and then be told 
that all we have to do is reactivate them if we're not happy, well, I'd 
 be inclined to tell you all to take a running jump too. If I want 
hassle, I can go outside and pick a fight at the local pub, or for a 
quieter life, I can switch to competing software not a million miles away.


We are paying the ransom of our own success, and that ransom should 
avoid alienating those who made our software popular, the casual user 
with a problem.



OK, I've said enough.

Alex




___
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] Fwd: Re: Closing NEEDINFO bugs

2012-08-19 Thread Bjoern Michaelsen
Hi Alex,

On Sun, Aug 19, 2012 at 10:14:38PM +0200, Alex Thurgood wrote:
 If you look more closely, quite a few of these (I have no stats to
 back me up) were reports that Bjoern had reset in November to
 NEEDINFO when he did his first clean-up off the cuff, by resetting
 declared bugs to the NEEDINFO status. Since many of the OPs at the
 time were unaware what that meant, 

How so? There was a link accompanying that change asking to put the bug back
into status NEW and two links explaining the background.

 My own personal take on this is that if you guys want to regularly
 schmeiss out bug reports that someone else has happened to
 sweepingly set as NEEDINFO, then I'm wasting my time here in QA.

That these old bugs were moved to NEEDINFO was an one-off artifact of the bugs
having been implicitly confirmed in the old bugzilla, which started the bugs in
NEW, not UNCONFIRMED. 

 In my opinion, you have thrown the baby out with the bath water, but hey,
 just carry on like that and the world will be well. I know, I'll think I'll
 just wait 3 months and set a load of bugs to NEEDINFO, and then 3 months
 later strike them all out as INVALID - sounds fair ? No, didn't think so.

Actually, closing old, incomplete and inactive bugs is not at all uncommon.
Launchpad for example does that automatically: A bug that is marked incomplete
is closed as expired after 90 days.

 (a) ignore the disappointing approach from QA and leave LO to the
 hell it is getting itself into ;
 
 (b) vociferously tell the LO project to p*ss off (we've had at least
 two or three of those already)
 
 (c) maybe, just maybe, grit my teeth and reset the issue to
 re-opened, IF, and only IF, I give a damn.
 
 The statistics you invoke as justification only take account of
 option (c), which is a false assumption of social behaviour.

The question is: Would we as a project better off, if we leave the bugs in
NEEDINFO? Please take a look at:

 
http://skyfromme.wordpress.com/2012/08/16/on-the-importance-of-being-a-bug-confirmer/

and especially the table that is linked in there. The first job of QA -- as
hard as it sounds -- is not to handguide each and every bug reporter along. We
would love to do that, but given our limited resources and being purely
volunteerbased that is simply not the first task of the QA team. The first goal
is to find the most embarassing and urgent bugs and hand them over to the
developers to take care of them. If you look at the table linked in the above
blogpost:

 
https://bugs.freedesktop.org/report.cgi?x_axis_field=resolutiony_axis_field=bug_statusz_axis_field=query_format=report-tableshort_desc_type=allwordssubstrshort_desc=product=LibreOfficebug_status=UNCONFIRMEDbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=RESOLVEDbug_status=VERIFIEDbug_status=CLOSEDbug_status=NEEDINFObug_status=PLEASETESTlongdesc_type=allwordssubstrlongdesc=bug_file_loc_type=allwordssubstrbug_file_loc=status_whiteboard_type=allwordssubstrstatus_whiteboard=keywords_type=allwordskeywords=bug_id=bug_id_type=anyexactemailtype1=substringemail1=emailtype2=substringemail2=emailtype3=substringemail3=chfieldvalue=chfieldfrom=chfieldto=Nowfield0-0-0=nooptype0-0-0=noopvalue0-0-0=format=tableaction=wrap

You find there are over 5000 open bugs and 200 of those are assigned to
developers. The first goal of the QA team is to make sure that these bugs are
the most important to address. So QA has to ensure those bugs are of the right:

- quality (good triage and critical bug)
- quantity (Developers should always be aware of the most important bugs to 
work on)

Given that 87 of the assigned bugs have not seen a change in more than 180
days, it is clear that it would not help much to push more bugs in the
direction of development in its current state of operation. So what remains for
QA to do, is to find the most important bugs and from those the ones that are
best triaged: have a reproduction scenario, a pinned down version when the bug
appeared, a bibisect. Given the limited resources the team currently has and
5000 open bugs, we have to focus on those bugs -- and they are unlikely to be
found in those bugs in state NEEDINFO for 6 months. _If_ they are, they
hopefully will get reopened quickly.

 Sorry for what appears to be a rant, but this whole sordid affair
 has left me with a very bitter taste in my mouth, it was bad enough
 the first time around, and now this comes as the icing on the cake.

Yes, we should have learned from the first bulk change, and the execution on
this one was quite a bit unfortunate. The next time this should:

- be announced on _all_ the relevant list a 1-2 weeks before it happens
- on the planet with a blogpost
- best be two-staged:
  - first comment on the bug: If this bug does not receive the requested
information (or confirmation by another contributor) it will get closed in 
14 days
  - then close those that still are untouched 14 days later.

 Well, if that's how the project wants to play, so be it, but 

[Libreoffice-qa] Announcing LibreOffice HardHacks!

2012-08-19 Thread Bjoern Michaelsen
Hi,

as already hinted at in the ESC minutes, here is the full announcement of the
LibreOffice HardHacks:

 http://skyfromme.wordpress.com/2012/08/20/announcing-libreoffice-hardhacks/

Best,

Bjoern
___
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] minutes of ESC call ...

2012-08-19 Thread Bjoern Michaelsen
On Thu, Aug 16, 2012 at 04:36:17PM +0100, Michael Meeks wrote:
   + introducing 'HardHacks' (Bjoern)
   + 3.6.0 flameage
   + QA team suggested picking five top-bugs each
 two weeks in their call, need to be:
   + among MAB
   + triaged as far as possible
   + best prepared bugs: symbol traces,
 reproducible etc.
   + throw these over to the ESC
   + quest for volunteers here to dig into them.
   + want a hard-hacks query - with five hits
   + bug list into minutes for call etc. (5mins)
   + briefly discuss them each week
   + suck it see next week (Rainer)
   + Bjoern's hard-hack idea ...

Uhem, where is the AI for me to announce it. Anyway: done. ;)

Best,

Bjoern
___
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 37561] Failed installing extension: Duden-Korrektor 5.0/6.0

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

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

   What|Removed |Added

  Status Whiteboard||(target:3.5.0)
 CC||LibreOffice@bielefeldundbus
   ||s.de

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


[Libreoffice-bugs] [Bug 49202] Bundled EXTENSIONS Dictionaries broken

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

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

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|Dictionaries appear broken  |Bundled EXTENSIONS
   |upon install|Dictionaries broken
  Component|Extensions  |Installation

--- Comment #18 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-19 05:59:38 UTC ---
Hm, currently it seems only Urmas suffers from this problem, or did I miss
something?

I can't remember tho have seen any broken dictionaries.

I found some other similar bugs without mandatory relation to this bug:
Bug 37561 - Failed installing extension: Duden-Korrektor 5.0/6.0
Bug 43707 - FILEOPEN PDF brings up (ASCII) filter selector instead of opening
document

Searching Mailing lists with Google also shows many results, but none of them
really matches with Urmas' result.


@Urmas: Translated error message also is Status of this extension is unknown
in  3.6 screenshot [EN dict] ?

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


[Libreoffice-bugs] [Bug 49202] Bundled EXTENSIONS Dictionaries broken

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

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

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

--- Comment #19 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-19 05:59:49 UTC ---
I wonder what difference between Server installation and normal installation
might cause this difference

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


[Libreoffice-bugs] [Bug 53569] FILEOPEN particular text document with wrong name extension causes CRASH

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

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

   What|Removed |Added

 CC||mst...@redhat.com

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-19 06:33:29 UTC ---
@Michael:
Please set Status to ASSIGNED and add yourself to Assigned To if you accept
this Bug or forward the Bug if it's not your turf.

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


[Libreoffice-bugs] [Bug 51911] Moldovan language support missing

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

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #2 from Urmas davian...@gmail.com 2012-08-19 06:35:17 UTC ---
Not UI language. Text language for proofing tools.

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


[Libreoffice-bugs] [Bug 53698] New: Spreadsheet can't open large file

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

 Bug #: 53698
   Summary: Spreadsheet can't open large file
Classification: Unclassified
   Product: LibreOffice
   Version: unspecified
  Platform: IA64 (Itanium)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: cecinit2...@gmail.com


Situation is a lot like bug #53653
Try to open large (7 MB) excel-formatted large spreadsheet, hangs for a
long time, maybe permanently.  Impossible to stop or kill
process - to get rid of the hanging spreadsheet, a reboot
is necessary.

This file causes this problem:
https://dl.dropbox.com/u/17907527/R1b-L21_Haplotypes.zip

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


[Libreoffice-bugs] [Bug 53698] Spreadsheet can't open large file

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

michael helm cecinit2...@gmail.com changed:

   What|Removed |Added

Version|unspecified |3.5.4 release

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


[Libreoffice-bugs] [Bug 49202] Bundled EXTENSIONS Dictionaries broken

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

--- Comment #20 from Urmas davian...@gmail.com 2012-08-19 06:37:06 UTC ---
Yes, it does, as it does in each version since 3.5.something.

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


[Libreoffice-bugs] [Bug 51911] Moldovan language support missing

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

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

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-19 06:49:05 UTC ---
@Urmas 
proofing tools are dictionaries?
https://wiki.documentfoundation.org/BugTriage#Process  item 5!

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


[Libreoffice-bugs] [Bug 53687] FORMATTING: Hyphenation not working

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

Urmas davian...@gmail.com changed:

   What|Removed |Added

 OS/Version|All |Linux (All)

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


[Libreoffice-bugs] [Bug 52451] UI: FILESAVE as Text (encoded) should offer .txt as file type and name extension

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

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

   What|Removed |Added

   Severity|minor   |major
 CC||mst...@redhat.com

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-19 07:14:39 UTC ---
I think it's a bug by definition to offer FILESAVE as .csv from Writer

Worked fine until Server installation (own profile) of LibreOffice  3.5.6.2 
German UI/Locale [Build-ID: e0fbe70-5879838-a0745b0-0cd1158-638b327] on German
WIN7 Home Premium (64bit), so 3.6 regression

I think it's simply wrong to offer save as .csv for a writer text document
from Writer.

Already broken with 
- Server installation of Master LOdev 3.6.0alpha0+  – WIN7 Home Premium
(64bit) ENGLISH UI [Build ID: a502549] (tinderbox: Win-x86@6-fast, pull time
2012-05-31 07:33:55)

Still worked fine 
- MinGW build 2012-08-26 what already has new style LibO File Dialog, tho this 
  problem seems not related to new dialog.
- with Server installation of  Master LOdev 3.6.0alpha0+  – WIN7 Home Premium
(64bit) ENGLISH UI [Build ID: 475d0c5-829fc92-39746e8-206648e-fefd87]
(2012-02-14)

@Jean-Baptiste Faure
If Auto Name extension is activated that xxx.txt.csv might be more or less
expected

@Michael:
I currently see this one as a WRITER problem. 
Please set Status to ASSIGNED and add yourself to Assigned To if you accept
this Bug or forward the Bug if it's not your turf.

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


[Libreoffice-bugs] [Bug 39103] FORMATING-FILESAVE-FILEOPEN - Loose of chapters numbering

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

Cyril cgir...@free.fr changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|INVALID |

--- Comment #9 from Cyril cgir...@free.fr 2012-08-19 07:26:30 UTC ---
Sorry for this quite late response.

I'd just confirm again the bug with LibreOffice Writer 3.5.5.3 and reopen it.

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


[Libreoffice-bugs] [Bug 37964] Formula's copies become no italic after editing.

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

--- Comment #10 from Roman Eisele b...@eikota.de 2012-08-19 07:37:34 UTC ---
(In reply to comment #9)
 You should insert a formula in a document IA writer

OK, so I have tried it again with LibreOffice 3.5.6.2 (Build ID:
e0fbe70-dcba98b-297ab39-994e618-0f858f0) and with LibreOffice 3.6.1.1 (Build
ID: 4db6344), both on MacOS X 10.6.8 (Intel).

My steps:
 1) Start LibreOffice
 2) Create a new Writer document
 3) Type Text A
 4) Choose Insert  Object  Formula
 5) Type f(x)
 6) Click after the formula; the formula is italic (correct)
 7) Double-click the formula and change it, e.g. to y = f(x)
 8) Click after the formula; the formula is italic (correct)
 9) Type Text B
10) Click on the formula and press Command + C
11) Click after Text B and press Command + V, to get a copy of the formula
12) Double-click the formula and edit it, e.g. to y = x^2 + 2 x + 1
13) Click after the formula; the formula is still italic (correct)

So I can’t confirm this issue, sorry; for me, everything works as expected. (Of
course, only the variables are italic, like 'x' and 'y', but this is correct;
constants like the numbers (figures: '1', '2', etc.) and operators ('+', '='
etc.) and functions ('sin' 'cos' 'tan') should never be italic.)


@ Víctor Hugo Suárez Candal:

I really like to help you via confirming this issue, but as said above I can’t.
Can you please try to explain if you do something different; i.e., where is the
difference between my steps listed above and what you do until the formula is
no more italic?

Thank you very much again!

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


[Libreoffice-bugs] [Bug 37964] Formula's copies become no italic after editing.

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

--- Comment #11 from Roman Eisele b...@eikota.de 2012-08-19 07:40:06 UTC ---
Created attachment 65761
  -- https://bugs.freedesktop.org/attachment.cgi?id=65761
Screenshot showing how the formulas look after step 13 in my comment #10


Screenshot showing how the formulas look after step 13 in my comment #10 --
everything is correct (the variables in both formulas are italic).

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


[Libreoffice-bugs] [Bug 53485] FILEOPEN particular .emf: shown incomplete, without colored area

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

--- Comment #5 from Aurimas Fišeras auri...@members.fsf.org 2012-08-19 
08:02:44 UTC ---
Tried bibisecting 3.5 (thank you Rainer for introducing me to this wonderful
tool) - both oldest and latest 3.5 builds - no yellow dab.

However, it looks, that it is more complicated:

Ubuntu 12.10 with official LibreOffice 3.5.6.2 Build ID:
e0fbe70-5879838-a0745b0-0cd1158-638b327 - no yellow dab.
Ubuntu 12.10 with official LibreOffice 3.6.0.4 (932b512) - no yellow dab.

Windows with official LibreOffice 3.5.6.2 Build ID:
e0fbe70-5879838-a0745b0-0cd1158-638b327 - yellow dab.
Windows with official LibreOffice 3.6.0.4 (932b512) - no yellow dab.
Windows with official LibreOffice 3.6.1.1 (4db6344) - no yellow dab.

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


[Libreoffice-bugs] [Bug 51332] EDITING: Creating labels: horizontal pitch ignored

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

fs bz-freedesk...@florian-schmitt.net changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from fs bz-freedesk...@florian-schmitt.net 2012-08-19 08:06:43 
UTC ---
Tested with LO 3.6.0.4, works fine now - thanks a lot!

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


[Libreoffice-bugs] [Bug 53364] Crash cutting or dragging block

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

--- Comment #12 from Roman Eisele b...@eikota.de 2012-08-19 08:23:32 UTC ---
Created attachment 65762
  -- https://bugs.freedesktop.org/attachment.cgi?id=65762
Crash log for bug 53364, LibO 3.6.1.1 on MacOS X 10.6.8 (Intel)

REPRODUCIBLE with LibreOffice 3.6.1.1 (Build ID: 4db6344), German langpack
installed, but US English UI, on MacOS X 10.6.8 (Intel).

Just opening the file, selecting the block indicated on the screenshot
(attachment 65444) and trying to drag the block to the bottom left crashes
LibreOffice. The log file created by MacOS X for the crash (see attachment) is
mostly identical to Dan Essin’s one (crash in SvtListenerIter::GoStart() + 38).

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


[Libreoffice-bugs] [Bug 53698] FILEOPEN particular large .xlsm causes CRASH

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1
Summary|Spreadsheet can't open  |FILEOPEN particular large
   |large file  |.xlsm causes  CRASH

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-19 08:24:03 UTC ---
[Reproducible] with LibreOffice 3.6.1.1  German UI/Locale [Build-ID:  4db6344]
on German WIN7 Home Premium (64bit) 

It takes a minute or so until progress bar reaches 80%, then LibOO stops
responding. That's some better than AOOo 3.4, what stops responding ag 20%
porgress bar, but mich worse than MS Excel Viewer, what opens the document
within 10 seconds.

Parallel installation of Master LOdev  3.7.0.0.alpha0+   - WIN7 Home Premium
(64bit) ENGLISH UI [Build ID: 6900781] (tinderbox: 2008R2@20, pull time
2012-08-14 09:27:23) opens the document within several minutes.

I will still do some additional tests.

@michael helm:
Did you ever see that working better with LibO or OOo?

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


[Libreoffice-bugs] [Bug 53364] Crash cutting or dragging block

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||b...@eikota.de
 Ever Confirmed|0   |1

--- Comment #13 from Roman Eisele b...@eikota.de 2012-08-19 08:24:28 UTC ---
Changed Status according to comment #12.

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


[Libreoffice-bugs] [Bug 46024] [RFE, FORMATTING] Allow creation of floating paragraphs

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

--- Comment #2 from Nicolas Mailhot nicolas.mail...@laposte.net 2012-08-19 
08:27:29 UTC ---
Thank you

There is no 'normal' workaround, frames are hell to use except in toy documents
with a handfull of titles only

This RFE intends to make it a paragraph style property, which *is* a lot easier
to use (and change) than frames that all need manual positionning

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


[Libreoffice-bugs] [Bug 38046] False Libreoffice requires a Java runtime environment (JRE) warnings

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

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

   What|Removed |Added

  Component|UI  |Libreoffice

--- Comment #11 from Roman Eisele b...@eikota.de 2012-08-19 08:28:19 UTC ---
The component should be just general (Libreoffice).

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


[Libreoffice-bugs] [Bug 46870] [FORMATTING] Apply text styles from the formula bar

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

--- Comment #3 from Nicolas Mailhot nicolas.mail...@laposte.net 2012-08-19 
08:29:55 UTC ---
For me it's definitely a bug, didn't bother to file it since in-cell form

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


[Libreoffice-bugs] [Bug 46870] [FORMATTING] Apply text styles from the formula bar

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

--- Comment #4 from Nicolas Mailhot nicolas.mail...@laposte.net 2012-08-19 
08:30:23 UTC ---
atting seems totally broken right now

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


[Libreoffice-bugs] [Bug 46887] [EDITING] Comments can not be copy and pasted naturally

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

Nicolas Mailhot nicolas.mail...@laposte.net changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |
 Ever Confirmed|0   |1
Summary|[EDITING] Comments can not  |[EDITING] Comments can not
   |be copy and pasted  |be copy and pasted
   ||naturally

--- Comment #5 from Nicolas Mailhot nicolas.mail...@laposte.net 2012-08-19 
08:33:24 UTC ---
This is a terrible UI, thez natural way to copy and paste is to select whatever
is copied and not something else with a magic option. I'd qualify it as
workaround at best

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


[Libreoffice-bugs] [Bug 53502] Base icon and header causes XP explorer to crash

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

Boris Gilmar Terrazas Miranda bdy...@gmail.com changed:

   What|Removed |Added

Version|3.6.0.4 release |3.6.0.0.alpha1

--- Comment #2 from Boris Gilmar Terrazas Miranda bdy...@gmail.com 2012-08-19 
08:34:21 UTC ---
Cuando paso el cursor del raton sobre el icono de una Base de Datos el
Explorador de Windows inmediatamente se cuelga y envia un reporte de error del
suceso.
Puedo decir que el error tiene que ver con el encabezado Document Statistics
ya que si este encabezado es eliminado el error desaparece. No se de que manera
desaparecio este encabezado, y ahora solo me muestra las pestañas General y
Resumen.
El Idioma de mi sistema es español y ese encabezado o pestaña sale en Ingles,
he provado esto tanto en windows xp pro sp3 como en windows 7 ultimate sp1 y el
error es el mismo.
En windows xp como dije desaparecio no se de que manera esta pestaña y problema
solucionado, pero en windows 7 persiste pero no creo que sea la solucion
eliminar la pestaña.

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


[Libreoffice-bugs] [Bug 38046] False Libreoffice requires a Java runtime environment (JRE) warnings

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

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

   What|Removed |Added

 Depends on||53446

--- Comment #12 from Roman Eisele b...@eikota.de 2012-08-19 08:40:31 UTC ---
Added bug 53446 - UI: Wrong message 'JRE required' in FILEOPEN dialog.

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


[Libreoffice-bugs] [Bug 53446] UI: Wrong message 'JRE required' in FILEOPEN dialog

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

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

   What|Removed |Added

 Blocks||38046

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


[Libreoffice-bugs] [Bug 53681] LibreOffice crashes when trying to browse for a plugin

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

--- Comment #3 from Julien Nabet serval2...@yahoo.fr 2012-08-19 08:47:27 UTC 
---
Created attachment 65763
  -- https://bugs.freedesktop.org/attachment.cgi?id=65763
bt + console logs on master sources

On pc Debian x86-64 with master sources updated today, I reproduce the problem.
I attached console logs (just 1 specific trace) + bt with symbols.

I don't reproduce the problem with 3.6 sources updated yesterday but I notice
that it's very long before being able to browse.

With 3.5 sources updated yesterday, no crash and the browsing window appears
without delay.

Finally, with 3.5 and  3.6, I got this trace 4 times:
** (soffice:14849): WARNING **: Duff filter token ''

(All the tests have been made with Writer)

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


[Libreoffice-bugs] [Bug 33600] better default gradient set

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

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

   What|Removed |Added

 CC||b...@eikota.de,
   ||heinzless...@gmail.com,
   ||ke...@suse.cz

--- Comment #3 from Roman Eisele b...@eikota.de 2012-08-19 08:54:01 UTC ---
@Kendy, @Astron:

I just stumbled over this old enhancement request which still is valid. And,
what is really important: The reporter has already provided an improved set of
default gradients (see link in comment #0) which is IMHO at least much better
than the present one and also harmonizes well with the UI changes in
LibreOffice 3.6.

So please have a look at this report and at the reporter’s suggested new
default gradients. Couldn’t we integrate them (maybe with some minor changes)
into LibO 3.7?

Thank you very much!

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


[Libreoffice-bugs] [Bug 35771] Printing issues on Mac OS X (Intel)

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

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

   What|Removed |Added

 CC||b...@eikota.de
Version|3.4.0 Beta2 |3.3.1 release
  Component|Libreoffice |Writer

--- Comment #26 from Roman Eisele b...@eikota.de 2012-08-19 08:59:59 UTC ---
A Writer issue, isn’t it? Therefore adjusted the Component field.

Also reset the Version field according to comment #0. Please note that the
Version field should always contain the FIRST version in which a bug is known
to exist, and NOT the last one.

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


[Libreoffice-bugs] [Bug 53653] FILEOPEN: Attempting to open Very Large Excel Spreadsheets CRASH Calc.

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

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

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-19 09:09:15 UTC ---
Same as Bug 53698 - FILEOPEN particular large .xlsm causes CRASH?

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


[Libreoffice-bugs] [Bug 53682] Merge Insert Picture From file... and Insert Video and Audio...

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

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

   What|Removed |Added

   Severity|normal  |enhancement
 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet serval2...@yahoo.fr 2012-08-19 09:12:01 UTC 
---
So it doesn't seem a bug but rather an enhancement proposal.
astron: you may post on the forum
http://nabble.documentfoundation.org/UX-Advise-f3619688.html about this tracker

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


[Libreoffice-bugs] [Bug 53698] FILEOPEN particular large .xlsm takes 200 times longer than with EXCEL Viewer

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

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

   What|Removed |Added

   Platform|IA64 (Itanium)  |All
  Status Whiteboard||perf
   Severity|major   |normal
 CC||er...@redhat.com,
   ||kohei.yosh...@gmail.com,
   ||markus.mohrhard@googlemail.
   ||com
Summary|FILEOPEN particular large   |FILEOPEN particular large
   |.xlsm causes  CRASH |.xlsm takes 200 times
   ||longer than with EXCEL
   ||Viewer
Version|3.5.4 release   |3.6.1.1 rc

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-19 09:15:31 UTC ---
Also 3.6.6.1 will open the document after 1/2 h or so. 

There is some excessive conditional formatting in the document what might be
part of the problem? I did not test this.

I doubt that for this issue will be any action for 3.5, so Performance issue
for 3.6

@Spreadsheet Team
Please set Status to ASSIGNED and add yourself to Assigned To if you accept
this Bug (and remove others in team from CC)

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


[Libreoffice-bugs] [Bug 52022] CONFIGURATION: 'My Macros' lost after update from 3.5.5.3

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

--- Comment #8 from tedb...@daiverse.net 2012-08-19 09:19:01 UTC ---
i can confirm this happened to me too.
on mac osx 10.7.4 
upgrading to libreoffice 3.6.0.4, from i forgot what version (i always upgrade
when there is a new stable version)

when i tried to use my macros in my toolbar, i had an error message saying

the following basic script could not be found
library: Standard
module: Module1
method: mymethod
location: application

i think this is a CRITICAL problem, a 23KB Module1.xba was replaced with a
default 300Bytes Module1.xba
the toolbar icons for the macros i use were intact and not replaced.

luckily i had my backups so i restored Module1.xba and all was back to normal.
as a workaround/safety, I renamed copied all the standard module1.xba to a new
library/module afterwards.

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


[Libreoffice-bugs] [Bug 50681] : Previeuw scheet 2, 3, ..... dont work.

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

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet serval2...@yahoo.fr 2012-08-19 09:32:52 UTC 
---
translation correction:
Current behavior: doesn't show preview
Expected behavior: shows the preview of the current sheet

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


[Libreoffice-bugs] [Bug 41174] EPS images in documents get corrupt when exporting to PDF

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

Milan Bouchet-Valat nalimi...@club.fr changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|INVALID |

--- Comment #7 from Milan Bouchet-Valat nalimi...@club.fr 2012-08-19 09:35:21 
UTC ---
Confirmed with attached testcase and LO 3.5.6 on Mac OS X 10.5.

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


[Libreoffice-bugs] [Bug 49145] EDITING: Form-Wizard should propose listfields for foreign keys in a table

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

--- Comment #9 from Alex Thurgood ipla...@yahoo.co.uk 2012-08-19 09:44:37 UTC 
---
(In reply to comment #6)


 In fact I wasn't thinking of the form-wizard. I was thinking of the plain
 grid-like table data editor: I was thinking of enhancing it to become an
 intelligent grid, containing listboxes in some columns, plain text boxes in
 other columns, ...and in the future perhaps also dropdown-calendar boxes for
 date fields.


Something like what is possible in MS Access or FMPro then ? 
In other words, having data aware controls in the table view or the grid
control. 

I know that this has already been requested in the past (I would need to look
up the bug number(s)), certainly at least for OOo, or on the previous OOo dba
mailing lists, and I seem to recall that Lionel Mamane, the main base dev of
the LO project had also considered that as one possible enhancement to the Base
feature set.

However, I would imagine that that would be no mean feat, as it would probably
require extending the current model-view-control paradigm. 

I'm not utterly convinced that this would be confusing for users, since other
db UI programs seem to do OK out of having such functionality, and it is
hypocritical of us to say that we would be blurring the lines between data
presentation/maniuplation via the form paradigm and simple data display via the
table paradigm, when a user can actually enter data directly into the table
anyway. If one were to be really strict about the separative approach, a user
would just be able to create a table by hand or with the wizard, and then BE
OBLIGED to create a form to enter data into it. At the moment, that simply
isn't the case, and certainly doesn't represent what happens in other
equivalent products. 

I would say that this is a valid RFE, but IMO it is a duplicate of one that is
already somewhere in the system or at least has been discussed on the dev list
(or IRC) previously.


Alex

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


[Libreoffice-bugs] [Bug 36448] VIEWING On-screen text antialiasing is inferior to Apple's Pages app

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

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

   What|Removed |Added

 AssignedTo|d...@yost.com   |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #21 from Roman Eisele b...@eikota.de 2012-08-19 09:54:17 UTC ---
(Reset assignee to default -- it does not make much sense to assign a bug
report to the original reporter, when it is no more in NEEDINFO status.)

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


[Libreoffice-bugs] [Bug 53636] : Problem with language pack install on OSX

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

 OS/Version|All |Mac OS X (All)
 CC||b...@eikota.de,
   ||ipla...@yahoo.co.uk

--- Comment #1 from Alex Thurgood ipla...@yahoo.co.uk 2012-08-19 09:54:52 UTC 
---
Changing to OSX for moment, as no one else on other platforms seems to be
reporting a problem.

@Roman : I haven't tested 3.6.0.4 with a French language pack, did you notice
any problems with your German one ?


Alex

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


[Libreoffice-bugs] [Bug 53700] New: EDITING: Cut text disabled for TOC

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

 Bug #: 53700
   Summary: EDITING: Cut text disabled for TOC
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: fengl...@fastmail.fm


Problem description: 
Cut text is disabled when a TOC is selected.

Sometimes you want to cut all text, and I don't see why you shouldn't be able
to. Even when looking at a TOC isolated, one should be able to cut it, perhaps
one is moving it. Sometimes cut  paste is also used as a way to try out
things, which is in a reversible manner.

Steps to reproduce:
1. Create a paragraph
2. Create a toc
3. Select all.
4. Cut Text is disabled.

Current behavior:

Expected behavior:

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/537.1
(KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1

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


[Libreoffice-bugs] [Bug 53628] EDITING: slide sorter does not work on OSX

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

 CC||ipla...@yahoo.co.uk

--- Comment #1 from Alex Thurgood ipla...@yahoo.co.uk 2012-08-19 09:57:02 UTC 
---
Will check later today or tomorrow to see if I can reproduce.

Alex

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


[Libreoffice-bugs] [Bug 53701] New: EDITING: Incorrect auto completion is made

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

 Bug #: 53701
   Summary: EDITING: Incorrect auto completion is made
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: fengl...@fastmail.fm


Problem description: 

Sometimes when a word completion suggestion is done, it is appended with
irrelevant. It can be like this: the user writes subj and libre office auto
completes with subjectivity,religion even though that has never occurred in
the text (however, the word religion has). Perhaps it's a string pool without
terminated strings or something like that.

Steps to reproduce:

I don't have a way to reproduce this. I'll comment if I find a way. It occurs
often however.

1. 
2. 
3. 

Current behavior:

Expected behavior:

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/537.1
(KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1

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


[Libreoffice-bugs] [Bug 53703] New: EDITING: Justification for selection propagates into paragraph style

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

 Bug #: 53703
   Summary: EDITING: Justification for selection propagates into
paragraph style
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: fengl...@fastmail.fm


Problem description: 

Sometimes when changing the justification of a selection of text, it propagates
into the paragraph style. I don't see a reason for this, and it's rather
disastrous and annoying to work with.

Steps to reproduce:
I don't have successful steps for reproducing, but it's something in the
direction of:

1. Alter the paragraph style to Justified
2. Select some text in the document.
3. Change it to Left justified.
4. The whole paragraph style is now Left justified, when viewed in the style
dialog as well as when viewed in the document.

Current behavior:

Expected behavior:

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/537.1
(KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1

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


[Libreoffice-bugs] [Bug 53628] EDITING: slide sorter does not work on OSX

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE

--- Comment #2 from Alex Thurgood ipla...@yahoo.co.uk 2012-08-19 10:08:57 UTC 
---


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

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


[Libreoffice-bugs] [Bug 51023] EDITING: Drag-and-drop slide always moves slide to first position, leading to data corruption and sometimes CRASH

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

Alex Thurgood ipla...@yahoo.co.uk changed:

   What|Removed |Added

 CC||theom...@gmail.com

--- Comment #24 from Alex Thurgood ipla...@yahoo.co.uk 2012-08-19 10:08:57 
UTC ---
*** Bug 53628 has been marked as a duplicate of this bug. ***

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


  1   2   3   >