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

2013-12-24 Thread Miklos Vajna
 oox/source/shape/WpgContext.cxx |   54 +---
 oox/source/shape/WpgContext.hxx |8 -
 2 files changed, 35 insertions(+), 27 deletions(-)

New commits:
commit 8a6d84fc1a926147884a9cbf234f86c6fb6f8583
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Tue Dec 24 10:05:02 2013 +0100

oox: whitespace fixes in WpgContext

Change-Id: I4b4a3f9c4ec2c49c178d2e6a175b3dc307295e97

diff --git a/oox/source/shape/WpgContext.cxx b/oox/source/shape/WpgContext.cxx
index c8ca505..39bb470 100644
--- a/oox/source/shape/WpgContext.cxx
+++ b/oox/source/shape/WpgContext.cxx
@@ -13,10 +13,13 @@
 
 using namespace com::sun::star;
 
-namespace oox { namespace shape {
+namespace oox
+{
+namespace shape
+{
 
 WpgContext::WpgContext(ContextHandler2Helper rParent)
-: ContextHandler2(rParent)
+: ContextHandler2(rParent)
 {
 mpShape.reset(new 
oox::drawingml::Shape(com.sun.star.drawing.GroupShape));
 }
@@ -34,32 +37,33 @@ oox::core::ContextHandlerRef 
WpgContext::onCreateContext(sal_Int32 nElementToken
 {
 switch (getBaseToken(nElementToken))
 {
-case XML_wgp:
-break;
-case XML_cNvGrpSpPr:
-break;
-case XML_grpSpPr:
-return new oox::drawingml::ShapePropertiesContext(*this, *mpShape);
-break;
-case XML_wsp:
-{
-oox::drawingml::ShapePtr pShape(new 
oox::drawingml::Shape(com.sun.star.drawing.CustomShape));
-return new oox::drawingml::ShapeContext(*this, mpShape, 
pShape);
-}
-break;
-case XML_grpSp:
-{
-oox::drawingml::ShapePtr pShape(new 
oox::drawingml::Shape(com.sun.star.drawing.GroupShape));
-return new oox::drawingml::ShapeGroupContext(*this, mpShape, 
pShape);
-}
-break;
-default:
-SAL_WARN(oox, WpgContext::createFastChildContext: unhandled 
element:   getBaseToken(nElementToken));
-break;
+case XML_wgp:
+break;
+case XML_cNvGrpSpPr:
+break;
+case XML_grpSpPr:
+return new oox::drawingml::ShapePropertiesContext(*this, *mpShape);
+break;
+case XML_wsp:
+{
+oox::drawingml::ShapePtr pShape(new 
oox::drawingml::Shape(com.sun.star.drawing.CustomShape));
+return new oox::drawingml::ShapeContext(*this, mpShape, pShape);
+}
+break;
+case XML_grpSp:
+{
+oox::drawingml::ShapePtr pShape(new 
oox::drawingml::Shape(com.sun.star.drawing.GroupShape));
+return new oox::drawingml::ShapeGroupContext(*this, mpShape, pShape);
+}
+break;
+default:
+SAL_WARN(oox, WpgContext::createFastChildContext: unhandled 
element:   getBaseToken(nElementToken));
+break;
 }
 return 0;
 }
 
-} }
+}
+}
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/oox/source/shape/WpgContext.hxx b/oox/source/shape/WpgContext.hxx
index 3a60986..444efe4 100644
--- a/oox/source/shape/WpgContext.hxx
+++ b/oox/source/shape/WpgContext.hxx
@@ -13,7 +13,10 @@
 #include oox/core/contexthandler2.hxx
 #include oox/drawingml/shape.hxx
 
-namespace oox { namespace shape {
+namespace oox
+{
+namespace shape
+{
 
 /// Wpg is the drawingML equivalent of v:group.
 class WpgContext : public oox::core::ContextHandler2
@@ -31,7 +34,8 @@ protected:
 };
 
 
-} }
+}
+}
 
 #endif
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-12-24 Thread Lionel Elie Mamane
 connectivity/source/commontools/dbconversion.cxx |   16 +---
 include/connectivity/dbconversion.hxx|2 +-
 2 files changed, 14 insertions(+), 4 deletions(-)

New commits:
commit 56381a9b28dbe4caf6e3d0a92dfddcddcebe3494
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Sat Dec 21 10:37:11 2013 +0100

fdo#72916 correct rounding of time part of DateTime

Change-Id: I135478755f9e5a844119129b470fef8de2cd0409

diff --git a/connectivity/source/commontools/dbconversion.cxx 
b/connectivity/source/commontools/dbconversion.cxx
index 847f45f..15276a6 100644
--- a/connectivity/source/commontools/dbconversion.cxx
+++ b/connectivity/source/commontools/dbconversion.cxx
@@ -28,6 +28,7 @@
 #include com/sun/star/util/Time.hpp
 #include com/sun/star/util/DateTime.hpp
 #include rtl/ustrbuf.hxx
+#include rtl/math.hxx
 #include unotools/datetime.hxx
 #include sstream
 #include iomanip
@@ -355,10 +356,15 @@ namespace dbtools
 return aRet;
 }
 // 
-
-utl::Time DBTypeConversion::toTime(double dVal)
+utl::Time DBTypeConversion::toTime(double dVal, short nDigits)
 {
 sal_Int32 nDays = (sal_Int32)dVal;
-sal_Int64 nNS = static_castsal_Int64((dVal - (double)nDays) * 
fNanoSecondsPerDay + 0.5);
+sal_Int64 nNS;
+{
+double fSeconds((dVal - (double)nDays) * (fNanoSecondsPerDay / 
nanoSecInSec));
+fSeconds = ::rtl::math::round( fSeconds, nDigits );
+nNS = fSeconds * nanoSecInSec;
+}
 
 sal_Int16 nSign;
 if ( nNS  0 )
@@ -401,7 +407,11 @@ namespace dbtools
 utl::DateTime DBTypeConversion::toDateTime(double dVal, const utl::Date 
_rNullDate)
 {
 utl::Date aDate = toDate(dVal, _rNullDate);
-utl::Time aTime = toTime(dVal);
+// there is not enough precision in a double to have both a date
+// and a time up to nanoseconds - limit to microseconds to have
+// correct rounding, that is e.g. 13:00:00.0 instead of
+// 12:59:59.99790
+utl::Time aTime = toTime(dVal, 6);
 
 utl::DateTime xRet;
 
diff --git a/include/connectivity/dbconversion.hxx 
b/include/connectivity/dbconversion.hxx
index 9536c79..b11442b 100644
--- a/include/connectivity/dbconversion.hxx
+++ b/include/connectivity/dbconversion.hxx
@@ -105,7 +105,7 @@ namespace dbtools
 
 static ::com::sun::star::util::Date toDate(double dVal, const 
::com::sun::star::util::Date _rNullDate = getStandardDate());
 static ::com::sun::star::util::Date toDate(const OUString 
_sSQLDate);
-static ::com::sun::star::util::Time toTime(double dVal);
+static ::com::sun::star::util::Time toTime(double dVal, short 
nDigits = 9);
 static ::com::sun::star::util::Time toTime(const OUString 
_sSQLDate);
 static ::com::sun::star::util::DateTime toDateTime(double dVal, const 
::com::sun::star::util::Date _rNullDate = getStandardDate());
 static ::com::sun::star::util::DateTime toDateTime(const OUString 
_sSQLDate);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: connectivity/Library_odbcbase.mk connectivity/Library_odbc.mk connectivity/Module_connectivity.mk connectivity/source Repository.mk solenv/gbuild

2013-12-24 Thread Marcos Paulo de Souza
 Repository.mk   |1 
 connectivity/Library_odbc.mk|   22 
 connectivity/Library_odbcbase.mk|   55 
 connectivity/Module_connectivity.mk |4 
 connectivity/source/drivers/odbc/OConnection.cxx|  569 +++
 connectivity/source/drivers/odbc/ODatabaseMetaData.cxx  | 1707 
+
 connectivity/source/drivers/odbc/ODatabaseMetaDataResultSet.cxx | 1323 
+++
 connectivity/source/drivers/odbc/ODriver.cxx|  213 +
 connectivity/source/drivers/odbc/OPreparedStatement.cxx |  952 
+
 connectivity/source/drivers/odbc/OResultSet.cxx | 1865 
++
 connectivity/source/drivers/odbc/OResultSetMetaData.cxx |  306 +
 connectivity/source/drivers/odbc/OStatement.cxx | 1117 
+
 connectivity/source/drivers/odbc/OTools.cxx |  808 
 connectivity/source/drivers/odbcbase/OConnection.cxx|  569 ---
 connectivity/source/drivers/odbcbase/ODatabaseMetaData.cxx  | 1707 
-
 connectivity/source/drivers/odbcbase/ODatabaseMetaDataResultSet.cxx | 1323 
---
 connectivity/source/drivers/odbcbase/ODriver.cxx|  213 -
 connectivity/source/drivers/odbcbase/OPreparedStatement.cxx |  952 
-
 connectivity/source/drivers/odbcbase/OResultSet.cxx | 1865 
--
 connectivity/source/drivers/odbcbase/OResultSetMetaData.cxx |  306 -
 connectivity/source/drivers/odbcbase/OStatement.cxx | 1117 
-
 connectivity/source/drivers/odbcbase/OTools.cxx |  808 
 solenv/gbuild/extensions/pre_MergedLibsList.mk  |1 
 23 files changed, 8881 insertions(+), 8922 deletions(-)

New commits:
commit 692c724f5e71f685c269085983828e7539274ecb
Author: Marcos Paulo de Souza marcos.souza@gmail.com
Date:   Wed Dec 4 12:12:01 2013 -0200

fdo#60698: Merge odbcbase into odbc

We odbcbase is just used inside odbc library, so merge them.

Change-Id: I4f4b34873b570ddcf1065c49e5310a1e73092fd6

diff --git a/Repository.mk b/Repository.mk
index 1fffb73..6c4d488 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -302,7 +302,6 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
mtfrenderer \
mysql \
odbc \
-   odbcbase \
odfflatxml \
offacc \
oox \
diff --git a/connectivity/Library_odbc.mk b/connectivity/Library_odbc.mk
index 82d447c..a29ccc2 100644
--- a/connectivity/Library_odbc.mk
+++ b/connectivity/Library_odbc.mk
@@ -20,14 +20,23 @@ $(eval $(call gb_Library_set_include,odbc,\
$$(INCLUDE) \
-I$(SRCDIR)/connectivity/inc \
-I$(SRCDIR)/connectivity/source/inc \
+   -I$(WORKDIR)/YaccTarget/connectivity/source/parse \
 ))
 
-$(eval $(call gb_Library_use_external,odbc,odbc_headers))
+$(eval $(call gb_Library_add_defs,odbc,\
+   -DOOO_DLLIMPLEMENTATION_ODBCBASE \
+))
+
+$(eval $(call gb_Library_use_externals,odbc,\
+   boost_headers \
+   odbc_headers \
+))
 
 $(eval $(call gb_Library_use_libraries,odbc,\
-   odbcbase \
cppu \
cppuhelper \
+   comphelper \
+   dbtools \
sal \
salhelper \
$(gb_UWINAPI) \
@@ -37,6 +46,15 @@ $(eval $(call gb_Library_add_exception_objects,odbc,\
connectivity/source/drivers/odbc/oservices \
connectivity/source/drivers/odbc/ORealDriver \
connectivity/source/drivers/odbc/OFunctions \
+   connectivity/source/drivers/odbc/OPreparedStatement \
+   connectivity/source/drivers/odbc/OStatement \
+   connectivity/source/drivers/odbc/OResultSetMetaData \
+   connectivity/source/drivers/odbc/OResultSet \
+   connectivity/source/drivers/odbc/OTools \
+   connectivity/source/drivers/odbc/ODatabaseMetaDataResultSet \
+   connectivity/source/drivers/odbc/ODatabaseMetaData \
+   connectivity/source/drivers/odbc/ODriver \
+   connectivity/source/drivers/odbc/OConnection \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/connectivity/Library_odbcbase.mk b/connectivity/Library_odbcbase.mk
deleted file mode 100644
index 2db5823..000
--- a/connectivity/Library_odbcbase.mk
+++ /dev/null
@@ -1,55 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-#
-# 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/.
-#
-
-$(eval $(call gb_Library_Library,odbcbase))
-
-$(eval $(call gb_Library_set_warnings_not_errors,odbcbase))
-
-$(eval $(call gb_Library_use_sdk_api,odbcbase))
-
-$(eval $(call gb_Library_set_include,odbcbase,\
-   $$(INCLUDE) \
- 

[Bug 60698] kill pointless one-file library ...

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60698

--- Comment #22 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Marcos Paulo de Souza committed a patch related to this issue.
It has been pushed to master:

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

fdo#60698: Merge odbcbase into odbc



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

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


[Libreoffice-commits] core.git: basctl/inc basctl/source basctl/uiconfig basctl/UIConfig_basicide.mk

2013-12-24 Thread Caolán McNamara
 basctl/UIConfig_basicide.mk   |1 
 basctl/inc/basidesh.hrc   |1 
 basctl/inc/helpid.hrc |1 
 basctl/source/basicide/moduldl2.cxx   |   10 --
 basctl/source/basicide/moduldlg.cxx   |   79 -
 basctl/source/basicide/moduldlg.hrc   |6 -
 basctl/source/basicide/moduldlg.hxx   |4 
 basctl/source/basicide/moduldlg.src   |   56 
 basctl/uiconfig/basicide/ui/organizedialog.ui |  117 ++
 9 files changed, 160 insertions(+), 115 deletions(-)

New commits:
commit 2544a2a810bc9182d5f062cafb41b5be96111982
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 09:41:27 2013 +

convert organize macros dialog to .ui

Change-Id: I210ab0bb294ddfefc3f60cffe64b72e5d8fa4650

diff --git a/basctl/UIConfig_basicide.mk b/basctl/UIConfig_basicide.mk
index 013df6e..6f84bb4 100644
--- a/basctl/UIConfig_basicide.mk
+++ b/basctl/UIConfig_basicide.mk
@@ -30,6 +30,7 @@ $(eval $(call gb_UIConfig_add_toolbarfiles,modules/BasicIDE,\
 
 $(eval $(call gb_UIConfig_add_uifiles,modules/BasicIDE,\
basctl/uiconfig/basicide/ui/basicmacrodialog \
+   basctl/uiconfig/basicide/ui/organizedialog \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/basctl/inc/basidesh.hrc b/basctl/inc/basidesh.hrc
index 623cb0e..b064dcb 100644
--- a/basctl/inc/basidesh.hrc
+++ b/basctl/inc/basidesh.hrc
@@ -30,7 +30,6 @@
 #define RID_POPUP_BRKDLG( RID_BASICIDE_START + 10 )
 #define RID_POPUP_BRKPROPS  ( RID_BASICIDE_START + 11 )
 #define RID_POPUP_TABBAR( RID_BASICIDE_START + 12 )
-#define RID_TD_ORGANIZE ( RID_BASICIDE_START + 36 )
 #define RID_TP_MODULS   ( RID_BASICIDE_START + 37 )
 #define RID_TP_LIBS ( RID_BASICIDE_START + 38 )
 #define RID_TP_DLGS ( RID_BASICIDE_START + 39 )
diff --git a/basctl/inc/helpid.hrc b/basctl/inc/helpid.hrc
index da3d500..4d6c92b 100644
--- a/basctl/inc/helpid.hrc
+++ b/basctl/inc/helpid.hrc
@@ -23,7 +23,6 @@
 #define HID_BASICIDE_OBJECTS  
BASCTL_HID_BASICIDE_OBJECTS
 #define HID_BASICIDE_MACROS   
BASCTL_HID_BASICIDE_MACROS
 #define HID_BASICIDE_LIBS 
BASCTL_HID_BASICIDE_LIBS
-#define HID_BASICIDE_ORG_TC   
BASCTL_HID_BASICIDE_ORG_TC
 
 #define HID_BASICIDE_MODULES_TREE 
BASCTL_HID_BASICIDE_MODULES_TREE
 #define HID_BASICIDE_LIBS_TREE
BASCTL_HID_BASICIDE_LIBS_TREE
diff --git a/basctl/source/basicide/moduldl2.cxx 
b/basctl/source/basicide/moduldl2.cxx
index b52eea9..6ad6b4f 100644
--- a/basctl/source/basicide/moduldl2.cxx
+++ b/basctl/source/basicide/moduldl2.cxx
@@ -506,7 +506,6 @@ LibPage::LibPage( Window * pParent )
 ,aLibText( this, IDEResId( RID_STR_LIB ) )
 ,aLibBox( this, IDEResId( RID_TRLBOX ) )
 ,aEditButton( this, IDEResId( RID_PB_EDIT ) )
-,aCloseButton( this, IDEResId( RID_PB_CLOSE ) )
 ,aPasswordButton( this, IDEResId( RID_PB_PASSWORD ) )
 ,aNewLibButton( this, IDEResId( RID_PB_NEWLIB ) )
 ,aInsertLibButton( this, IDEResId( RID_PB_APPEND ) )
@@ -524,7 +523,6 @@ LibPage::LibPage( Window * pParent )
 aExportButton.SetClickHdl( LINK( this, LibPage, ButtonHdl ) );
 aInsertLibButton.SetClickHdl( LINK( this, LibPage, ButtonHdl ) );
 aDelButton.SetClickHdl( LINK( this, LibPage, ButtonHdl ) );
-aCloseButton.SetClickHdl( LINK( this, LibPage, ButtonHdl ) );
 aLibBox.SetSelectHdl( LINK( this, LibPage, TreeListHighlightHdl ) );
 
 aBasicsBox.SetSelectHdl( LINK( this, LibPage, BasicSelectHdl ) );
@@ -532,7 +530,6 @@ LibPage::LibPage( Window * pParent )
 aLibBox.SetMode(ObjectMode::Module);
 aLibBox.EnableInplaceEditing(true);
 aLibBox.SetStyle( WB_HSCROLL | WB_BORDER | WB_TABSTOP );
-aCloseButton.GrabFocus();
 
 long aTabs[] = { 2, 30, 120 };
 aLibBox.SetTabs( aTabs, MAP_PIXEL );
@@ -581,8 +578,6 @@ void LibPage::CheckButtons()
 aInsertLibButton.Enable();
 aExportButton.Disable();
 aDelButton.Disable();
-if ( !aLibBox.HasFocus() )
-aCloseButton.GrabFocus();
 }
 else if ( ( xModLibContainer.is()  xModLibContainer-hasByName( 
aLibName )  xModLibContainer-isLibraryReadOnly( aLibName ) ) ||
   ( xDlgLibContainer.is()  xDlgLibContainer-hasByName( 
aLibName )  xDlgLibContainer-isLibraryReadOnly( aLibName ) ) )
@@ -676,11 +671,6 @@ IMPL_LINK( LibPage, ButtonHdl, Button *, pButton )
 Export();
 else if ( pButton == aDelButton )
 DeleteCurrent();
-else if ( pButton == aCloseButton )
-{
-EndTabDialog( 0 );
-return 0;
-}
 else if ( pButton == aPasswordButton )
 {
 SvTreeListEntry* pCurEntry = aLibBox.GetCurEntry();
diff --git 

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

2013-12-24 Thread Caolán McNamara
 cui/UIConfig_cui.mk   |1 
 cui/source/dialogs/cuigaldlg.cxx  |   20 ++---
 cui/source/dialogs/gallery.src|   24 --
 cui/source/inc/cuigaldlg.hxx  |9 +-
 cui/source/inc/gallery.hrc|4 -
 cui/uiconfig/ui/gallerythemedialog.ui |  133 ++
 6 files changed, 151 insertions(+), 40 deletions(-)

New commits:
commit 0dce3178fa75ad1d6f663ccd6548a1c54c6a93bd
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 09:55:46 2013 +

convert gallery theme properties dialog to .ui

Change-Id: I32c3be9e12d1b3dafa0dc9876657844bd77c9e95

diff --git a/cui/UIConfig_cui.mk b/cui/UIConfig_cui.mk
index 174b243..8679be2 100644
--- a/cui/UIConfig_cui.mk
+++ b/cui/UIConfig_cui.mk
@@ -44,6 +44,7 @@ $(eval $(call gb_UIConfig_add_uifiles,cui,\
cui/uiconfig/ui/effectspage \
cui/uiconfig/ui/formatcellsdialog \
cui/uiconfig/ui/gallerysearchprogress \
+   cui/uiconfig/ui/gallerythemedialog \
cui/uiconfig/ui/gallerythemeiddialog \
cui/uiconfig/ui/gallerytitledialog \
cui/uiconfig/ui/hangulhanjaadddialog \
diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx
index b49e8a5..ea9afc1 100644
--- a/cui/source/dialogs/cuigaldlg.cxx
+++ b/cui/source/dialogs/cuigaldlg.cxx
@@ -589,17 +589,19 @@ IMPL_LINK_NOARG(GalleryIdDialog, ClickOkHdl)
 // - GalleryThemeProperties -
 // --
 
-GalleryThemeProperties::GalleryThemeProperties( Window* pParent, ExchangeData* 
_pData, SfxItemSet* pItemSet  ) :
-SfxTabDialog( pParent, CUI_RES( RID_SVXTABDLG_GALLERYTHEME ), 
pItemSet ),
-pData   ( _pData )
+GalleryThemeProperties::GalleryThemeProperties(Window* pParent,
+ExchangeData* _pData, SfxItemSet* pItemSet)
+: SfxTabDialog( pParent, GalleryThemeDialog,
+cui/ui/gallerythemedialog.ui, pItemSet)
+, pData(_pData)
+, m_nGeneralPageId(0)
+, m_nFilesPageId(0)
 {
-FreeResource();
-
-AddTabPage( RID_SVXTABPAGE_GALLERY_GENERAL, TPGalleryThemeGeneral::Create, 
0 );
-AddTabPage( RID_SVXTABPAGE_GALLERYTHEME_FILES, 
TPGalleryThemeProperties::Create, 0 );
+m_nGeneralPageId = AddTabPage(general, TPGalleryThemeGeneral::Create, 0);
+m_nFilesPageId = AddTabPage(files, TPGalleryThemeProperties::Create, 0);
 
 if( pData-pTheme-IsReadOnly() )
-RemoveTabPage( RID_SVXTABPAGE_GALLERYTHEME_FILES );
+RemoveTabPage(m_nFilesPageId);
 
 OUString aText( GetText() );
 
@@ -615,7 +617,7 @@ GalleryThemeProperties::GalleryThemeProperties( Window* 
pParent, ExchangeData* _
 
 void GalleryThemeProperties::PageCreated( sal_uInt16 nId, SfxTabPage rPage )
 {
-if( RID_SVXTABPAGE_GALLERY_GENERAL == nId )
+if (nId == m_nGeneralPageId)
 ( (TPGalleryThemeGeneral) rPage ).SetXChgData( pData );
 else
 ( (TPGalleryThemeProperties) rPage ).SetXChgData( pData );
diff --git a/cui/source/dialogs/gallery.src b/cui/source/dialogs/gallery.src
index a80d604..d1a7413 100644
--- a/cui/source/dialogs/gallery.src
+++ b/cui/source/dialogs/gallery.src
@@ -24,30 +24,6 @@
 
 #define MASKCOLOR MaskColor = Color { Red = 0x ; Green = 0x ; Blue = 
0x ; };
 
-TabDialog RID_SVXTABDLG_GALLERYTHEME
-{
-OutputSize = TRUE ;
-SVLook = TRUE ;
-Text [ en-US ] = Properties of  ;
-Moveable = TRUE ;
-TabControl 1
-{
-OutputSize = TRUE ;
-PageList =
-{
-PageItem
-{
-Identifier = RID_SVXTABPAGE_GALLERY_GENERAL ;
-Text [ en-US ] = General ;
-};
-PageItem
-{
-Identifier = RID_SVXTABPAGE_GALLERYTHEME_FILES ;
-Text [ en-US ] = Files ;
-};
-};
-};
-};
 
 
/**/
 
diff --git a/cui/source/inc/cuigaldlg.hxx b/cui/source/inc/cuigaldlg.hxx
index 2e8d829..eb242ef 100644
--- a/cui/source/inc/cuigaldlg.hxx
+++ b/cui/source/inc/cuigaldlg.hxx
@@ -197,12 +197,13 @@ class GalleryThemeProperties : public SfxTabDialog
 {
 ExchangeData*   pData;
 
-virtual voidPageCreated( sal_uInt16 nId, SfxTabPage rPage );
+sal_uInt16 m_nGeneralPageId;
+sal_uInt16 m_nFilesPageId;
 
-public:
+virtual void PageCreated(sal_uInt16 nId, SfxTabPage rPage);
 
-GalleryThemeProperties( Window* pParent, ExchangeData* 
pData, SfxItemSet* pItemSet  );
-~GalleryThemeProperties() {}
+public:
+GalleryThemeProperties(Window* pParent, ExchangeData* pData, SfxItemSet* 
pItemSet);
 };
 
 class TPGalleryThemeGeneral : public SfxTabPage
diff --git a/cui/source/inc/gallery.hrc b/cui/source/inc/gallery.hrc
index 61b038a..e255e75 100644
--- a/cui/source/inc/gallery.hrc
+++ b/cui/source/inc/gallery.hrc
@@ -18,9 +18,7 @@
  */
 #include cuires.hrc
 
-// Gallery TabDialogs/TabPages
-#define 

Re: Libreoffice and kde integration

2013-12-24 Thread Michael Meeks
Hi Bjoern,

On Tue, 2013-12-24 at 01:27 +0100, bjoern wrote:
 Ah, I finally get what you were up too with that kde-stub-libs-foo. ;)

Right - and it -should- almost work; just needs a little more work to
get (IIRC) some ELF objects working nicely - but I ran out of time
sadly.

 Just brainstorming, I wonder if it would be easier to do roughly what distros 
 do
 in these cases, for the 'integration' parts of LibreOffice that connect with
 other infrastructure on the OS (mostly the above mentioned kde/gtk/gnome-foo),
 namely: simply using a newer baseline.

I'm not that clear on what you suggest. I assume you are not suggesting
doubling the number of Linux packages to 4x per architecture: .deb
+ .rpm (old) and .deb + .rpm (new) - and then more fooling in the
downloader etc. ? (that doesn't sound sensible for a minority platform -
with x86_64 - 8x package archives.

An alternative meaning: we can certainly try to install newer software
eg. KDE4 on the old system - and compile vs. that: that is almost no
issue at all. We have dynamic hooks and conditionals, and demand loading
for all that. If we -could- compile it on that machine we could do that.

Problem is - from a raw 'package' perspective; you can't just install
KDE-devel and expect it to work; each library brings a slew of other
libraries, all of which start to try to do very heavy lifting on the
platform: the dependencies go down to the bottom - new versions of
'hal', 'systemd', 'udev' you name it - the desktop has -very- long
roots. Of course - it's probably possible to re-compile all of that
ourselves for CentOS5 - but - that's a huge chunk of work. If someone
wants to do it and maintain it they are more than welcome.

My hope was that by building (dependency free) stub libraries from an
existing (newer system's gio* and KDE*) we could install that stuff as
pure stubs with no dependencies at all - we could whack the headers in,
along with these libs, check our linking is ok, and just ship that lot.
There is never a need to run anything that links to them during compile.

 Now using two baselines, one for 'core' LibreOffice which is truely ancient 
 and
 one for system integration, which is more recent, and building parts of
 LibreOffice in each can be assumed to sounds like madness and probably is. Im
 just not sure if using some symbols stubs lib approach is less painful in the
 end.

Well - from a dependency perspective; having a 'libfoo.so' that has no
other library dependencies, and just exports stubs that match the real
'libfoo.so' is extremely elegant.

 P.S.: Note that the 'use two baselines' thing is likely easier than it sounds
 as tools like pbuilder are around and automate most of that away.

OBS builds ~everything inside a similar chroot which it will
auto-populate for you; but there is some significant grief around the
mechanics of double building ~everything and then shuffling bits of it
around into a single install set I suspect. I suspect it'd be better to
use OBS to try to re-build all of glibnext and KDEnext on CentOS5 if
someone is desperate for that, or failing that - finishing  testing the
stubber ;-)

But it's your baby ... ;-)

ATB,

Michael.

-- 
 michael.me...@collabora.com  , Pseudo Engineer, itinerant idiot

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


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

2013-12-24 Thread Caolán McNamara
 svx/source/gallery2/galbrws1.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2caaf644e847b2bded91a12976c1dec854d51eb5
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 11:43:24 2013 +

dialog to be deleted never passed to destroy

Change-Id: Iee6c43aa192ae4d99872769f9cf8564c603165fb

diff --git a/svx/source/gallery2/galbrws1.cxx b/svx/source/gallery2/galbrws1.cxx
index a860cbb..7285b84 100644
--- a/svx/source/gallery2/galbrws1.cxx
+++ b/svx/source/gallery2/galbrws1.cxx
@@ -326,7 +326,7 @@ void GalleryBrowser1::ImplEndGalleryThemeProperties( 
VclAbstractDialog2* pDialog
 }
 
 // destroy mpThemeProps asynchronously
-Application::PostUserEvent( LINK( this, GalleryBrowser1, 
DestroyThemePropertiesDlgHdl ) );
+Application::PostUserEvent( LINK( this, GalleryBrowser1, 
DestroyThemePropertiesDlgHdl ), pDialog );
 }
 
 IMPL_LINK( GalleryBrowser1, EndNewThemePropertiesDlgHdl, VclAbstractDialog2*, 
pDialog )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-12-24 Thread Caolán McNamara
 svx/source/gallery2/galbrws1.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8a4584a059d1589a939d8c34b33884b11b43ec1a
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 11:43:24 2013 +

dialog to be deleted never passed to destroy

Change-Id: Iee6c43aa192ae4d99872769f9cf8564c603165fb
(cherry picked from commit 2caaf644e847b2bded91a12976c1dec854d51eb5)

diff --git a/svx/source/gallery2/galbrws1.cxx b/svx/source/gallery2/galbrws1.cxx
index a860cbb..7285b84 100644
--- a/svx/source/gallery2/galbrws1.cxx
+++ b/svx/source/gallery2/galbrws1.cxx
@@ -326,7 +326,7 @@ void GalleryBrowser1::ImplEndGalleryThemeProperties( 
VclAbstractDialog2* pDialog
 }
 
 // destroy mpThemeProps asynchronously
-Application::PostUserEvent( LINK( this, GalleryBrowser1, 
DestroyThemePropertiesDlgHdl ) );
+Application::PostUserEvent( LINK( this, GalleryBrowser1, 
DestroyThemePropertiesDlgHdl ), pDialog );
 }
 
 IMPL_LINK( GalleryBrowser1, EndNewThemePropertiesDlgHdl, VclAbstractDialog2*, 
pDialog )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-12-24 Thread Caolán McNamara
 cui/source/factory/dlgfact.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 46205b2e4c16938a158cf3b2ae16107e34ff7793
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 11:44:53 2013 +

stray slash

Change-Id: I899aabc901488aa1c60aa57c809f330b399e7b7e

diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx
index b8d9b8c..784130e 100644
--- a/cui/source/factory/dlgfact.hxx
+++ b/cui/source/factory/dlgfact.hxx
@@ -85,7 +85,7 @@ class VclAbstractDialog2_Impl : public VclAbstractDialog2
 Dialog* m_pDlg;
 Linkm_aEndDlgHdl;
 public:
-VclAbstractDialog2_Impl( Dialog* p ) : m_pDlg( p ) {}  
   \
+VclAbstractDialog2_Impl( Dialog* p ) : m_pDlg( p ) {}
 virtual ~VclAbstractDialog2_Impl();
 virtual voidStartExecuteModal( const Link rEndDialogHdl );
 virtual longGetResult();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Libreoffice and kde integration

2013-12-24 Thread bjoern
On Tue, Dec 24, 2013 at 11:33:24AM +, Michael Meeks wrote:
   I'm not that clear on what you suggest. I assume you are not suggesting
 doubling the number of Linux packages to 4x per architecture: .deb
 + .rpm (old) and .deb + .rpm (new) - and then more fooling in the
 downloader etc. ? (that doesn't sound sensible for a minority platform -
 with x86_64 - 8x package archives.

No, I dont want to suggest to get even more packages. Rather to build the core
(non-kde/gtk-stuff) of LibreOffice on the 'old' baseline, and then have a
chroot on that same machine with a newer baseline, and build just the kde/gtk
parts against that baseline and the already partial build tree we have from the
build on the old baseline. So you would end up with one set of .rpm/.debs,
where the core of it runs anywhere, while the gtk/kde bits require something
halfway recent.

But in the end its probably not worth it at all, if we just make sure distros
can be very quick with their packages, so that upstream binaries are just used
as a 'proof it build'. ;)

Best,

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


Re: Beginner

2013-12-24 Thread Pierre-André Jacquod

Hello,
if you want to contribute with coding, I would suggest you:
- first (try to) build LibreOffice, depend on OS it can be tricky, but 
less than it used to be. This implies to download the source code, 
resolve dependencies and use the compiler
- if not yet, get familiar with git (some basic commands are needed) and 
with gerrit


once done, to get more familiar, try to solve an easy hack or solve a 
bug that you can reproduce. But I would recommend solve easy hacks, this 
would avoid starting in some too deep part of the code.


A good starting point is : https://wiki.documentfoundation.org/Development

Else on debugging, even if not solving, already isolating the exact 
point of the problem and the reason is already of big help and a good 
point to get infos/ advice of more experienced developers.


Best regards

On 12/23/2013 06:54 PM, prabhdeep singh wrote:

I want to start contributing to the open source community, but I do not
where to begin.
Your community's cause seems great!
So I would love to start but I am absolutely clueless as to where to begin.
I have a background in C++ and algorithmic operations.
Any help would be appreciated!


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



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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.1' - sw/qa writerfilter/source

2013-12-24 Thread Zolnai Tamás
 sw/qa/extras/ooxmlimport/data/rprchange_closed.docx |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx|9 +
 writerfilter/source/ooxml/model.xml |3 +++
 3 files changed, 12 insertions(+)

New commits:
commit 903e342844bdc923c8270eed7d26e3faee9f1870
Author: Zolnai Tamás tamas.zol...@collabora.com
Date:   Tue Dec 24 08:05:58 2013 +0100

DOCX import: close rPrChange properly.

Call endtrackchanges when rPrChange ends so the
corresponding redline will be removed.

(cherry picked from commit 75e7d6f12e914b63e66968890533b2a56d0b1a7e)

Conflicts:
sw/qa/extras/ooxmlimport/ooxmlimport.cxx

Change-Id: I4091d7b54e0a74f3158cc979f210577a2dc29783

diff --git a/sw/qa/extras/ooxmlimport/data/rprchange_closed.docx 
b/sw/qa/extras/ooxmlimport/data/rprchange_closed.docx
new file mode 100644
index 000..ff53871
Binary files /dev/null and 
b/sw/qa/extras/ooxmlimport/data/rprchange_closed.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 2eaa994..c5ccc89 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -140,6 +140,7 @@ public:
 void testDefaultSectBreakCols();
 void testFdo66474();
 void testBnc780044Spacing();
+void testRPrChangeClosed();
 
 CPPUNIT_TEST_SUITE(Test);
 #if !defined(MACOSX)  !defined(WNT)
@@ -244,6 +245,7 @@ void Test::run()
 {default-sect-break-cols.docx, Test::testDefaultSectBreakCols},
 {fdo66474.docx, Test::testFdo66474},
 {bnc780044_spacing.docx, Test::testBnc780044Spacing},
+{rprchange_closed.docx,Test::testRPrChangeClosed},
 };
 header();
 for (unsigned int i = 0; i  SAL_N_ELEMENTS(aMethods); ++i)
@@ -1701,6 +1703,13 @@ void Test::testBnc780044Spacing()
 CPPUNIT_ASSERT_EQUAL(sal_Int16(1), xCursor-getPage());
 }
 
+void Test::testRPrChangeClosed()
+{
+// Redline defined by rPrChanged wasn't removed.
+// First paragraph has an rPrChange element, make sure it doesn't appear 
in the second paragraph.
+CPPUNIT_ASSERT_EQUAL(false, hasProperty(getRun(getParagraph(2), 1), 
RedlineType));
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/writerfilter/source/ooxml/model.xml 
b/writerfilter/source/ooxml/model.xml
index 4fad4ba..d368dab 100644
--- a/writerfilter/source/ooxml/model.xml
+++ b/writerfilter/source/ooxml/model.xml
@@ -22077,6 +22077,9 @@
 /resource
 resource name=CT_RPrChange resource=Properties tag=character
   element name=rPr tokenid=ooxml:CT_RPrChange_rPr/
+  action name=end action=tokenproperty/
+  action name=end action=propagateCharacterPropertiesAsSet 
sendtokenid=ooxml:endtrackchange/
+  action name=end action=clearProps/
 /resource
 resource name=CT_ParaRPrChange resource=Properties tag=character
   element name=rPr tokenid=ooxml:CT_ParaRPrChange_rPr/
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-12-24 Thread Caolán McNamara
 cui/UIConfig_cui.mk |1 
 cui/source/dialogs/hangulhanjadlg.cxx   |  101 +--
 cui/source/dialogs/hangulhanjadlg.src   |   93 --
 cui/source/inc/cuires.hrc   |1 
 cui/source/inc/hangulhanjadlg.hxx   |   20 --
 cui/source/inc/helpid.hrc   |2 
 cui/uiconfig/ui/hangulhanjaoptdialog.ui |  291 
 7 files changed, 349 insertions(+), 160 deletions(-)

New commits:
commit d27095e5505b9411beea27e6ec7c4fc0f7374537
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 11:54:49 2013 +

convert Hangul/Hanja Options dialog to .ui

Change-Id: I7e715cb2294de79a8c9453663f0cd0193f5d70fd

diff --git a/cui/UIConfig_cui.mk b/cui/UIConfig_cui.mk
index 8679be2..d2bb6c6 100644
--- a/cui/UIConfig_cui.mk
+++ b/cui/UIConfig_cui.mk
@@ -48,6 +48,7 @@ $(eval $(call gb_UIConfig_add_uifiles,cui,\
cui/uiconfig/ui/gallerythemeiddialog \
cui/uiconfig/ui/gallerytitledialog \
cui/uiconfig/ui/hangulhanjaadddialog \
+   cui/uiconfig/ui/hangulhanjaoptdialog \
cui/uiconfig/ui/hatchpage \
cui/uiconfig/ui/hyphenate \
cui/uiconfig/ui/insertfloatingframe \
diff --git a/cui/source/dialogs/hangulhanjadlg.cxx 
b/cui/source/dialogs/hangulhanjadlg.cxx
index d6fa7dd..dd244e0 100644
--- a/cui/source/dialogs/hangulhanjadlg.cxx
+++ b/cui/source/dialogs/hangulhanjadlg.cxx
@@ -934,7 +934,7 @@ namespace svx
 }
 
 m_aDictList.clear();
-m_aDictsLB.Clear();
+m_pDictsLB-Clear();
 
 Reference XNameContainer  xNameCont = 
m_xConversionDictionaryList-getDictionaryContainer();
 if( xNameCont.is() )
@@ -974,12 +974,12 @@ namespace svx
 while( nCnt )
 {
 Reference XConversionDictionary   xDict = m_aDictList[ n ];
-SvTreeListEntry*pEntry = 
m_aDictsLB.SvTreeListBox::GetEntry( n );
+SvTreeListEntry*pEntry = 
m_pDictsLB-SvTreeListBox::GetEntry( n );
 
 DBG_ASSERT( xDict.is(), -HangulHanjaOptionsDialog::OkHdl(): 
someone is evaporated... );
 DBG_ASSERT( pEntry, -HangulHanjaOptionsDialog::OkHdl(): no one 
there in list? );
 
-boolbActive = m_aDictsLB.GetCheckButtonState( pEntry ) == 
SV_BUTTON_CHECKED;
+boolbActive = m_pDictsLB-GetCheckButtonState( pEntry ) == 
SV_BUTTON_CHECKED;
 xDict-setActive( bActive );
 Reference util::XFlushable  xFlush( xDict, uno::UNO_QUERY );
 if( xFlush.is() )
@@ -1002,13 +1002,13 @@ namespace svx
 aTmp = aActiveDics;
 aLngCfg.SetProperty( UPH_ACTIVE_CONVERSION_DICTIONARIES, aTmp );
 
-aTmp = bool( m_aIgnorepostCB.IsChecked() );
+aTmp = bool( m_pIgnorepostCB-IsChecked() );
 aLngCfg.SetProperty( UPH_IS_IGNORE_POST_POSITIONAL_WORD, aTmp );
 
-aTmp = bool( m_aShowrecentlyfirstCB.IsChecked() );
+aTmp = bool( m_pShowrecentlyfirstCB-IsChecked() );
 aLngCfg.SetProperty( UPH_IS_SHOW_ENTRIES_RECENTLY_USED_FIRST, aTmp );
 
-aTmp = bool( m_aAutoreplaceuniqueCB.IsChecked() );
+aTmp = bool( m_pAutoreplaceuniqueCB-IsChecked() );
 aLngCfg.SetProperty( UPH_IS_AUTO_REPLACE_UNIQUE_ENTRIES, aTmp );
 
 EndDialog( RET_OK );
@@ -1017,10 +1017,10 @@ namespace svx
 
 IMPL_LINK_NOARG(HangulHanjaOptionsDialog, DictsLB_SelectHdl)
 {
-boolbSel = m_aDictsLB.FirstSelected() != NULL;
+bool bSel = m_pDictsLB-FirstSelected() != NULL;
 
-m_aEditPB.Enable( bSel );
-m_aDeletePB.Enable( bSel );
+m_pEditPB-Enable(bSel);
+m_pDeletePB-Enable(bSel);
 
 return 0;
 }
@@ -1060,11 +1060,11 @@ namespace svx
 
 IMPL_LINK_NOARG(HangulHanjaOptionsDialog, EditDictHdl)
 {
-SvTreeListEntry*pEntry = m_aDictsLB.FirstSelected();
+SvTreeListEntry*pEntry = m_pDictsLB-FirstSelected();
 DBG_ASSERT( pEntry, +HangulHanjaEditDictDialog::EditDictHdl(): call 
of edit should not be possible with no selection! );
 if( pEntry )
 {
-HangulHanjaEditDictDialog   aEdDlg( this, m_aDictList, 
m_aDictsLB.GetSelectEntryPos() );
+HangulHanjaEditDictDialog   aEdDlg( this, m_aDictList, 
m_pDictsLB-GetSelectEntryPos() );
 aEdDlg.Execute();
 }
 return 0L;
@@ -1072,7 +1072,7 @@ namespace svx
 
 IMPL_LINK_NOARG(HangulHanjaOptionsDialog, DeleteDictHdl)
 {
-sal_uInt16 nSelPos = m_aDictsLB.GetSelectEntryPos();
+sal_uInt16 nSelPos = m_pDictsLB-GetSelectEntryPos();
 if( nSelPos != LISTBOX_ENTRY_NOTFOUND )
 {
 Reference XConversionDictionary   xDic( m_aDictList[ nSelPos ] );
@@ -1087,7 +1087,7 @@ namespace svx
 
 //adapt local caches:
 m_aDictList.erase(m_aDictList.begin()+nSelPos );
-m_aDictsLB.RemoveEntry(nSelPos);
+  

[Libreoffice-commits] help.git: helpers/help_hid.lst source/text

2013-12-24 Thread Caolán McNamara
 helpers/help_hid.lst   |8 
 source/text/shared/01/0620.xhp |2 +-
 source/text/shared/01/06201000.xhp |   29 +
 3 files changed, 14 insertions(+), 25 deletions(-)

New commits:
commit 0dc1069fa953547ac90aebf058b6ff18a83e820f
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 14:52:47 2013 +

update help ids for hangul/hanja options .ui conversion

Change-Id: Ie0dc014b9e6c9c3dba7cc7b9edbc6f76e8e401ac

diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index 13382a5..1409d77 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -2141,8 +2141,6 @@ HID_HANGULDLG_SUGGESTIONS,40038,
 HID_HANGULDLG_SUGGESTIONS_GRID,40039,
 HID_HANGULDLG_SUGGESTIONS_LIST,40040,
 HID_HANGULHANJA_EDIT_DLG,39992,
-HID_HANGULHANJA_OPT_DICTS_LB,39994,
-HID_HANGULHANJA_OPT_DLG,39990,
 HID_HELPAGENT_TIP_BOX,33159,
 HID_HELPBAR,33151,
 HID_HELP_BOOKMARKS_DELETE,33366,
@@ -6490,9 +6488,6 @@ 
svx_CheckBox_RID_SVX_GRFFILTER_DLG_SOLARIZE_DLG_FILTERSOLARIZE_CBX_INVERT,124303
 svx_CheckBox_RID_SVX_MDLG_HANGULHANJA_CB_HANGUL_ONLY,1237599234,
 svx_CheckBox_RID_SVX_MDLG_HANGULHANJA_CB_HANJA_ONLY,1237599235,
 svx_CheckBox_RID_SVX_MDLG_HANGULHANJA_CB_REPLACE_BY_CHARACTER,1237599233,
-svx_CheckBox_RID_SVX_MDLG_HANGULHANJA_OPT_CB_AUTOREPLACEUNIQUE,1237648388,
-svx_CheckBox_RID_SVX_MDLG_HANGULHANJA_OPT_CB_IGNOREPOST,1237648385,
-svx_CheckBox_RID_SVX_MDLG_HANGULHANJA_OPT_CB_SHOWRECENTLYFIRST,1237648387,
 svx_CheckBox_RID_SVX_SPLITCELLDLG_CB_PROP,1238287371,
 svx_ComboBox_DLG_DOCUMENTLINK_CMB_URL,1346113537,
 svx_ComboBox_RID_SVXDLG_ADD_INSTANCE_ED_INST_URL,1368952846,
@@ -6920,9 +6915,6 @@ 
svx_PushButton_RID_SVXTABPAGE_GALLERYTHEME_FILES_BTN_TAKEALL,706679297,
 svx_PushButton_RID_SVX_MDLG_DOCRECOVERY_BROKEN_BTN_BROKEN_SAVEDIR,1237783046,
 svx_PushButton_RID_SVX_MDLG_HANGULHANJA_EDIT_PB_HHE_DELETE,1237668354,
 svx_PushButton_RID_SVX_MDLG_HANGULHANJA_EDIT_PB_HHE_NEW,1237668353,
-svx_PushButton_RID_SVX_MDLG_HANGULHANJA_OPT_PB_HHO_DELETE,1237651971,
-svx_PushButton_RID_SVX_MDLG_HANGULHANJA_OPT_PB_HHO_EDIT,1237651970,
-svx_PushButton_RID_SVX_MDLG_HANGULHANJA_OPT_PB_HHO_NEW,1237651969,
 svx_PushButton_RID_SVX_MDLG_HANGULHANJA_PB_FIND,1237602817,
 svx_RadioButton_DLG_INS_ROW_COL_CB_POS_AFTER,1240138251,
 svx_RadioButton_DLG_INS_ROW_COL_CB_POS_BEFORE,1240138250,
diff --git a/source/text/shared/01/0620.xhp 
b/source/text/shared/01/0620.xhp
index d1c0daf..111c065 100644
--- a/source/text/shared/01/0620.xhp
+++ b/source/text/shared/01/0620.xhp
@@ -105,7 +105,7 @@
 paragraph role=paragraph id=par_id3145154 xml-lang=en-US l10n=U 
oldref=42ahelp 
hid=SVX_CHECKBOX_RID_SVX_MDLG_HANGULHANJA_CB_REPLACE_BY_CHARACTERCheck to 
move character-by-character through the selected text. If not checked, full 
words are replaced./ahelp/paragraph
 bookmark xml-lang=en-US branch=hid/CUI_HID_HANGULDLG_BUTTON_OPTIONS 
id=bm_id2443311 localize=false/
 paragraph role=heading id=par_idN10969 xml-lang=en-US level=2 
l10n=NEWOptions/paragraph
-paragraph role=paragraph id=par_idN1096D xml-lang=en-US 
l10n=CHGahelp hid=HID_HANGULHANJA_OPT_DLGOpens the link 
href=text/shared/01/06201000.xhpHangul/Hanja Options/link 
dialog./ahelp/paragraph
+paragraph role=paragraph id=par_idN1096D xml-lang=en-US 
l10n=CHGahelp hid=cui/ui/hangulhangaoptdialog/HangulHanjaOptDialogOpens 
the link href=text/shared/01/06201000.xhpHangul/Hanja Options/link 
dialog./ahelp/paragraph
 bookmark xml-lang=en-US branch=hid/CUI_HID_HANGULDLG_BUTTON_CLOSE 
id=bm_id3145746 localize=false/
 paragraph role=heading id=hd_id3149807 xml-lang=en-US level=2 
l10n=U oldref=43Close/paragraph
 paragraph role=paragraph id=par_id3155743 xml-lang=en-US l10n=U 
oldref=44ahelp hid=HID_HANGULDLG_BUTTON_CLOSECloses the 
dialog./ahelp/paragraph
diff --git a/source/text/shared/01/06201000.xhp 
b/source/text/shared/01/06201000.xhp
index e6f3f20..9e447c9 100644
--- a/source/text/shared/01/06201000.xhp
+++ b/source/text/shared/01/06201000.xhp
@@ -33,34 +33,31 @@
 body
 paragraph role=heading id=par_idN10542 xml-lang=en-US level=1 
l10n=NEWHangul/Hanja Options/paragraph
 paragraph role=paragraph id=par_idN10546 xml-lang=en-US 
l10n=NEWDefine options for the link 
href=text/shared/01/0620.xhpHangul/Hanja conversion/link./paragraph
-bookmark xml-lang=en-US branch=hid/CUI_HID_HANGULHANJA_OPT_DICTS_LB 
id=bm_id3277077 localize=false/
+bookmark xml-lang=en-US branch=hid/cui/ui/hangulhangaoptdialog/dicts 
id=bm_id3277077 localize=false/
 paragraph role=heading id=par_idN1055F xml-lang=en-US level=2 
l10n=NEWUser-defined dictionaries/paragraph
 paragraph role=paragraph id=par_idN10563 xml-lang=en-US 
l10n=NEWahelp hid=cui/ui/hangulhanjaadddialog/HangulHanjaAddDialogLists 
all user-defined dictionaries. Select the check box next to the dictionary that 
you want to use. Clear the check box next to the dictionary that you do not 
want to use./ahelp/paragraph
-bookmark xml-lang=en-US 

[Libreoffice-commits] core.git: helpcontent2

2013-12-24 Thread Caolán McNamara
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 64b8909ff239e715980b8af83a52566eada12eb2
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 14:52:47 2013 +

Updated core
Project: help  0dc1069fa953547ac90aebf058b6ff18a83e820f

diff --git a/helpcontent2 b/helpcontent2
index 458e6f1..0dc1069 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 458e6f18f0a93701748ef8754dc6f4acd7d2aaf0
+Subproject commit 0dc1069fa953547ac90aebf058b6ff18a83e820f
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-12-24 Thread Caolán McNamara
 cui/uiconfig/ui/hangulhanjaadddialog.ui |9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

New commits:
commit ad60a99f7aa32bbd60c31411149ff82aeebe398e
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 14:59:58 2013 +

odd button positions on hangul add dict dialog

Change-Id: I072f4264891aca552b73d12d402faa803bb269a5

diff --git a/cui/uiconfig/ui/hangulhanjaadddialog.ui 
b/cui/uiconfig/ui/hangulhanjaadddialog.ui
index dd5d81b..e9968c5 100644
--- a/cui/uiconfig/ui/hangulhanjaadddialog.ui
+++ b/cui/uiconfig/ui/hangulhanjaadddialog.ui
@@ -27,8 +27,7 @@
   /object
   packing
 property name=expandFalse/property
-property name=fillTrue/property
-property name=pack_typeend/property
+property name=fillFalse/property
 property name=position0/property
   /packing
 /child
@@ -42,8 +41,7 @@
   /object
   packing
 property name=expandFalse/property
-property name=fillTrue/property
-property name=pack_typeend/property
+property name=fillFalse/property
 property name=position1/property
   /packing
 /child
@@ -59,8 +57,7 @@
   /object
   packing
 property name=expandFalse/property
-property name=fillTrue/property
-property name=pack_typeend/property
+property name=fillFalse/property
 property name=position2/property
   /packing
 /child
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 60924] move libraries to autoinstallation in scp2

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60924

--- Comment #62 from Marcos Souza marcos.souza@gmail.com ---
How we can do now?

Looking at scp2/source/ooo/file_library_ooo.scp we have some third party libs
like rasqal, raptor, lcms, opensll and others...

How we can handle these?

We need to change somethings in gbuild to handle all things that currently
exists in scp2?

Thanks since now!

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


[Bug 60698] kill pointless one-file library ...

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60698

--- Comment #23 from Marcos Souza marcos.souza@gmail.com ---
And about xmlreader library?

It just have 3 files... where we can put this?

And this module don't have a component file, so this would be easy to merge...

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


[Libreoffice-commits] core.git: 2 commits - include/svx svx/source svx/uiconfig svx/UIConfig_svx.mk

2013-12-24 Thread Caolán McNamara
 include/svx/dialogs.hrc  |1 
 svx/UIConfig_svx.mk  |1 
 svx/source/form/fmtextcontroldialogs.cxx |   28 +
 svx/source/form/fmtextcontrolshell.cxx   |   32 ++
 svx/source/form/formshell.src|   37 ---
 svx/source/inc/fmtextcontroldialogs.hxx  |6 -
 svx/uiconfig/ui/textcontrolparadialog.ui |  162 +++
 7 files changed, 188 insertions(+), 79 deletions(-)

New commits:
commit 2a1d60f76d84f4c617792b1dcf4196b4289fb51f
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 22:21:43 2013 +

convert text control paragraph dialog to .ui

Change-Id: Iedaa5db0add3e6f65d4e207f1514b8eb8344b6da

diff --git a/include/svx/dialogs.hrc b/include/svx/dialogs.hrc
index 7c89bb7..53660a8 100644
--- a/include/svx/dialogs.hrc
+++ b/include/svx/dialogs.hrc
@@ -219,7 +219,6 @@
 #define RID_SVXIMG_CHECKED  (RID_SVX_START + 244)
 
 #define RID_SVXDLG_TEXTCONTROL_CHARATTR (RID_SVX_START + 286)
-#define RID_SVXDLG_TEXTCONTROL_PARAATTR (RID_SVX_START + 287)
 
 #define RID_SVXDLG_LINK_WARNING (RID_SVX_START + 313)
 #define RID_SIDEBAR_TEXT_PANEL  (RID_SVX_START + 314)
diff --git a/svx/UIConfig_svx.mk b/svx/UIConfig_svx.mk
index 004cae2..9faa773 100644
--- a/svx/UIConfig_svx.mk
+++ b/svx/UIConfig_svx.mk
@@ -39,6 +39,7 @@ $(eval $(call gb_UIConfig_add_uifiles,svx,\
svx/uiconfig/ui/sidebarparagraph \
svx/uiconfig/ui/sidebarpossize \
svx/uiconfig/ui/sidebartextpanel \
+   svx/uiconfig/ui/textcontrolparadialog \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/svx/source/form/fmtextcontroldialogs.cxx 
b/svx/source/form/fmtextcontroldialogs.cxx
index 40be5a8..92a5402 100644
--- a/svx/source/form/fmtextcontroldialogs.cxx
+++ b/svx/source/form/fmtextcontroldialogs.cxx
@@ -78,33 +78,23 @@ namespace svx
 }
 }
 
-//
-//= TextControlParaAttribDialog
-//
-//
-TextControlParaAttribDialog::TextControlParaAttribDialog( Window* 
_pParent, const SfxItemSet _rCoreSet )
-:SfxTabDialog( _pParent, SVX_RES( RID_SVXDLG_TEXTCONTROL_PARAATTR ), 
_rCoreSet )
+TextControlParaAttribDialog::TextControlParaAttribDialog(Window* _pParent,
+const SfxItemSet _rCoreSet)
+: SfxTabDialog( _pParent, TextControlParagraphPropertiesDialog,
+svx/ui/textcontrolparadialog.ui, _rCoreSet )
 {
-FreeResource();
-
-AddTabPage( RID_SVXPAGE_STD_PARAGRAPH );
-AddTabPage( RID_SVXPAGE_ALIGN_PARAGRAPH );
+AddTabPage(labelTP_PARA_STD, RID_SVXPAGE_STD_PARAGRAPH);
+AddTabPage(labelTP_PARA_ALIGN, RID_SVXPAGE_ALIGN_PARAGRAPH);
 
 SvtCJKOptions aCJKOptions;
 if( aCJKOptions.IsAsianTypographyEnabled() )
-AddTabPage( RID_SVXPAGE_PARA_ASIAN );
+AddTabPage(labelTP_PARA_ASIAN, RID_SVXPAGE_PARA_ASIAN);
 else
-RemoveTabPage( RID_SVXPAGE_PARA_ASIAN );
+RemoveTabPage(labelTP_PARA_ASIAN);
 
-AddTabPage( RID_SVXPAGE_TABULATOR );
+AddTabPage(labelTP_TABULATOR, RID_SVXPAGE_TABULATOR);
 }
 
-//
-TextControlParaAttribDialog::~TextControlParaAttribDialog()
-{
-}
-
-//
 }   // namespace svx
 //
 
diff --git a/svx/source/form/formshell.src b/svx/source/form/formshell.src
index 1a236ee..965e91f 100644
--- a/svx/source/form/formshell.src
+++ b/svx/source/form/formshell.src
@@ -182,41 +182,4 @@ TabDialog RID_SVXDLG_TEXTCONTROL_CHARATTR
 };
 };
 
-TabDialog RID_SVXDLG_TEXTCONTROL_PARAATTR
-{
-OutputSize = TRUE;
-SVLook = TRUE;
-Moveable = TRUE;
-
-Text [ en-US ] = Paragraph;
-
-TabControl 1
-{
-OutputSize = TRUE;
-PageList =
-{
-PageItem
-{
-Identifier = RID_SVXPAGE_STD_PARAGRAPH;
-Text [ en-US ] = Indents  Spacing;
-};
-PageItem
-{
-Identifier = RID_SVXPAGE_ALIGN_PARAGRAPH;
-Text [ en-US ] = Alignment;
-};
-PageItem
-{
-Identifier = RID_SVXPAGE_PARA_ASIAN;
-Text [ en-US ] = Asian Typography;
-};
-PageItem
-{
-Identifier = RID_SVXPAGE_TABULATOR;
-Text [ en-US ] = Tabs;
-};
-};
-};
-};
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svx/source/inc/fmtextcontroldialogs.hxx 
b/svx/source/inc/fmtextcontroldialogs.hxx
index 2ceb654..9f20a54 100644
--- 

[Libreoffice-commits] core.git: include/svx svx/source svx/uiconfig svx/UIConfig_svx.mk

2013-12-24 Thread Caolán McNamara
 include/svx/dialogs.hrc  |2 
 svx/UIConfig_svx.mk  |1 
 svx/source/form/fmtextcontroldialogs.cxx |   50 --
 svx/source/form/formshell.src|   32 --
 svx/source/inc/fmtextcontroldialogs.hxx  |4 
 svx/uiconfig/ui/textcontrolchardialog.ui |  147 +++
 6 files changed, 173 insertions(+), 63 deletions(-)

New commits:
commit d80a79b018376d211db38d28976f652ffdacdfa1
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 24 23:06:53 2013 +

convert text control character dialog to .ui

Change-Id: I4f8301578e01d3c7bf0ea912a5a9fc0beac70b4f

diff --git a/include/svx/dialogs.hrc b/include/svx/dialogs.hrc
index 53660a8..95c0691 100644
--- a/include/svx/dialogs.hrc
+++ b/include/svx/dialogs.hrc
@@ -218,8 +218,6 @@
 #define RID_SVXIMG_NOTCHECKED   (RID_SVX_START + 243)
 #define RID_SVXIMG_CHECKED  (RID_SVX_START + 244)
 
-#define RID_SVXDLG_TEXTCONTROL_CHARATTR (RID_SVX_START + 286)
-
 #define RID_SVXDLG_LINK_WARNING (RID_SVX_START + 313)
 #define RID_SIDEBAR_TEXT_PANEL  (RID_SVX_START + 314)
 #define RID_POPUPPANEL_TEXTPAGE_UNDERLINE   (RID_SVX_START + 315)
diff --git a/svx/UIConfig_svx.mk b/svx/UIConfig_svx.mk
index 9faa773..b3a0ed7 100644
--- a/svx/UIConfig_svx.mk
+++ b/svx/UIConfig_svx.mk
@@ -39,6 +39,7 @@ $(eval $(call gb_UIConfig_add_uifiles,svx,\
svx/uiconfig/ui/sidebarparagraph \
svx/uiconfig/ui/sidebarpossize \
svx/uiconfig/ui/sidebartextpanel \
+   svx/uiconfig/ui/textcontrolchardialog \
svx/uiconfig/ui/textcontrolparadialog \
 ))
 
diff --git a/svx/source/form/fmtextcontroldialogs.cxx 
b/svx/source/form/fmtextcontroldialogs.cxx
index 92a5402..c7eba1e 100644
--- a/svx/source/form/fmtextcontroldialogs.cxx
+++ b/svx/source/form/fmtextcontroldialogs.cxx
@@ -39,42 +39,36 @@ namespace svx
 //
 //
 TextControlCharAttribDialog::TextControlCharAttribDialog( Window* pParent, 
const SfxItemSet _rCoreSet, const SvxFontListItem _rFontList )
-:SfxTabDialog( pParent, SVX_RES( RID_SVXDLG_TEXTCONTROL_CHARATTR ), 
_rCoreSet )
-,m_aFontList( _rFontList )
-{
-FreeResource();
-
-AddTabPage( RID_SVXPAGE_CHAR_NAME);
-AddTabPage( RID_SVXPAGE_CHAR_EFFECTS);
-AddTabPage( RID_SVXPAGE_CHAR_POSITION);
-}
-
-//
-TextControlCharAttribDialog::~TextControlCharAttribDialog()
+: SfxTabDialog( pParent, TextControlCharacterPropertiesDialog,
+svx/ui/textcontrolchardialog.ui, _rCoreSet )
+, m_aFontList(_rFontList)
+, m_nCharNamePageId(0)
+, m_nCharEffectsPageId(0)
+, m_nCharPositionPageId(0)
 {
+m_nCharNamePageId = AddTabPage(font, RID_SVXPAGE_CHAR_NAME);
+m_nCharEffectsPageId = AddTabPage(fonteffects, 
RID_SVXPAGE_CHAR_EFFECTS);
+m_nCharPositionPageId = AddTabPage(position, 
RID_SVXPAGE_CHAR_POSITION);
 }
 
-//
 void TextControlCharAttribDialog::PageCreated( sal_uInt16 _nId, 
SfxTabPage _rPage )
 {
 SfxAllItemSet aSet(*(GetInputSetImpl()-GetPool()));
 
-switch( _nId )
+if (_nId == m_nCharNamePageId)
 {
-case RID_SVXPAGE_CHAR_NAME:
-aSet.Put (m_aFontList);
-_rPage.PageCreated(aSet);
-break;
-
-case RID_SVXPAGE_CHAR_EFFECTS:
-aSet.Put (SfxUInt16Item(SID_DISABLE_CTL,DISABLE_CASEMAP));
-_rPage.PageCreated(aSet);
-break;
-
-case RID_SVXPAGE_CHAR_POSITION:
-aSet.Put( SfxUInt32Item(SID_FLAG_TYPE, SVX_PREVIEW_CHARACTER) 
);
-_rPage.PageCreated(aSet);
-break;
+aSet.Put (m_aFontList);
+_rPage.PageCreated(aSet);
+}
+else if (_nId == m_nCharEffectsPageId)
+{
+aSet.Put (SfxUInt16Item(SID_DISABLE_CTL,DISABLE_CASEMAP));
+_rPage.PageCreated(aSet);
+}
+else if (_nId == m_nCharPositionPageId)
+{
+aSet.Put( SfxUInt32Item(SID_FLAG_TYPE, SVX_PREVIEW_CHARACTER) );
+_rPage.PageCreated(aSet);
 }
 }
 
diff --git a/svx/source/form/formshell.src b/svx/source/form/formshell.src
index 965e91f..339cb17 100644
--- a/svx/source/form/formshell.src
+++ b/svx/source/form/formshell.src
@@ -150,36 +150,4 @@ Menu RID_FM_TEXTATTRIBUTE_MENU
 };
 };
 
-TabDialog RID_SVXDLG_TEXTCONTROL_CHARATTR
-{
-OutputSize = TRUE;
-SVLook = TRUE;
-Moveable = TRUE;
-
-Text [ en-US ] = Character;
-
-TabControl 1
-{
-OutputSize = TRUE;
-PageList =
-{
-PageItem

LibreOffice Gerrit News for core on 2013-12-25

2013-12-24 Thread gerrit
Moin!

* Open changes on master for project core changed in the last 25 hours:

 First time contributors doing great things ! 
+ Get bundled curl to be used on OS X 10.5 too
  in https://gerrit.libreoffice.org/7197 from Douglas Mencken
  about module build, external
+ Print fair message from CPPUnitTest
  in https://gerrit.libreoffice.org/7196 from Douglas Mencken
  about module solenv
+ Export CoreText-related SPI stuff
  in https://gerrit.libreoffice.org/7143 from Douglas Mencken
  about module vcl
+ Convert chart polar options tab page to widget UI
  in https://gerrit.libreoffice.org/7193 from Olivier Hallot
  about module chart2
 End of freshness 



* Merged changes on master for project core changed in the last 25 hours:

+ fdo#60698: Merge odbcbase into odbc
  in https://gerrit.libreoffice.org/6929 from Marcos Souza


* Abandoned changes on master for project core changed in the last 25 hours:

None

* Open changes needing tweaks, but being untouched for more than a week:

+ CID#736173: Out-of-bound read
  in https://gerrit.libreoffice.org/6973 from Julien Nabet
+ move from ActionBarSherlock to corresponding android support lib
  in https://gerrit.libreoffice.org/7082 from Christian Lohmaier
+ fdo#60698: Merge animcore into sd and slideshow
  in https://gerrit.libreoffice.org/7108 from Marcos Souza
+ sdremote: show notes also in landscape orientation
  in https://gerrit.libreoffice.org/6889 from Christian Lohmaier
+ fix Bluetooth lifecycle problems and respect UI guidelines
  in https://gerrit.libreoffice.org/7083 from Christian Lohmaier
+ get rid of custom all-caps ui widget
  in https://gerrit.libreoffice.org/6903 from Christian Lohmaier
+ Double toolbar icon size for HiDPI screens.
  in https://gerrit.libreoffice.org/6994 from Andrzej Hunt
+ sw/export docx: add unit test for document with header and section(s)
  in https://gerrit.libreoffice.org/6249 from Pierre-Eric Pelloux-Prayer
+ add a header to provide posix compatible wrapper for platform lacking
  in https://gerrit.libreoffice.org/6837 from Norbert Thiebaud
+ Code clean-up/consolidation task.
  in https://gerrit.libreoffice.org/5926 from Vishv Brahmbhatt
+ fix for exporting of text watermark to DOCX
  in https://gerrit.libreoffice.org/5568 from Adam CloudOn
+ WIP: fdo#33980 Preserve selection across all slide sorters.
  in https://gerrit.libreoffice.org/6633 from Andrzej Hunt
+ fdo#71043 -  Use STACK lint tool to clean code
  in https://gerrit.libreoffice.org/6529 from José Guilherme Vanz
+ new cell-border handling in calc
  in https://gerrit.libreoffice.org/6093 from Viktor Varga
+ Increase number of remembered recent documents from 10 to 25
  in https://gerrit.libreoffice.org/6101 from Krisztian Pinter
+ startcenter: Make SC open faster by timeouting thumbnails
  in https://gerrit.libreoffice.org/6102 from Krisztian Pinter
+ Simplify oslThreadIdentifier on Linux 32.
  in https://gerrit.libreoffice.org/5553 from Arnaud Versini
+ Dynamically align toolbars in LibreOffice
  in https://gerrit.libreoffice.org/5655 from Prashant Pandey
+ fdo#36791 : fix for import of greeting card
  in https://gerrit.libreoffice.org/4240 from Adam CloudOn
+ more debug logs, extra debug layer, file is not used in p3k
  in https://gerrit.libreoffice.org/5267 from James Michael Dupont
+ Positional Tab additions
  in https://gerrit.libreoffice.org/5387 from Adam CloudOn
+ fdo#64817 : fix for rectangle with image fill
  in https://gerrit.libreoffice.org/4718 from Adam CloudOn


Best,

Your friendly LibreOffice Gerrit Digest Mailer

Note: The bot generating this message can be found and improved here:
   
https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=gerritbot/send-daily-digest
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice-qa] Feedback page up

2013-12-24 Thread Robinson Tryon
On Mon, Dec 23, 2013 at 11:12 PM, Thomas Hackert thack...@nexgo.de wrote:
 The page uses the HTML vars passed-in by LibreOffice:
 https://www.libreoffice.org/get-help/bug/?LOversion=4.2.0.1LOlocale=en-USLOmodule=TextDocument

 When we update the BSA to accept passed-in variables, this will
 allow us to automatically fill-in a bunch of information about the
 bug reporter's system. In the future, we could include additional
 information such as OS, architecture, and extensions.

 Would it be possible to add a log-out button/link from Bugzilla
 there? I find it a little bit disturbing to click on a link of a
 submitted bug to switch to BZ, just to be able to log out from BZ

There's a bug reported re: logging-out from the BSA:
https://bugs.freedesktop.org/show_bug.cgi?id=41627

IIRC, Jean Spiteri's repo has some commits on that topic
https://github.com/Liongold/www-bugassistant/commit/f6a9f7e5184137aacfe51bd710e3f99e8d60e2d2

Rob/Jean - What's the status here?

 ... :( And more modules to report bugs to would be really nice ...
 ;)

I'm not sure what you mean -- do you mean more additions to the BSA,
or to the Feedback page, or?

Best,
--R
___
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] Feedback page up

2013-12-24 Thread Thomas Hackert
Hi Robinson, *,
On Dienstag, 24. Dezember 2013 14:38 Robinson Tryon wrote:
 On Mon, Dec 23, 2013 at 11:12 PM, Thomas Hackert
 thack...@nexgo.de wrote:
 The page uses the HTML vars passed-in by LibreOffice:
 https://www.libreoffice.org/get-help/bug/?LOversion=4.2.0.1LOlocale=en-USLOmodule=TextDocument

 When we update the BSA to accept passed-in variables, this will
 allow us to automatically fill-in a bunch of information about
 the bug reporter's system. In the future, we could include
 additional information such as OS, architecture, and extensions.

 Would it be possible to add a log-out button/link from Bugzilla
 there? I find it a little bit disturbing to click on a link of a
 submitted bug to switch to BZ, just to be able to log out from BZ
 
 There's a bug reported re: logging-out from the BSA:
 https://bugs.freedesktop.org/show_bug.cgi?id=41627

if I understand it right, Rainer wanted a possibility to discontinue 
a bug submission. My problem was, that I was logged in, after I 
submitted my bug and did not find any possibility to log out at BSA 
... :(

 IIRC, Jean Spiteri's repo has some commits on that topic
 https://github.com/Liongold/www-bugassistant/commit/f6a9f7e5184137aacfe51bd710e3f99e8d60e2d2

Well, I have seen, that the bug is assigned to Jean, but did not 
know, that there is already a commit for it. Hopefully it will be 
integrated in the future ... ;) Thank you for the link :)

snip
 ... :( And more modules to report bugs to would be really nice
 ... ;)
 
 I'm not sure what you mean -- do you mean more additions to the
 BSA, or to the Feedback page, or?

As I was talking about BSA, I meant the possibility to choose 
between more modules than UI and All other bugs (or something 
like that) ... ;) Sorry for not being more clear with my sentence 
above ... :(

Have a nice afternoon
Thomas.

-- 
Make it idiot-proof, and someone will breed a better idiot.
-- Oliver Elphick

___
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] Feedback page up

2013-12-24 Thread Robinson Tryon
On Mon, Dec 23, 2013 at 3:52 PM, Robinson Tryon
bishop.robin...@gmail.com wrote:

 Please play around with the page and give us some feedback, folks!


If there aren't any glaring problems with the Feedback page, I'd like
to consider adding it to the 4.2 rc 2. People are noticing that we
need a more general Feedback page instead of just a link to the BSA:
https://bugs.freedesktop.org/show_bug.cgi?id=54538

Cheers,
--R
___
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 72993] Switching from Impress to Writer resets slide sorter settings

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72993

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||t...@libreoffice.org
   Keywords||regression

--- Comment #1 from tommy27 ba...@quipo.it ---
confirmed under Win7x64 the bug does not affect LibO 4.0.6 and is introduced in
4.1.0 and following releases till 4.2.0 RC1 -- regression

I add Impress expert to CC list.

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


[Libreoffice-bugs] [Bug 72993] Switching from Impress to Writer resets slide sorter settings

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72993

tommy27 ba...@quipo.it changed:

   What|Removed |Added

Version|4.1.4.2 release |4.1.0.4 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 70564] Other: Hovering over Organize macros opens the Macro selector window

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=70564

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #3 from tommy27 ba...@quipo.it ---
are you still reproducing it constantly even with 4.1.4.2?
do you think it's the same bug as before?

-- 
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 70564] Hovering over Organize macros opens the Macro selector window

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=70564

tommy27 ba...@quipo.it changed:

   What|Removed |Added

Summary|Other: Hovering over|Hovering over Organize
   |Organize macros opens the |macros opens the Macro
   |Macro selector window |selector window

-- 
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 73011] New: Other: Swiss german: CAPS LOCK does not leads to uppercase umlauts

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73011

  Priority: medium
Bug ID: 73011
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Other: Swiss german: CAPS LOCK does not leads to
uppercase umlauts
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: lo_bugs.5.bigi_g...@spamgourmet.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.1.3.2 release
 Component: UI
   Product: LibreOffice

Problem description: 

On swiss keyboards, there are no capital german umlauts (ÄÖÜ), because
SHIFT-umlaut generates french accents. Capital umlauts are reached by
CAPSLOCK umlaut. This does work in all programs but not in LO (Win7). 

Steps to reproduce:
1. select swiss german keyboard layout (Deutsch (Schweiz))
2. in LO, type key right to l (small L): produces ö
3. same key with CAPS LOCK: produces é
4. sames as 3. but in any other program: produces Ö

Current behavior:
CAPS LOCK does not switch umlauts to uppercase

Expected behavior:
Switch to uppercase as expected
Operating System: Windows 7
Version: 4.1.3.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 73005] VIEWING: artifacts in all releases

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73005

WarlordXXX unexce...@rambler.ru changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 73004] VIEWING: artifacts in all releases

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73004

WarlordXXX unexce...@rambler.ru changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 72632] FORMATTING: Formula sinks in a line

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72632

pierre-yves samyn pierre-yves.sa...@laposte.net changed:

   What|Removed |Added

 CC||pierre-yves.samyn@laposte.n
   ||et

--- Comment #24 from pierre-yves samyn pierre-yves.sa...@laposte.net ---
Hello

(In reply to comment #23)
 Simpler procedure:
 1. New Text document
 2. View  Nonprinting Characters (easier to see the bug)
 3. Insert  Object  Formula
 = The nonprinting character indicating the end of the paragraph appears
 over the top limit of the page area.

I reproduce on windows 7/64  Version: 4.2.0.1
Build ID: 7bf567613a536ded11709b952950c9e8f7181a4a

But *only* if Tools Options Writer Formatting Aids Layout assistance Math
baseline alignement is checked.

I do not reproduce if unchecked.

Same on windows 7/64  Version: 4.3.0.0.alpha0+
Build ID: f279acd3678d014d9d5dafe41971e0da4dec7b6c
TinderBox: Win-x86@47-TDF, Branch:master, Time: 2013-12-13_23:25:16

Regards
Pierre-Yves

-- 
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 72999] EDITING: COUNT function ignores second and next arguments if 1st is a range

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72999

--- Comment #4 from Laurent BP jumbo4...@yahoo.fr ---
May be linked to bug 73001
UI: Statusbar quick functions broken if several ranges selected
but different

-- 
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 72038] LOCALHELP: Unclear Help Text of Options “Number recognition” and “Number format recognition”

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72038

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

   What|Removed |Added

 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl
Version|4.1.3.2 release |Inherited From OOo
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
thanks Harald  new

-- 
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 71810] UI: BITAND function arguments have same name.

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71810

--- Comment #6 from Winfried Donkers winfrieddonk...@libreoffice.org ---
(In reply to comment #4)

Your arguments are clear and quite convincing to me.
But since I'm a much more a developer than a ux-expert, I will await some more
ux arguments/preferences before patching this.
The patch is very simple ( using number_1, number_2 is consistent with other
calc functions) and there is ample time before version 4.3.
(I don't think this is a bug of the kind that needs to be fixed in current
versions 4.1, 4.2)

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


[Libreoffice-bugs] [Bug 59177] undefined: calc hangup after 'store at'

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=59177

--- Comment #8 from arndtele sa...@arndt-electronic.de ---
i am now using 3.5.0-17-generic on mint14 distro.

i am also using more computers with oringinal 
ubuntu 12.04 and mint13 distros.

for my oppinion the tools are using different
sublibraries for access the file systems. some
tools make an error on storing a not existant
file, some make no error.

regards
klaus arndt




Am Sonntag, den 22.12.2013, 21:59 + schrieb
bugzilla-dae...@freedesktop.org:
 Comment # 7 on bug 59177 from QA Administrators 
 Dear Bug Submitter,
 
 This bug has been in NEEDINFO status with no change for at least 6 months.
 Please provide the requested information as soon as possible and mark the bug
 as UNCONFIRMED. Due to regular bug tracker maintenance, if the bug is still in
 NEEDINFO status with no change in 30 days the QA team will close the bug as
 INVALID due to lack of needed information.
 
 For more information about our NEEDINFO policy please read the wiki located
 here: 
 https://wiki.documentfoundation.org/QA/FDO/NEEDINFO
 
 If you have already provided the requested information, please mark the bug as
 UNCONFIRMED so that the QA team knows that the bug is ready to be confirmed.
 
 
 Thank you for helping us make LibreOffice even better for everyone!
 
 
 Warm Regards,
 QA Team
 
 __
 You are receiving this mail because: 
   * You reported the 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 73008] Other: Math: Untranslated Quickhelp in left pane

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73008

--- Comment #1 from Markus Mohrhard markus.mohrh...@googlemail.com ---
This feature has been added in the 4.2 release cycle and is therefore not yet
translated.

-- 
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 72988] Impress template not rendered correctly (vintage, metropolis, sunset)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72988

--- Comment #3 from Ysabeau i...@dutailly.net ---
The problem works for all the backgrounds, my square logo has been stretched as
a rectangle. It works because we can't choose the first choice (Original in
French).
Also, in 4.2.0.1, the colour of Metropolis changes: when you work, the
background is blue, when you show, the background is white. That is strange
because the background is a picture.

-- 
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 72731] VIEWING: Different display of formulas in libreoffice and exported pdf (win only)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72731

o-w...@gmx.de 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 72731] VIEWING: Different display of formulas in libreoffice and exported pdf (win only)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72731

--- Comment #5 from o-w...@gmx.de ---
(In reply to comment #4)
 NoRepro:4.2.0.1:OSX
 
 Assuming this is windows only, since not reproducible on Linux nor OSX.
 
 Is this bug still valid / reproducible with the latest pre-release 4.2.0.1:
 http://www.libreoffice.org/download/pre-releases/
 
 Should this be still reproducible for you with the latest LO release please
 set this bug back to UNCONFIRMED. Should this issue be solved set it to
 WORKSFORME.
 
 Setting to NEEDINFO until more detail is provided.

Still doesn't work. Behaviour stays exactly the same.

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


[Libreoffice-bugs] [Bug 49946] landscape PRINTING result on portrait paper sheet for 2 pages per sheet

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49946

--- Comment #16 from Rolf Gloor rgl...@glr.ch ---
Fixed ?

I don't know where the problem was.
(Running LibreOffice under Linux / openSUSE 12.3)

But it looks as it has recently been fixed (somehow), either through Linux /
CUPS or through LibreOffice.
I have installed all available patches to my Linux System (including apps).

The (latest) LibreOffice from the openSUSE repository is:

Version: 4.1.1.2
Build ID: 410m0(Build:2)

(Repository Version 4.1.1.2 - 1.4)

It now works with writer, calc, draw and presentation.

For me: The problem is fixed!

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


[Libreoffice-bugs] [Bug 68094] Time (HH:MM) displayed as (00:00) in Form

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68094

--- Comment #11 from Vince vincesmith...@gmail.com ---
ok - this is where the problems began - it's an application written in base
and it is at the bottom of the download lists.  This is the basic one - I
am working on a more complex dbase.


On 20 December 2013 16:09, bugzilla-dae...@freedesktop.org wrote:

 rob...@familiegrosskopf.de changed bug 
 68094https://bugs.freedesktop.org/show_bug.cgi?id=68094
  What Removed Added  See Also
 https://bugs.freedesktop.org/show_bug.cgi?id=72916

  --
 You are receiving this mail because:

- You reported the 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 49946] landscape PRINTING result on portrait paper sheet for 2 pages per sheet

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49946

--- Comment #17 from Rolf Gloor rgl...@glr.ch ---
BTW:
It works with both of my printers:

- Brother MFC-8460N
- Samsung CLP-365

No need of PDF-work-around anymore!  :-)

-- 
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 68094] Time (HH:MM) displayed as (00:00) in Form

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68094

--- Comment #12 from Vince vincesmith...@gmail.com ---
Guys,



On 24 December 2013 11:12, Vince Smith vincesmith...@gmail.com wrote:

 ok - this is where the problems began - it's an application written in
 base and it is at the bottom of the download lists.  This is the basic one
 - I am working on a more complex dbase.


 On 20 December 2013 16:09, bugzilla-dae...@freedesktop.org wrote:

 rob...@familiegrosskopf.de changed bug 
 68094https://bugs.freedesktop.org/show_bug.cgi?id=68094
  What Removed Added  See Also
 https://bugs.freedesktop.org/show_bug.cgi?id=72916

  --
 You are receiving this mail because:

- You reported the 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 68094] Time (HH:MM) displayed as (00:00) in Form

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68094

--- Comment #13 from Vince vincesmith...@gmail.com ---
Guys,

sorry about that.  Here is the ap-plicaiton I was working with when the
 error happened.  I am working on a better website honest!


https://sites.google.com/site/trinitylbs/applications/business-services-applications/schedule




On 20 December 2013 16:09, bugzilla-dae...@freedesktop.org wrote:

 rob...@familiegrosskopf.de changed bug 
 68094https://bugs.freedesktop.org/show_bug.cgi?id=68094
  What Removed Added  See Also
 https://bugs.freedesktop.org/show_bug.cgi?id=72916

  --
 You are receiving this mail because:

- You reported the 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 73013] New: libreoffice writer crashes on opening microsoft docx file

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73013

  Priority: medium
Bug ID: 73013
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: libreoffice writer crashes on opening microsoft docx
file
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: gchass...@zonnet.nl
  Hardware: All
Status: UNCONFIRMED
   Version: 4.1.3.2 release
 Component: Writer
   Product: LibreOffice

libreoffice writer crashes on opening microsoft docx file

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


[Libreoffice-bugs] [Bug 62455] Underbrace and overbrace positions and sizes broken

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62455

o-w...@gmx.de changed:

   What|Removed |Added

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

-- 
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 72731] VIEWING: Different display of formulas in libreoffice and exported pdf (win only)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72731

o-w...@gmx.de changed:

   What|Removed |Added

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

-- 
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 72731] VIEWING: Different display of formulas in libreoffice and exported pdf (win only)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72731

o-w...@gmx.de changed:

   What|Removed |Added

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

-- 
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 60268] FORMATTING: Square root and cdot are not correct displayed under Windows 8

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60268

o-w...@gmx.de changed:

   What|Removed |Added

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

-- 
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 72593] BUGZILLAASSISTANT: Remove 4.0.x EOL versions from BSA

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72593

--- Comment #2 from Qubit qu...@runcibility.com ---
S we've removed the 4.0.x EOL builds from the BSA, but we haven't yet come
up with an automated mechanism for removing old versions.

Foss - Perhaps tweak the summary of this bug report to target the automation?

-- 
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 68094] Time (HH:MM) displayed as (00:00) in Form

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68094

--- Comment #14 from Qubit qu...@runcibility.com ---
(In reply to comment #13)
 Guys,
 
 sorry about that.  Here is the ap-plicaiton I was working with when the
  error happened.  I am working on a better website honest!
 
 
 [..url...]

Hi Vince,
A couple of notes:

1) I visited your website, but I'm not sure where I can go to download or see
your LibreOffice-based database application. Could you please provide
step-by-step instructions?

2) Thanks for the shout-out to LibreOffice on your website. If you get a
chance, could you please update the spelling of the project's name to
LibreOffice?  (Capital L and O, with no space inbetween the words)

Consistent spelling of the LibreOffice name makes it easier for people to find
both your pages and our pages in search engines.

Thanks!

-- 
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 72991] Font, highlight and background color in toolbar buttons is not remember

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72991

Stanislav Horacek stanislav.hora...@gmail.com changed:

   What|Removed |Added

 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
 CC||stanislav.hora...@gmail.com
Summary|Don't keep selected buttons |Font, highlight and
   |colors  |background color in toolbar
   ||buttons is not remember
Version|4.2.0.1 rc  |3.5 all versions
 Ever confirmed|0   |1

--- Comment #1 from Stanislav Horacek stanislav.hora...@gmail.com ---
I can confirm this for 4.2.0.1, Ubuntu 13.10.

Steps to reproduce:
1. Open Writer.
2. In Formatting toolbar, click on the dropdown for Font color icon and select
an arbitrary color.
3. Close Writer and open it again.
4. Font icon color is reset to the default one, it is not the color you
selected.

Expected: Font icon color should be the selected one.

The same applies to highlighting and background icons. This probably never
worked, reproducible also in 3.5.

-- 
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 60924] move libraries to autoinstallation in scp2

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60924

--- Comment #62 from Marcos Souza marcos.souza@gmail.com ---
How we can do now?

Looking at scp2/source/ooo/file_library_ooo.scp we have some third party libs
like rasqal, raptor, lcms, opensll and others...

How we can handle these?

We need to change somethings in gbuild to handle all things that currently
exists in scp2?

Thanks since now!

-- 
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 73015] New: LibreOffice becomes non-responsive with new unsaved files

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73015

  Priority: medium
Bug ID: 73015
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: LibreOffice becomes non-responsive with new unsaved
files
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: byrn...@harte-lyne.ca
  Hardware: x86-64 (AMD64)
Status: NEW
   Version: 4.1.4.2 release
 Component: Libreoffice
   Product: LibreOffice

When editing a new unsaved document LO will become unresponsive after several
minutes.  This can only be cure by spam clicking on the file menu and then spam
clicking on the save_as sub-item  and saving the file.  After the file is saved
then the program returns to normal responsiveness.

The auto-save setting for this installation is every 15 minutes and the save
document as well option is selected.  The delay in the onset of the symptom
appears related to the auto-save interval and the problem may be that
LibreOffice is attempting to save the document with a valid file name.

-- 
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 73015] LibreOffice becomes non-responsive with new unsaved files

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73015

--- Comment #1 from James B. Byrne byrn...@harte-lyne.ca ---
the problem may be that LibreOffice is attempting to save the document with a
valid file name.

should read:

the problem may be that LibreOffice is attempting to save the document withOUT
a valid file name.

-- 
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 72593] BUGZILLAASSISTANT: enable automated mechanism (to have versions always matching what's offered on the homepage)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72593

Foss f...@openmailbox.org changed:

   What|Removed |Added

Summary|BUGZILLAASSISTANT: Remove   |BUGZILLAASSISTANT: enable
   |4.0.x EOL versions from BSA |automated mechanism (to
   ||have versions always
   ||matching what's offered on
   ||the homepage)

-- 
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 69938] Incorrect displaying doc document

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69938

mikhail.v.gavri...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #10 from mikhail.v.gavri...@gmail.com ---
Can't run 4.2.0.1

1. installer libreOffice not replaced my distributive version LO

2. when I run LO 4.2.0.1 from console I see error message:
Missing vcl resource. This indicates that files vital to localization are
missing. You might have a corrupt installation.
Please see details on my video:
https://drive.google.com/file/d/0B0nwzlfiB4aQVDU0TEcxX08zUlU/edit?usp=sharing

-- 
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 50421] UI: Check for Updates menu leads to an unusable dialog (shows %PERCENT%)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50421

--- Comment #17 from KinG-InFeT king.in...@gmail.com ---
Created attachment 91177
  -- https://bugs.freedesktop.org/attachment.cgi?id=91177action=edit
Screenshot

-- 
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 50421] UI: Check for Updates menu leads to an unusable dialog (shows %PERCENT%)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50421

--- Comment #18 from KinG-InFeT king.in...@gmail.com ---
Other tests on Windows 7 Professional 32-bit

Libreoffice: Version: 4.1.4.2
Build ID: 0a0440ccc0227ad9829de5f46be37cfb6edcf72

-- 
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 50421] UI: Check for Updates menu leads to an unusable dialog (shows %PERCENT%)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50421

KinG-InFeT king.in...@gmail.com changed:

   What|Removed |Added

Version|3.5.3 release   |4.1.4.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 72259] %PERCENT% in Check for Updates dialog

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72259

KinG-InFeT king.in...@gmail.com changed:

   What|Removed |Added

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

-- 
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 50421] UI: Check for Updates menu leads to an unusable dialog (shows %PERCENT%)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50421

KinG-InFeT king.in...@gmail.com changed:

   What|Removed |Added

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

-- 
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 50421] UI: Check for Updates menu leads to an unusable dialog (shows %PERCENT%)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50421

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 CC||qu...@runcibility.com

--- Comment #19 from Qubit qu...@runcibility.com ---
(In reply to comment #17)
 Created attachment 91177 [details]
 Screenshot

KinG - Any special repro steps?

Could you please try to repro on 4.2.0.1?
https://www.libreoffice.org/download/pre-releases/

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


[Libreoffice-bugs] [Bug 68148] single line cell borders turn dashed when opened with different LibO release

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68148

Timur gti...@gmail.com changed:

   What|Removed |Added

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

-- 
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 46393] [Task] PRINTING result for cell borders of particular documents unsatisfying

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46393

Timur gti...@gmail.com changed:

   What|Removed |Added

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

-- 
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 50421] UI: Check for Updates menu leads to an unusable dialog (shows %PERCENT%)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50421

--- Comment #20 from KinG-InFeT king.in...@gmail.com ---
(In reply to comment #19)
 (In reply to comment #17)
  Created attachment 91177 [details]
  Screenshot
 
 KinG - Any special repro steps?
 
 Could you please try to repro on 4.2.0.1?
 https://www.libreoffice.org/download/pre-releases/

i try 
Versione: 4.2.0.1
Build ID: 7bf567613a536ded11709b952950c9e8f7181a4a

and not show this bug... fixed in 4.2.0.1 ?

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


[Libreoffice-bugs] [Bug 50421] UI: Check for Updates menu leads to an unusable dialog (shows %PERCENT%)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50421

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #21 from Qubit qu...@runcibility.com ---
(In reply to comment #20)
 i try 
 Versione: 4.2.0.1
 Build ID: 7bf567613a536ded11709b952950c9e8f7181a4a
 
 and not show this bug... fixed in 4.2.0.1 ?

Sounds promising! It's possible that there's slightly different behavior for
release builds vs. RC's, but we can re-test when 4.2 is released at the end of
January:
https://wiki.documentfoundation.org/ReleasePlan#4.2_release

KinG - I'll mark this as 'RESOLVED WORKSFORME' for the time being; if the 4.2
release does *not* fix the problem, please change the status back to 'NEW' and
we'll investigate further.

-- 
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 45892] Concurrent use of MathType and LibreOffice Math in LibreOffice Writer can cause a MathType error

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45892

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Whiteboard||NeedsMathType
 CC||qu...@runcibility.com

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


[Libreoffice-bugs] [Bug 53964] If saved document is left open when computer is shut down correctly saved copy is lost.

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53964

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #3 from Qubit qu...@runcibility.com ---
(In reply to comment #2)
 I have never ever lost data, when I rebooted or shut down with LO Version:
 4.1.1.2 Build ID: 7e4286b58adc75a14f6d83f53a03b6c11fa2903 and installed
 Germanophone lang- as well as helppack under Debian Testing AMD64 and open
 document(s) ... ;) I would assume that either the partition is full

Ah -- interesting guess!

 or there
 is a HD defect ... :(

Yep, that would be unfortunate.

 @Hal: Do you have this problem with other programs as
 well? And have you tried a newer version of LO than 3.5.4? And are you using
 Ubuntu's LO version or the one from LO's homepage?

Status - NEEDINFO

Hal - Please change status back to UNCONFIRMED after you answer these q's.

Thanks!

-- 
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 73017] New: 3D object rotation regression in LO4 compared to LO3

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73017

  Priority: medium
Bug ID: 73017
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: 3D object rotation regression in LO4 compared to LO3
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: lewyssm...@onetel.com
  Hardware: All
Status: UNCONFIRMED
   Version: 4.0.0.3 release
 Component: Drawing
   Product: LibreOffice

DRAW: Up to v3 there were two 3D rotation possibilities:

1] menu Object-Convert-To_3D_rotation, which without any further ado rotated
the object about its LH edge. *This is the only option I can find in v4*, and
creates closed 3D objects - you cannot see through them.

2] there was an Effects toolbar group whose 3D_Rotation icon was more
sophisticated/powerful: it showed a *movable* vertical rotation axis which
could be positioned as required before the actual rotation. This was the only
way to create 'open' 3D objects, and seems to have *disappeared from v4*.
The Effects toolbar group seems to have vanished - I cannot find it. At the
same time, this more powerful 3D rotation possibility has vanished. If this is
true, it is a horrid regression in Draw's impressive 3D capabilities.

It *may* be that I have simply failed to find the old 2nd method, in which case
this bug is false and I apologise for it. But since playing with LO4 under
several Linux's, and always searching for it immediately, I do not complain
lightly.

-- 
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 54538] Incorrect translation of menu item LibO 3.6.1.2 (Russian language)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54538

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX
 CC||qu...@runcibility.com

--- Comment #2 from Qubit qu...@runcibility.com ---
(In reply to comment #1)
 I'm not sure, if it is a translation bug. English menu is Send Feedback
 and a general web page for feedback was planned, not only for reporting
 bugs. I CC website mailing list, too.

The BSA is our default feedback page for now. We're working on an actual
Feedback page, but haven't deployed it yet -- we're hoping to do so very soon!
Here's the page:
http://qa.libreoffice.org/feedback/

For now I'll mark this RESOLVED WONTFIX, and I'll try to get the feedback page
url updated for 4.2 rc2.

Timon - If you think that the existing translation won't be appropriate for the
*new* feedback page, please feel free to update the summary/leave a comment
here and change the bug status back to UNCONFIRMED.

Thanks.

-- 
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 73007] Calc: Value in the last cell repeats when scrolling with scroll bar

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73007

mariosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 OS|Linux (All) |All
 CC||mari...@miguelangel.mobi

--- Comment #2 from mariosv mari...@miguelangel.mobi ---
Confirmed.
Win7x64Ultimate
Version: 4.2.0.1 Build ID: 7bf567613a536ded11709b952950c9e8f7181a4a

-- 
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 54581] Open XML 2007/2010 filter breaks when compiled with graphite.

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54581

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #1 from Qubit qu...@runcibility.com ---
Hi dE,

The corresponding Gentoo bug is now marked RESOLVED INVALID. If you're still
interested in an answer here, please test against current LibreOffice master
and change the status from NEEDINFO back to UNCONFIRMED.

Thanks!

-- 
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 54895] Hang/freeze when repeatedly opening presentation and hiding slidepane via API (GTK vclplugin)

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54895

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #2 from Qubit qu...@runcibility.com ---
(In reply to comment #1)
 Is this still an issue in the latest stable 4.0.x release and up-to-date
 Gnome3 environment?

Status - NEEDINFO

-- 
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 73017] 3D object rotation regression in LO4 compared to LO3

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73017

Lewis Smith lewyssm...@onetel.com changed:

   What|Removed |Added

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

--- Comment #1 from Lewis Smith lewyssm...@onetel.com ---
After raising this bug I did a bit of RTFM (not knowing previously that it was
available) on Draw, found therein what was 'missing' pp132-3, and had some
trouble finding the Effects collection referred to. It has changed place from
the bottom Draw toolbar to the top Line/Filling one...

And once found, it works as it did. Phew,  thanks to the LO team.

So SORRY for this false 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 73017] [CLOSED INVALID] 3D object rotation [no] regression in LO4 compared to LO3

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73017

Lewis Smith lewyssm...@onetel.com changed:

   What|Removed |Added

Summary|3D object rotation  |[CLOSED INVALID] 3D object
   |regression in LO4 compared  |rotation [no] regression in
   |to LO3  |LO4 compared to LO3

-- 
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 55023] : Network problem deleting Writer files made with version 3.6.0 and 3.6.1.2

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55023

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #3 from Qubit qu...@runcibility.com ---
Hi David,

3.5 and 3.6 have both been EOL for quite some time. Can you still reproduce the
problem with modern builds?
https://www.libreoffice.org/download/

If you can, please leave a comment and change the bug status from NEEDINFO back
to UNCONFIRMED.

Thanks!

-- 
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 55087] [Usability] Module specific UI preferences

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55087

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #2 from Qubit qu...@runcibility.com ---
(In reply to comment #0)
 With wide screen monitor one can use some nice features of Writer. I have
 the navigator attached to the left side for easy access to chapters and
 styles window to the right to format text properly.

Hi Heiko,
Could you please provide repro steps for docking the Navigator and the Styles
window to the left- and right-hand sides of the main window?

When you do, please change the status from NEEDINFO back to UNCONFIRMED.

Thanks,
--R

-- 
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 55169] Name definitions

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55169

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 CC||qu...@runcibility.com

--- Comment #12 from Qubit qu...@runcibility.com ---
(In reply to comment #7)
 @Markus Mohrhard:
 Did you get all needed informations from the reporter?

Moggi - Status?

Ken - Can you still repro this problem against recent builds of LibreOffice?
https://www.libreoffice.org/download/pre-releases/

Thanks!

-- 
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 55169] Name definitions

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55169

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #13 from Qubit qu...@runcibility.com ---
Status - NEEDINFO

-- 
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 56307] Grammar checker insists on em dash, inconsistent with autocorrect

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56307

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||qu...@runcibility.com

--- Comment #5 from Qubit qu...@runcibility.com ---
TESTING on Ubuntu 12.04.3 with
LibreOffice Version: 4.2.0.1

(In reply to comment #0)
 LibreOffice Writer Auto-correct replaces [space][-][-][space] with
 [space][en-dash][space].
 

Yes

 However, the Grammar Checker underlines this in blue and offers replacement
 with [em-dash] (no spaces).

NOREPRO when testing with 4.2.0.1. Resolving as WORKSFORME.

Matt - Can you still reproduce this problem with a modern build of LibreOffice?
If so, please change the bug status from RESOLVED WORKSFORME back to
UNCONFIRMED.

Thanks!

-- 
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 56391] Using old .sxw documents as templates causes segmentation fault

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56391

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #11 from Qubit qu...@runcibility.com ---
(In reply to comment #9)
 Joel: I gave a new try with master sources, in fact
 ~/.config/libreoffice/4/user/template appears only if I create a template
 manually.
 Then I copied some sxw files but they don't appear when using
 File/New/templates:-(

Can anyone reproduce this problem with non-EOL releases and/or builds off of
master? If not, let's resolve this thing as WONTFIX.

Status - NEEDINFO

-- 
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 72941] FILESAVE: Conditional formatting will not save

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72941

--- Comment #7 from Mike Finch mikfi...@bigpond.net.au ---
Basically, copy the rectangle of cells from C4 : L8. This will/should include
the conditional 
formatting formulae etc.

Special Paste over the identical cells in 'Division 2' using only 'Formats'.
The winning scores turn 
to red! This is correct.

Save the spreadsheet and then exit it.

Reload the spreadsheet and the red formatting has returned to black.

THE LATTER IS THE PROBLEM!!


 Original Message 
 Foss mailto:f...@openmailbox.org changed bug 72941 
 https://bugs.freedesktop.org/show_bug.cgi?id=72941
 What  Removed Added
 StatusUNCONFIRMED NEEDINFO
 Ever confirmed1

 *Comment # 6 https://bugs.freedesktop.org/show_bug.cgi?id=72941#c6 on bug 
 72941 
 https://bugs.freedesktop.org/show_bug.cgi?id=72941 from Foss 
 mailto:f...@openmailbox.org *
 Not sure what to make of this. I just notice that in Joel's test document I
 find conditional formatting with Apply Style and a red box and that works,
 while in Mike's test document I do not see such conditional formatting.

 Testing further repro steps fromcomment4  show_bug.cgi?id=72941#c4:

 * open clubchamp test doc
 * go to 5 x 5tp sheet
 * then what? highlight the same cells? Unclear.


 Please be as specific as possible. Just write down exact cells and re-rpo 
 steps
 and we'll be happy to help testing.

 Please provide exact repro steps, after that set the bug to UNCONFIRMED.
 
 You are receiving this mail because:

   * You reported the 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 55169] Name definitions

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55169

--- Comment #14 from Ken ken17...@gmail.com ---
Yes, defined Names and Ranges now seem to retain their values and work 
properly as intra document links.

On 12/24/2013 3:54 PM, bugzilla-dae...@freedesktop.org wrote:
 Qubit mailto:qu...@runcibility.com changed bug 55169 
 https://bugs.freedesktop.org/show_bug.cgi?id=55169
 What  Removed Added
 CCqu...@runcibility.com

 *Comment # 12 https://bugs.freedesktop.org/show_bug.cgi?id=55169#c12 
 on bug 55169 https://bugs.freedesktop.org/show_bug.cgi?id=55169 from 
 Qubit mailto:qu...@runcibility.com *
 (In reply tocomment #7  show_bug.cgi?id=55169#c7)
  @Markus Mohrhard:
  Did you get all needed informations from the reporter?

 Moggi - Status?

 Ken - Can you still repro this problem against recent builds of LibreOffice?
 https://www.libreoffice.org/download/pre-releases/

 Thanks!
 
 You are receiving this mail because:

   * You reported the 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 73002] FILEOPEN writer loose many page of text in the attached docx file

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73002

--- Comment #2 from David Delma dde...@gmail.com ---
Created attachment 91178
  -- https://bugs.freedesktop.org/attachment.cgi?id=91178action=edit
content lost in writer file =REPRISE=

-- 
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 73002] FILEOPEN writer loose many page of text in the attached docx file

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73002

David Delma dde...@gmail.com changed:

   What|Removed |Added

 CC||tim.ll...@gmx.com

--- Comment #3 from David Delma dde...@gmail.com ---
I uploaded the file a second time.

-- 
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 72999] EDITING: COUNT function ignores second and next arguments if 1st is a range

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72999

--- Comment #5 from Laurent BP jumbo4...@yahoo.fr ---
Confirmed with Version: 4.2.0.0.alpha1+
Build ID: d366c9b20ec86f3fe521812a0c22def3bfd1f05e
TinderBox: Win-x86@47-TDF, Branch:master, Time: 2013-11-14_07:51:04

-- 
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 73001] UI: Statusbar quick functions broken if several ranges selected

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73001

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

   What|Removed |Added

   Severity|minor   |normal
   Priority|high|medium

--- Comment #4 from Laurent BP jumbo4...@yahoo.fr ---
Confirmed with Version: 4.2.0.0.alpha1+
Build ID: d366c9b20ec86f3fe521812a0c22def3bfd1f05e
TinderBox: Win-x86@47-TDF, Branch:master, Time: 2013-11-14_07:51:04

-- 
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 72632] FORMATTING: Formula sinks in a line

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72632

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

   What|Removed |Added

Version|4.2.0.0.beta1   |4.2.0.0.beta2

--- Comment #25 from Laurent BP jumbo4...@yahoo.fr ---
Confirmed with Version: 4.2.0.0.alpha1+
Build ID: d366c9b20ec86f3fe521812a0c22def3bfd1f05e
TinderBox: Win-x86@47-TDF, Branch:master, Time: 2013-11-14_07:51:04

-- 
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 35105] A heading in writer document doesn't expose ROLE_HEADING to AT-SPI.

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35105

--- Comment #10 from James Michael DuPont jamesmikedup...@googlemail.com ---
I am still researching into this, found some spot in the code that looks
suspicious. If we are going to add this, we should consider adding in all the
fixmes.

I suspect it has to this with this line here:
vcl/osx/a11yrolehelper.mm:MAP( AccessibleRole::HEADING,
NSAccessibilityUnknownRole ); // FIXME

See :
https://github.com/LibreOffice/core/blob/c49721950cb3d897b35f08bf871239308680b18e/vcl/osx/a11yrolehelper.mm#L69

here are other occurrences of AccessibleRole::HEADING

offapi/com/sun/star/text/AccessibleParagraphView.idl:   
::com::sun::star::accessibility::AccessibleRole::HEADING.
sw/source/core/access/accpara.cxx:return AccessibleRole::HEADING;
vcl/unx/gtk/a11y/atkwrapper.cxx:   
roleMap[accessibility::AccessibleRole::HEADING] = registerRole(heading);


vcl/osx/a11yrolehelper.mm:MAP( AccessibleRole::HEADING, @ );



mike

-- 
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 55169] Name definitions

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55169

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #15 from Qubit qu...@runcibility.com ---
(In reply to comment #14)
 Yes, defined Names and Ranges now seem to retain their values and work 
 properly as intra document links.

Excellent! Resolving as WORKSFORME.
:-)

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


[Libreoffice-bugs] [Bug 58001] Not full words and wrong link in the tool spell checking

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58001

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #2 from Qubit qu...@runcibility.com ---
TESTING on Ubuntu 12.04.3 with
LibreOffice Version: 4.2.0.1

(In reply to comment #0)
 I wanted to make a manual spell checking. In the window of the spell
 checking there was a link More..., with the first letters of More missing
 (rectangular on the screenshot).

That text/label does not appear to be present in the en_US version of 4.2.0.1

 I clicked the link and nothing happened. In
 the same window, there are also buttons on which the words are not full and
 the first or last letters are missing (circles on the screenshot).
 This bug exists in the greek version and maybe in other versions, too.

NOREPRO on this version.

Antonis - Could you please test again on a modern build of LibreOffice and see
if the problem persists?
https://www.libreoffice.org/download/

If the problem is still present, please change the bug status from NEEDINFO
back to UNCONFIRMED, and I'll ping the i10n people...

Thanks!

-- 
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 73021] New: Calc crashes on spell check

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73021

  Priority: medium
Bug ID: 73021
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Calc crashes on spell check
  Severity: major
Classification: Unclassified
OS: Windows (All)
  Reporter: gitsytho...@gmail.com
  Hardware: Other
Status: NEW
   Version: 4.2.0.1 rc
 Component: Spreadsheet
   Product: LibreOffice

Problem description: Calc crashes on spell check

Steps to reproduce:

Open a spreadsheet with a misspelled word, when Spell Check is invoked (F7)
and action is selected (Correct, Ignore, etc) by clicking corresponding button,
calc crashes.

-- 
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 73020] New: Viewing (??) LO 4.2.0.1 (RC1) Calc : Fast Scrolling a table with Sliders creates artifacts

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73020

  Priority: medium
Bug ID: 73020
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Viewing (??) LO 4.2.0.1 (RC1) Calc : Fast Scrolling a
table with Sliders creates artifacts
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: jkl...@freenet.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.2.0.1 rc
 Component: Spreadsheet
   Product: LibreOffice

Hi,
scrolling a table with the sliders at right for up/down or bottom for
left/right
creates artifacts, especially on FAST MOVEMENT

which resolves (!)/ disapear, if the mouse button (after slider movements) is
released

I am not sure, if it relates to viewing.

LO 4.2.0.1
Win 7 / x64
Graphics-driver AMD Radeon legacy (HD 2400)


kind regards to all LO developers and all others
juergen

-- 
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 58616] Writer freezes after multiple copy paste to Adobe InDesign CS4

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58616

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #5 from Qubit qu...@runcibility.com ---
(In reply to comment #3)
 Jens, is this behavior still happening when using the latest LO release?
 http://www.libreoffice.org/download/

Foss's question remains unanswered:
Status - NEEDINFO

-- 
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 59758] Text not scaled when scaling a group of object

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=59758

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |enhancement
   Priority|medium  |low
 Ever confirmed|0   |1

--- Comment #4 from Joel Madero jmadero@gmail.com ---
Indeed - I would agree but say that this is a fine enhancement request. Marking
as such

Marking as 
New
Enhancement
Low - while it might be faster, you can change the size of the text normally
still so it's not something preventing solid work - just slowing it down a tiny
bit in specific situations.

-- 
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 73022] FILEOPEN flowcharts of this docx file are corrupt in writer

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73022

--- Comment #1 from David Delma dde...@gmail.com ---
Created attachment 91180
  -- https://bugs.freedesktop.org/attachment.cgi?id=91180action=edit
docx file with flowchart not well rendering in writer

-- 
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 59236] file uri isn't recognized

2013-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=59236

Qubit qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||qu...@runcibility.com
 Ever confirmed|0   |1

--- Comment #1 from Qubit qu...@runcibility.com ---
(In reply to comment #0)
 main problem was, that the images were not embedded correctly because they
 are included with the file:// URI (see screenshot) and saved at
 file:///C:\Users\roczekd\AppData\Local\Temp\msohtmlclip1\01\clip_image002.png

Hi Roczek,
Could you please test to see if you still have the same problem with modern
builds of LibreOffice?
https://www.libreoffice.org/download/
https://www.libreoffice.org/download/pre-releases/

If this problem persists after re-testing, please change bug status from
NEEDINFO back to UNCONFIRMED and we'll try to get someone with a similar
Windows environment to help triage 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


  1   2   >