[Libreoffice-commits] core.git: 4 commits - sc/source sd/source slideshow/source xmloff/source

2013-03-03 Thread Markus Mohrhard
 sc/source/core/data/dociter.cxx|2 
+-
 sd/source/filter/eppt/epptso.cxx   |2 
+-
 slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx |2 
+-
 xmloff/source/chart/SchXMLPlotAreaContext.cxx  |8 

 4 files changed, 11 insertions(+), 3 deletions(-)

New commits:
commit bf0e0f88563377ee6f2db26970d3199c08acaa38
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Mar 3 09:08:01 2013 +0100

and one more fix for error bar import, related fdo#60083

Change-Id: I76ff4849137aaad175b3c95dce6644d612871201

diff --git a/xmloff/source/chart/SchXMLPlotAreaContext.cxx 
b/xmloff/source/chart/SchXMLPlotAreaContext.cxx
index a587fde..8b9bc0e 100644
--- a/xmloff/source/chart/SchXMLPlotAreaContext.cxx
+++ b/xmloff/source/chart/SchXMLPlotAreaContext.cxx
@@ -1110,6 +1110,14 @@ void SetErrorBarPropertiesFromStyleName( const OUString 
aStyleName, uno::Refere
 aAny = aNegRange;
 }
 
+aAny = SchXMLTools::getPropertyFromContext(PercentageError,
+pSeriesStyleContext, pStylesCtxt);
+if( aAny.hasValue()  aBarStyle == 
com::sun::star::chart::ErrorBarStyle::RELATIVE )
+{
+xBarProp-setPropertyValue(PositiveError, aAny);
+xBarProp-setPropertyValue(NegativeError, aAny);
+}
+
 switch(aBarStyle)
 {
 case com::sun::star::chart::ErrorBarStyle::ERROR_MARGIN:
commit 969a8c566dc23e1a2c962e0d8e96577c86a5940f
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Mar 3 06:41:03 2013 +0100

coverity#982270: fix copypaste error

Change-Id: I845a858935cf00ff3b07dbfead8e827820329309

diff --git 
a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx 
b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx
index e1260d3..2446fb3 100644
--- a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx
+++ b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx
@@ -1689,7 +1689,7 @@ void OGLTransitionerImpl::disposeTextures()
 }
 if( !mbUseEnteringPixmap ) {
 glDeleteTextures(1,GLenteringSlide);
-GLleavingSlide = 0;
+GLenteringSlide = 0;
 }
 
 mbUseLeavingPixmap = false;
commit 11e1b25357b38ec1065145cde125ec6b660d80cc
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Mar 3 06:36:22 2013 +0100

coverity#735384: fix copypaste error

Change-Id: If9ecdee058780e7ae518aefeebb74a6d62c4b6f9

diff --git a/sd/source/filter/eppt/epptso.cxx b/sd/source/filter/eppt/epptso.cxx
index ff20478..e82cc5d 100644
--- a/sd/source/filter/eppt/epptso.cxx
+++ b/sd/source/filter/eppt/epptso.cxx
@@ -3666,7 +3666,7 @@ void PPTWriter::ImplCreateTable( uno::Reference 
drawing::XShape  rXShape, Esc
 for ( sal_Int32 nRowSpan = 1; nRowSpan  
xCell-getRowSpan(); nRowSpan++ )
 {
 sal_uInt32 nR = nRowSpan + nRow;
-if ( nR  aColumns.size() )
+if ( nR  aRows.size() )
 nBottom += aRows[ nR ].second;
 else
 nBottom = maRect.Bottom();
commit a20116d42ecc90ae05fa1e2df542f815d93ab4c8
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Mar 3 06:31:56 2013 +0100

coverity#735378: fix copypaste error

Change-Id: Id5d7939ba8020cd966d1ff2678186ad912325a78

diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index 9d6098d..36c8092 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -63,7 +63,7 @@ ScDocumentIterator::ScDocumentIterator( ScDocument* pDocument,
 SCTAB nDocMaxTab = pDoc-GetTableCount() - 1;
 PutInOrder( nStartTab, nEndTab );
 if (!ValidTab(nStartTab) || nStartTab  nDocMaxTab ) nStartTab = 
nDocMaxTab;
-if (!ValidTab(nEndTab) || nStartTab  nDocMaxTab ) nEndTab = nDocMaxTab;
+if (!ValidTab(nEndTab) || nEndTab  nDocMaxTab ) nEndTab = nDocMaxTab;
 
 pDefPattern = pDoc-GetDefPattern();
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


minor.mk.in

2013-03-03 Thread Jonathan Aquilina
Hey guys I know the minor.mk file had been removed but now when I try and do
a dev install even with a make clean and fresh compile I get a make: *** no
reul to make target '/home/jaquilina/core/solenv/inc/minor.mk.in, needed by
/home/jaquilina/core/config_host.mk. Stop

 

Is it save to remove the minor.mk.in and remove it from the config_host.mk?

 

Regards

Jonathan

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


[PATCH] Simplify and speed-up logic for copying data

2013-03-03 Thread Christophe JAILLET (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2523

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/23/2523/1

Simplify and speed-up logic for copying data

Change-Id: I790ef30075d74c6bd7a049750dfb555d36d77542
Signed-off-by: jailletc36 christophe.jail...@wanadoo.fr
---
M autodoc/source/parser_i/tokens/tkpstam2.cxx
1 file changed, 2 insertions(+), 8 deletions(-)



diff --git a/autodoc/source/parser_i/tokens/tkpstam2.cxx 
b/autodoc/source/parser_i/tokens/tkpstam2.cxx
index 0cb3519..3139a26 100644
--- a/autodoc/source/parser_i/tokens/tkpstam2.cxx
+++ b/autodoc/source/parser_i/tokens/tkpstam2.cxx
@@ -117,16 +117,10 @@
 StateMachin2::ResizeStati()
 {
 intt nNewSize = nStatiSpace + C_nStatuslistResizeValue;
-intt i = 0;
 StatusList pNewStati = new StmStatu2*[nNewSize];
 
-for ( ; i  nNrofStati; i++)
-{
-pNewStati[i] = pStati[i];
-}
-memset( pNewStati+i,
-0,
-(nNewSize-i) * sizeof(StmStatu2*) );
+memcpy( pNewStati, pStati, nNrofStati * sizeof(StmStatu2*) );
+memset( pNewStati+i, 0, (nNewSize-nNrofStati) * sizeof(StmStatu2*) );
 
 delete [] pStati;
 pStati = pNewStati;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I790ef30075d74c6bd7a049750dfb555d36d77542
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christophe JAILLET christophe.jail...@wanadoo.fr

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


Re: build failure: missing minor.mk

2013-03-03 Thread Matúš Kukan
On 3 March 2013 01:52, Terrence Enger ten...@iseries-guru.com wrote:
 I recently updated from the git repository.  My next `make fetch`
 failed with message .,,

 make: *** No rule to make target 
 `/home/terry/lo_hacking/git/libo2/solenv/inc/minor.mk.in', needed by 
 `/home/terry/lo_hacking/git/libo2/config_host.mk'.  Stop.

 Suspecting commit ee0dd3 remove minor.mk, I checked out out the
 previous commit.  My build is proceding apace.


 This is a rebuild; I did not (yet) have to try `make clean`.

You don't need to.
Everybody will face this error because they have old Makefile generated.
Just do ./autogen.sh to generate a new Makefile.

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


Re: minor.mk.in

2013-03-03 Thread Matúš Kukan
On 3 March 2013 09:34, Jonathan Aquilina eagles051...@gmail.com wrote:
 Hey guys I know the minor.mk file had been removed but now when I try and do
 a dev install even with a make clean and fresh compile I get a make: *** no
 reul to make target ‘/home/jaquilina/core/solenv/inc/minor.mk.in, needed by
 /home/jaquilina/core/config_host.mk. Stop



 Is it save to remove the minor.mk.in and remove it from the config_host.mk?

It's safe to run ./autogen.sh

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


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

2013-03-03 Thread Chris
 vcl/source/app/svapp.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9657161c2a55cc9456e37f7220c5fdecae1829bb
Author: Chris chris.sherloc...@gmail.com
Date:   Sun Mar 3 17:58:00 2013 +1100

Translate German DBG_ASSERT - AppFileName should be set to something

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

diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index fe34011..6db1ec6 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -311,7 +311,7 @@ XubString Application::GetCommandLineParam( sal_uInt16 
nParam )
 const XubString Application::GetAppFileName()
 {
 ImplSVData* pSVData = ImplGetSVData();
-DBG_ASSERT( pSVData-maAppData.mpAppFileName, AppFileName vor SVMain ?! 
);
+DBG_ASSERT( pSVData-maAppData.mpAppFileName, AppFileName should be set 
to something after SVMain! );
 if ( pSVData-maAppData.mpAppFileName )
 return *pSVData-maAppData.mpAppFileName;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Translate German DBG_ASSERT - AppFileName should be set to s...

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/2522

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Idf0c1c90ff367285292097980f56ca9502e5ef33
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com
Gerrit-Reviewer: Thomas Arnhold tho...@arnhold.org

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


[ABANDONED] fdo#38838, undoed my changes in basdoc

2013-03-03 Thread via Code Review
Ádám Király has abandoned this change.

Change subject: fdo#38838, undoed my changes in basdoc
..


Patch Set 1: Abandoned

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: Icbf45c538925881b49dbd6eccadde4c43854cd7f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ádám Király kiraly.adam.cs...@gmail.com
Gerrit-Reviewer: Eike Rathke er...@redhat.com

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


[Libreoffice-commits] core.git: 2 commits - comphelper/source connectivity/source cui/source filter/source framework/source lotuswordpro/source sfx2/source svtools/source svx/source unodevtools/source

2013-03-03 Thread Thomas Arnhold
 comphelper/source/misc/accessiblewrapper.cxx|7 
++---
 connectivity/source/commontools/TColumnsHelper.cxx  |1 
 connectivity/source/commontools/TTableHelper.cxx|1 
 connectivity/source/commontools/dbtools2.cxx|2 -
 connectivity/source/drivers/file/fcomp.cxx  |1 
 connectivity/source/drivers/hsqldb/HTable.cxx   |3 --
 connectivity/source/drivers/hsqldb/HViews.cxx   |1 
 connectivity/source/drivers/mysql/YTable.cxx|1 
 connectivity/source/drivers/mysql/YViews.cxx|1 
 connectivity/source/drivers/odbcbase/ODatabaseMetaDataResultSet.cxx |8 
++---
 cui/source/tabpages/tpline.cxx  |1 
 filter/source/xsltdialog/typedetectionexport.cxx|2 -
 filter/source/xsltdialog/xmlfilterjar.cxx   |2 -
 filter/source/xsltdialog/xmlfiltertabpagexslt.cxx   |6 ++--
 framework/source/uielement/fontsizemenucontroller.cxx   |1 
 lotuswordpro/source/filter/lwpsdwrect.cxx   |2 -
 sfx2/source/appl/appserv.cxx|1 
 svtools/source/control/stdmenu.cxx  |1 
 svx/source/customshapes/EnhancedCustomShapeFontWork.cxx |6 
 svx/source/dialog/imapwnd.cxx   |1 
 svx/source/form/fmexpl.cxx  |3 --
 svx/source/form/formcontroller.cxx  |2 -
 unodevtools/source/skeletonmaker/cpptypemaker.cxx   |1 
 unodevtools/source/skeletonmaker/javatypemaker.cxx  |   14 
--
 unodevtools/source/unodevtools/typeblob.cxx |1 
 writerperfect/source/draw/CDRImportFilter.cxx   |1 
 writerperfect/source/draw/CMXImportFilter.cxx   |1 
 writerperfect/source/draw/MSPUBImportFilter.cxx |1 
 writerperfect/source/draw/VisioImportFilter.cxx |1 
 writerperfect/source/writer/MSWorksImportFilter.cxx |2 -
 writerperfect/source/writer/WordPerfectImportFilter.cxx |2 -
 31 files changed, 13 insertions(+), 65 deletions(-)

New commits:
commit 763e94b584411fd856253a06c869a82702f8c89d
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun Mar 3 11:52:14 2013 +0100

protocol shttp is not defined yet

Change-Id: I67678f8a16d051427a7c36f3a46d46f296109e3b

diff --git a/filter/source/xsltdialog/typedetectionexport.cxx 
b/filter/source/xsltdialog/typedetectionexport.cxx
index bcc5475..ac71184 100644
--- a/filter/source/xsltdialog/typedetectionexport.cxx
+++ b/filter/source/xsltdialog/typedetectionexport.cxx
@@ -46,7 +46,7 @@ static OUString createRelativeURL( const OUString 
rFilterName, const OUString
 {
 if( !rURL.isEmpty() 
 (rURL.compareToAscii( RTL_CONSTASCII_STRINGPARAM(http:) ) != 0) 
-(rURL.compareToAscii( RTL_CONSTASCII_STRINGPARAM(shttp:) ) != 0) 
+(rURL.compareToAscii( RTL_CONSTASCII_STRINGPARAM(https:) ) != 0) 
 (rURL.compareToAscii( RTL_CONSTASCII_STRINGPARAM(jar:) ) != 0) 
 (rURL.compareToAscii( RTL_CONSTASCII_STRINGPARAM(ftp:) ) != 0))
 {
diff --git a/filter/source/xsltdialog/xmlfilterjar.cxx 
b/filter/source/xsltdialog/xmlfilterjar.cxx
index 1defb2e..8bf0f71 100644
--- a/filter/source/xsltdialog/xmlfilterjar.cxx
+++ b/filter/source/xsltdialog/xmlfilterjar.cxx
@@ -129,7 +129,7 @@ void XMLFilterJarHelper::addFile( Reference XInterface  
xRootFolder, Reference
 {
 if( !rSourceFile.isEmpty() 
 (rSourceFile.compareToAscii( RTL_CONSTASCII_STRINGPARAM(http:) ) != 
0) 
-(rSourceFile.compareToAscii( RTL_CONSTASCII_STRINGPARAM(shttp:) ) != 
0) 
+(rSourceFile.compareToAscii( RTL_CONSTASCII_STRINGPARAM(https:) ) != 
0) 
 (rSourceFile.compareToAscii( RTL_CONSTASCII_STRINGPARAM(jar:) ) != 
0) 
 (rSourceFile.compareToAscii( RTL_CONSTASCII_STRINGPARAM(ftp:) ) != 
0))
 {
diff --git a/filter/source/xsltdialog/xmlfiltertabpagexslt.cxx 
b/filter/source/xsltdialog/xmlfiltertabpagexslt.cxx
index 25d19be..f07c497 100644
--- a/filter/source/xsltdialog/xmlfiltertabpagexslt.cxx
+++ b/filter/source/xsltdialog/xmlfiltertabpagexslt.cxx
@@ -57,7 +57,7 @@ XMLFilterTabPageXSLT::XMLFilterTabPageXSLT( Window* pParent, 
ResMgr rResMgr, co
 maCBNeedsXSLT2( this, ResId (CB_XML_NEEDS_XSLT2, rResMgr ) ),
 
 sHTTPSchema( http://; ),
-sSHTTPSchema( shttp://; ),
+sSHTTPSchema( https://; ),
 sFILESchema( file:// ),
 sFTPSchema( ftp://; ),
 sInstPath( $(prog)/ )
@@ -128,7 +128,7 @@ void XMLFilterTabPageXSLT::SetURL( SvtURLBox rURLBox, 
const OUString rURL )
 rURLBox.SetText( aPath );
 

[Libreoffice-commits] core.git: 2 commits - chart2/source connectivity/inc svtools/source toolkit/source vcl/source xmloff/dtd

2013-03-03 Thread Bjoern Michaelsen
 chart2/source/controller/main/ChartController_Window.cxx |2 +-
 connectivity/inc/connectivity/parameters.hxx |2 +-
 connectivity/inc/connectivity/paramwrapper.hxx   |2 +-
 svtools/source/table/tablecontrol_impl.cxx   |2 +-
 toolkit/source/controls/grid/gridcontrol.cxx |2 +-
 vcl/source/window/splitwin.cxx   |2 +-
 xmloff/dtd/drawing.mod   |2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit fa878018dec1ce9fd3589066128d0647d3664465
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Sun Mar 3 12:45:21 2013 +0100

fdo#60724: fix resizeable - resizable misspelling found by lintian

Change-Id: I07488c02277292f96c08be6155edf0158976cc0b

diff --git a/chart2/source/controller/main/ChartController_Window.cxx 
b/chart2/source/controller/main/ChartController_Window.cxx
index 193f80a..a104d13 100644
--- a/chart2/source/controller/main/ChartController_Window.cxx
+++ b/chart2/source/controller/main/ChartController_Window.cxx
@@ -649,7 +649,7 @@ void ChartController::execute_MouseButtonDown( const 
MouseEvent rMEvt )
 return;//double click is handled further in mousebutton up
 
 SdrHdl* pHitSelectionHdl = 0;
-//switch from move to resize if handle is hit on a resizeable object
+//switch from move to resize if handle is hit on a resizable object
 if( m_aSelection.isResizeableObjectSelected() )
 pHitSelectionHdl = pDrawViewWrapper-PickHandle( aMPos );
 //only change selection if no selection handles are hit
diff --git a/svtools/source/table/tablecontrol_impl.cxx 
b/svtools/source/table/tablecontrol_impl.cxx
index 99f05e5..7e4e5cd 100644
--- a/svtools/source/table/tablecontrol_impl.cxx
+++ b/svtools/source/table/tablecontrol_impl.cxx
@@ -966,7 +966,7 @@ namespace svt { namespace table
 ::sal_Int32 flexibility = pColumn-getFlexibility();
 OSL_ENSURE( flexibility = 0, 
TableControl_Impl::impl_ni_calculateColumnWidths: a column's flexibility 
should be non-negative. );
 if  (   ( flexibility  0 ) // 
normalization
-||  ( !pColumn-isResizable() ) // 
column not resizeable = no auto-resize
+||  ( !pColumn-isResizable() ) // 
column not resizable = no auto-resize
 ||  ( col = i_assumeInflexibleColumnsUpToIncluding )   // 
column shall be treated as inflexible = respec this
 )
 flexibility = 0;
diff --git a/toolkit/source/controls/grid/gridcontrol.cxx 
b/toolkit/source/controls/grid/gridcontrol.cxx
index 22bc2d7..bf16959 100644
--- a/toolkit/source/controls/grid/gridcontrol.cxx
+++ b/toolkit/source/controls/grid/gridcontrol.cxx
@@ -80,7 +80,7 @@ UnoGridModel::UnoGridModel( const 
::com::sun::star::uno::Reference ::com::sun::
 ImplRegisterProperty( BASEPROPERTY_HELPTEXT );
 ImplRegisterProperty( BASEPROPERTY_HELPURL );
 ImplRegisterProperty( BASEPROPERTY_PRINTABLE );
-ImplRegisterProperty( BASEPROPERTY_SIZEABLE ); // resizeable
+ImplRegisterProperty( BASEPROPERTY_SIZEABLE ); // resizable
 ImplRegisterProperty( BASEPROPERTY_HSCROLL );
 ImplRegisterProperty( BASEPROPERTY_VSCROLL );
 ImplRegisterProperty( BASEPROPERTY_TABSTOP );
diff --git a/vcl/source/window/splitwin.cxx b/vcl/source/window/splitwin.cxx
index e3eb5c1..9805e5a 100644
--- a/vcl/source/window/splitwin.cxx
+++ b/vcl/source/window/splitwin.cxx
@@ -1193,7 +1193,7 @@ sal_uInt16 SplitWindow::ImplTestSplit( ImplSplitSet* 
pSet, const Point rPos,
 sal_uInt16 SplitWindow::ImplTestSplit( SplitWindow* pWindow, const Point rPos,
long rMouseOff, ImplSplitSet** ppFoundSet, 
sal_uInt16 rFoundPos )
 {
-// Resizeable SplitWindow muss anders behandelt werden
+// Resizable SplitWindow muss anders behandelt werden
 if ( pWindow-mnWinStyle  WB_SIZEABLE )
 {
 longnTPos;
commit 9a6ab1568d2c5bad7d546433d1bc62829050aa37
Author: Vojta Koukal koukal.vo...@gmail.com
Date:   Sun Mar 3 12:37:19 2013 +0100

fdo#60724: fix paramater - parameter misspelling found by lintian

Change-Id: I6c09767211817533494df34744a265cf28a76105

diff --git a/connectivity/inc/connectivity/parameters.hxx 
b/connectivity/inc/connectivity/parameters.hxx
index e81e39f..648f8df 100644
--- a/connectivity/inc/connectivity/parameters.hxx
+++ b/connectivity/inc/connectivity/parameters.hxx
@@ -64,7 +64,7 @@ namespace dbtools
 name is a column name, so an implicit parameter had to be 
generated for it
 */
 eLinkedByColumnName,
-/** parameters which are filled externally (i.e. by 
XParamaters::setXXX, or by the parameter listeners)
+/** parameters which are filled externally (i.e. by 
XParameters::setXXX, or by the parameter listeners)
 */
   

[Libreoffice-commits] core.git: instsetoo_native/util sysui/CustomTarget_share.mk sysui/desktop

2013-03-03 Thread Luboš Luňák
 instsetoo_native/util/openoffice.lst.in  |   18 +-
 sysui/CustomTarget_share.mk  |6 +++---
 sysui/desktop/freedesktop/freedesktop-menus.spec |2 +-
 sysui/desktop/mandriva/mandriva-menus.spec   |2 +-
 sysui/desktop/share/create_tree.sh   |4 ++--
 sysui/desktop/suse/suse-menus.spec   |2 +-
 6 files changed, 17 insertions(+), 17 deletions(-)

New commits:
commit c1f8861c12e2f66592330a2926db840ede16ea8f
Author: Luboš Luňák l.lu...@suse.cz
Date:   Sun Mar 3 13:59:34 2013 +0100

fixes for renaming LOdev builds to LibreOfficeDev

Follow-up to 16826147188bd78d67b97863226f903cc24add71 .

diff --git a/instsetoo_native/util/openoffice.lst.in 
b/instsetoo_native/util/openoffice.lst.in
index 48298d8..f2076cc 100644
--- a/instsetoo_native/util/openoffice.lst.in
+++ b/instsetoo_native/util/openoffice.lst.in
@@ -96,7 +96,7 @@ LibreOffice_Dev
 PRODUCTNAME LibreOfficeDev
 PRODUCTVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
 PRODUCTEXTENSION 
.@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@
-UNIXBASISROOTNAME lodev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
+UNIXBASISROOTNAME 
libreofficedev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
 POSTVERSIONEXTENSION
 BUNDLEIDENTIFIER @MACOSX_BUNDLE_IDENTIFIER@
 BRANDPACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
@@ -106,8 +106,8 @@ LibreOffice_Dev
 BASEPRODUCTVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
 DEVELOPMENTPRODUCT 1
 BASISPACKAGEPREFIX lodevbasis
-UREPACKAGEPREFIX lodev
-SOLSUREPACKAGEPREFIX lodev
+UREPACKAGEPREFIX libreofficedev
+SOLSUREPACKAGEPREFIX libreofficedev
 REGISTRYLAYERNAME LayerDev
 UPDATEURL http://update.libreoffice.org/check.php
 ADD_INCLUDE_FILES cliureversion.mk,clioootypesversion.mk
@@ -193,15 +193,15 @@ LibreOffice_Dev_SDK
 PRODUCTNAME LibreOfficeDev
 PRODUCTVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
 PRODUCTEXTENSION 
.@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@
-UNIXBASISROOTNAME lodev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
+UNIXBASISROOTNAME 
libreofficedev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
 POSTVERSIONEXTENSION SDK
 BUNDLEIDENTIFIER @MACOSX_BUNDLE_IDENTIFIER@.SDK
 BRANDPACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
 PACKAGEVERSION 
@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@.@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@
 PACKAGEREVISION {buildid}
 BASISPACKAGEPREFIX lodevbasis
-UREPACKAGEPREFIX lodev
-SOLSUREPACKAGEPREFIX lodev
+UREPACKAGEPREFIX libreofficedev
+SOLSUREPACKAGEPREFIX libreofficedev
 REGISTRYLAYERNAME LayerDev
 DEVELOPMENTPRODUCT 1
 PACK_INSTALLED 1
@@ -277,15 +277,15 @@ LibreOffice_Dev_Test
 PRODUCTNAME LibreOfficeDev
 PRODUCTVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
 PRODUCTEXTENSION 
.@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@
-UNIXBASISROOTNAME lodev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
+UNIXBASISROOTNAME 
libreofficedev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
 POSTVERSIONEXTENSION TEST
 BUNDLEIDENTIFIER @MACOSX_BUNDLE_IDENTIFIER@.Test
 BRANDPACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@
 PACKAGEVERSION 
@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@.@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@
 PACKAGEREVISION {buildid}
 BASISPACKAGEPREFIX lodevbasis
-UREPACKAGEPREFIX lodev
-SOLSUREPACKAGEPREFIX lodev
+UREPACKAGEPREFIX libreofficedev
+SOLSUREPACKAGEPREFIX libreofficedev
 REGISTRYLAYERNAME LayerDev
 DEVELOPMENTPRODUCT 1
 PACK_INSTALLED 1
diff --git a/sysui/CustomTarget_share.mk b/sysui/CustomTarget_share.mk
index 827d849..7a43a0e 100644
--- a/sysui/CustomTarget_share.mk
+++ b/sysui/CustomTarget_share.mk
@@ -102,14 +102,14 @@ ULFS := documents.ulf \
launcher_name.ulf
 
 
-PRODUCTLIST := libreoffice lodev oxygenoffice
+PRODUCTLIST := libreoffice libreofficedev oxygenoffice
 PKGVERSION := $(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR).$(LIBO_VERSION_MICRO)
 PKGVERSIONSHORT := $(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR)
 PRODUCTNAME.libreoffice := LibreOffice
-PRODUCTNAME.lodev := LibreOfficeDev
+PRODUCTNAME.libreofficeodev := LibreOfficeDev
 PRODUCTNAME.oxygenoffice := OxygenOffice
 UNIXFILENAME.libreoffice := $(PRODUCTNAME.libreoffice)$(PRODUCTVERSION)
-UNIXFILENAME.lodev := $(PRODUCTNAME.lodev)$(PRODUCTVERSION)
+UNIXFILENAME.libreofficedev := 

[PATCH] Translated German comment, other comments updated for clarit...

2013-03-03 Thread Chris Sherlock (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2525

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/25/2525/1

Translated German comment, other comments updated for clarity

Change-Id: I6db4f5dd66b928c9424cefebec3016e5bf5e8c49
---
M vcl/source/app/svapp.cxx
1 file changed, 4 insertions(+), 4 deletions(-)



diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 6db1ec6..3758a85 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -237,7 +237,7 @@
 {
 WorkWindow* pAppWin = ImplGetSVData()-maWinData.mpAppWin;
 
-// Aufruf des Close-Handlers des Applikationsfensters
+// call the close handler of the application window
 if ( pAppWin )
 return pAppWin-Close();
 else
@@ -1082,7 +1082,7 @@
 {
 ImplSVData* pSVData = ImplGetSVData();
 
-// create if not existing
+// create if does not exist
 if ( !pSVData-maAppData.mpIdleMgr )
 pSVData-maAppData.mpIdleMgr = new ImplIdleMgr;
 
@@ -1219,7 +1219,7 @@
 {
 ImplSVData* pSVData = ImplGetSVData();
 
-// create if not existing
+// create if does not exist
 if ( !pSVData-maAppData.mpAppName )
 pSVData-maAppData.mpAppName = new XubString( rUniqueName );
 else
@@ -1243,7 +1243,7 @@
 {
 ImplSVData* pSVData = ImplGetSVData();
 
-// create if not existing
+// create if does not exist
 if ( !pSVData-maAppData.mpDisplayName )
 pSVData-maAppData.mpDisplayName = new OUString( rName );
 else

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6db4f5dd66b928c9424cefebec3016e5bf5e8c49
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com

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


[PATCH] No need for commented out code.

2013-03-03 Thread Chris Sherlock (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2528

To pull it, you can do:

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

No need for commented out code.

Change-Id: I8a8b7735574d712aea2a3f2b42941669b2db00b8
---
M dictionaries
M helpcontent2
M vcl/source/app/svapp.cxx
3 files changed, 1 insertion(+), 7 deletions(-)



diff --git a/dictionaries b/dictionaries
index 7e42390..8669b40 16
--- a/dictionaries
+++ b/dictionaries
-Subproject commit 7e4239060266bf238b5e6692ed10d548c37572d5
+Subproject commit 8669b40a8835c007682507d1efd06f7f24452226
diff --git a/helpcontent2 b/helpcontent2
index b1cfd2b..7dded42 16
--- a/helpcontent2
+++ b/helpcontent2
-Subproject commit b1cfd2b985bedae8929c2d798815b88e630e7a28
+Subproject commit 7dded42472968783f5c90a0aa9e497ee3dfb247f
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 6db1ec6..2e160d2 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1493,13 +1493,7 @@
 return NULL;
 }
 
-// MAV: before the implementation has used only decorated 
windows,
-//  but it is not true in case of ActiveX or plugin 
scenario,
-//  so this check is commented out
-// if( pWin-mpWindowImpl-mpFrameWindow-GetStyle()  
(WB_MOVEABLE | WB_SIZEABLE) )
-return pWin-mpWindowImpl-mpFrameWindow-ImplGetWindow();
-// else
-//return NULL;
+return pWin-mpWindowImpl-mpFrameWindow-ImplGetWindow();
 }
 }
 // last active application frame

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8a8b7735574d712aea2a3f2b42941669b2db00b8
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com

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


[PATCH] Translate German comments to English in svmain.cxx

2013-03-03 Thread Chris Sherlock (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2529

To pull it, you can do:

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

Translate German comments to English in svmain.cxx

Change-Id: I4f27a839c6403c08983f0366402c852b0710029c
---
M vcl/source/app/svmain.cxx
1 file changed, 4 insertions(+), 4 deletions(-)



diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx
index c89a04e..32d627b 100644
--- a/vcl/source/app/svmain.cxx
+++ b/vcl/source/app/svmain.cxx
@@ -261,13 +261,13 @@
 
 ImplSVData* pSVData = ImplGetSVData();
 
-// SV bei den Tools anmelden
+// register with tools
 InitTools();
 
-// Main-Thread-Id merken
+// set Main-Thread-Id to the current thread
 pSVData-mnMainThreadId = ::osl::Thread::getCurrentIdentifier();
 
-// Sal initialisieren
+// Initialize the Sal 
 RTL_LOGFILE_CONTEXT_TRACE( aLog, { ::CreateSalInstance );
 pSVData-mpDefInst = CreateSalInstance();
 if ( !pSVData-mpDefInst )
@@ -564,7 +564,7 @@
 delete pSVData-mpSalTimer;
 pSVData-mpSalTimer = NULL;
 
-// Sal deinitialisieren
+// Deinit the Sal 
 DestroySalInstance( pSVData-mpDefInst );
 
 DeInitTools();

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4f27a839c6403c08983f0366402c852b0710029c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com

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


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

2013-03-03 Thread Miklos Vajna
 vcl/unx/generic/app/saldisp.cxx |   78 +++-
 1 file changed, 30 insertions(+), 48 deletions(-)

New commits:
commit c0fc4eb5a8bd1e79291a43579ec0f4482730b9e8
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Mar 3 14:54:21 2013 +0100

SalDisplay::PrintInfo: convert to SAL_INFO

Change-Id: I4abf6b9858e1d74450d7b44d86e0ce96f5195310

diff --git a/vcl/unx/generic/app/saldisp.cxx b/vcl/unx/generic/app/saldisp.cxx
index 60a0ad2..068356c 100644
--- a/vcl/unx/generic/app/saldisp.cxx
+++ b/vcl/unx/generic/app/saldisp.cxx
@@ -2166,60 +2166,42 @@ void SalDisplay::PrintInfo() const
 {
 if( IsDisplay() )
 {
-fprintf( stderr, \n );
-fprintf( stderr, Environment\n );
-fprintf( stderr, \t$DISPLAY  \t\%s\\n,
- GetEnv( DISPLAY ) );
-fprintf( stderr, \t$SAL_VISUAL   \t\%s\\n,
- GetEnv( SAL_VISUAL ) );
-fprintf( stderr, \t$SAL_IGNOREXERRORS\t\%s\\n,
- GetEnv( SAL_IGNOREXERRORS ) );
-fprintf( stderr, \t$SAL_PROPERTIES   \t\%s\\n,
- GetEnv( SAL_PROPERTIES ) );
-fprintf( stderr, \t$SAL_SYNCHRONIZE  \t\%s\\n,
- GetEnv( SAL_SYNCHRONIZE ) );
+SAL_INFO( vcl, Environment );
+SAL_INFO( vcl, \t$DISPLAY  \t\  GetEnv( DISPLAY )  
\);
+SAL_INFO( vcl, \t$SAL_VISUAL   \t\  GetEnv( SAL_VISUAL ) 
 \);
+SAL_INFO( vcl, \t$SAL_IGNOREXERRORS\t\  GetEnv( 
SAL_IGNOREXERRORS )  \);
+SAL_INFO( vcl, \t$SAL_PROPERTIES   \t\  GetEnv( 
SAL_PROPERTIES )  \);
+SAL_INFO( vcl, \t$SAL_SYNCHRONIZE  \t\  GetEnv( 
SAL_SYNCHRONIZE )  \);
 
 char sHostname[ 120 ];
 gethostname (sHostname, 120 );
-fprintf( stderr, Client\n );
-fprintf( stderr, \tHost  \t\%s\\n,
- sHostname );
-
-fprintf( stderr, Display\n );
-fprintf( stderr, \tHost  \t\%s\\n,
- DisplayString(pDisp_) );
-fprintf( stderr, \tVendor (Release)  \t\%s (%d)\\n,
- ServerVendor(pDisp_), VendorRelease(pDisp_) );
-fprintf( stderr, \tProtocol  \t%d.%d\n,
- ProtocolVersion(pDisp_), ProtocolRevision(pDisp_) );
-fprintf( stderr, \tScreen (count,def)\t%d (%d,%d)\n,
- m_nXDefaultScreen.getXScreen(),
- ScreenCount(pDisp_), DefaultScreen(pDisp_) );
-fprintf( stderr, \tshift ctrl alt\t%s (0x%X) %s (0x%X) %s 
(0x%X)\n,
- KeyStr( nShiftKeySym_ ), sal::static_int_cast unsigned int 
(nShiftKeySym_),
- KeyStr( nCtrlKeySym_ ),  sal::static_int_cast unsigned int 
(nCtrlKeySym_),
- KeyStr( nMod1KeySym_ ),  sal::static_int_cast unsigned int 
(nMod1KeySym_) );
+SAL_INFO( vcl, Client\n );
+SAL_INFO( vcl, \tHost  \t\  sHostname  \);
+
+SAL_INFO( vcl, Display );
+SAL_INFO( vcl, \tHost  \t\  DisplayString(pDisp_) 
 \);
+SAL_INFO( vcl, \tVendor (Release)  \t\  ServerVendor(pDisp_)  
 (  VendorRelease(pDisp_)  )\);
+SAL_INFO( vcl, \tProtocol  \t  ProtocolVersion(pDisp_) 
 .  ProtocolRevision(pDisp_) );
+SAL_INFO( vcl, \tScreen (count,def)\t  
m_nXDefaultScreen.getXScreen()   (  ScreenCount(pDisp_)  ,  
DefaultScreen(pDisp_)  ));
+SAL_INFO( vcl, \tshift ctrl alt\t  KeyStr( nShiftKeySym_ ) 
  (0x  std::hex  sal::static_int_cast unsigned int (nShiftKeySym_)  
) 
+ KeyStr( nCtrlKeySym_ )   (0x  sal::static_int_cast 
unsigned int (nCtrlKeySym_)  ) 
+ KeyStr( nMod1KeySym_ )   (0x  sal::static_int_cast 
unsigned int (nMod1KeySym_)  ));
 if( XExtendedMaxRequestSize(pDisp_) * 4 )
-fprintf( stderr, \tXMaxRequestSize   \t%ld %ld [bytes]\n,
- XMaxRequestSize(pDisp_) * 4, 
XExtendedMaxRequestSize(pDisp_) * 4 );
+SAL_INFO( vcl, \tXMaxRequestSize   \t  
XMaxRequestSize(pDisp_) * 4 XExtendedMaxRequestSize(pDisp_) * 4   
[bytes]);
 if( GetProperties() != PROPERTY_DEFAULT )
-fprintf( stderr, \tProperties\t0x%lX\n, GetProperties() 
);
-fprintf( stderr, \tWMName\t%s\n, rtl::OUStringToOString( 
getWMAdaptor()-getWindowManagerName(), osl_getThreadTextEncoding() ).getStr() 
);
+SAL_INFO( vcl, \tProperties\t0x  std::hex  
GetProperties()  \n);
+SAL_INFO( vcl, \tWMName\t  
getWMAdaptor()-getWindowManagerName() );
 }
-fprintf( stderr, Screen\n );
-fprintf( stderr, \tResolution/Size   \t%ld*%ld %ld*%ld %.1lf\\n,
- aResolution_.A(), aResolution_.B(),
- m_aScreens[m_nXDefaultScreen.getXScreen()].m_aSize.Width(),
- m_aScreens[m_nXDefaultScreen.getXScreen()].m_aSize.Height(),
- Hypothenuse( DisplayWidthMM ( pDisp_, 
m_nXDefaultScreen.getXScreen() ),
-  DisplayHeightMM( pDisp_, 

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

2013-03-03 Thread Chris
 vcl/source/app/svapp.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit f5dc0036abda6fbacab7f05cc9a0faba7a19613c
Author: Chris chris.sherloc...@gmail.com
Date:   Sun Mar 3 23:56:37 2013 +1100

Translated German comment, other comments updated for clarity

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

diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 6db1ec6..3758a85 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -237,7 +237,7 @@ sal_Bool Application::QueryExit()
 {
 WorkWindow* pAppWin = ImplGetSVData()-maWinData.mpAppWin;
 
-// Aufruf des Close-Handlers des Applikationsfensters
+// call the close handler of the application window
 if ( pAppWin )
 return pAppWin-Close();
 else
@@ -1082,7 +1082,7 @@ sal_Bool Application::InsertIdleHdl( const Link rLink, 
sal_uInt16 nPrio )
 {
 ImplSVData* pSVData = ImplGetSVData();
 
-// create if not existing
+// create if does not exist
 if ( !pSVData-maAppData.mpIdleMgr )
 pSVData-maAppData.mpIdleMgr = new ImplIdleMgr;
 
@@ -1219,7 +1219,7 @@ void Application::SetAppName( const XubString 
rUniqueName )
 {
 ImplSVData* pSVData = ImplGetSVData();
 
-// create if not existing
+// create if does not exist
 if ( !pSVData-maAppData.mpAppName )
 pSVData-maAppData.mpAppName = new XubString( rUniqueName );
 else
@@ -1243,7 +1243,7 @@ void Application::SetDisplayName( const OUString rName )
 {
 ImplSVData* pSVData = ImplGetSVData();
 
-// create if not existing
+// create if does not exist
 if ( !pSVData-maAppData.mpDisplayName )
 pSVData-maAppData.mpDisplayName = new OUString( rName );
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Translated German comment, other comments updated for clarit...

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/2525

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I6db4f5dd66b928c9424cefebec3016e5bf5e8c49
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com
Gerrit-Reviewer: Markus Mohrhard markus.mohrh...@googlemail.com

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


[PATCH] Comment translation german-english sw/source/ui/uno/

2013-03-03 Thread Matthias Freund (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2530

To pull it, you can do:

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

Comment translation german-english sw/source/ui/uno/

Change-Id: I350aa56bd27ef55a44d5a7140e78fa36b350b302
---
M sw/source/ui/uno/unotxdoc.cxx
M sw/source/ui/uno/unotxvw.cxx
2 files changed, 35 insertions(+), 42 deletions(-)



diff --git a/sw/source/ui/uno/unotxdoc.cxx b/sw/source/ui/uno/unotxdoc.cxx
index ce295e9..02d8ae7 100644
--- a/sw/source/ui/uno/unotxdoc.cxx
+++ b/sw/source/ui/uno/unotxdoc.cxx
@@ -733,7 +733,7 @@
 SwDocPositions eStart = pSearch-bBack ? DOCPOS_END : DOCPOS_START;
 SwDocPositions eEnd = pSearch-bBack ? DOCPOS_START : DOCPOS_END;
 
-// Suche soll ueberall stattfinden
+// Search should take place anywhere
 pUnoCrsr-SetRemainInSection(sal_False);
 sal_uInt32 nResult;
 UnoActionContext aContext(pDocShell-GetDoc());
@@ -793,9 +793,8 @@
 
 }
 
-/* --
- * wird fuer findAll/First/Next verwendet
- * --*/
+// Used for findAll/First/Next
+
 SwUnoCrsr*  SwXTextDocument::FindAny(const Reference util::XSearchDescriptor 
  xDesc,
 Reference XTextCursor   xCrsr, 
sal_Bool bAll,
 sal_Int32 nResult,
@@ -853,18 +852,18 @@
 util::SearchOptions aSearchOpt;
 pSearch-FillSearchOptions( aSearchOpt );
 
-/*
- * folgende Kombinationen sind erlaubt:
- *  - suche einen im Body:  - FND_IN_BODY
- *  - suche alle im Body:   - FND_IN_BODYONLY | FND_IN_SELALL
- *  - suche in Selectionen: einen / alle- FND_IN_SEL  [ | FND_IN_SELALL ]
- *  - suche im nicht Body: einen / alle - FND_IN_OTHER [ | FND_IN_SELALL ]
- *  - suche ueberall alle:  - FND_IN_SELALL
+/**
+ * The following combinations are allowed:
+ *  - Search in the body:   - FND_IN_BODY
+ *  - Search all in the body:   - FND_IN_BODYONLY | FND_IN_SELALL
+ *  - Search in selections: one / all   - FND_IN_SEL  [ | FND_IN_SELALL ]
+ *  - Search outside the body: one / all- FND_IN_OTHER [ | FND_IN_SELALL ]
+ *  - Search everywhere all:- FND_IN_SELALL
  */
 int eRanges(FND_IN_BODY);
 if(bParentInExtra)
 eRanges = FND_IN_OTHER;
-if(bAll) //immer - ueberall?
+if(bAll) //always - everywhere?
 eRanges = FND_IN_SELALL;
 SwDocPositions eStart = !bAll ? DOCPOS_CURR : pSearch-bBack ? DOCPOS_END 
: DOCPOS_START;
 SwDocPositions eEnd = pSearch-bBack ? DOCPOS_START : DOCPOS_END;
@@ -1070,7 +1069,8 @@
 if(IsValid())
 {
 SwPagePreViewPrtData aData;
-//falls nur einige Properties kommen, dann die akt. Einstellungen 
benutzen
+//if only a few properties are coming, then use the current settings
+falls nur einige Properties kommen, dann die akt. Einstellungen benutzen
 const SwPagePreViewPrtData* pData = 
pDocShell-GetDoc()-GetPreViewPrtData();
 if(pData)
 aData = *pData;
@@ -1213,7 +1213,7 @@
 // #i117783#
 bApplyPagePrintSettingsFromXPagePrintable = sal_True;
 pFrame-GetViewShell()-ExecuteSlot(aReq);
-// Frame schliessen
+// Frame close
 pFrame-DoClose();
 
 }
@@ -1428,7 +1428,7 @@
 
 voidSwXTextDocument::InitNewDoc()
 {
-// zunaechst alle Collections invalidieren, dann Referenzen loeschen und 
Null setzen
+// first invalidate all collections, then delete references and Set to zero
 if(pxXTextTables)
 {
  XNameAccess* pTbls = pxXTextTables-get();
@@ -1717,7 +1717,7 @@
 {
 aTmpServiceName = 
OUString(RTL_CONSTASCII_USTRINGPARAM(com.sun.star.drawing.OLE2Shape));
 }
-//hier den Draw - Service suchen
+//here search for the draw service
 Reference XInterface   xTmp = 
SvxFmMSFactory::createInstance(aTmpServiceName);
 if(bShape)
 {
@@ -1744,8 +1744,8 @@
 throw( Exception, RuntimeException )
 {
 Reference XInterface   xInt = createInstance(ServiceSpecifier);
-//die Any-Sequence dient zur Initialisierung von Objekten, die auf
-//Parameter zwingend angewiesen sind - bis jetzt haben wir das nicht
+// The Any-Sequence is for initializing objects that are dependent
+// on parameters necessarily - so far we have not.
 return xInt;
 }
 
@@ -3137,9 +3137,9 @@
 SwXTextDocumentBaseClass::operator delete(p);
 }
 
-/*---
-retrieve languages already used in current document
--*/
+/**
+ * retrieve languages already used in current document
+ */
 uno::Sequence lang::Locale  SAL_CALL SwXTextDocument::getDocumentLanguages(
 ::sal_Int16 nScriptTypes,
   

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

2013-03-03 Thread Matthias Freund
 sw/source/ui/uno/unotxdoc.cxx |   42 +-
 sw/source/ui/uno/unotxvw.cxx  |   35 ++-
 2 files changed, 35 insertions(+), 42 deletions(-)

New commits:
commit 210203e02d8190a90a8330ce2c19dc8c5afdc300
Author: Matthias Freund matti...@yahoo.de
Date:   Sun Mar 3 15:05:16 2013 +0100

Comment translation german-english sw/source/ui/uno/

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

diff --git a/sw/source/ui/uno/unotxdoc.cxx b/sw/source/ui/uno/unotxdoc.cxx
index ce295e9..02d8ae7 100644
--- a/sw/source/ui/uno/unotxdoc.cxx
+++ b/sw/source/ui/uno/unotxdoc.cxx
@@ -733,7 +733,7 @@ sal_Int32 SwXTextDocument::replaceAll(const Reference 
util::XSearchDescriptor 
 SwDocPositions eStart = pSearch-bBack ? DOCPOS_END : DOCPOS_START;
 SwDocPositions eEnd = pSearch-bBack ? DOCPOS_START : DOCPOS_END;
 
-// Suche soll ueberall stattfinden
+// Search should take place anywhere
 pUnoCrsr-SetRemainInSection(sal_False);
 sal_uInt32 nResult;
 UnoActionContext aContext(pDocShell-GetDoc());
@@ -793,9 +793,8 @@ Reference util::XSearchDescriptor   
SwXTextDocument::createSearchDescriptor(vo
 
 }
 
-/* --
- * wird fuer findAll/First/Next verwendet
- * --*/
+// Used for findAll/First/Next
+
 SwUnoCrsr*  SwXTextDocument::FindAny(const Reference util::XSearchDescriptor 
  xDesc,
 Reference XTextCursor   xCrsr, 
sal_Bool bAll,
 sal_Int32 nResult,
@@ -853,18 +852,18 @@ SwUnoCrsr*  SwXTextDocument::FindAny(const Reference 
util::XSearchDescriptor 
 util::SearchOptions aSearchOpt;
 pSearch-FillSearchOptions( aSearchOpt );
 
-/*
- * folgende Kombinationen sind erlaubt:
- *  - suche einen im Body:  - FND_IN_BODY
- *  - suche alle im Body:   - FND_IN_BODYONLY | FND_IN_SELALL
- *  - suche in Selectionen: einen / alle- FND_IN_SEL  [ | FND_IN_SELALL ]
- *  - suche im nicht Body: einen / alle - FND_IN_OTHER [ | FND_IN_SELALL ]
- *  - suche ueberall alle:  - FND_IN_SELALL
+/**
+ * The following combinations are allowed:
+ *  - Search in the body:   - FND_IN_BODY
+ *  - Search all in the body:   - FND_IN_BODYONLY | FND_IN_SELALL
+ *  - Search in selections: one / all   - FND_IN_SEL  [ | FND_IN_SELALL ]
+ *  - Search outside the body: one / all- FND_IN_OTHER [ | FND_IN_SELALL ]
+ *  - Search everywhere all:- FND_IN_SELALL
  */
 int eRanges(FND_IN_BODY);
 if(bParentInExtra)
 eRanges = FND_IN_OTHER;
-if(bAll) //immer - ueberall?
+if(bAll) //always - everywhere?
 eRanges = FND_IN_SELALL;
 SwDocPositions eStart = !bAll ? DOCPOS_CURR : pSearch-bBack ? DOCPOS_END 
: DOCPOS_START;
 SwDocPositions eEnd = pSearch-bBack ? DOCPOS_START : DOCPOS_END;
@@ -1070,7 +1069,8 @@ void SwXTextDocument::setPagePrintSettings(const 
Sequence beans::PropertyValue
 if(IsValid())
 {
 SwPagePreViewPrtData aData;
-//falls nur einige Properties kommen, dann die akt. Einstellungen 
benutzen
+//if only a few properties are coming, then use the current settings
+falls nur einige Properties kommen, dann die akt. Einstellungen benutzen
 const SwPagePreViewPrtData* pData = 
pDocShell-GetDoc()-GetPreViewPrtData();
 if(pData)
 aData = *pData;
@@ -1213,7 +1213,7 @@ void SwXTextDocument::printPages(const Sequence 
beans::PropertyValue  xOption
 // #i117783#
 bApplyPagePrintSettingsFromXPagePrintable = sal_True;
 pFrame-GetViewShell()-ExecuteSlot(aReq);
-// Frame schliessen
+// Frame close
 pFrame-DoClose();
 
 }
@@ -1428,7 +1428,7 @@ void SwXTextDocument::Reactivate(SwDocShell* pNewDocShell)
 
 voidSwXTextDocument::InitNewDoc()
 {
-// zunaechst alle Collections invalidieren, dann Referenzen loeschen und 
Null setzen
+// first invalidate all collections, then delete references and Set to zero
 if(pxXTextTables)
 {
  XNameAccess* pTbls = pxXTextTables-get();
@@ -1717,7 +1717,7 @@ Reference XInterface   
SwXTextDocument::createInstance(const OUString rServic
 {
 aTmpServiceName = 
OUString(RTL_CONSTASCII_USTRINGPARAM(com.sun.star.drawing.OLE2Shape));
 }
-//hier den Draw - Service suchen
+//here search for the draw service
 Reference XInterface   xTmp = 
SvxFmMSFactory::createInstance(aTmpServiceName);
 if(bShape)
 {
@@ -1744,8 +1744,8 @@ Reference XInterface   

missing License statement

2013-03-03 Thread Markus Mohrhard
Hey Chris,

it seems we have no license statement from you yet. Could you please
send one similar to the one at
https://wiki.documentfoundation.org/Development/Developers .

Thanks a lot for your translation work.

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


[PUSHED] Comment translation german-english sw/source/ui/uno/

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/2530

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I350aa56bd27ef55a44d5a7140e78fa36b350b302
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Matthias Freund matti...@yahoo.de
Gerrit-Reviewer: Markus Mohrhard markus.mohrh...@googlemail.com

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


[PATCH] Updated README to explain what SV stands for in the source...

2013-03-03 Thread Chris Sherlock (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2532

To pull it, you can do:

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

Updated README to explain what SV stands for in the source.

Change-Id: I0d0a71a6e74ca2d90487313e33cf82ea7bcac063
---
M dictionaries
M helpcontent2
M vcl/README
3 files changed, 12 insertions(+), 0 deletions(-)



diff --git a/dictionaries b/dictionaries
index 7e42390..8669b40 16
--- a/dictionaries
+++ b/dictionaries
-Subproject commit 7e4239060266bf238b5e6692ed10d548c37572d5
+Subproject commit 8669b40a8835c007682507d1efd06f7f24452226
diff --git a/helpcontent2 b/helpcontent2
index b1cfd2b..7dded42 16
--- a/helpcontent2
+++ b/helpcontent2
-Subproject commit b1cfd2b985bedae8929c2d798815b88e630e7a28
+Subproject commit 7dded42472968783f5c90a0aa9e497ee3dfb247f
diff --git a/vcl/README b/vcl/README
index f373bad..5394d2f 100644
--- a/vcl/README
+++ b/vcl/README
@@ -47,3 +47,15 @@
  SalFrames, SalVirtualDevices, SalPrinters,
  Timers, the SolarMutexe, DragDrop and other
  objects, as well as the primary event loop wrapper.
+
+Note: references to SV in the code are in relation to StarView, which is:
+
+   StarView is a portable C++ class library for GUI's. It supports a 
+   portable resource system, a complete GUI-interface including MDI,
+   printing and helpsystem.
+
+   Initially StarView was developed for internal use only. With 
+   StarView, we developed a portable wordprocessor for GUI's which is
+   the successor of our current DOS product.
+
+https://groups.google.com/group/comp.lang.c++/msg/9e8bc18905da32e1?dmode=sourceoutput=gplainnoredirectpli=1

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0d0a71a6e74ca2d90487313e33cf82ea7bcac063
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com

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


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

2013-03-03 Thread Chris Sherlock
 vcl/source/app/svapp.cxx |8 +---
 1 file changed, 1 insertion(+), 7 deletions(-)

New commits:
commit 2d8cb19057e81f4f3297ffac803e11c6cb84b3db
Author: Chris Sherlock chris.sherloc...@gmail.com
Date:   Sun Mar 3 15:24:09 2013 +0100

No need for commented out code.

diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 3758a85..90166eb 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1493,13 +1493,7 @@ Window* Application::GetDefDialogParent()
 return NULL;
 }
 
-// MAV: before the implementation has used only decorated 
windows,
-//  but it is not true in case of ActiveX or plugin 
scenario,
-//  so this check is commented out
-// if( pWin-mpWindowImpl-mpFrameWindow-GetStyle()  
(WB_MOVEABLE | WB_SIZEABLE) )
-return pWin-mpWindowImpl-mpFrameWindow-ImplGetWindow();
-// else
-//return NULL;
+return pWin-mpWindowImpl-mpFrameWindow-ImplGetWindow();
 }
 }
 // last active application frame
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[ABANDONED] No need for commented out code.

2013-03-03 Thread Markus Mohrhard (via Code Review)
Markus Mohrhard has abandoned this change.

Change subject: No need for commented out code.
..


Patch Set 1: Abandoned

Has been committed manually without the dictionaries and helpcontent2 change as 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=2d8cb19057e81f4f3297ffac803e11c6cb84b3db

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I8a8b7735574d712aea2a3f2b42941669b2db00b8
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Chris Sherlock chris.sherloc...@gmail.com
Gerrit-Reviewer: Markus Mohrhard markus.mohrh...@googlemail.com

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


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

2013-03-03 Thread Markus Mohrhard
 sw/source/ui/uno/unotxdoc.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 4026cf4be84dd34e913463c728112a99c6ef17e5
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Mar 3 15:47:58 2013 +0100

fix build

diff --git a/sw/source/ui/uno/unotxdoc.cxx b/sw/source/ui/uno/unotxdoc.cxx
index 02d8ae7..748300b 100644
--- a/sw/source/ui/uno/unotxdoc.cxx
+++ b/sw/source/ui/uno/unotxdoc.cxx
@@ -1070,7 +1070,6 @@ void SwXTextDocument::setPagePrintSettings(const 
Sequence beans::PropertyValue
 {
 SwPagePreViewPrtData aData;
 //if only a few properties are coming, then use the current settings
-falls nur einige Properties kommen, dann die akt. Einstellungen benutzen
 const SwPagePreViewPrtData* pData = 
pDocShell-GetDoc()-GetPreViewPrtData();
 if(pData)
 aData = *pData;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - odk/CustomTarget_doxygen.mk sysui/CustomTarget_rpm.mk sysui/desktop

2013-03-03 Thread David Tardon
 odk/CustomTarget_doxygen.mk|2 -
 sysui/CustomTarget_rpm.mk  |   34 +++--
 sysui/desktop/share/create_mime_xml.pl |1 
 sysui/desktop/share/create_tree.sh |2 -
 sysui/desktop/share/translate.pl   |1 
 5 files changed, 21 insertions(+), 19 deletions(-)

New commits:
commit 29c8b9a7c9a4d62b7df2e70b71beec488aae5722
Author: David Tardon dtar...@redhat.com
Date:   Sun Mar 3 16:23:23 2013 +0100

silence rpmbuild

Change-Id: Iee5fbadb4eafb1c919bfcef7799e2e81ca3438d8

diff --git a/sysui/CustomTarget_rpm.mk b/sysui/CustomTarget_rpm.mk
index 8d6c433..cd9b3d1 100644
--- a/sysui/CustomTarget_rpm.mk
+++ b/sysui/CustomTarget_rpm.mk
@@ -16,20 +16,26 @@ define rpm_register_target
 $(call gb_CustomTarget_get_target,sysui/rpm): 
$(rpm_WORKDIR)/$(1)/$(1)$(PKGVERSIONSHORT)-$(2)-menus-$(PKGVERSION)-$(LIBO_VERSION_PATCH).noarch.rpm
 
 $(rpm_WORKDIR)/$(1)-desktop-integration.tar.gz: 
$(rpm_WORKDIR)/$(1)/$(1)$(PKGVERSIONSHORT)-$(2)-menus-$(PKGVERSION)-$(LIBO_VERSION_PATCH).noarch.rpm
-$(rpm_WORKDIR)/$(1)/$(1)$(PKGVERSIONSHORT)-$(2)-menus-$(PKGVERSION)-$(LIBO_VERSION_PATCH).noarch.rpm:
 $(rpm_SRCDIR)/$(2)/$(2)-menus.spec $(call 
gb_CustomTarget_get_workdir,sysui/share)/$(1)/create_tree.sh
-   $(RPM) -bb $$ \
-   --buildroot $(rpm_WORKDIR)/$(1)/$(2) \
-   --define _builddir $(call 
gb_CustomTarget_get_workdir,sysui/share)/$(1) \
-   --define _rpmdir $(rpm_WORKDIR)/$(1) \
-   --define _rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm \
-   --define productname $(PRODUCTNAME.$(1)) \
-   --define pkgprefix $(1)$(PKGVERSIONSHORT) \
-   --define unixfilename $(UNIXFILENAME.$(1)) \
-   --define productversion $(PRODUCTVERSION) \
-   --define iconprefix $(UNIXFILENAME.$(1)) \
-   --define version $(PKGVERSION) \
-   --define release $(LIBO_VERSION_PATCH) \
-   --define __debug_install_post %nil
+$(rpm_WORKDIR)/$(1)/$(1)$(PKGVERSIONSHORT)-$(2)-menus-$(PKGVERSION)-$(LIBO_VERSION_PATCH).noarch.rpm
 : \
+   $(rpm_SRCDIR)/$(2)/$(2)-menus.spec \
+   $(call 
gb_CustomTarget_get_workdir,sysui/share)/$(1)/create_tree.sh \
+   | $(rpm_WORKDIR)/$(1)/.dir
+   $(call gb_Helper_print_on_error,\
+   $(RPM) -bb $$ \
+   --buildroot $(rpm_WORKDIR)/$(1)/$(2) \
+   --define _builddir $(call 
gb_CustomTarget_get_workdir,sysui/share)/$(1) \
+   --define _rpmdir $(rpm_WORKDIR)/$(1) \
+   --define _rpmfilename 
%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm \
+   --define productname $(PRODUCTNAME.$(1)) \
+   --define pkgprefix $(1)$(PKGVERSIONSHORT) \
+   --define unixfilename $(UNIXFILENAME.$(1)) \
+   --define productversion $(PRODUCTVERSION) \
+   --define iconprefix $(UNIXFILENAME.$(1)) \
+   --define version $(PKGVERSION) \
+   --define release $(LIBO_VERSION_PATCH) \
+   --define __debug_install_post %nil \
+   , $$@.log \
+   )
 endef
 
 $(eval $(call gb_CustomTarget_CustomTarget,sysui/rpm))
commit 4745b6edcd710204758ceb35dfc0ff78c391810b
Author: David Tardon dtar...@redhat.com
Date:   Sun Mar 3 15:57:30 2013 +0100

silence sysui scripts

Change-Id: I0d27e522ff8059200f9d08a28f4b70d7f436c100

diff --git a/sysui/desktop/share/create_mime_xml.pl 
b/sysui/desktop/share/create_mime_xml.pl
index 912af3e..bda127c 100755
--- a/sysui/desktop/share/create_mime_xml.pl
+++ b/sysui/desktop/share/create_mime_xml.pl
@@ -56,7 +56,6 @@ print '?xml version=1.0 encoding=UTF-8?';
 print 'mime-info 
xmlns=http://www.freedesktop.org/standards/shared-mime-info;';
 
 foreach $component (sort(keys %mimehash)) {
-print STDERR Processing entries for $component;
 # mimetype and glob
 getMimedata($component);
 print '  mime-type type='.$mimetype.'';
diff --git a/sysui/desktop/share/create_tree.sh 
b/sysui/desktop/share/create_tree.sh
index b7cc385..606f1a5 100755
--- a/sysui/desktop/share/create_tree.sh
+++ b/sysui/desktop/share/create_tree.sh
@@ -19,7 +19,6 @@
 umask 022
 
 if [ ${KDEMAINDIR} ]; then
-  echo Copying icons...
   for i in `cd ${ICON_SOURCE_DIR}; find ${ICON_THEMES:-hicolor/???x??? 
hicolor/??x?? hicolor/scalable locolor} -name *.png -o -name *.svg`
   do
 targetdir=${DESTDIR}/${KDEMAINDIR}/share/icons/`dirname ${i}`
@@ -38,7 +37,6 @@ if [ ${KDEMAINDIR} ]; then
 fi
 
 if [ ${GNOMEDIR} ]; then
-  echo Copying GNOME icons...
   for i in `cd ${ICON_SOURCE_DIR}/hicolor; find ??x?? ???x??? scalable -name 
*.png -o -name *.svg`
   do
 targetdir=${DESTDIR}/${GNOMEDIR}/share/icons/gnome/`dirname ${i}`
diff --git a/sysui/desktop/share/translate.pl b/sysui/desktop/share/translate.pl
index 9bb60f2..48742b7 100644
--- a/sysui/desktop/share/translate.pl
+++ b/sysui/desktop/share/translate.pl
@@ 

[Libreoffice-commits] core.git: sal/inc

2013-03-03 Thread Thomas Arnhold
 sal/inc/sal/log-areas.dox |   14 ++
 1 file changed, 6 insertions(+), 8 deletions(-)

New commits:
commit 5e8402ade84ab1816d32793e3476521e1c5b1027
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun Mar 3 18:27:06 2013 +0100

sal: update log areas

Change-Id: I8687f0a182597e31625b654d6ccf62aa046be8ec

diff --git a/sal/inc/sal/log-areas.dox b/sal/inc/sal/log-areas.dox
index dfe78cb..e9f7864 100644
--- a/sal/inc/sal/log-areas.dox
+++ b/sal/inc/sal/log-areas.dox
@@ -69,7 +69,7 @@ certain functionality.
 
 @li @c sd
 @li @c sd.fwk
-@li @c sd.sls
+@li @c sd.sls - slidesorter
 @li @c sd.tools
 @li @c sd.ui
 @li @c sd.view
@@ -178,9 +178,9 @@ certain functionality.
 
 @li @c svx.dialog
 @li @c svx.form
-@li @c svx.stbcrtls
+@li @c svx.stbcrtls - StatusBarControl
 @li @c svx.table
-@li @c svx.tbxcrtls
+@li @c svx.tbxcrtls - ToolboxControl
 
 @section toolkit
 
@@ -218,8 +218,8 @@ certain functionality.
 
 @section stoc
 
-@li @c stoc.corerefl
-@li @c stoc.tdmanager
+@li @c stoc.corerefl - CoreReflection
+@li @c stoc.tdmanager - TypeDescriptionManager
 
 @section svl
 
@@ -235,7 +235,7 @@ certain functionality.
 @li @c vcl.gdi - the GDI part of VCL, devices, bitmaps, etc.
 @li @c vcl.gtk - Gtk+ 2/3 plugin
 @li @c vcl.layout - Widget layout
-@li @c vcl.sm
+@li @c vcl.sm - Session Manager
 
 @section Writer
 
@@ -278,10 +278,8 @@ certain functionality.
 @li @c cppuhelper
 @li @c cppu
 @li @c dbaccess
-@li @c editeng
 @li @c forms
 @li @c helpcompiler
-@li @c jvmfwk
 @li @c linguistic
 @li @c oox
 @li @c rsc
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2013-03-03 Thread Andras Timar
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ee1e7b1fbd3339ca368b231c7a7d8ed20355ac0c
Author: Andras Timar ati...@suse.com
Date:   Sat Mar 2 21:51:40 2013 +0100

Updated core
Project: help  4a6558ff831f49756072305362880ed8c425803f

diff --git a/helpcontent2 b/helpcontent2
index b1cfd2b..4a6558f 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit b1cfd2b985bedae8929c2d798815b88e630e7a28
+Subproject commit 4a6558ff831f49756072305362880ed8c425803f
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: AllLangHelp_shared.mk source/text

2013-03-03 Thread Andras Timar
 AllLangHelp_shared.mk|1 
 source/text/shared/guide/main.xhp|1 
 source/text/shared/guide/mobiledevicefilters.xhp |  136 ---
 3 files changed, 138 deletions(-)

New commits:
commit 4a6558ff831f49756072305362880ed8c425803f
Author: Andras Timar ati...@suse.com
Date:   Sat Mar 2 21:51:40 2013 +0100

remove stale javafilters

Change-Id: Iba546b82003a965f978a25657909158580bee6bb

diff --git a/AllLangHelp_shared.mk b/AllLangHelp_shared.mk
index 5b61e5a..99b9555 100644
--- a/AllLangHelp_shared.mk
+++ b/AllLangHelp_shared.mk
@@ -773,7 +773,6 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,shared,\
 helpcontent2/source/text/shared/guide/main \
 helpcontent2/source/text/shared/guide/measurement_units \
 helpcontent2/source/text/shared/guide/microsoft_terms \
-helpcontent2/source/text/shared/guide/mobiledevicefilters \
 helpcontent2/source/text/shared/guide/ms_doctypes \
 helpcontent2/source/text/shared/guide/ms_import_export_limitations \
 helpcontent2/source/text/shared/guide/ms_user \
diff --git a/source/text/shared/guide/main.xhp 
b/source/text/shared/guide/main.xhp
index 370939d..99a5fd0 100644
--- a/source/text/shared/guide/main.xhp
+++ b/source/text/shared/guide/main.xhp
@@ -58,7 +58,6 @@
 case select=WINembed href=text/shared/guide/activex.xhp#activex/
 /case
 /switch
-embed href=text/shared/guide/mobiledevicefilters.xhp#mobiledevicefilters/
 paragraph role=heading id=hd_id3150669 xml-lang=en-US level=2 
l10n=U oldref=3Using Windows, Menus and Icons/paragraph
 embed href=text/shared/guide/contextmenu.xhp#contextmenu/
 embed href=text/shared/guide/active_help_on_off.xhp#active_help_on_off/
diff --git a/source/text/shared/guide/mobiledevicefilters.xhp 
b/source/text/shared/guide/mobiledevicefilters.xhp
deleted file mode 100644
index 8572a3d..000
--- a/source/text/shared/guide/mobiledevicefilters.xhp
+++ /dev/null
@@ -1,136 +0,0 @@
-?xml version=1.0 encoding=UTF-8?
-
-
-
-!--
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the License); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- --
-
-
-   helpdocument version=1.0
-meta
-topic id=textsharedguidemobiledevicefiltersxml indexer=include 
status=PUBLISH
-title id=tit xml-lang=en-USMobile Device Filters for Pocket Device 
Appliances /title
-filename/text/shared/guide/mobiledevicefilters.xhp/filename
-/topic
-/meta
-body
-bookmark xml-lang=en-US branch=index 
id=bm_id3147143bookmark_valuemobile device filters/bookmark_value
-bookmark_valuepocket device appliances/bookmark_value
-bookmark_value$[officename] documents;mobile device filters/bookmark_value
-bookmark_valuePalm file filters/bookmark_value
-bookmark_valuePocket PC file filters/bookmark_value
-bookmark_valuesaving;documents for mobile devices/bookmark_value
-bookmark_valueopening;mobile device documents/bookmark_value
-bookmark_valueconverting;Pocket PC formats/bookmark_value
-bookmark_valuesynchronizing;Pocket PC and $[officename] 
formats/bookmark_value
-bookmark_valueinstalling;mobile device filters/bookmark_value
-bookmark_valuefile filters;mobile devices/bookmark_value
-/bookmarkcommentmw changed mobile devices filters 3x/commentparagraph 
role=heading id=hd_id3147143 xml-lang=en-US level=1 l10n=U 
oldref=33variable id=mobiledevicefilterslink 
href=text/shared/guide/mobiledevicefilters.xhp name=Mobile Devices Filters 
for Pocket Device AppliancesMobile Devices Filters for Pocket Device 
Appliances/link
-/variable/paragraph
-paragraph role=paragraph id=par_id3143267 xml-lang=en-US l10n=CHG 
oldref=1You can save and open documents to and from several mobile devices 
file formats./paragraph
-paragraph role=paragraph id=par_id3146957 xml-lang=en-US l10n=U 
oldref=2Currently the following filters are available:/paragraph
-list type=unordered
-listitem
-paragraph role=listitem id=par_id3154823 xml-lang=en-US l10n=U 
oldref=3AportisDoc for Palm OS compatible devices/paragraph
-/listitem
-listitem
-paragraph role=listitem id=par_id3147209 xml-lang=en-US l10n=U 
oldref=4Pocket Excel for Pocket PC compatible devices/paragraph
-/listitem
-listitem
-paragraph role=listitem id=par_id3166460 xml-lang=en-US l10n=U 
oldref=5Pocket Word for Pocket PC compatible devices/paragraph
-/listitem

[PATCH] fdo#60691 add modelines to *.src and *.hrc files

2013-03-03 Thread Borim (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2533

To pull it, you can do:

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

fdo#60691 add modelines to *.src and *.hrc files

use solenv/bin/add-modulelines script for the task
and add trailing new line

Change-Id: I745d4f0fe9b05436a142a03f8512970f91c41bd4
---
M accessibility/inc/accessibility/helper/accessiblestrings.hrc
M accessibility/source/helper/accessiblestrings.src
M avmedia/inc/helpids.hrc
M avmedia/source/framework/mediacontrol.hrc
M avmedia/source/framework/mediacontrol.src
M avmedia/source/viewer/mediawindow.hrc
M avmedia/source/viewer/mediawindow.src
M basctl/inc/basidesh.hrc
M basctl/inc/helpid.hrc
M basctl/sdi/basslots.hrc
M basctl/source/basicide/basicprint.src
M basctl/source/basicide/baside2.hrc
M basctl/source/basicide/basidesh.src
M basctl/source/basicide/brkdlg.hrc
M basctl/source/basicide/brkdlg.src
M basctl/source/basicide/macrodlg.hrc
M basctl/source/basicide/macrodlg.src
M basctl/source/basicide/moduldlg.hrc
M basctl/source/basicide/moduldlg.src
M basctl/source/basicide/moptions.hrc
M basctl/source/basicide/moptions.src
M basctl/source/basicide/objdlg.hrc
M basctl/source/basicide/objdlg.src
M basctl/source/dlged/dlgresid.src
M basctl/source/dlged/managelang.hrc
M basctl/source/dlged/managelang.src
M basctl/source/inc/dlgresid.hrc
M basic/inc/sb.hrc
M basic/source/classes/sb.src
M basic/source/sbx/format.src
M chart2/source/controller/dialogs/Bitmaps.hrc
M chart2/source/controller/dialogs/Bitmaps.src
M chart2/source/controller/dialogs/CommonResources.hrc
M chart2/source/controller/dialogs/ResourceIds.hrc
M chart2/source/controller/dialogs/Strings.src
M chart2/source/controller/dialogs/Strings_AdditionalControls.src
M chart2/source/controller/dialogs/Strings_ChartTypes.src
M chart2/source/controller/dialogs/Strings_Scale.src
M chart2/source/controller/dialogs/Strings_Statistic.src
M chart2/source/controller/dialogs/TabPages.hrc
M chart2/source/controller/dialogs/dlg_ChartType.hrc
M chart2/source/controller/dialogs/dlg_ChartType.src
M chart2/source/controller/dialogs/dlg_CreationWizard.hrc
M chart2/source/controller/dialogs/dlg_CreationWizard.src
M chart2/source/controller/dialogs/dlg_DataEditor.hrc
M chart2/source/controller/dialogs/dlg_DataEditor.src
M chart2/source/controller/dialogs/dlg_DataSource.hrc
M chart2/source/controller/dialogs/dlg_DataSource.src
M chart2/source/controller/dialogs/dlg_InsertAxis_Grid.hrc
M chart2/source/controller/dialogs/dlg_InsertAxis_Grid.src
M chart2/source/controller/dialogs/dlg_InsertDataLabel.hrc
M chart2/source/controller/dialogs/dlg_InsertDataLabel.src
M chart2/source/controller/dialogs/dlg_InsertErrorBars.hrc
M chart2/source/controller/dialogs/dlg_InsertErrorBars.src
M chart2/source/controller/dialogs/dlg_InsertLegend.hrc
M chart2/source/controller/dialogs/dlg_InsertLegend.src
M chart2/source/controller/dialogs/dlg_InsertTitle.hrc
M chart2/source/controller/dialogs/dlg_InsertTitle.src
M chart2/source/controller/dialogs/dlg_InsertTrendline.hrc
M chart2/source/controller/dialogs/dlg_InsertTrendline.src
M chart2/source/controller/dialogs/dlg_ObjectProperties.src
M chart2/source/controller/dialogs/dlg_ShapeFont.src
M chart2/source/controller/dialogs/dlg_ShapeParagraph.src
M chart2/source/controller/dialogs/dlg_View3D.hrc
M chart2/source/controller/dialogs/dlg_View3D.src
M chart2/source/controller/dialogs/res_BarGeometry.src
M chart2/source/controller/dialogs/res_DataLabel_IDs.hrc
M chart2/source/controller/dialogs/res_DataLabel_tmpl.hrc
M chart2/source/controller/dialogs/res_ErrorBar_IDs.hrc
M chart2/source/controller/dialogs/res_ErrorBar_tmpl.hrc
M chart2/source/controller/dialogs/res_LegendPosition_IDs.hrc
M chart2/source/controller/dialogs/res_LegendPosition_tmpl.hrc
M chart2/source/controller/dialogs/res_SecondaryAxisCheckBoxes_tmpl.hrc
M chart2/source/controller/dialogs/res_TextSeparator.src
M chart2/source/controller/dialogs/res_Titles.hrc
M chart2/source/controller/dialogs/res_Titlesx_tmpl.hrc
M chart2/source/controller/dialogs/res_Trendline_IDs.hrc
M chart2/source/controller/dialogs/res_Trendline_tmpl.hrc
M chart2/source/controller/dialogs/tp_3D_SceneAppearance.hrc
M chart2/source/controller/dialogs/tp_3D_SceneAppearance.src
M chart2/source/controller/dialogs/tp_3D_SceneGeometry.hrc
M chart2/source/controller/dialogs/tp_3D_SceneGeometry.src
M chart2/source/controller/dialogs/tp_3D_SceneIllumination.hrc
M chart2/source/controller/dialogs/tp_3D_SceneIllumination.src
M chart2/source/controller/dialogs/tp_AxisLabel.src
M chart2/source/controller/dialogs/tp_AxisPositions.src
M chart2/source/controller/dialogs/tp_ChartType.hrc
M chart2/source/controller/dialogs/tp_ChartType.src
M chart2/source/controller/dialogs/tp_DataLabel.src
M chart2/source/controller/dialogs/tp_DataSource.hrc
M chart2/source/controller/dialogs/tp_DataSource.src
M chart2/source/controller/dialogs/tp_ErrorBars.src
M chart2/source/controller/dialogs/tp_LegendPosition.src

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

2013-03-03 Thread Miklos Vajna
 oox/inc/oox/drawingml/shape.hxx |   20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 3f2767ad271714a2b32024c2838c223fdf3eb928
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Mar 3 19:39:05 2013 +0100

oox: fix doxygen comments in drawingml::shape

Change-Id: I3b2576057db49998b610da3094c3a41f2d214429

diff --git a/oox/inc/oox/drawingml/shape.hxx b/oox/inc/oox/drawingml/shape.hxx
index 4e2b491..0b82a01 100644
--- a/oox/inc/oox/drawingml/shape.hxx
+++ b/oox/inc/oox/drawingml/shape.hxx
@@ -59,8 +59,8 @@ typedef ::std::map sal_Int32, ShapeStyleRef  
ShapeStyleRefMap;
 /** Additional information for a chart embedded in a drawing shape. */
 struct ChartShapeInfo
 {
-::rtl::OUString maFragmentPath; /// Path to related XML stream, 
e.g. for charts.
-boolmbEmbedShapes;  /// True = load chart shapes into 
chart, false = load into parent drawpage.
+::rtl::OUString maFragmentPath; /// Path to related XML stream, 
e.g. for charts.
+boolmbEmbedShapes;  /// True = load chart shapes into 
chart, false = load into parent drawpage.
 
 inline explicit ChartShapeInfo( bool bEmbedShapes ) : mbEmbedShapes( 
bEmbedShapes ) {}
 };
@@ -238,19 +238,19 @@ protected:
 private:
 enum FrameType
 {
-FRAMETYPE_GENERIC,  /// Generic shape, no special type.
-FRAMETYPE_OLEOBJECT,/// OLE object embedded in a shape.
-FRAMETYPE_CHART,/// Chart embedded in a shape.
-FRAMETYPE_DIAGRAM,  /// Complex diagram drawing shape.
-FRAMETYPE_TABLE /// A table embedded in a shape.
+FRAMETYPE_GENERIC,  /// Generic shape, no special type.
+FRAMETYPE_OLEOBJECT,/// OLE object embedded in a shape.
+FRAMETYPE_CHART,/// Chart embedded in a shape.
+FRAMETYPE_DIAGRAM,  /// Complex diagram drawing shape.
+FRAMETYPE_TABLE /// A table embedded in a shape.
 };
 
 typedef ::boost::shared_ptr ::oox::vml::OleObjectInfo 
OleObjectInfoRef;
 typedef ::boost::shared_ptr ChartShapeInfo
ChartShapeInfoRef;
 
-FrameType   meFrameType;/// Type for graphic frame shapes.
-OleObjectInfoRefmxOleObjectInfo;/// Additional data for OLE 
objects.
-ChartShapeInfoRef   mxChartShapeInfo;   /// Additional data for chart 
shapes.
+FrameType   meFrameType;/// Type for graphic frame shapes.
+OleObjectInfoRefmxOleObjectInfo;/// Additional data for OLE 
objects.
+ChartShapeInfoRef   mxChartShapeInfo;   /// Additional data for chart 
shapes.
 
 sal_Int32   mnRotation;
 sal_BoolmbFlipH;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - sd/CppunitTest_sd_filters_test.mk sd/CppunitTest_sd_regression_test.mk sd/CppunitTest_sd_uimpress.mk

2013-03-03 Thread David Tardon
 sd/CppunitTest_sd_filters_test.mk|2 ++
 sd/CppunitTest_sd_regression_test.mk |2 ++
 sd/CppunitTest_sd_uimpress.mk|1 +
 3 files changed, 5 insertions(+)

New commits:
commit d6d6a8d79ac13a5b9e060032cab2fa216c0b8213
Author: David Tardon dtar...@redhat.com
Date:   Sun Mar 3 19:41:26 2013 +0100

pull in a VCL plugin needed for running the test

Change-Id: I832e6d0563ece9bde6a1d533415eaec1f4bfb937

diff --git a/sd/CppunitTest_sd_uimpress.mk b/sd/CppunitTest_sd_uimpress.mk
index 64e21cc..094ee32 100644
--- a/sd/CppunitTest_sd_uimpress.mk
+++ b/sd/CppunitTest_sd_uimpress.mk
@@ -65,6 +65,7 @@ $(eval $(call gb_CppunitTest_use_libraries,sd_uimpress,\
 svt \
 svxcore \
 svx \
+   test \
 tk \
 tl \
 ucbhelper \
commit d25aed7012dff79a7f192fbe5ead6905027a4f7b
Author: David Tardon dtar...@redhat.com
Date:   Sun Mar 3 18:42:30 2013 +0100

add missing deps on sden-US.res

Change-Id: I6bfda2abfcaba462a718ed469fb0daf01d8e856a

diff --git a/sd/CppunitTest_sd_filters_test.mk 
b/sd/CppunitTest_sd_filters_test.mk
index 1f3858b..34adf24 100644
--- a/sd/CppunitTest_sd_filters_test.mk
+++ b/sd/CppunitTest_sd_filters_test.mk
@@ -123,4 +123,6 @@ $(eval $(call 
gb_CppunitTest_use_configuration,sd_filters_test))
 
 $(eval $(call gb_CppunitTest_use_filter_configuration,sd_filters_test))
 
+$(call gb_CppunitTest_get_target,sd_filters_test) : $(call 
gb_AllLangResTarget_get_target,sd)
+
 # vim: set noet sw=4 ts=4:
diff --git a/sd/CppunitTest_sd_regression_test.mk 
b/sd/CppunitTest_sd_regression_test.mk
index 607c2e3..cdf1fa4 100644
--- a/sd/CppunitTest_sd_regression_test.mk
+++ b/sd/CppunitTest_sd_regression_test.mk
@@ -133,4 +133,6 @@ $(eval $(call 
gb_CppunitTest_add_arguments,sd_regression_test,\
 -env:SVG_DISABLE_FONT_EMBEDDING=YEAH \
 ))
 
+$(call gb_CppunitTest_get_target,sd_regression_test) : $(call 
gb_AllLangResTarget_get_target,sd)
+
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - comphelper/inc tools/inc unusedcode.README xmloff/source

2013-03-03 Thread Thomas Arnhold
 comphelper/inc/comphelper/classids.hxx |  180 -
 tools/inc/tools/bigint.hxx |5 
 tools/inc/tools/shl.hxx|   20 ---
 unusedcode.README  |2 
 xmloff/source/chart/SchXMLExport.cxx   |   23 
 xmloff/source/draw/shapeexport.cxx |   10 -
 6 files changed, 6 insertions(+), 234 deletions(-)

New commits:
commit 5f2592b47fe534a873a7342b932ecc9a7094310a
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun Mar 3 19:33:39 2013 +0100

update description

Change-Id: Ibf0aeea9bae71d5f2f260075a0f30e9273c479af

diff --git a/unusedcode.README b/unusedcode.README
index d2d171b..a5ffd87 100644
--- a/unusedcode.README
+++ b/unusedcode.README
@@ -41,7 +41,7 @@ g) there's more actually unused code then what's listed. The 
idea is that what's
code from the release binaries which only makes sense in debug/dbgutil
configurations, and then tackle unused virtual method slots :-)
 
-Symbols that are known to be false alarms are listed in: unused.exclude
+Symbols that are known to be false alarms are listed in: unusedcode.exclude
 
 [1] http://www.skynet.ie/~caolan/Packages/callcatcher.html
 [2] https://bugs.freedesktop.org/show_bug.cgi?id=38832
commit 32943a5b7eb635051567f8277864fd59fbb2805e
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sun Mar 3 19:28:46 2013 +0100

binfilter: remove some traces

Change-Id: I5b03dcb5d1f8c73c7a308e7ae209cc7872f18c61

diff --git a/comphelper/inc/comphelper/classids.hxx 
b/comphelper/inc/comphelper/classids.hxx
index 416715b..39ab609 100644
--- a/comphelper/inc/comphelper/classids.hxx
+++ b/comphelper/inc/comphelper/classids.hxx
@@ -29,42 +29,24 @@
 0xDC5C7E40L, 0xB35C, 0x101B, 0x99, 0x61, 0x04, \
 0x02, 0x1C, 0x00, 0x70, 0x02
 
-// #110743#
-#define BF_SO3_SW_CLASSID_30 \
-0xDC5C7E40L, 0xB35C, 0x101B, 0x99, 0x61, 0x04, \
-0x02, 0x1C, 0x00, 0x70, 0x02
 /* 4.0 */
 
 #define SO3_SW_CLASSID_40 \
 0x8b04e9b0,  0x420e, 0x11d0, 0xa4, 0x5e, 0x0, \
 0xa0, 0x24, 0x9d, 0x57, 0xb1
 
-// #110743#
-#define BF_SO3_SW_CLASSID_40 \
-0x8b04e9b0,  0x420e, 0x11d0, 0xa4, 0x5e, 0x0, \
-0xa0, 0x24, 0x9d, 0x57, 0xb1
 /* 5.0 */
 
 #define SO3_SW_CLASSID_50 \
 0xc20cf9d1, 0x85ae, 0x11d1, 0xaa, 0xb4, 0x0, \
 0x60, 0x97, 0xda, 0x56, 0x1a
 
-// #110743#
-#define BF_SO3_SW_CLASSID_50 \
-0xc20cf9d1, 0x85ae, 0x11d1, 0xaa, 0xb4, 0x0, \
-0x60, 0x97, 0xda, 0x56, 0x1a
-
  /* 6.0, 7, 8 */
 
 #define SO3_SW_CLASSID_60 \
 0x8BC6B165, 0xB1B2, 0x4EDD, 0xAA, 0x47, 0xDA, \
 0xE2, 0xEE, 0x68, 0x9D, 0xD6
 
-// #110743#
-#define BF_SO3_SW_CLASSID_60 \
-0x8BC6B165, 0xB1B2, 0x4EDD, 0xAA, 0x47, 0xDA, \
-0xE2, 0xEE, 0x68, 0x9D, 0xD6
-
  /* ole embed 6.0, 7 */
 
 #define SO3_SW_OLE_EMBED_CLASSID_60 \
@@ -81,9 +63,6 @@
 
 #define SO3_SW_CLASSID SO3_SW_CLASSID_60
 
-// #110743#
-#define BF_SO3_SW_CLASSID BF_SO3_SW_CLASSID_50
-
 /*
  * StarWriter/Web
  */
@@ -94,38 +73,22 @@
 0xf0caa840, 0x7821, 0x11d0, 0xa4, 0xa7, 0x0, \
 0xa0, 0x24, 0x9d, 0x57, 0xb1
 
-// #110743#
-#define BF_SO3_SWWEB_CLASSID_40 \
-0xf0caa840, 0x7821, 0x11d0, 0xa4, 0xa7, 0x0, \
-0xa0, 0x24, 0x9d, 0x57, 0xb1
 /* 5.0 */
 
 #define SO3_SWWEB_CLASSID_50 \
 0xc20cf9d2, 0x85ae, 0x11d1, 0xaa, 0xb4, 0x0, \
 0x60, 0x97, 0xda, 0x56, 0x1a
 
-// #110743#
-#define BF_SO3_SWWEB_CLASSID_50 \
-0xc20cf9d2, 0x85ae, 0x11d1, 0xaa, 0xb4, 0x0, \
-0x60, 0x97, 0xda, 0x56, 0x1a
 /* 6.0, 7, 8 */
 
 #define SO3_SWWEB_CLASSID_60 \
 0xA8BBA60C, 0x7C60, 0x4550, 0x91, 0xCE, 0x39, \
 0xC3, 0x90, 0x3F, 0xAC, 0x5E
 
-// #110743#
-#define BF_SO3_SWWEB_CLASSID_60 \
-0xA8BBA60C, 0x7C60, 0x4550, 0x91, 0xCE, 0x39, \
-0xC3, 0x90, 0x3F, 0xAC, 0x5E
-
 /* aktuell */
 
 #define SO3_SWWEB_CLASSID SO3_SWWEB_CLASSID_60
 
-// #110743#
-#define BF_SO3_SWWEB_CLASSID BF_SO3_SWWEB_CLASSID_50
-
 /*
  * Globaldokument
  */
@@ -136,38 +99,22 @@
 0x340ac970, 0xe30d, 0x11d0, 0xa5, 0x3f, 0x0, \
 0xa0, 0x24, 0x9d, 0x57, 0xb1
 
-// #110743#
-#define BF_SO3_SWGLOB_CLASSID_40 \
-0x340ac970, 0xe30d, 0x11d0, 0xa5, 0x3f, 0x0, \
-0xa0, 0x24, 0x9d, 0x57, 0xb1
-
 /* 5.0 */
 
 #define SO3_SWGLOB_CLASSID_50 \
 0xc20cf9d3, 0x85ae, 0x11d1, 0xaa, 0xb4, 0x0, \
 0x60, 0x97, 0xda, 0x56, 0x1a
 
-// #110743#
-#define BF_SO3_SWGLOB_CLASSID_50 \
-0xc20cf9d3, 0x85ae, 0x11d1, 0xaa, 0xb4, 0x0, \
-0x60, 0x97, 0xda, 0x56, 0x1a
 /* 6.0, 7, 8 */
 
 #define SO3_SWGLOB_CLASSID_60 \
 0xB21A0A7C, 0xE403, 0x41FE, 0x95, 0x62, 0xBD, \
 0x13, 0xEA, 0x6F, 0x15, 0xA0
 
-// #110743#
-#define BF_SO3_SWGLOB_CLASSID_60 \
-0xB21A0A7C, 0xE403, 0x41FE, 0x95, 0x62, 0xBD, \
-0x13, 0xEA, 0x6F, 0x15, 0xA0
 /* aktuell */
 
 #define SO3_SWGLOB_CLASSID SO3_SWGLOB_CLASSID_60
 
-// #110743#
-#define BF_SO3_SWGLOB_CLASSID BF_SO3_SWGLOB_CLASSID_50
-
 //---
 
 /*
@@ -180,41 +127,24 @@
 0x3F543FA0L, 0xB6A6, 0x101B, 0x99, 0x61, 0x04, \
 0x02, 0x1C, 0x00, 

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

2013-03-03 Thread Tomaž Vajngerl
 vcl/inc/printdlg.hxx   |5 ++
 vcl/source/window/printdlg.cxx |   93 ++---
 2 files changed, 57 insertions(+), 41 deletions(-)

New commits:
commit 9058681a8d4f52db18f094994b231e719e9bb6eb
Author: Tomaž Vajngerl qui...@gmail.com
Date:   Sun Mar 3 20:49:18 2013 +0100

Better quality previews in print dialog.

Make a fixed size bitmap of the current document for preview in
print dialog. The bitmap is scaled when the dialog is resized, which
is faster and better quality as it uses BEST scaling method for
resizing the bitmap.

Change-Id: I3be0bec30a7f2cd594c56d23fe2b39221aff807c

diff --git a/vcl/inc/printdlg.hxx b/vcl/inc/printdlg.hxx
index d57218e..296d5b8 100644
--- a/vcl/inc/printdlg.hxx
+++ b/vcl/inc/printdlg.hxx
@@ -45,16 +45,21 @@ namespace vcl
 public:
 class PrintPreviewWindow : public Window
 {
+static const sal_Int32 PREVIEW_BITMAP_WIDTH;
+
 GDIMetaFile maMtf;
 SizemaOrigSize;
 SizemaPreviewSize;
 VirtualDevice   maPageVDev;
+Bitmap  maPreviewBitmap;
 rtl::OUString   maReplacementString;
 rtl::OUString   maToolTipString;
 boolmbGreyscale;
 FixedLine   maHorzDim;
 FixedLine   maVertDim;
 
+void preparePreviewBitmap();
+
 public:
 PrintPreviewWindow( Window* pParent );
 virtual ~PrintPreviewWindow();
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx
index 7562a16..bfceb7e 100644
--- a/vcl/source/window/printdlg.cxx
+++ b/vcl/source/window/printdlg.cxx
@@ -84,6 +84,8 @@ PrintDialog::PrintPreviewWindow::~PrintPreviewWindow()
 {
 }
 
+const sal_Int32 PrintDialog::PrintPreviewWindow::PREVIEW_BITMAP_WIDTH = 1600;
+
 void PrintDialog::PrintPreviewWindow::DataChanged( const DataChangedEvent 
i_rDCEvt )
 {
 // react on settings changed
@@ -133,13 +135,11 @@ void PrintDialog::PrintPreviewWindow::Resize()
 // quality of the preview, e.g. when its height approaches the number of 
text lines
 // find a good scaling factor
 Size aPreviewMMSize( maPageVDev.PixelToLogic( aScaledSize, MapMode( 
MAP_100TH_MM ) ) );
-double fZoom = double(maOrigSize.Height())/double(aPreviewMMSize.Height());
-while( fZoom  10 )
-{
-aScaledSize.Width() *= 2;
-aScaledSize.Height() *= 2;
-fZoom /= 2.0;
-}
+
+double aAspectRatio = aScaledSize.Height() / (double) aScaledSize.Width();
+
+aScaledSize.Width()  = PREVIEW_BITMAP_WIDTH;
+aScaledSize.Height() = PREVIEW_BITMAP_WIDTH * aAspectRatio;
 
 maPageVDev.SetOutputSizePixel( aScaledSize, sal_False );
 
@@ -175,47 +175,9 @@ void PrintDialog::PrintPreviewWindow::Paint( const 
Rectangle )
 }
 else
 {
-GDIMetaFile aMtf( maMtf );
-
-const Size aVDevSize( maPageVDev.GetOutputSizePixel() );
-const Size aLogicSize( maPageVDev.PixelToLogic( aVDevSize, MapMode( 
MAP_100TH_MM ) ) );
-Size aOrigSize( maOrigSize );
-if( aOrigSize.Width()  1 )
-aOrigSize.Width() = aLogicSize.Width();
-if( aOrigSize.Height()  1 )
-aOrigSize.Height() = aLogicSize.Height();
-double fScale = double(aLogicSize.Width())/double(aOrigSize.Width());
-
-
-maPageVDev.Erase();
-maPageVDev.Push();
-maPageVDev.SetMapMode( MAP_100TH_MM );
-sal_uLong nOldDrawMode = maPageVDev.GetDrawMode();
-if( mbGreyscale )
-maPageVDev.SetDrawMode( maPageVDev.GetDrawMode() |
-( DRAWMODE_GRAYLINE | DRAWMODE_GRAYFILL | 
DRAWMODE_GRAYTEXT |
-  DRAWMODE_GRAYBITMAP | 
DRAWMODE_GRAYGRADIENT ) );
-aMtf.WindStart();
-aMtf.Scale( fScale, fScale );
-aMtf.WindStart();
-
-const sal_uInt16 nOriginalAA(maPageVDev.GetAntialiasing());
-maPageVDev.SetAntialiasing(nOriginalAA | ANTIALIASING_ENABLE_B2DDRAW);
-
-aMtf.Play( maPageVDev, Point( 0, 0 ), aLogicSize );
-maPageVDev.Pop();
-
-maPageVDev.SetAntialiasing(nOriginalAA);
-
-SetMapMode( MAP_PIXEL );
-maPageVDev.SetMapMode( MAP_PIXEL );
-
-// use lanzcos scaling
-Bitmap aContent(maPageVDev.GetBitmap(Point(0, 0), aVDevSize));
-aContent.Scale(maPreviewSize, BMP_SCALE_BEST);
-DrawBitmap(aOffset, aContent);
-
-maPageVDev.SetDrawMode( nOldDrawMode );
+Bitmap aPreviewBitmap(maPreviewBitmap);
+aPreviewBitmap.Scale(maPreviewSize, BMP_SCALE_BEST);
+DrawBitmap(aOffset, aPreviewBitmap);
 }
 
 Rectangle aFrameRect( aOffset + Point( -1, -1 ),
@@ -236,10 +198,6 @@ void PrintDialog::PrintPreviewWindow::Command( const 
CommandEvent rEvt )
 pDlg-previewForward();
 else if( 

[Libreoffice-commits] core.git: ios/Executable_Viewer.mk

2013-03-03 Thread Tor Lillqvist
 ios/Executable_Viewer.mk |   12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

New commits:
commit 874a1bf1748dd0246a00e2a3cd4724f852e71a52
Author: Tor Lillqvist t...@iki.fi
Date:   Sun Mar 3 22:04:59 2013 +0200

The AllModulesButInstsetNative thing didn't work

Change-Id: I323d1983238297b094fa0aa7776d03977d3d39e0

diff --git a/ios/Executable_Viewer.mk b/ios/Executable_Viewer.mk
index bd462d5..c3a29cb 100644
--- a/ios/Executable_Viewer.mk
+++ b/ios/Executable_Viewer.mk
@@ -27,6 +27,16 @@ $(eval $(call gb_Executable_add_objcxxobjects,Viewer,\
 ios/experimental/Viewer/Viewer/main \
 ))
 
-$(call gb_Executable_get_target,Viewer) : $(call 
gb_Postprocess_get_target,AllModulesButInstsetNative)
+# The executables built for iOS link to all LO libs statically. The
+# link command just uses the wildcard function to list all of them.
+# Instead of tediously here declare dependencies on the transitive
+# closure of those from which some object ends up being linked in, we
+# list a few libraries that are high in the dependency forest to make
+# it likely that all necessary libraries are built before this
+# executable is.
+$(eval $(call gb_Executable_use_libraries,Viewer,\
+   msword \
+   scfilt \
+))
 
 # vim: set ts=4 sw=4 et:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - android/experimental sc/source sw/source vcl/inc vcl/source

2013-03-03 Thread Tor Lillqvist
 
android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
 |   52 +++---
 sc/source/ui/view/tabview.cxx  
|   18 ++-
 sw/source/ui/uiview/viewport.cxx   
|6 +
 vcl/inc/vcl/cmdevt.hxx 
|1 
 vcl/source/window/winproc.cxx  
|   26 +
 5 files changed, 63 insertions(+), 40 deletions(-)

New commits:
commit 6339bf132518130d4093869f9913df5b103bf5d3
Author: Tor Lillqvist t...@iki.fi
Date:   Sun Mar 3 22:23:54 2013 +0200

Android desktop app: More hacking on scaling

Added a new mode for the CommandWheelData, COMMAND_WHEEL_ZOOM_SCALE, where
the delta is the scale percentage to multiply the curent zoom factor
with. Implement in Writer and Calc.

But actually, I am more and more startng to think that live scaling of the
document view during the pinch/spread gesture will never perform fast
enough. Need to go back to the (simple) trick to just scale the BitmapView,
and do the actual LO re-zoom only when the gesture finishes. But in order 
for
that to look nicer, need to get rid of the LO UI element clutter around the
document, scrollbars, buttons etc. Plus of course need to make sure the LO
zooming happens around the gesture center position.

Change-Id: I20dfcb4c2a97aacbf7e5b6ea5c24816b237fe687

diff --git 
a/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
 
b/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
index d01c323..baa36dc 100644
--- 
a/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
+++ 
b/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
@@ -166,7 +166,7 @@ public class Desktop
 boolean scalingInProgress;
 GestureDetector gestureDetector;
 ScaleGestureDetector scaleDetector;
-float scale = 1;
+long lastGestureEventTime;
 
 public BitmapView()
 {
@@ -201,27 +201,31 @@ public class Desktop
  new 
ScaleGestureDetector.SimpleOnScaleGestureListener() {
  @Override public boolean 
onScaleBegin(ScaleGestureDetector detector)
  {
- Log.i(TAG, onScaleBegin: 
pivot=( + detector.getFocusX() + ,  + detector.getFocusY() + ));
  scalingInProgress = true;
+ lastGestureEventTime = 
System.currentTimeMillis();
  return true;
  }
 
  @Override public boolean 
onScale(ScaleGestureDetector detector)
  {
- float s = 
detector.getScaleFactor();
- if (s  0.95  s  1.05)
+ long now = 
System.currentTimeMillis();
+ if (now - 
lastGestureEventTime  100)
  return false;
- scale *= s;
- Log.i(TAG, onScale:  + s + 
 =  + scale);
+ float scale = 
detector.getScaleFactor();
+ if (scale  0.95  scale  
1.05)
+ return false;
+ Log.i(TAG, onScale:  + 
scale);
+ lastGestureEventTime = now;
  Desktop.zoom(scale, (int) 
detector.getFocusX(), (int) detector.getFocusY());
  return true;
  }
 
  @Override public void 
onScaleEnd(ScaleGestureDetector detector)
  {
+ float scale = 
detector.getScaleFactor();
  Log.i(TAG, onScaleEnd:  + 
scale);
- Desktop.zoom(scale, (int) 
detector.getFocusX(), (int) detector.getFocusY());
- scale = 1;
+ if (!(scale  0.95  scale  
1.05))
+ Desktop.zoom(scale, (int) 
detector.getFocusX(), (int) 

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

2013-03-03 Thread Tor Lillqvist
 vcl/source/window/printdlg.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit c7b82aa4c36ced5927f7a29db20664e53ea4810b
Author: Tor Lillqvist t...@iki.fi
Date:   Sun Mar 3 23:00:56 2013 +0200

WaE: unused variable 'aPreviewMMSize'

Change-Id: I98ca154f800c635ca063ed7c3bd1b9afc5d8110b

diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx
index bfceb7e..00c2f69 100644
--- a/vcl/source/window/printdlg.cxx
+++ b/vcl/source/window/printdlg.cxx
@@ -134,7 +134,6 @@ void PrintDialog::PrintPreviewWindow::Resize()
 // full page size but not too small either. This also results in much 
better visual
 // quality of the preview, e.g. when its height approaches the number of 
text lines
 // find a good scaling factor
-Size aPreviewMMSize( maPageVDev.PixelToLogic( aScaledSize, MapMode( 
MAP_100TH_MM ) ) );
 
 double aAspectRatio = aScaledSize.Height() / (double) aScaledSize.Width();
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - configure.ac Makefile.in odk/CustomTarget_doxygen.mk solenv/gbuild

2013-03-03 Thread Peter Foley
 Makefile.in |   43 ---
 configure.ac|3 ++-
 odk/CustomTarget_doxygen.mk |4 ++--
 solenv/gbuild/Module.mk |1 +
 4 files changed, 41 insertions(+), 10 deletions(-)

New commits:
commit 7b7c7b03df24097b012a20227124811ac555a1f6
Author: Peter Foley pefol...@verizon.net
Date:   Sun Mar 3 09:01:33 2013 -0500

doxygen fixes

Change-Id: I18dd661bffc2dedecf13404b6772fb4dcdeaa24d

diff --git a/odk/CustomTarget_doxygen.mk b/odk/CustomTarget_doxygen.mk
index 7c4571a..0212508 100644
--- a/odk/CustomTarget_doxygen.mk
+++ b/odk/CustomTarget_doxygen.mk
@@ -27,7 +27,7 @@ odk_INCFILELIST := com/sun/star/uno/Any.h \
com/sun/star/uno/Type.hxx
 
 # Cygwin Doxygen needs unix paths
-DOXY_INPUT := $(docu_SRCDIR)/main.dox $(addprefix 
$(OUTDIR)/inc/,$(odk_INCDIRLIST) $(odk_INCFILELIST))
+DOXY_INPUT := $(SRCDIR)/odk/pack/gendocu/main.dox $(addprefix 
$(OUTDIR)/inc/,$(odk_INCDIRLIST) $(odk_INCFILELIST))
 DOXY_INPUT := $(if $(filter WNT,$(OS)),$(shell cygpath -u 
$(DOXY_INPUT)),$(DOXY_INPUT))
 DOXY_WORKDIR := $(if $(filter WNT,$(OS)),$(shell cygpath -u 
$(odk_WORKDIR)/docs/cpp/ref),$(odk_WORKDIR)/docs/cpp/ref)
 DOXY_STRIP_PATH := $(if $(filter WNT,$(OS)),$(shell cygpath -u 
$(OUTDIR)/inc),$(OUTDIR)/inc)
@@ -48,7 +48,7 @@ $(odk_WORKDIR)/docs/cpp/ref/index.html: $(DOXY_DEPS)
sed -e 's!^INPUT = %$$!INPUT = $(DOXY_INPUT)!' \
-e 's!^OUTPUT_DIRECTORY = %$$!OUTPUT_DIRECTORY = $(DOXY_WORKDIR)!' \
-e 's!^PROJECT_BRIEF = %$$!PROJECT_BRIEF = $(CPPDOCREFNAME)!' \
--e 's!^QUIET = %$$!QUIET = $(if $(VERBOSE),YES,NO)!' \
+-e 's!^QUIET = %$$!QUIET = $(if $(VERBOSE),NO,YES)!' \
 -e 's!^STRIP_FROM_PATH = %$$!STRIP_FROM_PATH = $(DOXY_STRIP_PATH)!' \
$  $(odk_WORKDIR)/Doxyfile
$(DOXYGEN) $(odk_WORKDIR)/Doxyfile  /dev/null
commit 96017f081f166c7c5649c43ad4f455f2c7805713
Author: Peter Foley pefol...@verizon.net
Date:   Sat Mar 2 18:48:33 2013 -0500

fixup configure output

Change-Id: I1ec6261e1f5a34a9c1f00d874aa5191368034f4c

diff --git a/configure.ac b/configure.ac
index 62d2f78..ed90a4b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5039,8 +5039,9 @@ if test $GXX = yes; then
 dnl see https://code.google.com/p/android/issues/detail?id=41770
 if test $_gpp_majmin -ge 407; then
 glibcxx_threads=no
-AC_MSG_CHECKING([whether $CXX is broken with boost.thread])
 AC_LANG_PUSH([C++])
+AC_REQUIRE_CPP
+AC_MSG_CHECKING([whether $CXX is broken with boost.thread])
 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[
 #include bits/c++config.h]],[[
 #if !defined(_GLIBCXX_HAVE_GTHR_DEFAULT) \
commit ac3e90b596170c31073c36cb9473aee6d59fbdde
Author: Peter Foley pefol...@verizon.net
Date:   Sat Mar 2 13:06:22 2013 -0500

build userfriendly targets from toplevel

Change-Id: Iffbe6d4570bf4d4bdd7347260a6bb4160af24515

diff --git a/Makefile.in b/Makefile.in
index 208f619..eb67dad 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -84,13 +84,42 @@ endef
 
 $(eval $(call gbuild_modules_rules,$(filter-out Module%,$(subst /, ,$(subst 
$(SRCDIR)/,,$(wildcard $(SRCDIR)/*/Module_*.mk))
 
-# run a JunitTest - relies on naming convention (module prefix)
-$(WORKDIR)/JunitTest/%/done :
-   cd $(firstword $(subst _, ,$*))  $(GNUMAKE) $(GMAKE_OPTIONS) $@
-
-# run a CppunitTest - relies on naming convention (module prefix)
-$(WORKDIR)/CppunitTest/%.test :
-   cd $(firstword $(subst _, ,$*))  $(GNUMAKE) $(GMAKE_OPTIONS) $@
+gbuild_TARGETS := AllLangHelp \
+   AllLangResTarget \
+   AllLangZip \
+   AutoInstallLibs \
+   CliLibrary \
+   CliNativeLibrary \
+   CliUnoApiTarget \
+   Configuration \
+   CppunitTest \
+   CustomTarget \
+   Dictionary \
+   Executable \
+   Extension \
+   ExternalPackage \
+   ExternalProject \
+   InstallModule \
+   InstallScript \
+   InternalUnoApi \
+   Jar \
+   JunitTest \
+   Library \
+   Module \
+   Package \
+   Pagein \
+   Pyuno \
+   Rdb \
+   StaticLibrary \
+   UI \
+   UnoApi \
+   UnoApiMerge \
+   UnpackedTarball \
+   WinResTarget \
+   Zip
+# build a generic gbuild target
+$(foreach target,$(gbuild_TARGETS),$(target)_%):
+   $(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS) -f 
$(SRCDIR)/Makefile.build $@
 
 #
 # Clean
diff --git a/solenv/gbuild/Module.mk b/solenv/gbuild/Module.mk
index 926aeae..0e694e5 100644
--- a/solenv/gbuild/Module.mk
+++ b/solenv/gbuild/Module.mk
@@ -164,6 +164,7 @@ gb_Module_SUBSEQUENTCHECKTARGETSTACK := $(call 
gb_Module_get_subsequentcheck_tar
 gb_Module_CLEANTARGETSTACK := $(call gb_Module_get_clean_target,$(1)) 
$(gb_Module_CLEANTARGETSTACK)
 gb_Module_CURRENTMODULE_DEBUG_ENABLED := $(call gb_Module__debug_enabled,$(1))
 gb_Module_CURRENTMODULE_NAME := $(1)
+$(call 

[PUSHED] build userfriendly targets from toplevel

2013-03-03 Thread Peter Foley (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/2518


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Iffbe6d4570bf4d4bdd7347260a6bb4160af24515
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Peter Foley pefol...@verizon.net

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


[Libreoffice-commits] core.git: android/experimental

2013-03-03 Thread Tor Lillqvist
 
android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
 |   38 --
 1 file changed, 3 insertions(+), 35 deletions(-)

New commits:
commit 70e8c341af0c6c6f2568a75326b6ee1d3df8145a
Author: Tor Lillqvist t...@iki.fi
Date:   Sun Mar 3 23:35:01 2013 +0200

Android desktop app: Simplify bootstrapping on the Java side

No need to call defaultBootstrap_InitialComponentContext() etc on the Java
side in this app. The full SVMain() etc will do all that anyway.

Change-Id: I555ccd8efbd0260a72fa5904bb6dcd255eed37d4

diff --git 
a/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
 
b/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
index baa36dc..8b46be7 100644
--- 
a/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
+++ 
b/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
@@ -33,8 +33,6 @@ import android.view.inputmethod.InputConnection;
 import android.view.inputmethod.InputMethodManager;
 
 import com.sun.star.awt.Key;
-import com.sun.star.lang.XMultiComponentFactory;
-import com.sun.star.uno.XComponentContext;
 
 import org.libreoffice.android.Bootstrap;
 
@@ -59,47 +57,17 @@ public class Desktop
  */
 class BootstrapContext
 {
-public long timingOverhead;
-public XComponentContext componentContext;
-public XMultiComponentFactory mcf;
 }
 
 BootstrapContext bootstrapContext;
-Bundle extras;
-
-// FIXME: we should prolly manage a bitmap buffer here and give it to
-// VCL to render into ... and pull the WM/stacking pieces up into the Java 
...
-// [ perhaps ;-]
-// how can we get an event to create a window - need a JNI callback I 
guess ...
 
 private void initBootstrapContext()
 {
-try
-{
-bootstrapContext = new BootstrapContext();
-
-long t0 = System.currentTimeMillis();
-long t1 = System.currentTimeMillis();
-bootstrapContext.timingOverhead = t1 - t0;
-
-Bootstrap.setup(this);
-
-// Avoid all the old style OSL_TRACE calls especially in vcl
-Bootstrap.putenv(SAL_LOG=+WARN+INFO);
-
-bootstrapContext.componentContext = 
com.sun.star.comp.helper.Bootstrap.defaultBootstrap_InitialComponentContext();
+bootstrapContext = new BootstrapContext();
 
-Log.i(TAG, context is + (bootstrapContext.componentContext!=null 
?  not : ) +  null);
+Bootstrap.setup(this);
 
-bootstrapContext.mcf = 
bootstrapContext.componentContext.getServiceManager();
-
-Log.i(TAG, mcf is + (bootstrapContext.mcf!=null ?  not : ) + 
 null);
-}
-catch (Exception e)
-{
-e.printStackTrace(System.err);
-finish();
-}
+Bootstrap.putenv(SAL_LOG=+WARN+INFO);
 }
 
 @Override public void onCreate(Bundle savedInstanceState)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] Translate German comments, various clean up

2013-03-03 Thread Philipp Weissenbacher
Hi all,

I submit this patch via the mailing list as I've had not luck with gerrit
tonight. I did a clean clone from and now gerrit won add change-ids to my
commit any more.

I tired downloading commit-msg and do 'git --amend' but that wasn't
successful.

Anyways, see the enclosed patch.


Philipp


0001-Translate-German-comments-various-clean-up.patch
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 44446] LibreOffice 3.6 most annoying bugs

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

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

   What|Removed |Added

 Depends on||55715

--- Comment #207 from Jorendc joren.libreoff...@telenet.be ---
I nominate Bug 55715 - FILESAVE: Writer creates corrupt docx when a chart is
copied from calc because this is a common used function and results in data
loss.

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


[PATCH] fdo#39468 translate German comments in vcl

2013-03-03 Thread Christian M. Heller (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2534

To pull it, you can do:

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

fdo#39468 translate German comments in vcl

modified:   vcl/inc/vcl/fltcall.hxx
modified:   vcl/inc/vcl/textdata.hxx
modified:   vcl/inc/vcl/texteng.hxx
modified:   vcl/source/control/combobox.cxx
modified:   vcl/source/control/fixed.cxx

Change-Id: I8af3fe962ba77d7047eac8d7570c5bc572585363
---
M vcl/inc/vcl/fltcall.hxx
M vcl/inc/vcl/textdata.hxx
M vcl/inc/vcl/texteng.hxx
M vcl/source/control/combobox.cxx
M vcl/source/control/fixed.cxx
5 files changed, 31 insertions(+), 30 deletions(-)



diff --git a/vcl/inc/vcl/fltcall.hxx b/vcl/inc/vcl/fltcall.hxx
index 91e4d28..03a6340 100644
--- a/vcl/inc/vcl/fltcall.hxx
+++ b/vcl/inc/vcl/fltcall.hxx
@@ -49,19 +49,19 @@
 
 typedef sal_Bool (*PFilterCall)(SvStream  rStream, Graphic  rGraphic,
 FilterConfigItem* pConfigItem, sal_Bool 
bPrefDialog);
-// Von diesem Typ sind sowohl Export-Filter-Funktionen als auch 
Import-Filter-Funktionen.
-// rFileName ist der komplette Pfadname der zu importierenden bzw. zu 
exportierenden Datei.
-// pCallBack darf auch NULL sein. pCallerData wird der Callback-Funktion 
uebergeben.
-// pOptionsConfig darf NULL sein. Anderenfalls ist die Gruppe des Config 
schon gesetzt
-// und darf von dem Filter nicht geaendert werden!
-// Wenn bPrefDialog==sal_True gilt, wird ggf. ein Preferences-Dialog 
durchgefuehrt.
+// Of this type are both export-filter and import-filter functions
+// rFileName is the complete path to the file to be imported or exported
+// pCallBack can be NULL. pCallerData is handed to the callback function
+// pOptionsConfig can be NULL; if not, the group of the config is already 
set
+// and may not be changed by this filter!
+// If bPrefDialog==sal_True, a Preferences-Dialog might be called
 
 typedef sal_Bool ( *PFilterDlgCall )( FltCallDialogParameter );
-// Von diesem Typ sind sowohl Export-Filter-Funktionen als auch 
Import-Filter-Funktionen.
-// Uebergeben wird ein Pointer auf ein Parent-Fenster und auf die 
Options-Config.
-// pOptions und pWindow duerfen NULL sein, in diesem Fall wird sal_False 
zurueckgeliefert.
-// Anderenfalls ist die Gruppe der Config schon gesetzt
-// und darf von dem Filter nicht geaendert werden!
+// Of this type are both export-filter and import-filter functions
+// hands a pointer to the parent window and to the options config
+// pOptions and pWindow can be NULL; in this case sal_False is returned,
+// otherwise the group of the config is already set
+// and may not be changed by this filter!
 
 #endif
 
diff --git a/vcl/inc/vcl/textdata.hxx b/vcl/inc/vcl/textdata.hxx
index 4ee0e2f..476ba00 100644
--- a/vcl/inc/vcl/textdata.hxx
+++ b/vcl/inc/vcl/textdata.hxx
@@ -25,7 +25,7 @@
 #include svl/smplhint.hxx
 #include tools/string.hxx
 
-// Fuer Notify, wenn alle Absaetze geloescht wurden...
+// for Notify, if all paragraphs were deleted
 #define TEXT_PARA_ALL   0x
 
 class TextPaM
diff --git a/vcl/inc/vcl/texteng.hxx b/vcl/inc/vcl/texteng.hxx
index e5f4582..2fc0314 100644
--- a/vcl/inc/vcl/texteng.hxx
+++ b/vcl/inc/vcl/texteng.hxx
@@ -122,7 +122,7 @@
 
 TxtAlignmeAlign;
 
-sal_BoolmbIsFormatting  : 1;// Semaphore wegen der 
Hook's
+sal_BoolmbIsFormatting  : 1;// semaphore for the 
Hook's
 sal_BoolmbFormatted : 1;
 sal_BoolmbUpdate: 1;
 sal_BoolmbModified  : 1;
@@ -161,7 +161,7 @@
 SAL_DLLPRIVATE ::com::sun::star::uno::Reference  
::com::sun::star::i18n::XExtendedInputSequenceChecker  
GetInputSequenceChecker() const;
 SAL_DLLPRIVATE sal_Bool IsInputSequenceCheckingRequired( sal_Unicode c, 
const TextSelection rCurSel ) const;
 
-// Broadcasten bzw. Selektionen anpassen:
+// broadcast or adjust selections
 voidImpParagraphInserted( sal_uLong nPara );
 voidImpParagraphRemoved( sal_uLong nPara );
 voidImpCharsRemoved( sal_uLong nPara, sal_uInt16 nPos, 
sal_uInt16 nChars );
@@ -210,12 +210,12 @@
 sal_uLong   CalcTextWidth( sal_uLong nPara, sal_uInt16 
nPortionStart, sal_uInt16 nPortionLen, const Font* pFont = 0 );
 Range   GetInvalidYOffsets( sal_uLong nPortion );
 
-// Fuer Undo/Redo
+// for Undo/Redo
 voidInsertContent( TextNode* pNode, sal_uLong nPara );
 TextPaM SplitContent( sal_uLong nNode, sal_uInt16 nSepPos );
 TextPaM ConnectContents( sal_uLong nLeftNode );
 
-// Ans API uebergebene PaM's und Selektionen auf einen gueltigen Bereich 
einstellen
+// adjust PaM's and selections that were transfered to 

Re: [PATCH] fdo#39468 translate German comments in vcl

2013-03-03 Thread Christian Heller
-// Alle Eintraege entfernen, zu denen es einen Entry gibt, der
aber nicht selektiert ist.
+// remove all entries to which there is an selected entry

sorry, this should have been

+// remove all entries to which there is an entry, but which is
not selected


On Sun, Mar 3, 2013 at 6:08 PM, Christian M. Heller (via Code Review) 
ger...@gerrit.libreoffice.org wrote:

 Hi,

 I have submitted a patch for review:

 https://gerrit.libreoffice.org/2534

 To pull it, you can do:

 git pull ssh://gerrit.libreoffice.org:29418/corerefs/changes/34/2534/1

 fdo#39468 translate German comments in vcl

 modified:   vcl/inc/vcl/fltcall.hxx
 modified:   vcl/inc/vcl/textdata.hxx
 modified:   vcl/inc/vcl/texteng.hxx
 modified:   vcl/source/control/combobox.cxx
 modified:   vcl/source/control/fixed.cxx

 Change-Id: I8af3fe962ba77d7047eac8d7570c5bc572585363
 ---
 M vcl/inc/vcl/fltcall.hxx
 M vcl/inc/vcl/textdata.hxx
 M vcl/inc/vcl/texteng.hxx
 M vcl/source/control/combobox.cxx
 M vcl/source/control/fixed.cxx
 5 files changed, 31 insertions(+), 30 deletions(-)



 diff --git a/vcl/inc/vcl/fltcall.hxx b/vcl/inc/vcl/fltcall.hxx
 index 91e4d28..03a6340 100644
 --- a/vcl/inc/vcl/fltcall.hxx
 +++ b/vcl/inc/vcl/fltcall.hxx
 @@ -49,19 +49,19 @@

  typedef sal_Bool (*PFilterCall)(SvStream  rStream, Graphic  rGraphic,
  FilterConfigItem* pConfigItem, sal_Bool
 bPrefDialog);
 -// Von diesem Typ sind sowohl Export-Filter-Funktionen als auch
 Import-Filter-Funktionen.
 -// rFileName ist der komplette Pfadname der zu importierenden bzw. zu
 exportierenden Datei.
 -// pCallBack darf auch NULL sein. pCallerData wird der
 Callback-Funktion uebergeben.
 -// pOptionsConfig darf NULL sein. Anderenfalls ist die Gruppe des
 Config schon gesetzt
 -// und darf von dem Filter nicht geaendert werden!
 -// Wenn bPrefDialog==sal_True gilt, wird ggf. ein Preferences-Dialog
 durchgefuehrt.
 +// Of this type are both export-filter and import-filter functions
 +// rFileName is the complete path to the file to be imported or
 exported
 +// pCallBack can be NULL. pCallerData is handed to the callback
 function
 +// pOptionsConfig can be NULL; if not, the group of the config is
 already set
 +// and may not be changed by this filter!
 +// If bPrefDialog==sal_True, a Preferences-Dialog might be called

  typedef sal_Bool ( *PFilterDlgCall )( FltCallDialogParameter );
 -// Von diesem Typ sind sowohl Export-Filter-Funktionen als auch
 Import-Filter-Funktionen.
 -// Uebergeben wird ein Pointer auf ein Parent-Fenster und auf die
 Options-Config.
 -// pOptions und pWindow duerfen NULL sein, in diesem Fall wird
 sal_False zurueckgeliefert.
 -// Anderenfalls ist die Gruppe der Config schon gesetzt
 -// und darf von dem Filter nicht geaendert werden!
 +// Of this type are both export-filter and import-filter functions
 +// hands a pointer to the parent window and to the options config
 +// pOptions and pWindow can be NULL; in this case sal_False is
 returned,
 +// otherwise the group of the config is already set
 +// and may not be changed by this filter!

  #endif

 diff --git a/vcl/inc/vcl/textdata.hxx b/vcl/inc/vcl/textdata.hxx
 index 4ee0e2f..476ba00 100644
 --- a/vcl/inc/vcl/textdata.hxx
 +++ b/vcl/inc/vcl/textdata.hxx
 @@ -25,7 +25,7 @@
  #include svl/smplhint.hxx
  #include tools/string.hxx

 -// Fuer Notify, wenn alle Absaetze geloescht wurden...
 +// for Notify, if all paragraphs were deleted
  #define TEXT_PARA_ALL   0x

  class TextPaM
 diff --git a/vcl/inc/vcl/texteng.hxx b/vcl/inc/vcl/texteng.hxx
 index e5f4582..2fc0314 100644
 --- a/vcl/inc/vcl/texteng.hxx
 +++ b/vcl/inc/vcl/texteng.hxx
 @@ -122,7 +122,7 @@

  TxtAlignmeAlign;

 -sal_BoolmbIsFormatting  : 1;// Semaphore
 wegen der Hook's
 +sal_BoolmbIsFormatting  : 1;// semaphore for
 the Hook's
  sal_BoolmbFormatted : 1;
  sal_BoolmbUpdate: 1;
  sal_BoolmbModified  : 1;
 @@ -161,7 +161,7 @@
  SAL_DLLPRIVATE ::com::sun::star::uno::Reference 
 ::com::sun::star::i18n::XExtendedInputSequenceChecker 
 GetInputSequenceChecker() const;
  SAL_DLLPRIVATE sal_Bool IsInputSequenceCheckingRequired( sal_Unicode
 c, const TextSelection rCurSel ) const;

 -// Broadcasten bzw. Selektionen anpassen:
 +// broadcast or adjust selections
  voidImpParagraphInserted( sal_uLong nPara );
  voidImpParagraphRemoved( sal_uLong nPara );
  voidImpCharsRemoved( sal_uLong nPara, sal_uInt16
 nPos, sal_uInt16 nChars );
 @@ -210,12 +210,12 @@
  sal_uLong   CalcTextWidth( sal_uLong nPara, sal_uInt16
 nPortionStart, sal_uInt16 nPortionLen, const Font* pFont = 0 );
  

Re: [PATCH] fdo#39468 translate German comments in vcl

2013-03-03 Thread Christian Heller
-// GetTextRect verkraftet keinen leeren String:
+// GetTextRect cannot take and empty string

and another one:

+// GetTextRect cannot take an empty string

Sorry for the noise!
Shall I change this once this is in ?
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 2 commits - external_deps.lst i18npool/source

2013-03-03 Thread Ariel Constenla-Haile
 external_deps.lst |6 
 i18npool/source/localedata/data/es_PE.xml |  211 --
 2 files changed, 5 insertions(+), 212 deletions(-)

New commits:
commit 874e4b67c189c5818ea14af208e00bf1427a5244
Author: Ariel Constenla-Haile arie...@apache.org
Date:   Sun Mar 3 13:33:17 2013 +

i121823 - update serf to new version 1.2.0

diff --git a/external_deps.lst b/external_deps.lst
index f20e911..92af377 100644
--- a/external_deps.lst
+++ b/external_deps.lst
@@ -126,9 +126,9 @@ if ( true )
 URL2 = $(OOO_EXTRAS)$(MD5)-$(name)
 
 if ( true )
-SHA1 = 231af70b7567a753b49df4216743010c193884b7
-name = serf-1.1.0.tar.bz2
-URL1 = http://serf.googlecode.com/files/serf-1.1.0.tar.bz2
+SHA1 = 30b29bd9214d50887abcc20cf82096aaaf5d1d61
+name = serf-1.2.0.tar.bz2
+URL1 = http://serf.googlecode.com/files/serf-1.2.0.tar.bz2
 URL2 = $(OOO_EXTRAS)$(SHA1)-$(name)
 
 if (SOLAR_JAVA==TRUE  (ENABLE_MEDIAWIKI==YES || ENABLE_REPORTBUILDER==YES))
commit 5f53868643c34a2631da430a54c0d1b1a8187a40
Author: Ariel Constenla-Haile arie...@apache.org
Date:   Sun Mar 3 11:53:04 2013 +

i121825 - Fix build breaker

diff --git a/i18npool/source/localedata/data/es_PE.xml 
b/i18npool/source/localedata/data/es_PE.xml
index abcb9ca..5bbd198 100644
--- a/i18npool/source/localedata/data/es_PE.xml
+++ b/i18npool/source/localedata/data/es_PE.xml
@@ -34,215 +34,8 @@
 PlatformIDgeneric/PlatformID
 /Platform
 /LC_INFO
-LC_CTYPE unoid=generic
-Separators
-DateSeparator//DateSeparator
-ThousandSeparator,/ThousandSeparator
-DecimalSeparator./DecimalSeparator
-TimeSeparator:/TimeSeparator
-Time100SecSeparator,/Time100SecSeparator
-ListSeparator;/ListSeparator
-LongDateDayOfWeekSeparator /LongDateDayOfWeekSeparator
-LongDateDaySeparator de /LongDateDaySeparator
-LongDateMonthSeparator de /LongDateMonthSeparator
-LongDateYearSeparator /LongDateYearSeparator
-/Separators
-Markers
-QuotationStart‘/QuotationStart
-QuotationEnd’/QuotationEnd
-DoubleQuotationStart“/DoubleQuotationStart
-DoubleQuotationEnd”/DoubleQuotationEnd
-/Markers
-TimeAMa.m./TimeAM
-TimePMp.m./TimePM
-MeasurementSystemMetric/MeasurementSystem
-/LC_CTYPE
-LC_FORMAT replaceFrom=[CURRENCY] replaceTo=[$S/-280A]
-FormatElement msgid=DateFormatskey1 default=true type=short 
usage=DATE formatindex=18
-FormatCodeD/MM/AA/FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey2 default=false type=medium 
usage=DATE formatindex=28
-FormatCodeNN DD/MMM AA/FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey3 default=false type=medium 
usage=DATE formatindex=34
-FormatCodeMM/AA/FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey4 default=false type=medium 
usage=DATE formatindex=35
-FormatCodeDD/MMM/FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey5 default=false type=medium 
usage=DATE formatindex=36
-FormatCode/FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey6 default=false type=medium 
usage=DATE formatindex=37
-FormatCodeQQ AA/FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey7 default=false type=medium 
usage=DATE formatindex=21
-FormatCodeDD/MM//FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey8 default=true type=medium 
usage=DATE formatindex=20
-FormatCodeDD/MM/AA/FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey9 default=true type=long usage=DATE 
formatindex=19
-FormatCodeD de  de /FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey10 default=false type=long 
usage=DATE formatindex=22
-FormatCodeD de MMM de AA/FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey11 default=false type=long 
usage=DATE formatindex=23
-FormatCodeD de MMM de /FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey12 default=false type=long 
usage=DATE formatindex=25
-FormatCodeD de  de /FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey13 default=false type=long 
usage=DATE formatindex=27
-FormatCodeNN D de MMM de AA/FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey14 default=false type=long 
usage=DATE formatindex=29
-FormatCodeNN D de  de /FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey15 default=false type=long 
usage=DATE formatindex=30
-FormatCodeD de  de /FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey16 default=false type=long 
usage=DATE formatindex=24
-FormatCodeD. MMM. /FormatCode
-DefaultName/DefaultName
-/FormatElement
-FormatElement msgid=DateFormatskey17 default=false type=long 
usage=DATE formatindex=26

[Libreoffice-commits] core.git: configure.ac

2013-03-03 Thread Fridrich Štrba
 configure.ac |4 
 1 file changed, 4 insertions(+)

New commits:
commit e0a3eba0c0446fa9b32a03bdbd7243ab38512521
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Mon Mar 4 02:12:53 2013 +0100

If enabling mozab on windows, package the needed dlls and manifest

Change-Id: I3152ba166c2ea22bd740d85a89d2b6a0c073279e

diff --git a/configure.ac b/configure.ac
index ed90a4b..9df069c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4869,6 +4869,10 @@ find_msvc_dlls()
 msvcdlls=$msvcdlls msvcm90.dll Microsoft.VC90.CRT.manifest
 fi
 
+if test $enable_win_mozab_driver = yes -a $WITH_MINGW != YES ; then
+msvcdlls=$msvcdlls Microsoft.VC80.CRT.manifest msvcp80.dll 
msvcr80.dll
+fi
+
 for dll in $msvcdlls; do
 if ! test -f $msvcdllpath/$dll; then
 AC_MSG_ERROR([can not find $dll in $msvcdllpath])
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: configure.ac

2013-03-03 Thread Fridrich Štrba
 configure.ac |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 2c9d3817429b1537ea31521cb263a52ce9c7968e
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Mon Mar 4 02:18:06 2013 +0100

Better to add those ones after the check

Change-Id: If9acef1f2b25f94521ce1ff903eaaca7ea90b4cd

diff --git a/configure.ac b/configure.ac
index 9df069c..ede03c0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4869,15 +4869,15 @@ find_msvc_dlls()
 msvcdlls=$msvcdlls msvcm90.dll Microsoft.VC90.CRT.manifest
 fi
 
-if test $enable_win_mozab_driver = yes -a $WITH_MINGW != YES ; then
-msvcdlls=$msvcdlls Microsoft.VC80.CRT.manifest msvcp80.dll 
msvcr80.dll
-fi
-
 for dll in $msvcdlls; do
 if ! test -f $msvcdllpath/$dll; then
 AC_MSG_ERROR([can not find $dll in $msvcdllpath])
 fi
 done
+
+if test $enable_win_mozab_driver = yes -a $WITH_MINGW != YES ; then
+msvcdlls=$msvcdlls Microsoft.VC80.CRT.manifest msvcp80.dll 
msvcr80.dll
+fi
 }
 
 if test $build_os = cygwin; then
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: RepositoryFixes.mk

2013-03-03 Thread Fridrich Štrba
 RepositoryFixes.mk |9 -
 1 file changed, 9 deletions(-)

New commits:
commit 38470c49ee3d9f346755c6d3eb84b8264a5cbf8f
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Mon Mar 4 02:24:10 2013 +0100

Those libraries are not anymore used on windows at all

Change-Id: Ia231c8f42677a6a64e151dc72c5a392962fb8bff

diff --git a/RepositoryFixes.mk b/RepositoryFixes.mk
index 9ff6656..0965714 100644
--- a/RepositoryFixes.mk
+++ b/RepositoryFixes.mk
@@ -107,7 +107,6 @@ gb_Library_DLLFILENAMES := $(patsubst 
ssl:ssl%,ssl:ssleay32%,$(gb_Library_DLLFIL
 
 else # $(COM) != GCC
 
-gb_Library_FILENAMES := $(patsubst 
croco-0.6-3:icroco-0.6-3%,croco-0.6-3:libcroco-0.6-3%,$(gb_Library_FILENAMES))
 gb_Library_FILENAMES := $(patsubst 
comphelper:icomphelper%,comphelper:icomphelp%,$(gb_Library_FILENAMES))
 gb_Library_FILENAMES := $(patsubst 
cppunit:icppunit%,cppunit:icppunit_dll%,$(gb_Library_FILENAMES))
 gb_Library_FILENAMES := $(patsubst 
crypto:icrypto%,crypto:libeay32%,$(gb_Library_FILENAMES))
@@ -130,17 +129,9 @@ gb_Library_FILENAMES := $(patsubst 
z:z%,z:zlib%,$(gb_Library_FILENAMES))
 
 # change the names of all import libraries that don't have an i prefix as in 
our standard naming schema
 gb_Library_NOILIBFILENAMES := \
-gdk_pixbuf-2.0 \
-gio-2.0 \
-glib-2.0 \
-gmodule-2.0 \
-gobject-2.0 \
-gthread-2.0 \
 icudt icuin icule icuuc \
 langtag \
 lcms2 \
-pango-1.0 \
-pangocairo-1.0 \
 xpcom \
 xpcom_core \
 nspr4 \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: configure.ac

2013-03-03 Thread Fridrich Štrba
 configure.ac |4 
 1 file changed, 4 deletions(-)

New commits:
commit 3677953fc3358460f2c54174545ed2103e728837
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Mon Mar 4 02:35:47 2013 +0100

Revert the VS2005 dll fix. We will need a separate rule for that.

This reverts commit 2c9d3817429b1537ea31521cb263a52ce9c7968e.

Change-Id: Id2f0eca9f487920cdb4f36e99c776475bcde4721

diff --git a/configure.ac b/configure.ac
index ede03c0..ed90a4b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4874,10 +4874,6 @@ find_msvc_dlls()
 AC_MSG_ERROR([can not find $dll in $msvcdllpath])
 fi
 done
-
-if test $enable_win_mozab_driver = yes -a $WITH_MINGW != YES ; then
-msvcdlls=$msvcdlls Microsoft.VC80.CRT.manifest msvcp80.dll 
msvcr80.dll
-fi
 }
 
 if test $build_os = cygwin; then
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] fdo#61513: Remove FSysFailOnErrorImpl macro

2013-03-03 Thread Marcos Souza (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2535

To pull it, you can do:

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

fdo#61513: Remove FSysFailOnErrorImpl macro

This patch removes all used of this useless macro.

Change-Id: Ib3842ef28ea676e75b18c192f8d9610dcb3c3d0c
---
M tools/source/fsys/dirent.cxx
M tools/source/fsys/tdir.cxx
M tools/source/fsys/unx.hxx
M tools/source/fsys/wntmsc.cxx
M tools/source/fsys/wntmsc.hxx
5 files changed, 0 insertions(+), 18 deletions(-)



diff --git a/tools/source/fsys/dirent.cxx b/tools/source/fsys/dirent.cxx
index c4ae7a9..d00ed7c 100644
--- a/tools/source/fsys/dirent.cxx
+++ b/tools/source/fsys/dirent.cxx
@@ -768,7 +768,6 @@
 return sal_True;
 #endif
 
-FSysFailOnErrorImpl();
 DirEntryKind eKind = FileStat( *this, nAccess ).GetKind();
 if ( eKind  ( FSYS_KIND_FILE | FSYS_KIND_DIR ) )
 {
@@ -787,8 +786,6 @@
 
 sal_Bool DirEntry::First()
 {
-FSysFailOnErrorImpl();
-
 StringaUniPathName( GetPath().GetFull() );
 rtl::OString aPathName(rtl::OUStringToOString(aUniPathName, 
osl_getThreadTextEncoding()));
 
@@ -1454,7 +1451,6 @@
 return sal_True;
 else
 {
-FSysFailOnErrorImpl();
 String aDirName(pNewDir-GetFull());
 rtl::OString 
bDirName(rtl::OUStringToOString(aDirName, osl_getThreadTextEncoding()));
 
@@ -1518,7 +1514,6 @@
 return FSYS_ERR_ALREADYEXISTS;
 }
 
-FSysFailOnErrorImpl();
 String aFrom( GetFull() );
 
 String aTo( aDest.GetFull() );
@@ -1649,7 +1644,6 @@
 DBG_CHKTHIS( DirEntry, ImpCheckDirEntry );
 
 FSysError eError = FSYS_ERR_OK;
-FSysFailOnErrorImpl();
 
 // Terminate name string with two '0'
 String aTmpName( GetFull() );
diff --git a/tools/source/fsys/tdir.cxx b/tools/source/fsys/tdir.cxx
index b33c9cf..5e6ed05 100644
--- a/tools/source/fsys/tdir.cxx
+++ b/tools/source/fsys/tdir.cxx
@@ -289,7 +289,6 @@
 {
 
 sal_uInt16 nRead = 0; // Number of read entries in this round
-FSysFailOnErrorImpl();
 
 // did not complete
 if ( pReader )
diff --git a/tools/source/fsys/unx.hxx b/tools/source/fsys/unx.hxx
index 9728d71..8a3ee3b 100644
--- a/tools/source/fsys/unx.hxx
+++ b/tools/source/fsys/unx.hxx
@@ -71,8 +71,6 @@
 rDate = Date( pTime-tm_mday, pTime-tm_mon + 1, pTime-tm_year + 1900 );
 }
 
-#define FSysFailOnErrorImpl()
-
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/tools/source/fsys/wntmsc.cxx b/tools/source/fsys/wntmsc.cxx
index 7c74ed4..f6c9e0e 100644
--- a/tools/source/fsys/wntmsc.cxx
+++ b/tools/source/fsys/wntmsc.cxx
@@ -114,7 +114,6 @@
 char *pOld;
 rtl::OString aFullName(rtl::OUStringToOString(GetFull(),
 osl_getThreadTextEncoding()));
-FSysFailOnErrorImpl();
 if ( GetFullPathName(aFullName.getStr(), 256, sBuf, pOld)  511 )
 return sal_False;
 
@@ -143,7 +142,6 @@
 DWORD nMaxCompLen[2];
 DWORD nFlags[2];
 rtl::OString aRootDir = pTop-aName;
-FSysFailOnErrorImpl();
 
 // Try network device first due to slow samba drives
 if ( !WNetGetConnection( aRootDir.getStr(),
@@ -168,8 +166,6 @@
 sal_Bool DirEntry::SetCWD( sal_Bool bSloppy ) const
 {
 DBG_CHKTHIS( DirEntry, ImpCheckDirEntry );
-
-FSysFailOnErrorImpl();
 
 if ( eFlag == FSYS_FLAG_CURRENT  !aName.getLength() )
 return sal_True;
@@ -593,9 +589,6 @@
 nError = FSYS_ERR_OK;
 return sal_True;
 }
-
-// Don't show error boxes
-FSysFailOnErrorImpl();
 
 // Redirect
 String aPath( rDirEntry.GetFull() );
diff --git a/tools/source/fsys/wntmsc.hxx b/tools/source/fsys/wntmsc.hxx
index bb1dbac..bf83941 100644
--- a/tools/source/fsys/wntmsc.hxx
+++ b/tools/source/fsys/wntmsc.hxx
@@ -63,8 +63,6 @@
 return GetDriveType( aDriveRoot.getStr() )  1;
 }
 
-#define FSysFailOnErrorImpl()
-
 #endif
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib3842ef28ea676e75b18c192f8d9610dcb3c3d0c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com

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


master: translation missing in options dialog ; bug ?

2013-03-03 Thread Jean-Baptiste Faure
Hi,

I know that it is too early to work on translation in the master, but
there is something that I find weird: several parts of the options
dialogs are not translated in the master although they are in LO 4.0 and
are not different from LO 4.0.
For example in Version 4.1.0.0.alpha0+ (Build ID:
70e8c341af0c6c6f2568a75326b6ee1d3df8145), the dialogs under Tools 
Options  LibreOffice like User Data or Memory are not translated.

Is it expected at this stage or is it the sign that something went wrong
during some code transformation ?

Best regards.
JBF

-- 
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.

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


Running tinbuild2 with srcdir != builddir

2013-03-03 Thread Tor Lillqvist
If you run a *basic* (no gerrit stuff for instance) type of tinderbox
(or several) for the master branch using the old tinbuild2 script, and
want to use a separate srcdir (which now works fine for normal
builds), this patch might come in handy: http://pastebin.com/cKanrQiq
.

No, I am not going to push it, tinbuild2 is being obsoleted anyway.
This was just a stopgap measure until the shiny new tb script works
for my use case. And no, I don't support this. It just seems to work
for me. (I run tinbuild2 with options -p profile -m all
--srcdir=srcdir -w sleeptime)

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


Re: master: translation missing in options dialog ; bug ?

2013-03-03 Thread Andras Timar
Hi,

On 2013.03.04. 6:51, Jean-Baptiste Faure wrote:
 Hi,

 I know that it is too early to work on translation in the master, but
 there is something that I find weird: several parts of the options
 dialogs are not translated in the master although they are in LO 4.0 and
 are not different from LO 4.0.
 For example in Version 4.1.0.0.alpha0+ (Build ID:
 70e8c341af0c6c6f2568a75326b6ee1d3df8145), the dialogs under Tools 
 Options  LibreOffice like User Data or Memory are not translated.

 Is it expected at this stage or is it the sign that something went wrong
 during some code transformation ?

Translations are not migrated during .src - .ui conversion.

Best regards,
Andras

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


Re: [Libreoffice-commits] core.git: solenv/gbuild

2013-03-03 Thread David Tardon
Hi,

On Sat, Mar 02, 2013 at 09:58:46AM -0800, Peter Foley wrote:
  solenv/gbuild/AllLangHelp.mk |2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 New commits:
 commit 5b272379dbfb27875c1fbeed98d71699c8beaec7
 Author: Peter Foley pefol...@verizon.net
 Date:   Sat Mar 2 12:55:46 2013 -0500
 
 always build help for en-US
 
 Change-Id: Ibcde46381cac50058f93e26f0eceb9b1446d1702
 
 diff --git a/solenv/gbuild/AllLangHelp.mk b/solenv/gbuild/AllLangHelp.mk
 index 2e4599e..a6c4562 100644
 --- a/solenv/gbuild/AllLangHelp.mk
 +++ b/solenv/gbuild/AllLangHelp.mk
 @@ -17,7 +17,7 @@ gb_AllLangHelp_TRANLATIONSDIR := $(SRCDIR)/translations
  
  # Creates and delivers all language versions of a module.
  
 -gb_AllLangHelp_LANGS := $(gb_WITH_LANG)
 +gb_AllLangHelp_LANGS := en-US $(gb_WITH_LANG)

I thought $(gb_WITH_LANG) always contained en-US these days... Is it not
so?

Btw, it should be

gb_AllLangHelp_LANGS := en-US $(filter-out en-US,$(gb_WITH_LANG))

to avoid the possibility of having en-US in the list twice.

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


[Libreoffice-commits] core.git: Makefile.in

2013-03-03 Thread Stephan Bergmann
 Makefile.in |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

New commits:
commit a32283f452e54f31dab728e8df0822f43f2fce14
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Mar 4 08:49:23 2013 +0100

Resiliance against dropped prerequisites for rerunning autogen.sh

Change-Id: I6ff56eb00cf6367d7b4de96ac887cb4e807bddb3

diff --git a/Makefile.in b/Makefile.in
index eb67dad..53ec395 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -36,7 +36,13 @@ $(BUILDDIR)/config_host.mk : \
$(BUILDDIR)/autogen.lastrun
$(SRCDIR)/autogen.sh
 
-# dummy rule in case autogen.lastrun does not exist
+# dummy rule in case any of the above prerequisites are removed, so that a 
stale
+# Makefile still triggers autogen.sh, or in case autogen.lastrun does not yet
+# exist
+$(SRCDIR)/config_host.mk.in \
+$(SRCDIR)/Makefile.in \
+$(SRCDIR)/instsetoo_native/util/openoffice.lst.in \
+$(SRCDIR)/configure.ac \
 $(BUILDDIR)/autogen.lastrun:
@true
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-qa] Accepting can't open-bugs even if original program fails?

2013-03-03 Thread Joren

Hi,

I saw following bug passing by:  FILEOPEN: Opening a large (19MB) XLSX 
file very slow https://bugs.freedesktop.org/show_bug.cgi?id=61721


It is reproducible. Opening that (huge) document takes a lot of time 
(after 5 minutes it didn't open yet on my MacOSX 10.8.2 both LibreOffice 
4.0.1.2 and master). Opening the same file using Excel (for mac) result 
in same behavior (also force quit it after 5 minutes).


Should I mark this bug as NEW, because I can reproduce that very slow 
behavior? Or close it because it also can't open correctly using the 
(probably) original office suite that is used to create this file?


This is only one example, I think there are other examples somewhere in FDO.

Kind regards,
Joren
___
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] Accepting can't open-bugs even if original program fails?

2013-03-03 Thread Markus Mohrhard
Hey,

2013/3/3 Joren joren.libreoff...@telenet.be:
 Hi,

 I saw following bug passing by:  FILEOPEN: Opening a large (19MB) XLSX file
 very slow  https://bugs.freedesktop.org/show_bug.cgi?id=61721

 It is reproducible. Opening that (huge) document takes a lot of time (after
 5 minutes it didn't open yet on my MacOSX 10.8.2 both LibreOffice 4.0.1.2
 and master). Opening the same file using Excel (for mac) result in same
 behavior (also force quit it after 5 minutes).

 Should I mark this bug as NEW, because I can reproduce that very slow
 behavior? Or close it because it also can't open correctly using the
 (probably) original office suite that is used to create this file?


Please mark at least the calc ones as NEW and put perf in the
whiteboard line. We are always interested in documents showing
performance problems as we need them to actually improve our
performance.

And a general remark in this direction for Calc: If you see somebody
complaining about Calc's import or export performance please ask them
to open a bug report with perf in the whiteboard line and an attached
test document. We are very interested in real world documents showing
performance problems.

Regards,
Markus
___
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] Accepting can't open-bugs even if original program fails?

2013-03-03 Thread Rainer Bielefeld

Markus Mohrhard schrieb:


Please mark at least the calc ones as NEW and put perf in the
whiteboard line.



Hi,

except it's rather sure that it's simply a damaged document what can't 
be opened by any software.


In all other cases, of course, it's not a crime if we manage it to do a 
better job than Excel :-)


CU

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-bugs] [Bug 61727] New: Rotation of image by grouping images

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61727

  Priority: medium
Bug ID: 61727
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Rotation of image by grouping images
  Severity: major
Classification: Unclassified
OS: Linux (All)
  Reporter: toths...@gmail.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: unspecified
 Component: Writer
   Product: LibreOffice

Rotation of image by grouping images is by docx in all versions of libreoffice
and openoffice. This problem reversed of images is by grouping 2 or 3 images.
By one or 4 images is rotation really ok.

-- 
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 61730] New: Need to choose DPI convertion before converting drawing objects to Bitmap

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61730

  Priority: medium
Bug ID: 61730
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Need to choose DPI convertion before converting
drawing objects to Bitmap
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: lvergneal...@free.fr
  Hardware: All
Status: UNCONFIRMED
   Version: 3.6.5.2 release
 Component: Drawing
   Product: LibreOffice

When converting any object to bitmap format (left click on the object / Convert
/ bitmap), it would be useful that software open a window to allow user to
choose conversion parameters (DPI, Nb of colors, conversion protocol, ...).

this window could be the same that window used for files export (please have a
look to file/export/bitmap format).

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


[Libreoffice-bugs] [Bug 61730] Need to choose DPI convertion before converting drawing objects to Bitmap

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61730

--- Comment #1 from Laurent lvergneal...@free.fr ---
Hum sorry : please read RIGHT click instead of left click

-- 
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 39484] All Outline groups of sheet lost while editing

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39484

--- Comment #29 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I did some first investigation in contents.xml of sample 2013-03-02 10:36 UTC,
kouka...@gmail.com  and related broken document. I see that the groups (not
unexpectedly) really are lost, compare:

CONTENT.XML OK
--
table:table-cell table:number-columns-repeated=1015/
/table:table-row
table:table-row-group
table:table-row-group
table:table-row table:style-name=ro1
table:table-cell table:style-name=ce6/
table:table-cell table:style-name=ce15 office:value-type=string

BROKEN same area (missing group definition):
---
table:table-cell table:number-columns-repeated=1015/
/table:table-row
table:table-row table:style-name=ro1
table:table-cell table:style-name=ce6/
table:table-cell table:style-name=ce15 office:value-type=string


@koukasio / all
How often do you see such problems? all 100 edits? all 10 edits? Only to
get an idea how much edits might be needed to have a chance to see something
interesting

-- 
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 61711] PRINTING: Writer doesn't print table's borders in some documents

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61711

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I did some test prints from FreePDF and I now am pretty sure that this one
shows some aspects of Bug 60280. 

Already [Reproducible] with unzipped  installation of  LOdev  4.0.0.0.alpha1+ 
 -  ENGLISH UI / German Locale  [Build ID:
af60316514f3ae3d4c475819bf86f2af837171e)]  {tinderbox: Win-x86@6, pull time
2012-11-23 22:10:31} on German WIN7 Home Premium (64bit) with own separate User
Profile

Was still ok with server-installation of Master 3.7.0alpha0+  – WIN7 Home
Premium (64bit) ENGLISH UI [Build ID: b255de8] (tinderbox: Win-x86@6-fast,
pull time 2012-06-05 23:16:58)

@epip...@eniware.it:
Thank you for your attention!
Please feel free to reopen this Bug if you find evidence that we have an
independent issue here  (for example because the fix for the other bug does not
work for you).

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

-- 
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 60280] PRINTING: TABLE borders, borders around paragraphs and footer, some graphic elements missing

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60280

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

   What|Removed |Added

 CC||epip...@eniware.it

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
*** Bug 61711 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 61725] REPORTBUILDER cannot execute/wizard-create any report: failed assertion SolarMutex not locked

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61725

--- Comment #3 from Lionel Elie Mamane lio...@mamane.lu ---
Created attachment 75819
  -- https://bugs.freedesktop.org/attachment.cgi?id=75819action=edit
reproduction example

-- 
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 61725] REPORTBUILDER cannot execute/wizard-create any report: failed assertion SolarMutex not locked

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61725

--- Comment #4 from Lionel Elie Mamane lio...@mamane.lu ---
I'd be delighted for ReportBuilder to be debbugged and that it is found why
this warning/assert fires, but I have no clue myself. I'm willing to
collaborate with someone on this (one Base expert and one SolarMutex expert
together).

-- 
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 61726] REPORTBUILDER: all reports fail with Java exception IncompatibleClassChangeError

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61726

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

   What|Removed |Added

  Attachment #75817|text/plain  |application/vnd.oasis.opend
  mime type||ocument.database

-- 
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 60280] PRINTING: TABLE borders, borders around paragraphs and footer, some graphic elements missing

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60280

A stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from A stgohi-lob...@yahoo.de ---
reproducible with LO 4.0.0.3 (Win7 Home, 64bit)

Remarks:
In addition, a red line in the header is missing as well as the circle in item
70.

@Rainer: I have in LO a green line in the footer instead of a blue line.  Do
you have here a blue line?

-- 
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 61721] FILEOPEN: Opening a large (19MB) XLSX file slow (more than 7 minutes, at least)

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61721

Alberto Ferreira acdrferre...@gmail.com changed:

   What|Removed |Added

 CC||acdrferre...@gmail.com

--- Comment #1 from Alberto Ferreira acdrferre...@gmail.com ---
Hello, 

I haved tried to open this file on LibreOffice Calc 4.0.0.3 in Windows and it
take to long to open.

-- 
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 61687] BUGZILLAASSISTANT: Please provide link to bugzilla search page

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61687

--- Comment #2 from Mirosław Zalewski mini...@poczta.onet.pl ---
 Why to prevent? Duplicates help to detect hot issues and adding emails to
 the CC list indicates the interest of a fix (it is taken into consideration
 for proposed HardHacks). 

Point taken.
But what about duplicates of issues that are already solved or worked on by
someone? Do they provide any added value?

This proposal was initially reported by people on users mailing list:
http://nabble.documentfoundation.org/LO-4-0-0-3-has-no-printer-in-Win7-SHOW-STOPPER-td4033793.html#a4034040
(and message below by Declan Moriarty)

People, for one reason or another, want to search existing issues. Bug
Submission Assistant is the first place to look after them, so providing link
there seems to be reasonable.

 Anyway for reading bugs I would propose a link to
 https://bugs.freedesktop.org/describecomponents.cgi?product=LibreOffice

It has nice division of different components; but inside component, there is
one huge list of bugs. Search form above is not restricted to LibreOffice, so
searching for anything will give a lot of irrelevant bug reports.

But I don't think this is zero-sum game and we could provide link to both of
these URL:
#v+ 
To create new bug reports, an account is needed. If you only want to see
existing bugs or check if your issue has already been reported, please head on
to a
href=https://bugs.freedesktop.org/describecomponents.cgi?product=LibreOffice;list
of all issues/a or a
href=https://bugs.freedesktop.org/query.cgi?format=specificproduct=LibreOffice;search
page/a.
#v-

-- 
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 61725] REPORTBUILDER cannot execute/wizard-create any report: failed assertion SolarMutex not locked

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61725

--- Comment #5 from Tor Lillqvist tlillqv...@suse.com ---
I could not get the ReportBuilder thing to run so far that I would have come
across the assert... I get some java.lang.IncompatibleClassChange exception
error once I managed to install the report builder extension in a freshly built
master LO. I am not really a Java person...

-- 
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 45488] Impress FILEOPEN: fontart object incorrect in pptx presentation

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45488

A stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||r...@novell.com,
   ||stgohi-lob...@yahoo.de

--- Comment #3 from A stgohi-lob...@yahoo.de ---
reproducible with LO 4.0.0.3. (Win7 Home, 64bit)

@Radek: Could this maybe be an issue for you?

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


[Libreoffice-bugs] [Bug 61725] REPORTBUILDER cannot execute/wizard-create any report: failed assertion SolarMutex not locked

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61725

--- Comment #6 from Lionel Elie Mamane lio...@mamane.lu ---
(In reply to comment #5)
 I could not get the ReportBuilder thing to run so far that I would have come
 across the assert... I get some java.lang.IncompatibleClassChange exception
 error

I (and Julien Nabet, see comment 8 of bug 61564) get the assert *before* the
Java error (we have to comment out the assert to get the Java error). What a
mess...

-- 
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 61587] : Link to External Data no longer works in 4.0.0.3 (was working in 3.6.4.3

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61587

--- Comment #4 from KSN nair.remotelo...@gmail.com ---
Created attachment 75823
  -- https://bugs.freedesktop.org/attachment.cgi?id=75823action=edit
Source and Target files for testing

-- 
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 61587] : Link to External Data no longer works in 4.0.0.3 (was working in 3.6.4.3

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61587

--- Comment #5 from KSN nair.remotelo...@gmail.com ---
Hi Markus

For some reason (it's also the first time that I am submitting a file as an
attachment), my comments did not get uploaded.

The zip file contains two files Source.ods and Target.ods.  The file
Source.ods contains the months Jan to Dec in cells A1 to A12 and has the
range name Months.

The file Target.ods, in range A1 contains a link to the range name Months
in file Source.ods, but currently shows only the text The link could not be
updated.  Opening the file Target.ods, you are asked if the links are to be
updated.  Nothing happens when you answer with a Yes.  What is expected that
the values in the range Months should be populated in A1 to A12.

Hope this helps and thanks for your help in trying to fix this issue, since
linking of worksheets is a function that many experienced users of spreadsheets
use.

Regards
KSN

-- 
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 57351] Calc: Insert columns is not available in the context menu if an autofilter is applied

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57351

A stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||stgohi-lob...@yahoo.de

--- Comment #5 from A stgohi-lob...@yahoo.de ---
@Alister: Thanks for your additional comment/clarification.

With this I could reproduce it with LO 4.0.0.3 (Win7 Home, 64bit).  It is not
possible to insert a column with the right-click, but it also not possible for
me to insert a column from the menu (Insert - Columns).  But, I am not sure,
whether this is a bug.  

Can anybody else confirm whether this is a bug or not?

-- 
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 61587] : Link to External Data no longer works in 4.0.0.3 (was working in 3.6.4.3

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61587

--- Comment #6 from KSN nair.remotelo...@gmail.com ---
Created attachment 75824
  -- https://bugs.freedesktop.org/attachment.cgi?id=75824action=edit
Re-sending the attachment referred above

-- 
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 60734] FILESAVE: Outline level of the styles is lost when saving as DOC or DOCX

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60734

--- Comment #2 from Dario Martin dariomar...@gmail.com ---
Created attachment 75825
  -- https://bugs.freedesktop.org/attachment.cgi?id=75825action=edit
Example document

Steps to reproduce the issue:

- Save the document in .docx format.
- Open the newly generated document.
- Make any modification.
- Save the file.
- Reopen the document.
- The outline level of the styles will be lost and, as a consequence, TOC will
be empty.

I'm now unable to reproduce the issue with .doc files, so I suppose the bug
only affects finally to .docx files.

-- 
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 60734] FILESAVE: Outline level of the styles is lost when saving as DOC or DOCX

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60734

Dario Martin dariomar...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

-- 
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 61734] New: FILEOPEN: .doc opens incomplete

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61734

  Priority: medium
Bug ID: 61734
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: .doc opens incomplete
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: mr.jacob.kr...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.5.2 release
 Component: Writer
   Product: LibreOffice

Created attachment 75827
  -- https://bugs.freedesktop.org/attachment.cgi?id=75827action=edit
document created by MS Word which is not displayed completely in LibreOffice
3.6.5

Problem description: 

Steps to reproduce:
Use sample document attached and display.
1. Open document in libreoffice writer
2. Open document in MS Word Viewer 2003
3. compare the two

Current behavior: doesn't display cross-outs (X) in table

Expected behavior: display the cross-outs (X)


Operating System: Windows XP
Version: 3.6.5.2 release

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


[Libreoffice-bugs] [Bug 61725] REPORTBUILDER cannot execute/wizard-create any report: failed assertion SolarMutex not locked

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61725

--- Comment #7 from Julien Nabet serval2...@yahoo.fr ---
I don't know if there could be a link but when launching Base (with a brand new
LO profile and with master sources updated today), I have this:
warn:legacy.osl:22802:1:dbaccess/source/core/misc/dsntypes.cxx:369:
ODsnTypeCollection::implDetermineType : missing the second colon !
warn:legacy.osl:22802:1:dbaccess/source/core/misc/dsntypes.cxx:369:
ODsnTypeCollection::implDetermineType : missing the second colon !
warn:vcl.control:22802:1:vcl/source/control/button.cxx:2357: No new-style group
set on radiobutton, using old-style digging around
warn:legacy.osl:22802:1:dbaccess/source/core/misc/dsntypes.cxx:369:
ODsnTypeCollection::implDetermineType : missing the second colon !
warn:legacy.osl:22802:1:dbaccess/source/core/misc/dsntypes.cxx:344:
ODsnTypeCollection::implDetermineType : missing the colon !
warn:legacy.osl:22802:1:dbaccess/source/core/misc/dsntypes.cxx:344:
ODsnTypeCollection::implDetermineType : missing the colon !

(I don't even try to open a Base file or something, just launching Base)

-- 
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 43671] FORMATTING: Emphasis marks not showing in screen presentation

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43671

--- Comment #2 from A stgohi-lob...@yahoo.de ---
reproducible with LO 4.0.0.3. (Win7 Home, 64bit)

-- 
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 42430] saving as pptx converts plain text to bulleted text

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42430

--- Comment #3 from A stgohi-lob...@yahoo.de ---
Bugs are reproducible with LO 4.0.0.3. (Win7 Home, 64bit).

Attached ppt file:
Looks fine in LO and MSO 2007

After saving it as a pptx file:
in LO: The color of the bullet of the text field has changed to black and the
font size is wrong.  In addition, a bullet below the title is inserted.
in MSO 2007: The color of the bullet of the text field has changed to black and
the font size is wrong.  In addition, a bullet below the title is inserted. 
Furthermore, the title also got a bullet.

-- 
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 51665] Support diagonal borders in TABLEs

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51665

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

   What|Removed |Added

Summary|Support of diagonal borders |Support diagonal borders in
   |in Writer tables|TABLEs

-- 
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 61734] FILEOPEN .doc: diagonal TABLE cell borders missing

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61734

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|FILEOPEN: .doc opens|FILEOPEN .doc: diagonal
   |incomplete  |TABLE cell borders missing
Version|3.6.5.2 release |3.3.0 Beta2
 Depends on||51665
 Ever confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
This can't work before LibO supports diagonal table cell borders, see Bug
51665 - Support diagonal borders in TABLEs

-- 
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 51665] Support diagonal borders in TABLEs

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51665

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

   What|Removed |Added

 Blocks||61734

-- 
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 44265] Ctrl+C and Ctrl+V in russian layout

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44265

438753924 spa...@gmx.net changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID

--- Comment #4 from 438753924 spa...@gmx.net ---
Has been on NEEDINFO for more than a month. Setting to INVALID.

Kudarenko: Could you try LO 4.0 and see if you still are able to reproduce this
problem? If so, please feel free to re-open this bug.

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


[Libreoffice-bugs] [Bug 61705] Extreme memory using at a small little-endian Unicode file without byte order mark

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61705

--- Comment #5 from Zoltán Hegedüs x...@hdsnet.hu ---
(In reply to comment #4)

I selected the proper file type, and Writer used more than 512 MB after the
opening, and more than 1 GB while editing.

Really, there is encoded text at opening in 3.6.5.2. release (non-portable).
I selected the correct encoding (Unicode), I switched off the spelling checking
(language: none), the memory using started with about 350 MB, and after about a
minute, this was 500 MB, because of this increased continuously.

-- 
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 61703] Writer does not ask the character set of a .txt file at opening

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61703

--- Comment #5 from Zoltán Hegedüs x...@hdsnet.hu ---
There is encoded text type at opening, but some problem remained:

There is no ISO-8859-16 on the list.
There is no big-endian Unicode on the list: if there is no BOM, the program can
not recognize this.
Writer can not open these files correctly, and can not save files in these
formats.

-- 
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 34171] Bad user reported when file is locked

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34171

438753924 spa...@gmx.net changed:

   What|Removed |Added

 OS|Windows (All)   |All
   Severity|normal  |major
   Priority|medium  |high
 CC||spa...@gmx.net

--- Comment #4 from 438753924 spa...@gmx.net ---
I tried reproducing this with LO 4.0.1.1 (nightly).

* I created an excel file and saved that to example.xml
* then Opened that file in LO while keeping excel open
* modify then tried to save file in LO
* choose XML (instead of odf)
- crash (log: http://pastebin.com/iyiSbTZa)

This is still valid for LO 4.0.1.1. Also the crash is reproducible.

Setting platform from Windows to All since I'm on OS X.

Since this results in a reproducible crash of LO setting importance from
medium to high and severity from normal to major.

Maybe a dev can look into this?

-- 
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 61735] New: Missed HTML representation for Label Field form control

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61735

  Priority: medium
Bug ID: 61735
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Missed HTML representation for Label Field form
control
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: nrb...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.0.3 release
 Component: Writer
   Product: LibreOffice

Created attachment 75830
  -- https://bugs.freedesktop.org/attachment.cgi?id=75830action=edit
Test file with form controls

Hello!

I was going to create a simple web-form, which contain some Labels, Text boxes,
Checkboxes etc.
I created new ODT document, opened Form Controls Toolbar, and found needed
form elements here.

I discovered that if I save a document with Label Field it will not exported
to HTML file (if I select File-Save As). I get a warning message with text
Warning saving the document test_from_odt:
Write Error.
Document could not be completely saved.

Why I get this warning message? As far I know in HTML there is an equivalent
representations of form controls - label.../label for Label Field.
So I hope you can add label representation for Label Field.

This bug exists in 3.5.7.2 (Ubuntu 12.04 LTS) and 4.0.0.3 (Gentoo 13 amd64).

-- 
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 61735] Missed HTML representation for Label Field form control

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61735

--- Comment #1 from nrb...@gmail.com ---
Created attachment 75831
  -- https://bugs.freedesktop.org/attachment.cgi?id=75831action=edit
HTML Output

-- 
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 61691] VIEWING: Cellformat

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61691

--- Comment #2 from r.ven...@arcor.de ---
Created attachment 75832
  -- https://bugs.freedesktop.org/attachment.cgi?id=75832action=edit
Testfile

Here a Testfile

-- 
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 61516] FEAT_FSYS_DOUBLESPEED removal ...

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61516

Jiri Blecha blech...@fel.cvut.cz changed:

   What|Removed |Added

   Assignee|blech...@fel.cvut.cz|libreoffice-b...@lists.free
   ||desktop.org

-- 
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 61736] New: Form controls List Box and Combo Box have no down arrows on PDF export

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61736

  Priority: medium
Bug ID: 61736
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Form controls List Box and Combo Box have no down
arrows on PDF export
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: nrb...@gmail.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.0.0.3 release
 Component: Writer
   Product: LibreOffice

Created attachment 75833
  -- https://bugs.freedesktop.org/attachment.cgi?id=75833action=edit
ODT file with all form controls

Hello!

I was going to create a simple web-form, which contain some Labels, Text boxes,
Checkboxes etc.
I created new ODT document, opened Form Controls Toolbar, and found needed
form elements here.

I discovered that if I save a document (it is in attachment) as a PDF without
Create PDF Form mark I get no pull-down arrows for List Box and Combo Box
controls.
If I set Create PDF Form mark all form elements in PDF look normally.

For PDF viewing I use Evince 2.32.0 and Adobe Reader 9.5.4.

This bug exists in 4.0.0.3 (Gentoo 13 amd64).

-- 
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 61735] Missed HTML representation for Label Field form control

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61735

nrb...@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)

-- 
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 45071] Browser plugin option not working

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45071

--- Comment #9 from nrb...@gmail.com ---
Hello!

I have Ubuntu 12.04.2 LTS with LibreOffice 3.5.7 + mozilla-libreoffice plugin
and Gentoo with LibreOffice 4.0.0.3. Mozilla plugin works in Firefox, Seamonkey
and Opera. It's great!

Google Chrome 24.0.1312.70 (Official Build 181759) detects this plug-in on
file-level (it is located in /usr/lib/mozilla/plugins/libnpsoplugin.so) but
reports an error Could not load LibreOffice Plug-in on openning *.doc file.

Is it possible to adapt this plug-in for Chrome/Chromium?

(text from my question at
http://ask.libreoffice.org/en/question/12756/libreoffice-browser-plugin-for-google/).

I got the same result with Chrome 25.0.1364.97 (Official Build 183676).

-- 
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 61705] Extreme memory using at a small little-endian Unicode file without byte order mark

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61705

--- Comment #6 from mariosv mari...@miguelangel.mobi ---
Created attachment 75834
  -- https://bugs.freedesktop.org/attachment.cgi?id=75834action=edit
Screnshot with memory usage

Hi Zoltan,
attached a screenshot with the memory usage in my computer.

Have you tried to reset the user profile?, sometimes solve strange issues.

-- 
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 61329] Pasting tables from Calc into a table in Writer is a pain in the ...

2013-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61329

Urmas davian...@gmail.com changed:

   What|Removed |Added

  Attachment #75513|text/plain  |application/octet-stream
  mime type||

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


  1   2   3   >