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

2014-12-28 Thread Yousuf Philips
 sw/source/ui/app/mn.src |   15 ++-
 1 file changed, 14 insertions(+), 1 deletion(-)

New commits:
commit ab0ea507ef1e037fa347a7f2b3d99a1f83ddeba1
Author: Yousuf Philips philip...@hotmail.com
Date:   Sun Dec 28 12:44:52 2014 +0400

fdo#83565 addition of wrap left and wrap right to context menu

Change-Id: I8eb75b736a559c56960864bd0255b96982b9858a
Reviewed-on: https://gerrit.libreoffice.org/13677
Reviewed-by: Yousuf Philips philip...@hotmail.com
Tested-by: Yousuf Philips philip...@hotmail.com

diff --git a/sw/source/ui/app/mn.src b/sw/source/ui/app/mn.src
index 554d88f..ce30b9f 100644
--- a/sw/source/ui/app/mn.src
+++ b/sw/source/ui/app/mn.src
@@ -793,7 +793,7 @@ Menu MN_TAB_POPUPMENU
 {\
 Identifier = FN_FRAME_WRAP_CONTOUR ; \
 HelpId = CMD_FN_FRAME_WRAP_CONTOUR ; \
-Text [ en-US ] = ~Contour ; \
+Text [ en-US ] = Enable ~Contour ; \
 };
 
 #define MN_EDIT_CONTOUR \
@@ -840,6 +840,19 @@ Menu MN_TAB_POPUPMENU
 MenuItem\
 {\
 RadioCheck = TRUE ; \
+Identifier = FN_FRAME_WRAP_LEFT ; \
+Text [ en-US ] = Wrap ~Before ; \
+};\
+MenuItem\
+{\
+RadioCheck = TRUE ; \
+Identifier = FN_FRAME_WRAP_RIGHT ; \
+Text [ en-US ] = Wrap ~After ; \
+};\
+SEPARATOR ; \
+MenuItem\
+{\
+RadioCheck = TRUE ; \
 Identifier = FN_FRAME_WRAPTHRU ; \
 HelpId = CMD_FN_FRAME_WRAPTHRU ; \
 Text [ en-US ] = ~Wrap Through ; \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libvisio.git: 2 commits - src/lib src/test

2014-12-28 Thread Miklos Vajna
 src/lib/VSDMetaData.cpp  |4 
 src/lib/VSDXMetaData.cpp |   22 ++
 src/test/importtest.cpp  |1 +
 3 files changed, 15 insertions(+), 12 deletions(-)

New commits:
commit 443227148dcbf4314369e1941e910f3b64290315
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Dec 28 11:51:43 2014 +0100

VSDXMetaData: check token type at a single place

Change-Id: I0318d619a71b0785e2752a363a68f4db0b3acc0e

diff --git a/src/lib/VSDXMetaData.cpp b/src/lib/VSDXMetaData.cpp
index 72435bb..1ce1dcd 100644
--- a/src/lib/VSDXMetaData.cpp
+++ b/src/lib/VSDXMetaData.cpp
@@ -52,31 +52,29 @@ void 
libvisio::VSDXMetaData::readCoreProperties(xmlTextReaderPtr reader)
   VSD_DEBUG_MSG((VSDXMetaData::readCoreProperties: unknown token %s\n, 
xmlTextReaderConstName(reader)));
 }
 tokenType = xmlTextReaderNodeType(reader);
+
+if (tokenType != XML_READER_TYPE_ELEMENT)
+  continue;
+
 switch (tokenId)
 {
 case XML_DC_TITLE:
-  if (tokenType == XML_READER_TYPE_ELEMENT)
-m_metaData.insert(dc:title, readString(reader, XML_DC_TITLE));
+  m_metaData.insert(dc:title, readString(reader, XML_DC_TITLE));
   break;
 case XML_DC_SUBJECT:
-  if (tokenType == XML_READER_TYPE_ELEMENT)
-m_metaData.insert(dc:subject, readString(reader, XML_DC_SUBJECT));
+  m_metaData.insert(dc:subject, readString(reader, XML_DC_SUBJECT));
   break;
 case XML_DC_CREATOR:
-  if (tokenType == XML_READER_TYPE_ELEMENT)
-m_metaData.insert(meta:initial-creator, readString(reader, 
XML_DC_CREATOR));
+  m_metaData.insert(meta:initial-creator, readString(reader, 
XML_DC_CREATOR));
   break;
 case XML_DCTERMS_CREATED:
-  if (tokenType == XML_READER_TYPE_ELEMENT)
-m_metaData.insert(meta:creation-date, readString(reader, 
XML_DCTERMS_CREATED));
+  m_metaData.insert(meta:creation-date, readString(reader, 
XML_DCTERMS_CREATED));
   break;
 case XML_DCTERMS_MODIFIED:
-  if (tokenType == XML_READER_TYPE_ELEMENT)
-m_metaData.insert(dc:date, readString(reader, XML_DCTERMS_MODIFIED));
+  m_metaData.insert(dc:date, readString(reader, XML_DCTERMS_MODIFIED));
   break;
 case XML_CP_KEYWORDS:
-  if (tokenType == XML_READER_TYPE_ELEMENT)
-m_metaData.insert(meta:keyword, readString(reader, XML_CP_KEYWORDS));
+  m_metaData.insert(meta:keyword, readString(reader, XML_CP_KEYWORDS));
 default:
   break;
 }
commit 70e2cbc27a37d84c10e60438ed143a0cd391c796
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Dec 28 11:51:38 2014 +0100

VSD: import keywords

Change-Id: I1896afdcbec2cb3177f053558b2a6668529bd85e

diff --git a/src/lib/VSDMetaData.cpp b/src/lib/VSDMetaData.cpp
index f1026fc..44e6f62 100644
--- a/src/lib/VSDMetaData.cpp
+++ b/src/lib/VSDMetaData.cpp
@@ -96,6 +96,7 @@ void 
libvisio::VSDMetaData::readPropertyIdentifierAndOffset(librevenge::RVNGInpu
 #define PIDSI_TITLE 0x0002
 #define PIDSI_SUBJECT 0x0003
 #define PIDSI_AUTHOR 0x0004
+#define PIDSI_KEYWORDS 0x0005
 
 void libvisio::VSDMetaData::readTypedPropertyValue(librevenge::RVNGInputStream 
*input, uint32_t index, uint32_t offset)
 {
@@ -128,6 +129,9 @@ void 
libvisio::VSDMetaData::readTypedPropertyValue(librevenge::RVNGInputStream *
   case PIDSI_AUTHOR:
 m_metaData.insert(meta:initial-creator, string);
 break;
+  case PIDSI_KEYWORDS:
+m_metaData.insert(meta:keyword, string);
+break;
   }
 }
   }
diff --git a/src/test/importtest.cpp b/src/test/importtest.cpp
index 274a36f..7aa8336 100644
--- a/src/test/importtest.cpp
+++ b/src/test/importtest.cpp
@@ -156,6 +156,7 @@ void ImportTest::testVsdMetadataTitleMs1252()
 
   assertXPath(m_doc, /document/setDocumentMetaData, subject, mysubject);
   assertXPath(m_doc, /document/setDocumentMetaData, initial-creator, 
vmiklos creator);
+  assertXPath(m_doc, /document/setDocumentMetaData, keyword, mytag);
 }
 
 void ImportTest::testVsdMetadataTitleUtf8()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-28 Thread Miklos Vajna
 sw/qa/extras/odfexport/odfexport.cxx |   17 +
 1 file changed, 17 insertions(+)

New commits:
commit 859df5799b683a1278e4e9fe7790a3f50c304cfa
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Dec 28 12:00:05 2014 +0100

CppunitTest_sw_odfexport: validate export result, except a few

Change-Id: Ie555a72519b251cea3bd98cdfbd6d93295dea079

diff --git a/sw/qa/extras/odfexport/odfexport.cxx 
b/sw/qa/extras/odfexport/odfexport.cxx
index 194fc34..77ae4ec 100644
--- a/sw/qa/extras/odfexport/odfexport.cxx
+++ b/sw/qa/extras/odfexport/odfexport.cxx
@@ -9,6 +9,8 @@
 
 #include swmodeltestbase.hxx
 
+#include initializer_list
+
 #if !defined(MACOSX)
 #include com/sun/star/awt/Gradient.hpp
 #include com/sun/star/container/XIndexReplace.hpp
@@ -33,6 +35,21 @@ public:
 // Only test import of .odt document
 return OString(filename).endsWith(.odt);
 }
+
+bool mustValidate(const char* filename) const SAL_OVERRIDE
+{
+std::vectorconst char* aBlacklist = {
+// These are known problems, they should be fixed one by one.
+fdo86963.odt,
+shape-relsize.odt,
+charborder.odt,
+fdo60769.odt,
+first-header-footer.odt,
+fdo38244.odt
+};
+
+return std::find(aBlacklist.begin(), aBlacklist.end(), filename) == 
aBlacklist.end();
+}
 };
 
 DECLARE_ODFEXPORT_TEST(testFdo38244, fdo38244.odt)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Building LO fails with autogen

2014-12-28 Thread Riccardo Magliocchetti

Il 27/12/2014 20:49, Jens Tröger ha scritto:

It's the exact same document in both cases, and the conversion is
auto-piloted using Python and UNO.  In fact, it's the exact same
scenario on both hosts:

   - run LO headless,
   - open Python interpreter and use UNO to connect to LO,
   - iterate over all paragraphs.

Everything (LO, Python, ...) runs local on the host, yet there are these
huge performance differences: 3 sec on Mac, ~3 min on Linux.


Have you tried profiling? BTW if you use 4.3 or newer you may want to 
give a try to pylokit [1], a python wrapper for LibreOfficeKit.


[1] https://github.com/xrmx/pylokit

thanks,
riccardo

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


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

2014-12-28 Thread Caolán McNamara
 include/tools/rcid.h  |1 -
 include/vcl/split.hxx |1 -
 rsc/inc/rscdb.hxx |1 -
 rsc/source/parser/rscicpx.cxx |   18 --
 rsc/source/parser/rscinit.cxx |4 
 vcl/source/window/split.cxx   |   16 
 6 files changed, 41 deletions(-)

New commits:
commit 5488b315b6914fb085ce2d9a99e4162ff74a8337
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Dec 28 09:55:54 2014 +

splitters no longer loaded from resource files

Change-Id: I84ee0c754118882734301bf1d34c15ba640a3889

diff --git a/include/tools/rcid.h b/include/tools/rcid.h
index eb54647..260626e 100644
--- a/include/tools/rcid.h
+++ b/include/tools/rcid.h
@@ -72,7 +72,6 @@
 
 #define RSC_FIXEDIMAGE  (RSC_NOTYPE + 0x5a)
 
-#define RSC_SPLITTER(RSC_NOTYPE + 0x5f)
 #define RSC_SPLITWINDOW (RSC_NOTYPE + 0x60)
 #define RSC_SPINFIELD   (RSC_NOTYPE + 0x61)
 
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx
index d2b8f4f..b490566 100644
--- a/rsc/inc/rscdb.hxx
+++ b/rsc/inc/rscdb.hxx
@@ -204,7 +204,6 @@ class RscTypCont
 RscTop *InitClassMenuItem( RscTop * pSuper, RscTop * pClassBitmap,
RscTop * pClassKeyCode );
 RscTop *InitClassMenu( RscTop * pSuper, RscTop * pMenuItem );
-RscTop *InitClassSplitter( RscTop * pSuper );
 RscTop *InitClassSplitWindow( RscTop * pSuper );
 RscTop *InitClassTime( RscTop * pSuper );
 RscTop *InitClassDate( RscTop * pSuper );
diff --git a/rsc/source/parser/rscicpx.cxx b/rsc/source/parser/rscicpx.cxx
index 35fc0ff..24f65dd 100644
--- a/rsc/source/parser/rscicpx.cxx
+++ b/rsc/source/parser/rscicpx.cxx
@@ -911,24 +911,6 @@ RscTop * RscTypCont::InitClassMenu( RscTop * pSuper,
 return pClassMenu;
 }
 
-RscTop * RscTypCont::InitClassSplitter( RscTop * pSuper )
-{
-AtomnId;
-RscTop *pClassSplitter;
-
-// Klasse anlegen
-nId = pHS-getID( Splitter );
-pClassSplitter = new RscClass( nId, RSC_SPLITTER, pSuper );
-pClassSplitter-SetCallPar( *pWinPar1, *pWinPar2, *pWinParType );
-
-aNmTb.Put( nId, CLASSNAME, pClassSplitter );
-
-INS_WINBIT(pClassSplitter,HScroll);
-INS_WINBIT(pClassSplitter,VScroll);
-
-return pClassSplitter;
-}
-
 RscTop * RscTypCont::InitClassSplitWindow( RscTop * pSuper )
 {
 AtomnId;
diff --git a/rsc/source/parser/rscinit.cxx b/rsc/source/parser/rscinit.cxx
index e476463..de4f0aa 100644
--- a/rsc/source/parser/rscinit.cxx
+++ b/rsc/source/parser/rscinit.cxx
@@ -86,7 +86,6 @@ void RscTypCont::Init()
 RscTop   *  pClassAccel;
 RscTop   *  pClassMenuItem;
 RscTop   *  pClassMenu;
-RscTop   *  pClassSplitter;
 RscTop   *  pClassSplitWindow;
 RscTop   *  pClassSpinButton;
 RscTop   *  pClassTime;
@@ -420,9 +419,6 @@ void RscTypCont::Init()
  RSC_MENUITEM_MENU );
 }
 {
-pClassSplitter = InitClassSplitter( pClassWindow );
-pRoot-Insert( pClassSplitter );
-
 pClassSplitWindow = InitClassSplitWindow( pClassWindow );
 pRoot-Insert( pClassSplitWindow );
 
commit 40aeb8ba411a8f9682bc7213a69b7e9ec2c66f4a
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Dec 28 09:53:10 2014 +

callcatcher: update unused code

Change-Id: Idb5df3a8dd89d56ae1b70b05d5c6baf01e27b569

diff --git a/include/vcl/split.hxx b/include/vcl/split.hxx
index b478317..1ed55f4 100644
--- a/include/vcl/split.hxx
+++ b/include/vcl/split.hxx
@@ -63,7 +63,6 @@ protected:
 
 public:
 explicitSplitter( vcl::Window* pParent, WinBits nStyle = 
WB_VSCROLL );
-explicitSplitter( vcl::Window* pParent, const ResId );
 virtual ~Splitter();
 
 virtual voidStartSplit();
diff --git a/vcl/source/window/split.cxx b/vcl/source/window/split.cxx
index 6f4de66..60efeb9 100644
--- a/vcl/source/window/split.cxx
+++ b/vcl/source/window/split.cxx
@@ -149,22 +149,6 @@ Splitter::Splitter( vcl::Window* pParent, WinBits nStyle ) 
:
 SetFillColor();
 }
 
-Splitter::Splitter( vcl::Window* pParent, const ResId rResId ) :
-Window( WINDOW_SPLITTER )
-{
-ImplInitSplitterData();
-rResId.SetRT( RSC_SPLITTER );
-WinBits nStyle = ImplInitRes( rResId );
-ImplInit( pParent, nStyle );
-ImplLoadRes( rResId );
-
-SetLineColor();
-SetFillColor();
-
-if ( !(nStyle  WB_HIDE) )
-Show();
-}
-
 Splitter::~Splitter()
 {
 TaskPaneList *pTList = GetSystemWindow()-GetTaskPaneList();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libmspub.git: 2 commits - src/lib

2014-12-28 Thread David Tardon
 src/lib/MSPUBCollector.cpp |  160 -
 src/lib/MSPUBParser.cpp|7 +
 2 files changed, 124 insertions(+), 43 deletions(-)

New commits:
commit 82f18199d17bb4da46b2728f7dfc477eac984bc2
Author: David Tardon dtar...@redhat.com
Date:   Sun Dec 28 14:05:49 2014 +0100

BIPU handling of tables

Change-Id: I99b127f651c20d7024a3f7db881b386424f334d0

diff --git a/src/lib/MSPUBCollector.cpp b/src/lib/MSPUBCollector.cpp
index 53ef937..04f5b6c 100644
--- a/src/lib/MSPUBCollector.cpp
+++ b/src/lib/MSPUBCollector.cpp
@@ -150,6 +150,8 @@ void MSPUBCollector::setShapeTableInfo(unsigned seqNum,
const TableInfo ti)
 {
   m_shapeInfosBySeqNum[seqNum].m_tableInfo = ti;
+  if (!m_tableCellTextEndsVector.empty())
+m_shapeInfosBySeqNum[seqNum].m_tableCellTextEnds = 
m_tableCellTextEndsVector.back();
 }
 
 void MSPUBCollector::setShapeNumColumns(unsigned seqNum,
@@ -482,6 +484,7 @@ boost::functionvoid(void) 
MSPUBCollector::paintShape(const ShapeInfo info, co
   bool hasFill = fill != none;
   boost::optionalstd::vectorTextParagraph  maybeText = getShapeText(info);
   bool hasText = bool(maybeText);
+  const bool isTable = bool(info.m_tableInfo);
   bool makeLayer = hasBorderArt ||
(hasStroke  hasFill) || (hasStroke  hasText) || 
(hasFill  hasText);
   if (makeLayer)
@@ -863,57 +866,128 @@ boost::functionvoid(void) 
MSPUBCollector::paintShape(const ShapeInfo info, co
 {
   props.insert(librevenge:rotate, textRotation * 180 / M_PI);
 }
-Margins margins = info.m_margins.get_value_or(Margins());
-props.insert(fo:padding-left, (double)margins.m_left / EMUS_IN_INCH);
-props.insert(fo:padding-top, (double)margins.m_top / EMUS_IN_INCH);
-props.insert(fo:padding-right, (double)margins.m_right / EMUS_IN_INCH);
-props.insert(fo:padding-bottom, (double)margins.m_bottom / EMUS_IN_INCH);
-if (bool(info.m_verticalAlign))
+
+if (isTable)
 {
-  switch (info.m_verticalAlign.get())
+  m_painter-startTableObject(props);
+
+  std::vectorunsigned tableCellTextEnds;
+  if (bool(info.m_tableCellTextEnds))
+tableCellTextEnds = get(info.m_tableCellTextEnds);
+  unsigned row = 0;
+  unsigned column = 0;
+  unsigned para = 0;
+  unsigned offset = 1;
+  for (unsigned cell = 0; cell != get(info.m_tableInfo).m_numColumns * 
get(info.m_tableInfo).m_numRows; ++cell)
   {
-  default:
-  case TOP:
-props.insert(draw:textarea-vertical-align, top);
-break;
-  case MIDDLE:
-props.insert(draw:textarea-vertical-align, middle);
-break;
-  case BOTTOM:
-props.insert(draw:textarea-vertical-align, bottom);
-break;
+assert(row  get(info.m_tableInfo).m_numRows);
+assert(column  get(info.m_tableInfo).m_numColumns);
+
+if (column == 0)
+  m_painter-openTableRow(librevenge::RVNGPropertyList());
+
+librevenge::RVNGPropertyList cellProps;
+cellProps.insert(librevenge:column, int(column));
+cellProps.insert(librevenge:row, int(row));
+m_painter-openTableCell(cellProps);
+
+if (cell  tableCellTextEnds.size())
+{
+  const unsigned cellEnd = tableCellTextEnds[cell];
+  while ((para  text.size())  (offset  cellEnd))
+  {
+librevenge::RVNGPropertyList paraProps = 
getParaStyleProps(text[para].style, text[para].style.m_defaultCharStyleIndex);
+m_painter-openParagraph(paraProps);
+for (unsigned i_spans = 0; (i_spans  text[para].spans.size())  
(offset  cellEnd); ++i_spans)
+{
+  librevenge::RVNGString textString;
+  appendCharacters(textString, text[para].spans[i_spans].chars,
+   getCalculatedEncoding());
+  offset += textString.len();
+  // TODO: why do we not drop these during parse already?
+  if ((i_spans == text[para].spans.size() - 1)  (textString == 
\r))
+continue;
+  librevenge::RVNGPropertyList charProps = 
getCharStyleProps(text[para].spans[i_spans].style, 
text[para].style.m_defaultCharStyleIndex);
+  m_painter-openSpan(charProps);
+  separateSpacesAndInsertText(m_painter, textString);
+  m_painter-closeSpan();
+}
+
+if (offset  cellEnd)
+{
+  MSPUB_DEBUG_MSG((cell text ends in the middle of a span!\n));
+}
+m_painter-closeParagraph();
+++para;
+  }
+}
+
+m_painter-closeTableCell();
+++column;
+if (column == get(info.m_tableInfo).m_numColumns)
+{
+  m_painter-closeTableRow();
+  ++row;
+  column = 0;
+}
   }
+
+  m_painter-endTableObject();
 }
-if (info.m_numColumns)
-{
-  unsigned ncols = 

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

2014-12-28 Thread Tomaž Vajngerl
 svtools/source/control/tabbar.cxx |   42 +++---
 1 file changed, 30 insertions(+), 12 deletions(-)

New commits:
commit 9bf0aac88d8215525a2a18280b5183b03b7f
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Sun Dec 28 23:52:39 2014 +0900

Rework TabBar DD tab move triangles and make them HiDPI aware

Change-Id: Ia4165880b0b08b5ca26fe7004f961cd17b3d3e27

diff --git a/svtools/source/control/tabbar.cxx 
b/svtools/source/control/tabbar.cxx
index 0cdd494..d55a3cb 100644
--- a/svtools/source/control/tabbar.cxx
+++ b/svtools/source/control/tabbar.cxx
@@ -2577,9 +2577,13 @@ sal_uInt16 TabBar::ShowDropPos( const Point rPos )
 longnY = (maWinSize.Height()/2)-1;
 sal_uInt16  nCurPos = GetPagePos( mnCurPageId );
 
-SetLineColor( aBlackColor );
+sal_Int32 nTriangleWidth = 3 * GetDPIScaleFactor();
+
 if ( mnDropPos  nItemCount )
 {
+SetLineColor(aBlackColor);
+SetFillColor(aBlackColor);
+
 pItem = (*mpItemList)[ mnDropPos ];
 nX = pItem-maRect.Left();
 if ( mnDropPos == nCurPos )
@@ -2587,23 +2591,36 @@ sal_uInt16 TabBar::ShowDropPos( const Point rPos )
 else
 nX++;
 if ( !pItem-IsDefaultTabBgColor()  !pItem-mbSelect)
-SetLineColor( pItem-maTabTextColor );
-DrawLine( Point( nX, nY ), Point( nX, nY ) );
-DrawLine( Point( nX+1, nY-1 ), Point( nX+1, nY+1 ) );
-DrawLine( Point( nX+2, nY-2 ), Point( nX+2, nY+2 ) );
-SetLineColor( aBlackColor );
+{
+SetLineColor(pItem-maTabTextColor);
+SetFillColor(pItem-maTabTextColor);
+}
+
+Polygon aPoly(3);
+aPoly.SetPoint(Point(nX, nY), 0);
+aPoly.SetPoint(Point(nX + nTriangleWidth, nY - nTriangleWidth), 1);
+aPoly.SetPoint(Point(nX + nTriangleWidth, nY + nTriangleWidth), 2);
+DrawPolygon(aPoly);
 }
 if ( (mnDropPos  0)  (mnDropPos  nItemCount+1) )
 {
+SetLineColor(aBlackColor);
+SetFillColor(aBlackColor);
+
 pItem = (*mpItemList)[ mnDropPos-1 ];
 nX = pItem-maRect.Right();
 if ( mnDropPos == nCurPos )
 nX++;
 if ( !pItem-IsDefaultTabBgColor()  !pItem-mbSelect)
-SetLineColor( pItem-maTabTextColor );
-DrawLine( Point( nX, nY ), Point( nX, nY ) );
-DrawLine( Point( nX-1, nY-1 ), Point( nX-1, nY+1 ) );
-DrawLine( Point( nX-2, nY-2 ), Point( nX-2, nY+2 ) );
+{
+SetLineColor(pItem-maTabTextColor);
+SetFillColor(pItem-maTabTextColor);
+}
+Polygon aPoly(3);
+aPoly.SetPoint(Point(nX, nY ), 0);
+aPoly.SetPoint(Point(nX - nTriangleWidth, nY - nTriangleWidth), 1);
+aPoly.SetPoint(Point(nX - nTriangleWidth, nY + nTriangleWidth), 2);
+DrawPolygon(aPoly);
 }
 
 return mnDropPos;
commit 37fa4e781dd0a0edccb59eaf5d8b624f15ef469a
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Sun Dec 28 22:38:28 2014 +0900

HiDPI: TabBar resizer changes size depending on DPI scale factor

Change-Id: I36a6d22f87b0d96cdbdadd683cd3abeb12e28c77

diff --git a/svtools/source/control/tabbar.cxx 
b/svtools/source/control/tabbar.cxx
index 4cf4e9a..0cdd494 100644
--- a/svtools/source/control/tabbar.cxx
+++ b/svtools/source/control/tabbar.cxx
@@ -167,8 +167,9 @@ ImplTabSizer::ImplTabSizer( TabBar* pParent, WinBits 
nWinStyle )
 : Window( pParent, nWinStyle  WB_3DLOOK )
 , mnStartWidth(0)
 {
-SetPointer( Pointer( POINTER_HSIZEBAR ) );
-SetSizePixel( Size( 7, 0 ) );
+sal_Int32 nScaleFactor = GetDPIScaleFactor();
+SetPointer(Pointer(POINTER_HSIZEBAR));
+SetSizePixel(Size(7 * nScaleFactor, 0));
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-28 Thread Zolnai Tamás
 l10ntools/source/export.cxx   |   19 +++
 svx/source/customshapes/EnhancedCustomShape2d.cxx |7 +--
 2 files changed, 16 insertions(+), 10 deletions(-)

New commits:
commit 1471103be04a1bcf18002b5ddc7c9c0744655b2b
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Dec 28 12:53:40 2014 +0100

fdo#87754: duplicated strings in an ItemList are not translated

Change-Id: I72c6e234ff999a6dbed48cc62fe7d39aeb798f35

diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
index 38cd3ed..ced58e3 100644
--- a/l10ntools/source/export.cxx
+++ b/l10ntools/source/export.cxx
@@ -1156,16 +1156,19 @@ void Export::MergeRest( ResData *pResData )
 }
 
 MergeEntrys* pEntrys = 
pMergeDataFile-GetMergeEntrysCaseSensitive( pResData );
-OString sText;
-bool bText = pEntrys  pEntrys-GetText( sText, 
STRING_TYP_TEXT, sCur, true );
 
-if( bText  !sText.isEmpty())
+if( pEntrys )
 {
-ConvertMergeContent( sText );
-sLine =
-sLine.copy( 0 , sLine.indexOf('') ) +
-sText +
-sLine.copy( sLine.lastIndexOf('') + 1 );
+OString sText;
+pEntrys-GetText( sText, STRING_TYP_TEXT, sCur, false );
+if( !sText.isEmpty())
+{
+ConvertMergeContent( sText );
+sLine =
+sLine.copy( 0 , sLine.indexOf('') ) +
+sText +
+sLine.copy( sLine.lastIndexOf('') + 1 );
+}
 }
 
 OString sText1( \t );
commit 04fa50e39888926e1efdb52d46e6ab9bcd9cbea8
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Dec 28 12:53:02 2014 +0100

Regression in rendering of flowChartPunchedTape custom shape

Regression from:
20f8006e21943b08f1f152e4a0359c9ebe4786f2

It's not a good idea to create the arc first in small
resolution and scale it later, because the result won't
be smooth (e.g. in case of flowChartPunchedTape).

Both cloud and flowChartPunchedTape rendered well after
that change. It seems the problem in case of cloud
was with the arc tangent values which should be calculated
based on the ARCANGLETO's original values before scaling.

Change-Id: I0315afd0452108b6539b4b8ba271d1615810d985

diff --git a/svx/source/customshapes/EnhancedCustomShape2d.cxx 
b/svx/source/customshapes/EnhancedCustomShape2d.cxx
index 9a66921..38478bb 100644
--- a/svx/source/customshapes/EnhancedCustomShape2d.cxx
+++ b/svx/source/customshapes/EnhancedCustomShape2d.cxx
@@ -1790,6 +1790,9 @@ void EnhancedCustomShape2d::CreateSubPath( sal_uInt16 
rSrcPt, sal_uInt16 rSegm
 
 OSL_TRACE(ARCANGLETO angles: %f, %f -- 
parameters: %f, %f, fStartAngle, fSwingAngle, fT, fTE );
 
+fWR *= fXScale;
+fHR *= fYScale;
+
 Rectangle aRect ( Point ( aStartPoint.getX() - 
fWR*cos(fT) - fWR, aStartPoint.getY() - fHR*sin(fT) - fHR ),
   Point ( aStartPoint.getX() - 
fWR*cos(fT) + fWR, aStartPoint.getY() - fHR*sin(fT) + fHR) );
 
@@ -1799,8 +1802,8 @@ void EnhancedCustomShape2d::CreateSubPath( sal_uInt16 
rSrcPt, sal_uInt16 rSegm
   aRect.Left(), aRect.Top(), 
aRect.Right(), aRect.Bottom(),
   aStartPoint.X(), aStartPoint.Y(), 
aEndPoint.X(), aEndPoint.Y(), bClockwise);
 basegfx::B2DPolygon aArc = CreateArc( aRect, 
bClockwise ? aEndPoint : aStartPoint, bClockwise ? aStartPoint : aEndPoint, 
bClockwise, aStartPoint == aEndPoint  fSwingAngle  F_PI);
-// Now that we have the arc, move it to 
aStartPointB2D and also scale it.
-basegfx::B2DHomMatrix aMatrix = 
basegfx::tools::createScaleTranslateB2DHomMatrix(fXScale, fYScale, 
aStartPointB2D.getX(), aStartPointB2D.getY());
+// Now that we have the arc, move it to 
aStartPointB2D.
+basegfx::B2DHomMatrix aMatrix = 
basegfx::tools::createTranslateB2DHomMatrix(aStartPointB2D.getX(), 
aStartPointB2D.getY());
 aArc.transform(aMatrix);
 aNewB2DPolygon.append(aArc);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-28 Thread Andras Timar
 xmloff/source/draw/ximpcustomshape.cxx |   43 -
 1 file changed, 1 insertion(+), 42 deletions(-)

New commits:
commit 4cd048d98ff258abc6ce036cb715d2c577128fb0
Author: Andras Timar andras.ti...@collabora.com
Date:   Sun Dec 28 16:55:16 2014 +0100

Revert Resolves: #i124452# correct svg:viewBox for EnhancedCustomShape...

This reverts commit c6e316f52021cc26d4c5ec9a7b87a07fbf595b62.
The bug #i124452# was in AOO only, no need to fix it in LibreOffice.
Especially when the fix causes regression. The related fdo#76334
should be fixed one day, but that is a different issue.

Conflicts:
xmloff/source/draw/ximpcustomshape.cxx

Change-Id: Ice0bf378f97e2caf0ee8386d0b5c0b8abcbcd1c2

diff --git a/xmloff/source/draw/ximpcustomshape.cxx 
b/xmloff/source/draw/ximpcustomshape.cxx
index 8015a4b..fe6b60f 100644
--- a/xmloff/source/draw/ximpcustomshape.cxx
+++ b/xmloff/source/draw/ximpcustomshape.cxx
@@ -44,9 +44,7 @@
 #include com/sun/star/drawing/EnhancedCustomShapeSegmentCommand.hpp
 #include com/sun/star/drawing/EnhancedCustomShapeTextPathMode.hpp
 #include com/sun/star/drawing/ProjectionMode.hpp
-#include com/sun/star/drawing/HomogenMatrix3.hpp
 #include boost/unordered_map.hpp
-#include basegfx/vector/b2dvector.hxx
 #include sax/tools/converter.hxx
 
 using namespace ::com::sun::star;
@@ -919,46 +917,7 @@ void XMLEnhancedCustomShapeContext::StartElement( const 
uno::Reference xml::sax
 case EAS_viewBox :
 {
 SdXMLImExViewBox aViewBox( rValue, 
GetImport().GetMM100UnitConverter() );
-awt::Rectangle aRect(
-basegfx::fround(aViewBox.GetX()),
-basegfx::fround(aViewBox.GetY()),
-basegfx::fround(aViewBox.GetWidth()),
-basegfx::fround(aViewBox.GetHeight()));
-
-if(0 == aRect.Width  0 == aRect.Height)
-{
-// #i124452# If in svg:viewBox no width and height is 
given the objects should normally
-// not be visible at all, but in this case it is a bug 
in LO to write empty svg:viewBox
-// entries for CustomShapes. To allow for a better ODF 
user experience, just correct this
-// here by getting the real object scale from the 
already set transformation from the xShape.
-// Hopefully LO will fix that bug (but this will still 
leave the files with the error), but
-// even when not this will do no harm as long no one 
uses this state explicitely for some
-// purpose (e.g. to really have CustomShapes without 
content, but unlikely).
-uno::Reference beans::XPropertySet  xProps(mrxShape, 
uno::UNO_QUERY_THROW);
-uno::Any aObjectTransform = 
xProps-getPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(Transformation)));
-drawing::HomogenMatrix3 aTransformMatrix;
-aObjectTransform = aTransformMatrix;
-basegfx::B2DHomMatrix aMatrix;
-
-aMatrix.set(0, 0, aTransformMatrix.Line1.Column1);
-aMatrix.set(0, 1, aTransformMatrix.Line1.Column2);
-aMatrix.set(0, 2, aTransformMatrix.Line1.Column3);
-aMatrix.set(1, 0, aTransformMatrix.Line2.Column1);
-aMatrix.set(1, 1, aTransformMatrix.Line2.Column2);
-aMatrix.set(1, 2, aTransformMatrix.Line2.Column3);
-aMatrix.set(2, 0, aTransformMatrix.Line3.Column1);
-aMatrix.set(2, 1, aTransformMatrix.Line3.Column2);
-aMatrix.set(2, 2, aTransformMatrix.Line3.Column3);
-
-basegfx::B2DVector aScale, aTranslate;
-double fRotate, fShearX;
-
-aMatrix.decompose(aScale, aTranslate, fRotate, 
fShearX);
-
-aRect.Width = basegfx::fround(fabs(aScale.getX()));
-aRect.Height = basegfx::fround(fabs(aScale.getY()));
-}
-
+awt::Rectangle aRect( aViewBox.GetX(), aViewBox.GetY(), 
aViewBox.GetWidth(), aViewBox.GetHeight() );
 beans::PropertyValue aProp;
 aProp.Name = EASGet( EAS_ViewBox );
 aProp.Value = aRect;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


remove_if for nothing in dbdata.cxx (sc module)

2014-12-28 Thread julien2412
Hello,

I noticed this part:
889 void ScDBCollection::DeleteOnTab( SCTAB nTab )
890 {
...
908 remove_if(maAnonDBs.begin(), maAnonDBs.end(), func);
909 }

remove_if is useless since there's no erase.
I thought about adding an erase by taking example of this
http://en.wikipedia.org/wiki/Erase-remove_idiom
but AnonDBs doesn't have an ad hoc erase method (like NamedDBs, but this one
has a simple erase method), see
http://opengrok.libreoffice.org/xref/core/sc/inc/dbdata.hxx#152

Should we remove this line? Should we add an ad hoc erase method to
implement erase-remove idiom in NamedDBs + AnonDBs?

Any thoughts?

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/remove-if-for-nothing-in-dbdata-cxx-sc-module-tp4134249.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2014-12-28 Thread Zolnai Tamás
 l10ntools/source/export.cxx |   19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

New commits:
commit 06fac18f2379516fc4902d7a417951cb0ccd9e76
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Dec 28 12:53:40 2014 +0100

fdo#87754: duplicated strings in an ItemList are not translated

Change-Id: I72c6e234ff999a6dbed48cc62fe7d39aeb798f35
(cherry picked from commit 1471103be04a1bcf18002b5ddc7c9c0744655b2b)
Reviewed-on: https://gerrit.libreoffice.org/13682
Reviewed-by: Andras Timar andras.ti...@collabora.com
Tested-by: Andras Timar andras.ti...@collabora.com

diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
index 3d0096d..4586087 100644
--- a/l10ntools/source/export.cxx
+++ b/l10ntools/source/export.cxx
@@ -1155,16 +1155,19 @@ void Export::MergeRest( ResData *pResData )
 }
 
 MergeEntrys* pEntrys = 
pMergeDataFile-GetMergeEntrysCaseSensitive( pResData );
-OString sText;
-bool bText = pEntrys  pEntrys-GetText( sText, 
STRING_TYP_TEXT, sCur, true );
 
-if( bText  !sText.isEmpty())
+if( pEntrys )
 {
-ConvertMergeContent( sText );
-sLine =
-sLine.copy( 0 , sLine.indexOf('') ) +
-sText +
-sLine.copy( sLine.lastIndexOf('') + 1 );
+OString sText;
+pEntrys-GetText( sText, STRING_TYP_TEXT, sCur, false );
+if( !sText.isEmpty())
+{
+ConvertMergeContent( sText );
+sLine =
+sLine.copy( 0 , sLine.indexOf('') ) +
+sText +
+sLine.copy( sLine.lastIndexOf('') + 1 );
+}
 }
 
 OString sText1( \t );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-28 Thread Zolnai Tamás
 l10ntools/source/export.cxx |   19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

New commits:
commit 4774b2f0e6a0e895d1e63256147eaff59efd0eda
Author: Zolnai Tamás zolnaitamas2...@gmail.com
Date:   Sun Dec 28 12:53:40 2014 +0100

fdo#87754: duplicated strings in an ItemList are not translated

Change-Id: I72c6e234ff999a6dbed48cc62fe7d39aeb798f35
(cherry picked from commit 1471103be04a1bcf18002b5ddc7c9c0744655b2b)
Reviewed-on: https://gerrit.libreoffice.org/13680
Reviewed-by: Andras Timar andras.ti...@collabora.com
Tested-by: Andras Timar andras.ti...@collabora.com

diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
index 38cd3ed..ced58e3 100644
--- a/l10ntools/source/export.cxx
+++ b/l10ntools/source/export.cxx
@@ -1156,16 +1156,19 @@ void Export::MergeRest( ResData *pResData )
 }
 
 MergeEntrys* pEntrys = 
pMergeDataFile-GetMergeEntrysCaseSensitive( pResData );
-OString sText;
-bool bText = pEntrys  pEntrys-GetText( sText, 
STRING_TYP_TEXT, sCur, true );
 
-if( bText  !sText.isEmpty())
+if( pEntrys )
 {
-ConvertMergeContent( sText );
-sLine =
-sLine.copy( 0 , sLine.indexOf('') ) +
-sText +
-sLine.copy( sLine.lastIndexOf('') + 1 );
+OString sText;
+pEntrys-GetText( sText, STRING_TYP_TEXT, sCur, false );
+if( !sText.isEmpty())
+{
+ConvertMergeContent( sText );
+sLine =
+sLine.copy( 0 , sLine.indexOf('') ) +
+sText +
+sLine.copy( sLine.lastIndexOf('') + 1 );
+}
 }
 
 OString sText1( \t );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - ac/4268fcf6e92d5c13667bb89802defaf9346e5f

2014-12-28 Thread Caolán McNamara
 ac/4268fcf6e92d5c13667bb89802defaf9346e5f |1 +
 1 file changed, 1 insertion(+)

New commits:
commit ef20c1f64678175663efe4b269cb3b9165461e38
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Dec 28 18:20:29 2014 +

Notes added by 'git notes add'

diff --git a/ac/4268fcf6e92d5c13667bb89802defaf9346e5f 
b/ac/4268fcf6e92d5c13667bb89802defaf9346e5f
new file mode 100644
index 000..8e5c182
--- /dev/null
+++ b/ac/4268fcf6e92d5c13667bb89802defaf9346e5f
@@ -0,0 +1 @@
+ignore: aoo
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-28 Thread Miklos Vajna
 sw/inc/fmtclds.hxx   |4 ++
 sw/inc/fmtfollowtextflow.hxx |2 +
 sw/inc/fmtwrapinfluenceonobjpos.hxx  |2 +
 sw/source/core/attr/fmtwrapinfluenceonobjpos.cxx |9 ++
 sw/source/core/bastyp/init.cxx   |3 --
 sw/source/core/docnode/nodedump.cxx  |   28 +++-
 sw/source/core/layout/atrfrm.cxx |   32 +++
 sw/source/uibase/utlui/attrdesc.cxx  |9 ++
 writerfilter/source/filter/RtfFilter.cxx |9 ++
 9 files changed, 74 insertions(+), 24 deletions(-)

New commits:
commit 337aa303284b42c4fb13bff4beffdcf445a715cd
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Dec 28 18:43:54 2014 +0100

Factor out SwFmtCol::dumpAsXml() from docnode

Change-Id: Ic41b981c989aec658e95889b72bd76ecacb13a9a

diff --git a/sw/inc/fmtclds.hxx b/sw/inc/fmtclds.hxx
index 3370a98..a98e39f 100644
--- a/sw/inc/fmtclds.hxx
+++ b/sw/inc/fmtclds.hxx
@@ -54,6 +54,8 @@ public:
 sal_uInt16 GetLower() const { return nLower; }
 sal_uInt16 GetLeft () const { return nLeft; }
 sal_uInt16 GetRight() const { return nRight; }
+
+void dumpAsXml(struct _xmlTextWriter* pWriter) const;
 };
 
 typedef boost::ptr_vectorSwColumn SwColumns;
@@ -160,6 +162,8 @@ public:
 /** As above except that it @return the width of PrtArea -
  that corresponds to what constitutes the column for the user. */
 sal_uInt16 CalcPrtColWidth( sal_uInt16 nCol, sal_uInt16 nAct ) const;
+
+void dumpAsXml(struct _xmlTextWriter* pWriter) const;
 };
 
 inline const SwFmtCol SwAttrSet::GetCol(bool bInP) const
diff --git a/sw/source/core/docnode/nodedump.cxx 
b/sw/source/core/docnode/nodedump.cxx
index a3771f0..8ebd230 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -449,6 +449,9 @@ void lcl_dumpSfxItemSet(WriterHelper writer, const 
SfxItemSet* pSet)
 case RES_WRAP_INFLUENCE_ON_OBJPOS:
 static_castconst 
SwFmtWrapInfluenceOnObjPos*(pItem)-dumpAsXml(writer);
 break;
+case RES_COL:
+static_castconst SwFmtCol*(pItem)-dumpAsXml(writer);
+break;
 default: bDone = false; break;
 }
 if (bDone)
@@ -506,13 +509,6 @@ void lcl_dumpSfxItemSet(WriterHelper writer, const 
SfxItemSet* pSet)
 case XATTR_FILLBMP_STRETCH:
 pWhich = fill bitmap stretch;
 break;
-case RES_COL:
-{
-pWhich = columns formatting;
-const SwFmtCol* pFmtCol = static_castconst SwFmtCol*(pItem);
-oValue = number of columns:  + 
OString::number(pFmtCol-GetColumns().size());
-break;
-}
 case RES_PROTECT:
 pWhich = protect;
 break;
diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index 9da00f2..a0f0bd2 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -790,6 +790,17 @@ bool SwColumn::operator==( const SwColumn rCmp ) const
 GetLower() == rCmp.GetLower();
 }
 
+void SwColumn::dumpAsXml(xmlTextWriterPtr pWriter) const
+{
+xmlTextWriterStartElement(pWriter, BAD_CAST(swColumn));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(nWish), 
BAD_CAST(OString::number(nWish).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(nUpper), 
BAD_CAST(OString::number(nUpper).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(nLower), 
BAD_CAST(OString::number(nLower).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(nLeft), 
BAD_CAST(OString::number(nLeft).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(nRight), 
BAD_CAST(OString::number(nRight).getStr()));
+xmlTextWriterEndElement(pWriter);
+}
+
 SwFmtCol::SwFmtCol( const SwFmtCol rCpy )
 : SfxPoolItem( RES_COL ),
 m_eLineStyle( rCpy.m_eLineStyle ),
@@ -1116,6 +1127,27 @@ bool SwFmtCol::PutValue( const uno::Any rVal, sal_uInt8 
nMemberId )
 return bRet;
 }
 
+void SwFmtCol::dumpAsXml(xmlTextWriterPtr pWriter) const
+{
+xmlTextWriterStartElement(pWriter, BAD_CAST(swFmtCol));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(whichId), 
BAD_CAST(OString::number(Which()).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(eLineStyle), 
BAD_CAST(OString::number(m_eLineStyle).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(nLineWidth), 
BAD_CAST(OString::number(m_nLineWidth).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(aLineColor), 
BAD_CAST(m_aLineColor.AsRGBHexString().toUtf8().getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(nLineHeight), 
BAD_CAST(OString::number(m_nLineHeight).getStr()));
+xmlTextWriterWriteAttribute(pWriter, BAD_CAST(eAdj), 
BAD_CAST(OString::number(m_eAdj).getStr()));
+

[Libreoffice-commits] libvisio.git: 2 commits - src/lib src/test

2014-12-28 Thread Miklos Vajna
 src/lib/VSDMetaData.cpp  |4 
 src/lib/VSDXMetaData.cpp |2 ++
 src/lib/tokens.txt   |1 +
 src/test/importtest.cpp  |2 ++
 4 files changed, 9 insertions(+)

New commits:
commit d4684217ee9dd48e3352430e6d869824642f4082
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Dec 28 14:13:39 2014 +0100

VSD: import description

Change-Id: I33b47f4ee903f9f4d07383df0552284de7401d7b

diff --git a/src/lib/VSDMetaData.cpp b/src/lib/VSDMetaData.cpp
index 44e6f62..0288392 100644
--- a/src/lib/VSDMetaData.cpp
+++ b/src/lib/VSDMetaData.cpp
@@ -97,6 +97,7 @@ void 
libvisio::VSDMetaData::readPropertyIdentifierAndOffset(librevenge::RVNGInpu
 #define PIDSI_SUBJECT 0x0003
 #define PIDSI_AUTHOR 0x0004
 #define PIDSI_KEYWORDS 0x0005
+#define PIDSI_COMMENTS 0x0006
 
 void libvisio::VSDMetaData::readTypedPropertyValue(librevenge::RVNGInputStream 
*input, uint32_t index, uint32_t offset)
 {
@@ -132,6 +133,9 @@ void 
libvisio::VSDMetaData::readTypedPropertyValue(librevenge::RVNGInputStream *
   case PIDSI_KEYWORDS:
 m_metaData.insert(meta:keyword, string);
 break;
+  case PIDSI_COMMENTS:
+m_metaData.insert(dc:description, string);
+break;
   }
 }
   }
diff --git a/src/test/importtest.cpp b/src/test/importtest.cpp
index 41f2b0c..bb3388e 100644
--- a/src/test/importtest.cpp
+++ b/src/test/importtest.cpp
@@ -158,6 +158,7 @@ void ImportTest::testVsdMetadataTitleMs1252()
   assertXPath(m_doc, /document/setDocumentMetaData, subject, mysubject);
   assertXPath(m_doc, /document/setDocumentMetaData, initial-creator, 
vmiklos creator);
   assertXPath(m_doc, /document/setDocumentMetaData, keyword, mytag);
+  assertXPath(m_doc, /document/setDocumentMetaData, description, 
mycomment);
 }
 
 void ImportTest::testVsdMetadataTitleUtf8()
commit db443edcc59a9d48395e25f04a4c380d15877e4e
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Dec 28 14:10:03 2014 +0100

VSDX: import description

Change-Id: I5e9e6fd793bb44c954e8255e70952badfb442d57

diff --git a/src/lib/VSDXMetaData.cpp b/src/lib/VSDXMetaData.cpp
index 1ce1dcd..7a0ff83 100644
--- a/src/lib/VSDXMetaData.cpp
+++ b/src/lib/VSDXMetaData.cpp
@@ -75,6 +75,8 @@ void 
libvisio::VSDXMetaData::readCoreProperties(xmlTextReaderPtr reader)
   break;
 case XML_CP_KEYWORDS:
   m_metaData.insert(meta:keyword, readString(reader, XML_CP_KEYWORDS));
+case XML_DC_DESCRIPTION:
+  m_metaData.insert(dc:description, readString(reader, 
XML_DC_DESCRIPTION));
 default:
   break;
 }
diff --git a/src/lib/tokens.txt b/src/lib/tokens.txt
index d4ad31d..617fb1a 100644
--- a/src/lib/tokens.txt
+++ b/src/lib/tokens.txt
@@ -233,3 +233,4 @@ dc:subject
 dc:title
 dcterms:created
 dcterms:modified
+dc:description
diff --git a/src/test/importtest.cpp b/src/test/importtest.cpp
index 7aa8336..41f2b0c 100644
--- a/src/test/importtest.cpp
+++ b/src/test/importtest.cpp
@@ -146,6 +146,7 @@ void ImportTest::testVsdxMetadataTitle()
   assertXPath(m_doc, /document/setDocumentMetaData, creation-date, 
2014-11-24T10:35:17Z);
   assertXPath(m_doc, /document/setDocumentMetaData, date, 
2014-11-24T10:41:22Z);
   assertXPath(m_doc, /document/setDocumentMetaData, keyword, mytag);
+  assertXPath(m_doc, /document/setDocumentMetaData, description, 
mycomment);
 }
 
 void ImportTest::testVsdMetadataTitleMs1252()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-28 Thread Julien Nabet
 sc/source/ui/docshell/externalrefmgr.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 6cafd3e80c39d2adf57c41d366097ecebeb916a9
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Dec 28 20:38:57 2014 +0100

std::remove_if not used

Change-Id: I363ac477d364a1b428ebe5181973ff28dc3f4a77

diff --git a/sc/source/ui/docshell/externalrefmgr.cxx 
b/sc/source/ui/docshell/externalrefmgr.cxx
index baf3c69..8db6364 100644
--- a/sc/source/ui/docshell/externalrefmgr.cxx
+++ b/sc/source/ui/docshell/externalrefmgr.cxx
@@ -66,7 +66,6 @@ using ::com::sun::star::uno::Any;
 using ::std::vector;
 using ::std::find;
 using ::std::find_if;
-using ::std::remove_if;
 using ::std::distance;
 using ::std::pair;
 using ::std::list;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libmspub.git: src/lib

2014-12-28 Thread David Tardon
 src/lib/MSPUBCollector.cpp |  173 +
 src/lib/MSPUBParser.cpp|   69 -
 src/lib/TableInfo.h|   23 +
 3 files changed, 216 insertions(+), 49 deletions(-)

New commits:
commit 3b6efdb66e92c4d3d93daa56930ead86bf4fb96a
Author: David Tardon dtar...@redhat.com
Date:   Sun Dec 28 20:22:34 2014 +0100

handle merged cells

Change-Id: I32c416d89e18d780d852a900f16a35d14531c209

diff --git a/src/lib/MSPUBCollector.cpp b/src/lib/MSPUBCollector.cpp
index 04f5b6c..7f8cc84 100644
--- a/src/lib/MSPUBCollector.cpp
+++ b/src/lib/MSPUBCollector.cpp
@@ -9,6 +9,8 @@
 
 #include math.h
 
+#include boost/multi_array.hpp
+
 #include unicode/ucsdet.h
 
 #include MSPUBCollector.h
@@ -103,6 +105,79 @@ static void 
separateSpacesAndInsertText(librevenge::RVNGDrawingInterface *iface,
   separateTabsAndInsertText(iface, tmpText);
 }
 
+struct TableLayoutCell
+{
+  TableLayoutCell()
+: m_rowSpan(0)
+, m_colSpan(0)
+  {
+  }
+
+  unsigned m_rowSpan;
+  unsigned m_colSpan;
+};
+
+bool isCovered(const TableLayoutCell cell)
+{
+  assert((cell.m_rowSpan == 0) == (cell.m_colSpan == 0));
+  return (cell.m_rowSpan == 0)  (cell.m_colSpan == 0);
+}
+
+typedef boost::multi_arrayTableLayoutCell, 2 TableLayout;
+
+void createTableLayout(const std::vectorCellInfo cells, TableLayout 
tableLayout)
+{
+  for (std::vectorCellInfo::const_iterator it = cells.begin(); it != 
cells.end(); ++it)
+  {
+if ((it-m_endRow = tableLayout.shape()[0]) || (it-m_endColumn = 
tableLayout.shape()[1]))
+{
+  MSPUB_DEBUG_MSG((
+cell %u (rows %u to %u, columns %u to %u) overflows 
the table, ignoring\n,
+unsigned(int(it - cells.begin())),
+it-m_startRow, it-m_endRow,
+it-m_startColumn, it-m_endColumn,
+  ));
+  continue;
+}
+if (it-m_startRow  it-m_endRow)
+{
+  MSPUB_DEBUG_MSG((
+cell %u (rows %u to %u) has got negative row span, 
ignoring\n,
+unsigned(int(it - cells.begin())),
+it-m_startRow, it-m_endRow,
+  ));
+  continue;
+}
+if (it-m_startColumn  it-m_endColumn)
+{
+  MSPUB_DEBUG_MSG((
+cell %u (columns %u to %u) has got negative column 
span, ignoring\n,
+unsigned(int(it - cells.begin())),
+it-m_startColumn, it-m_endColumn,
+  ));
+  continue;
+}
+
+const unsigned rowSpan = it-m_endRow - it-m_startRow + 1;
+const unsigned colSpan = it-m_endColumn - it-m_startColumn + 1;
+
+if ((rowSpan == 0) != (colSpan == 0))
+{
+  MSPUB_DEBUG_MSG((
+cell %u (rows %u to %u, columns %u to %u) has got 0 
span in one dimension, ignoring\n,
+unsigned(int(it - cells.begin())),
+it-m_startRow, it-m_endRow,
+it-m_startColumn, it-m_endColumn,
+  ));
+  continue;
+}
+
+TableLayoutCell layoutCell = 
tableLayout[it-m_startRow][it-m_startColumn];
+layoutCell.m_rowSpan = rowSpan;
+layoutCell.m_colSpan = colSpan;
+  }
+}
+
 } // anonymous namespace
 
 void MSPUBCollector::addEOTFont(const librevenge::RVNGString name, const 
librevenge::RVNGBinaryData data)
@@ -874,62 +949,72 @@ boost::functionvoid(void) 
MSPUBCollector::paintShape(const ShapeInfo info, co
   std::vectorunsigned tableCellTextEnds;
   if (bool(info.m_tableCellTextEnds))
 tableCellTextEnds = get(info.m_tableCellTextEnds);
-  unsigned row = 0;
-  unsigned column = 0;
+  TableLayout 
tableLayout(boost::extents[get(info.m_tableInfo).m_numRows][get(info.m_tableInfo).m_numColumns]);
+  createTableLayout(get(info.m_tableInfo).m_cells, tableLayout);
+
+  unsigned cell = 0;
   unsigned para = 0;
   unsigned offset = 1;
-  for (unsigned cell = 0; cell != get(info.m_tableInfo).m_numColumns * 
get(info.m_tableInfo).m_numRows; ++cell)
+  for (unsigned row = 0; row != tableLayout.shape()[0]; ++row)
   {
-assert(row  get(info.m_tableInfo).m_numRows);
-assert(column  get(info.m_tableInfo).m_numColumns);
-
-if (column == 0)
-  m_painter-openTableRow(librevenge::RVNGPropertyList());
+m_painter-openTableRow(librevenge::RVNGPropertyList());
 
-librevenge::RVNGPropertyList cellProps;
-cellProps.insert(librevenge:column, int(column));
-cellProps.insert(librevenge:row, int(row));
-m_painter-openTableCell(cellProps);
-
-if (cell  tableCellTextEnds.size())
+for (unsigned col = 0; col != tableLayout.shape()[1]; ++col)
 {
-  const unsigned cellEnd = tableCellTextEnds[cell];
-  while ((para  text.size())  (offset  cellEnd))
+  librevenge::RVNGPropertyList cellProps;
+  

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

2014-12-28 Thread Markus Mohrhard
 sal/rtl/bootstrap.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 4c9cf98819037fdb70cbe68f678f6498d5646736
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Dec 28 21:50:44 2014 +0100

try to fix windows build

diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx
index 775d327..0d86131 100644
--- a/sal/rtl/bootstrap.cxx
+++ b/sal/rtl/bootstrap.cxx
@@ -17,6 +17,8 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#define NOMINMAX
+
 #include config_features.h
 #include config_folders.h
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 45618] Implement 3d slideshow transition framework also for windows

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45618

--- Comment #13 from Gerry gerry.trep...@googlemail.com ---
Hi all, I experience the same problem as described by pieter: 3D slideshow
transitions are absent in 4.4 RC1 on Windows. They are not in the list of
transitions, at all. Activating all OpenGL/CL related settings in LO options
did not help with regard to 3D transitions on Windows.

Thanks in advance.

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


Crash test update

2014-12-28 Thread Crashtest VM
New crashtest update available at 
http://dev-builds.libreoffice.org/crashtest/4d1f2de857f6e9e43a54d74a5deacff5279e8714/


exportCrashes.csv
Description: Binary data


importCrash.csv
Description: Binary data


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


Re: Building LO fails with autogen

2014-12-28 Thread Jens Tröger
I think this thread is getting off-topic now.  To discuss I have opened
a thread at the LO forum but without traction thus far:

  http://en.libreofficeforum.org/node/9850

Cheers.


On Sun, Dec 28, 2014 at 12:43:28PM +0100, Riccardo Magliocchetti wrote:
 Have you tried profiling? BTW if you use 4.3 or newer you may want to 
 give a try to pylokit, a python wrapper for LibreOfficeKit.
 
  https://github.com/xrmx/pylokit
 
 thanks,
 riccardo

-- 
Jens Tröger
http://savage.light-speed.de/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Building LO fails with autogen

2014-12-28 Thread Will Entriken
UNSUBSCRIBE

On Fri, Dec 26, 2014 at 9:21 AM, Jens Tröger jens.troe...@light-speed.de
wrote:

 Thank you, Miklos,

   Using
  
 autoconf (GNU Autoconf) 2.69
 automake (GNU automake) 1.14.1
  
   still gives that same error
  
 configure.ac:111: error: possibly undefined macro: AC_MSG_CHECKING
   If this token and others are legitimate, please use
 m4_pattern_allow.
   See the Autoconf documentation.
  
   Should I use 1.13.4 exactly?
 
  autoconf-2.69 works fine for me. Note that we do not require automake
  for building LO (when patching externals, we intentionally patch
  Makefile.in files as well when patching Makefile.ams to avoid this
  dependency). Maybe check with your distro what can be the problem?
 
  AC_MSG_CHECKING is probably used in every configure.ac, in LO's case,
  it's used 300+ times, so it's not a corner-case. ;-)

 Here is my autoconf:

   libreoffice-4.3.5.2  autoconf --version
   autoconf (GNU Autoconf) 2.69
   Copyright (C) 2012 Free Software Foundation, Inc.

 The source tree is the official tar unpacked, fresh and virgin without
 any modifications.  Here's what happens:

   libreoffice-4.3.5.2  ./autogen.sh --without-java --enable-headless
 --with-theme=no
   configure.ac:111: error: possibly undefined macro: AC_MSG_CHECKING
 If this token and others are legitimate, please use
 m4_pattern_allow.
 See the Autoconf documentation.
   configure.ac:117: error: possibly undefined macro: AC_MSG_RESULT
   configure.ac:217: error: possibly undefined macro: AC_DEFINE
   configure.ac:287: error: possibly undefined macro: AC_MSG_WARN
   configure.ac:3426: error: possibly undefined macro: AC_LANG_SOURCE
   configure.ac:3928: error: possibly undefined macro: AC_LANG_PUSH
   configure.ac:3941: error: possibly undefined macro: AC_LANG_POP
   configure.ac:8175: error: possibly undefined macro: AC_RUN_IFELSE
   Failed to run autoconf at ./autogen.sh line 157.

 This is on a Gentoo Linux system.  I am not sure what that error message
 means, and looking up m4_pattern_allow I found this note:

   http://lists.gnu.org/archive/html/autoconf/2010-01/msg00050.html

 Do you know what's happening here?
 Jens

 --
 Jens Tröger
 http://savage.light-speed.de/
 ___
 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


Re: Crash test update

2014-12-28 Thread Will Entriken
UNSUBSCRIBE

On Sun, Dec 28, 2014 at 5:18 PM, Crashtest VM 
crashtest.libreoff...@gmail.com wrote:

 New crashtest update available at
 http://dev-builds.libreoffice.org/crashtest/4d1f2de857f6e9e43a54d74a5deacff5279e8714/

 ___
 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


Re: [Bug 45618] Implement 3d slideshow transition framework also for windows

2014-12-28 Thread Will Entriken
UNSUBSCRIBE

On Sun, Dec 28, 2014 at 5:09 PM, bugzilla-dae...@freedesktop.org wrote:

   *Comment # 13 https://bugs.freedesktop.org/show_bug.cgi?id=45618#c13
 on bug 45618 https://bugs.freedesktop.org/show_bug.cgi?id=45618 from
 Gerry gerry.trep...@googlemail.com *

 Hi all, I experience the same problem as described by pieter: 3D slideshow
 transitions are absent in 4.4 RC1 on Windows. They are not in the list of
 transitions, at all. Activating all OpenGL/CL related settings in LO options
 did not help with regard to 3D transitions on Windows.

 Thanks in advance.

  --
 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 mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: libreoffice.sln wrong file ..don't know wrong. help please

2014-12-28 Thread Will Entriken
UNSUBSCRIBE

On Fri, Dec 26, 2014 at 3:00 AM, 김성민 dalbong...@naver.com wrote:



 Where I do not know wrong. please help me

 I hope you and tell where to be good fix









 ___
 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


Re: remove_if for nothing in dbdata.cxx (sc module)

2014-12-28 Thread Will Entriken
UNSUBSCRIBE

On Sun, Dec 28, 2014 at 11:08 AM, julien2412 serval2...@yahoo.fr wrote:

 Hello,

 I noticed this part:
 889 void ScDBCollection::DeleteOnTab( SCTAB nTab )
 890 {
 ...
 908 remove_if(maAnonDBs.begin(), maAnonDBs.end(), func);
 909 }

 remove_if is useless since there's no erase.
 I thought about adding an erase by taking example of this
 http://en.wikipedia.org/wiki/Erase-remove_idiom
 but AnonDBs doesn't have an ad hoc erase method (like NamedDBs, but this
 one
 has a simple erase method), see
 http://opengrok.libreoffice.org/xref/core/sc/inc/dbdata.hxx#152

 Should we remove this line? Should we add an ad hoc erase method to
 implement erase-remove idiom in NamedDBs + AnonDBs?

 Any thoughts?

 Julien



 --
 View this message in context:
 http://nabble.documentfoundation.org/remove-if-for-nothing-in-dbdata-cxx-sc-module-tp4134249.html
 Sent from the Dev mailing list archive at Nabble.com.
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice

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


Re: LibreOffice Gerrit News for core on 2014-12-28

2014-12-28 Thread Will Entriken
UNSUBSCRIBE

On Sun, Dec 28, 2014 at 1:00 AM, ger...@libreoffice.org wrote:

 Moin!

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

  First time contributors doing great things! 
 + fdo#87706 correct object/image styles dialog title and tooltip
   in https://gerrit.libreoffice.org/13673 from Yousuf Philips
   about module sd
 + solenv-filelists.pm: fix can't call method `mode' on an undefined
 value
   in https://gerrit.libreoffice.org/13669 from Douglas Mencken
   about module solenv
 + sc-calcoptionsdlg.hxx: add definition guards (HAVE_FEATURE_OPENCL)
   in https://gerrit.libreoffice.org/13667 from Douglas Mencken
   about module sc
  End of freshness 

 + Fixup --without-x build
   in https://gerrit.libreoffice.org/13452 from Riccardo Magliocchetti
   about module build, desktop, include, postprocess, svx, sw, vcl
 + fdo#69552 [part 1] make calc functions CEILING comply with ODF1.2
   in https://gerrit.libreoffice.org/7088 from Winfried Donkers
   about module formula, include, sc


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

 + license: fix typo: “Huerta Tipografia” → “Huerta Tipográfica”
   in https://gerrit.libreoffice.org/13668 from Adolfo Jayme Barrientos


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

 + gbuild-to-ide fixes
   in https://gerrit.libreoffice.org/11754 from Peter Foley
 + fdo#58194 - export DOCX Automatic indent as firstLine indent
   in https://gerrit.libreoffice.org/10425 from Joren De Cuyper
 + fdo#82335.
   in https://gerrit.libreoffice.org/11555 from Sudarshan Rao
 + fdo#39625 Make existing CppUnittests work
   in https://gerrit.libreoffice.org/11605 from Tobias Madl
 + fdo#86606 removal of direct formatting options from the context menu
   in https://gerrit.libreoffice.org/13196 from Yousuf Philips
 + fdo#86784 make soffice commandline in juh Bootstrap.bootstrap() configura
   in https://gerrit.libreoffice.org/13290 from Christoph Lutz
 + Replace image-sort.pl with image-sort.py
   in https://gerrit.libreoffice.org/13124 from Marcos Paulo de Souza
 + start detection of kf5 stuff in configure.ac
   in https://gerrit.libreoffice.org/13079 from Jonathan Riddell
 + fdo#65209 attempt to enable daylight saving time
   in https://gerrit.libreoffice.org/11441 from Lim Jing
 + Move more places to boost::signal2 in math
   in https://gerrit.libreoffice.org/13065 from Marcos Paulo de Souza
 + more breeze icons
   in https://gerrit.libreoffice.org/13058 from Jonathan Riddell
 + vcl: change Timer and Idle to use boost's Signal2
   in https://gerrit.libreoffice.org/12528 from Chris Sherlock
 + Removed useless includes in accessibility/ tree
   in https://gerrit.libreoffice.org/12948 from Andrea Gelmini
 + Perftest for loading autocorrect dictionaries, related fdo#79761
   in https://gerrit.libreoffice.org/11296 from Matúš Kukan
 + HIG-ification of GSoC Color Picker dialog
   in https://gerrit.libreoffice.org/11494 from Olivier Hallot
 + WIP: fdo#43090: Add an option to disable autoclose brackets
   in https://gerrit.libreoffice.org/12024 from Marcos Paulo de Souza


 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

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


Re: Build fails with master sources

2014-12-28 Thread Will Entriken
UNSUBSCRIBE

On Sat, Dec 27, 2014 at 4:51 AM, Olivier Hallot 
olivier.hal...@libreoffice.org wrote:

 Same issue here.

 Olivier

 On 22/12/2014 12:56, julien2412 wrote:
  Hello,
 
  On pc Debian x86-64 with master sources updated today
  (48d0ca8560d10a56a7280fad3a631985b02a56b9), I've got an error when
 building
  (see attachment).
  console_logs.txt
  http://nabble.documentfoundation.org/file/n4133670/console_logs.txt
  I runned make clean  make postprocess.clean  ./g pull -r  make
 
  Here's my autogen.input:
  --with-system-odbc
  --enable-ext-barcode
  --enable-ext-diagram
  --enable-ext-hunart
  --enable-ext-nlpsolver
  --enable-ext-ct2n
  --enable-ext-numbertext
  --enable-postgresql-sdbc
  --enable-ext-typo
  --enable-ext-validator
  --enable-ext-watch-window
  --enable-ext-wiki-publisher
  --enable-dbus
  --enable-graphite
  --enable-werror
  --enable-debug
  --enable-dbgutil
  --enable-crashdump
  --enable-dependency-tracking
  --enable-online-update
  --enable-extra-sample
  --enable-extra-template
  --enable-extra-gallery
  --enable-python=internal
  --without-system-mariadb
  --enable-ext-mariadb-connector
  --enable-bundle-mariadb
  --enable-avahi
  --enable-eot
  --enable-odk
  --with-lang=en-US it fr de es pt ru cs hu pl da sv el sk is nl
  #--with-lang=ALL
  --with-myspell-dicts
  --enable-evolution2
  #--with-help
 
  gcc (Debian 4.9.1-19) 4.9.1
  ldd (Debian GLIBC 2.19-13) 2.19
 
  Any idea how to fix this?
 
  Julien
 
 
 
 
  --
  View this message in context:
 http://nabble.documentfoundation.org/Build-fails-with-master-sources-tp4133670.html
  Sent from the Dev mailing list archive at Nabble.com.
  ___
  LibreOffice mailing list
  LibreOffice@lists.freedesktop.org
  http://lists.freedesktop.org/mailman/listinfo/libreoffice
 

 --
 Olivier Hallot
 Comunidade LibreOffice
 http://ask.libreoffice.org/pt-br
 ___
 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


Re: [Bug 83795] Add UI for Wearable devices to the Impress Remote for Android

2014-12-28 Thread Will Entriken
UNSUBSCRIBE

On Sat, Dec 27, 2014 at 8:27 AM, bugzilla-dae...@freedesktop.org wrote:

   *Comment # 11 https://bugs.freedesktop.org/show_bug.cgi?id=83795#c11
 on bug 83795 https://bugs.freedesktop.org/show_bug.cgi?id=83795 from
 Efstratios Kamadanis kam.stra...@gmail.com *

 Update: https://gerrit.libreoffice.org/#/c/13672/
 -Overhauled the full screen UI.
 -Simplified the wearable notifications.
 -Improved the communication between mobile and wear.
 -Optimized code.

 I'm going to wait for feedback for further changes.

  --
 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 mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] mso-dumper.git: msodumper/formula.py

2014-12-28 Thread Markus Mohrhard
 msodumper/formula.py |   18 ++
 1 file changed, 18 insertions(+)

New commits:
commit 6319e21448fb657e8c0fb628fd8d218e76b689b5
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Dec 29 04:06:20 2014 +0100

add a few more functions

diff --git a/msodumper/formula.py b/msodumper/formula.py
index 4977f8d..111c61a 100644
--- a/msodumper/formula.py
+++ b/msodumper/formula.py
@@ -175,6 +175,13 @@ class PtgExp(PtgBase):
 def getText (self):
 return (ptgexp: row=%d, col=%d)%(self.row, self.col)
 
+class PtgAdd(PtgBase):
+def parseBytes (self):
+pass
+
+def getText (self):
+return (add)
+
 class PtgMissArg(PtgBase):
 def parseBytes (self):
 pass
@@ -190,6 +197,15 @@ class PtgMemFunc(PtgBase):
 def getText (self):
 return (mem func: type=%s 
size=%d)%(PtgDataType.getText(self.dataType), self.length)
 
+class PtgAreaN(PtgBase):
+def parseBytes(self):
+self.dataType = getPtgDataType(self.opcode)
+bytes = self.strm.readBytes(8)
+self.cellRange = parseCellRangeAddress(bytes)
+
+def getText (self):
+return (cell range:  + self.cellRange.getName() + )
+
 class PtgStr(PtgBase):
 def parseBytes (self):
 length = self.strm.readUnsignedInt(1)
@@ -693,6 +709,7 @@ class PtgRefN(PtgBase):
 
 _tokenMap = {
 0x01: PtgExp,
+0x03: PtgAdd,
 0x10: PtgUnion,
 0x15: PtgParen,
 0x16: PtgMissArg,
@@ -702,6 +719,7 @@ _tokenMap = {
 0x22: PtgFuncVar,
 0x24: PtgRef,
 0x29: PtgMemFunc,
+0x2D: PtgAreaN,
 0x3B: _Area3d,
 0x40: PtgArray,
 0x43: PtgName,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] mso-dumper.git: msodumper/formula.py

2014-12-28 Thread Markus Mohrhard
 msodumper/formula.py |9 +
 1 file changed, 9 insertions(+)

New commits:
commit 258cbcd0d394c83dd66e1887b414d59915d3db74
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Dec 29 04:16:02 2014 +0100

add another function

diff --git a/msodumper/formula.py b/msodumper/formula.py
index 111c61a..8ecece5 100644
--- a/msodumper/formula.py
+++ b/msodumper/formula.py
@@ -249,6 +249,14 @@ class PtgRef(PtgBase):
 def getText (self):
 return (ref: row=%d,col=%d,rowRelative=%d,colRelative=%d)%(self.row, 
self.col.col, self.col.rowRelative, self.col.colRelative)
 
+class PtgArea(PtgBase):
+def parseBytes (self):
+bytes = self.strm.readBytes(8)
+self.cellRange = parseCellRangeAddress(bytes)
+
+def getText (self):
+return (cell range:  + self.cellRange.getName() + )
+
 class PtgNameX(PtgBase):
 def parseBytes (self):
 self.xti = self.strm.readUnsignedInt(2)
@@ -718,6 +726,7 @@ _tokenMap = {
 0x1E: PtgInt,
 0x22: PtgFuncVar,
 0x24: PtgRef,
+0x25: PtgArea,
 0x29: PtgMemFunc,
 0x2D: PtgAreaN,
 0x3B: _Area3d,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-28 Thread Markus Mohrhard
 sc/qa/unit/data/xls/shared-formula/relative-refs.xls |binary
 sc/qa/unit/subsequent_filters-test.cxx   |   23 +++
 sc/source/filter/excel/excform8.cxx  |7 -
 3 files changed, 28 insertions(+), 2 deletions(-)

New commits:
commit 0c24686c3970bac7e9a4e214fccfdfffd742149e
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Mon Dec 29 06:23:53 2014 +0100

add test for fdo#80091

Change-Id: I8b62c0980275537adea7a4de44d4fe86995da92f

diff --git a/sc/qa/unit/data/xls/shared-formula/relative-refs.xls 
b/sc/qa/unit/data/xls/shared-formula/relative-refs.xls
new file mode 100644
index 000..88678b4
Binary files /dev/null and 
b/sc/qa/unit/data/xls/shared-formula/relative-refs.xls differ
diff --git a/sc/qa/unit/subsequent_filters-test.cxx 
b/sc/qa/unit/subsequent_filters-test.cxx
index 2ba0050..529486d 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -174,6 +174,7 @@ public:
 void testSharedFormulaWrappedRefsXLS();
 void testSharedFormulaBIFF5();
 void testSharedFormulaXLSB();
+void testSharedFormulaXLS();
 void testExternalRefCacheXLSX();
 void testExternalRefCacheODS();
 void testHybridSharedStringODS();
@@ -257,6 +258,7 @@ public:
 CPPUNIT_TEST(testSharedFormulaWrappedRefsXLS);
 CPPUNIT_TEST(testSharedFormulaBIFF5);
 CPPUNIT_TEST(testSharedFormulaXLSB);
+CPPUNIT_TEST(testSharedFormulaXLS);
 CPPUNIT_TEST(testExternalRefCacheXLSX);
 CPPUNIT_TEST(testExternalRefCacheODS);
 CPPUNIT_TEST(testHybridSharedStringODS);
@@ -2579,6 +2581,27 @@ void ScFiltersTest::testSharedFormulaXLSB()
 xDocSh-DoClose();
 }
 
+void ScFiltersTest::testSharedFormulaXLS()
+{
+ScDocShellRef xDocSh = loadDoc(shared-formula/relative-refs., XLS);
+CPPUNIT_ASSERT(xDocSh.Is());
+ScDocument rDoc = xDocSh-GetDocument();
+rDoc.CalcAll();
+
+// A1:A30 should be all formulas, and they should belong to the same group.
+const ScFormulaCell* pFC = rDoc.GetFormulaCell(ScAddress(0,1,0));
+CPPUNIT_ASSERT(pFC);
+CPPUNIT_ASSERT_EQUAL(static_castSCROW(1), pFC-GetSharedTopRow());
+CPPUNIT_ASSERT_EQUAL(static_castSCROW(29), pFC-GetSharedLength());
+
+for(SCROW nRow = 0; nRow  30; ++nRow)
+{
+ASSERT_DOUBLES_EQUAL(double(nRow+1), rDoc.GetValue(0, nRow, 0));
+}
+
+xDocSh-DoClose();
+}
+
 void ScFiltersTest::testExternalRefCacheXLSX()
 {
 ScDocShellRef xDocSh = loadDoc(external-refs., XLSX);
commit 16bfddca6187a426523bbe187db4506a34b5511c
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Mon Dec 29 06:01:27 2014 +0100

handle relative refs correctly in xls import, fdo#80091

Change-Id: Ia70f96e1d31e71c56f03c828be0a4e49fff4b198

diff --git a/sc/source/filter/excel/excform8.cxx 
b/sc/source/filter/excel/excform8.cxx
index f206804..042d79b 100644
--- a/sc/source/filter/excel/excform8.cxx
+++ b/sc/source/filter/excel/excform8.cxx
@@ -631,9 +631,12 @@ ConvErr ExcelToSc8::Convert( const ScTokenArray* 
rpTokArray, XclImpStream aIn,
 ExcRelToScRel8( nRowFirst, nColFirst, aCRD.Ref1, bRNorSF );
 ExcRelToScRel8( nRowLast, nColLast, aCRD.Ref2, bRNorSF );
 
-if( IsComplColRange( nColFirst, nColLast ) )
+bool bColRel = aCRD.Ref1.IsColRel() || aCRD.Ref2.IsColRel();
+bool bRowRel = aCRD.Ref1.IsRowRel() || aCRD.Ref2.IsRowRel();
+
+if( !bColRel  IsComplColRange( nColFirst, nColLast ) )
 SetComplCol( aCRD );
-else if( IsComplRowRange( nRowFirst, nRowLast ) )
+else if( !bRowRel  IsComplRowRange( nRowFirst, nRowLast ) )
 SetComplRow( aCRD );
 
 aStack  aPool.Store( aCRD );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.2' - sc/source

2014-12-28 Thread Markus Mohrhard
 sc/source/filter/excel/excform8.cxx |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 1a81d22a320319f57be7ac61058997fa61ad
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Mon Dec 29 06:01:27 2014 +0100

handle relative refs correctly in xls import, fdo#80091

Change-Id: Ia70f96e1d31e71c56f03c828be0a4e49fff4b198

diff --git a/sc/source/filter/excel/excform8.cxx 
b/sc/source/filter/excel/excform8.cxx
index f2c2938..d283616 100644
--- a/sc/source/filter/excel/excform8.cxx
+++ b/sc/source/filter/excel/excform8.cxx
@@ -611,9 +611,12 @@ ConvErr ExcelToSc8::Convert( const ScTokenArray* 
rpTokArray, XclImpStream aIn,
 ExcRelToScRel8( nRowFirst, nColFirst, aCRD.Ref1, bRNorSF );
 ExcRelToScRel8( nRowLast, nColLast, aCRD.Ref2, bRNorSF );
 
-if( IsComplColRange( nColFirst, nColLast ) )
+bool bColRel = aCRD.Ref1.IsColRel() || aCRD.Ref2.IsColRel();
+bool bRowRel = aCRD.Ref1.IsRowRel() || aCRD.Ref2.IsRowRel();
+
+if( !bColRel  IsComplColRange( nColFirst, nColLast ) )
 SetComplCol( aCRD );
-else if( IsComplRowRange( nRowFirst, nRowLast ) )
+else if( !bRowRel  IsComplRowRange( nRowFirst, nRowLast ) )
 SetComplRow( aCRD );
 
 aStack  aPool.Store( aCRD );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] mso-dumper.git: msodumper/formula.py

2014-12-28 Thread Markus Mohrhard
 msodumper/formula.py |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 6ad04a4ce0d3024e9afc53b9351093e3b4ae366d
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Dec 29 06:39:45 2014 +0100

improve formula support

diff --git a/msodumper/formula.py b/msodumper/formula.py
index 8ecece5..4827295 100644
--- a/msodumper/formula.py
+++ b/msodumper/formula.py
@@ -221,6 +221,9 @@ class PtgAtt(PtgBase):
 # PtgAttSemi: volatile
 self.attName = 'volatile'
 self.strm.readBytes(2) # ignore bytes
+elif attType == 0x10:
+self.attName = 'sum'
+self.strm.readBytes(2) # ignore bytes
 else:
 raise FormulaParserError(unknown attribute token type 
(0x%2.2X)%attType)
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


LibreOffice Gerrit News for core on 2014-12-29

2014-12-28 Thread gerrit
Moin!

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

 First time contributors doing great things! 
+ fdo#85182 : default focus on folder rather than filename
  in https://gerrit.libreoffice.org/13685 from Szymon Kłos
  about module fpicker
 End of freshness 

+ Really remove events
  in https://gerrit.libreoffice.org/13681 from Julien Nabet
  about module comphelper, sc
+ check size before looking into the string
  in https://gerrit.libreoffice.org/13686 from Markus Mohrhard
  about module vcl


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

+ fdo#83565 addition of wrap left and wrap right to context menu
  in https://gerrit.libreoffice.org/13677 from Yousuf Philips
+ fdo#84909 moved presentation features to standard toolbar
  in https://gerrit.libreoffice.org/13678 from Yousuf Philips


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

+ gbuild-to-ide fixes
  in https://gerrit.libreoffice.org/11754 from Peter Foley
+ fdo#58194 - export DOCX Automatic indent as firstLine indent
  in https://gerrit.libreoffice.org/10425 from Joren De Cuyper
+ fdo#82335.
  in https://gerrit.libreoffice.org/11555 from Sudarshan Rao
+ fdo#39625 Make existing CppUnittests work
  in https://gerrit.libreoffice.org/11605 from Tobias Madl
+ fdo#86606 removal of direct formatting options from the context menu
  in https://gerrit.libreoffice.org/13196 from Yousuf Philips
+ fdo#86784 make soffice commandline in juh Bootstrap.bootstrap() configura
  in https://gerrit.libreoffice.org/13290 from Christoph Lutz
+ Replace image-sort.pl with image-sort.py
  in https://gerrit.libreoffice.org/13124 from Marcos Paulo de Souza
+ start detection of kf5 stuff in configure.ac
  in https://gerrit.libreoffice.org/13079 from Jonathan Riddell
+ fdo#65209 attempt to enable daylight saving time
  in https://gerrit.libreoffice.org/11441 from Lim Jing
+ Move more places to boost::signal2 in math
  in https://gerrit.libreoffice.org/13065 from Marcos Paulo de Souza
+ more breeze icons
  in https://gerrit.libreoffice.org/13058 from Jonathan Riddell
+ vcl: change Timer and Idle to use boost's Signal2
  in https://gerrit.libreoffice.org/12528 from Chris Sherlock
+ Removed useless includes in accessibility/ tree
  in https://gerrit.libreoffice.org/12948 from Andrea Gelmini
+ Perftest for loading autocorrect dictionaries, related fdo#79761
  in https://gerrit.libreoffice.org/11296 from Matúš Kukan
+ HIG-ification of GSoC Color Picker dialog
  in https://gerrit.libreoffice.org/11494 from Olivier Hallot
+ WIP: fdo#43090: Add an option to disable autoclose brackets
  in https://gerrit.libreoffice.org/12024 from Marcos Paulo de Souza


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


[Libreoffice-bugs] [Bug 87757] Unable to launch after installation

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87757

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
1) Did you download LO from official website, ie
http://www.libreoffice.org/download/libreoffice-fresh/?
2) Did you try to rename your LO directory profile (see
https://wiki.documentfoundation.org/UserProfile#Windows)?

If yes for both, try this raw method:
- uninstall any LibreOffice/OpenOffice/Apache OpenOffice version
- remove any remnants on Program Files
- rename or remove any LO directory profile 
- clean your Windows registry with a free tool (eg ccleaner)
- install again LibreOffice

-- 
You are receiving this mail because:
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 87760] CRASH when drawing above hidden text in table

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87760

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

   What|Removed |Added

   Keywords||want-backtrace
 CC||serval2...@yahoo.fr

--- Comment #6 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with master sources updated yesterday or with 4.3 sources
updated some days ago, I don't reproduce this even if I begin rectangle at top
left of first cell and end it at bottom right of the last cell.

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


[Libreoffice-bugs] [Bug 87777] fatal error

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=8

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

   What|Removed |Added

 Attachment #111411|text/plain  |image/png
  mime type||

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


[Libreoffice-bugs] [Bug 87777] fatal error

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=8

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
On which precise LO version are you? Last one of 4.2 branch is 4.2.8
Do you reproduce this with last stable LO version 4.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 87781] Problem with LibreOfice 4.1 writer

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87781

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

   What|Removed |Added

Summary|Problem with LibreOfiic 4.1 |Problem with LibreOfice 4.1
   |writer  |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 87781] Problem with LibreOfice 4.1 writer

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87781

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||serval2...@yahoo.fr
 Resolution|--- |INVALID

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
Please reopen once you had given details.

-- 
You are receiving this mail because:
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 87763] Problem with Impress View Presentation Mode

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87763

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

   What|Removed |Added

 Attachment #111393|text/plain  |application/zip
  mime type||

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


[Libreoffice-bugs] [Bug 87698] open base report gives error

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87698

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||serval2...@yahoo.fr
 Resolution|--- |NOTOURBUG

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
Following Robert's comment, I put this tracker to NOTOURBUG.

-- 
You are receiving this mail because:
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 84543] EDITING: Fields editing impossible (read only) / hard (summary: comment 6)

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84543

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #9 from Matthew Francis fdb...@neosheffield.co.uk ---
Adding a Cc: to caol...@redhat.com as the committer for the AOO merge mentioned
above

Could you possibly take a look at this? 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 87425] FORMATTING: Image captions no longer make image relative size, so images don't scale with frame

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87425

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #5 from Matthew Francis fdb...@neosheffield.co.uk ---
Adding a Cc: to caol...@redhat.com as the committer for the AOO merge mentioned
above (235c790fdb04c27487de4510a0d51323f5442e70)

Could you possibly take a look at this? 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 87783] New: Unifying wrap labels

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87783

Bug ID: 87783
   Summary: Unifying wrap labels
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org
Blocks: 87740

When you look at the labels for the wrap features between the toolbar button,
context menu and image properties dialog (or the sidebar), they are not
consistent. Here are some examples.

Toolbar: Wrap Off
Context: No Wrap
Dialog: None

Toolbar: Wrap Left
Dialog: Before

Toolbar: Page Wrap
Dialog: Parellel

-- 
You are receiving this mail because:
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 87740] Meta: Image anchor and wrapping bugs and enhancements

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87740

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Depends on||87783

-- 
You are receiving this mail because:
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 85283] FILEOPEN: DOC - Image with white fill color appearing as transparent

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85283

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||vmik...@collabora.co.uk

--- Comment #5 from Matthew Francis fdb...@neosheffield.co.uk ---
Adding a Cc: to vmik...@collabora.co.uk as the committer for the AOO merge
mentioned above (6e61ecd09679a66060f932835622821d39e92f01)

Could you possibly take a look at this? 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 87740] Meta: Image anchor and wrapping bugs and enhancements

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87740

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Depends on||87784

-- 
You are receiving this mail because:
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 86899] Meta: Requests for the addition of uno commands

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86899

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Depends on||87784

-- 
You are receiving this mail because:
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 87784] New: UNO: Contoured wrap command

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87784

Bug ID: 87784
   Summary: UNO: Contoured wrap command
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org
Blocks: 86899, 87740

We presently have 7 uno commands for image wrapping except one that sets it to
parallel (.uno:WrapOn) and enables contour (.uno:WrapContour). MS Word has this
wrapping option called 'Tight' and it would be good to have something similar
which sets these two options at once and is easily selectable.

-- 
You are receiving this mail because:
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 87785] New: Sidebar settings not remembered after reopening

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87785

Bug ID: 87785
   Summary: Sidebar settings not remembered after reopening
   Product: LibreOffice
   Version: 4.4.0.1 rc
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tomas...@gmail.com

1) Hide some of the sidebar buttons (e.g. Gallery, Navigator)
2) Hide the sidebar using the View menu
3) Reopen the sidebar using the View menu. Its layout is reset and the buttons
are visible again -- yet I think the setting should be remembered.

Also, the sidebar doesn’t remember the last active section. When I select e.g.
Styles and formatting, hide the sidebar and show it again, it is set to the
direct formatting tab.

(I know I could use just the sidebar buttons to hide most of it, but for me
it’s better to hide it completely to have more screen space for the document.)

-- 
You are receiving this mail because:
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 66766] MS Publisher 2010 Table not imported

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66766

David Tardon dtar...@redhat.com changed:

   What|Removed |Added

 CC||gjr...@xtra.co.nz

--- Comment #9 from David Tardon dtar...@redhat.com ---
*** Bug 84096 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 84096] trying to open .pub files in Draw

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84096

David Tardon dtar...@redhat.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||dtar...@redhat.com
 Resolution|--- |DUPLICATE

--- Comment #5 from David Tardon dtar...@redhat.com ---


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

-- 
You are receiving this mail because:
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 67145] EDITING: ODBC - Firebird: Could not edit tables

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67145

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

   What|Removed |Added

   See Also||https://issues.apache.org/o
   ||oo/show_bug.cgi?id=112753

-- 
You are receiving this mail because:
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 67144] EDITING: ODBC - Firebird: Could not input Integer-values

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67144

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

   What|Removed |Added

   See Also||https://issues.apache.org/o
   ||oo/show_bug.cgi?id=112753

-- 
You are receiving this mail because:
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 43044] VIEWING: Border line disappears in charts

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43044

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #13 from foss f...@openmailbox.org ---
WORKSFORME

Ubuntu 12.10 and LO Version: 4.4.0.0.beta2
Build ID: 40m0(Build:0)
Locale: en_US

all borders of the chart are bold and identical.

-- 
You are receiving this mail because:
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 87783] Unifying wrap labels

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87783

--- Comment #1 from Jay Philips philip...@hotmail.com ---
Also 'Wrap Through' and 'In Background' should likely be changed to something
more meaningful that people can easily understand like 'Above Text' and 'Behind
Text'.

-- 
You are receiving this mail because:
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 87786] New: Styles and formatting toolbar button doesn't show the whole sidebar

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87786

Bug ID: 87786
   Summary: Styles and formatting toolbar button doesn't show
the whole sidebar
   Product: LibreOffice
   Version: 4.4.0.1 rc
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tomas...@gmail.com

The sidebar is completely closed (using the View menu). When pressing the
Styles and formatting button on the toolbar in this state, a somehow
incomplete sidebar appears: there are none of the 4 buttons (e.g. Gallery,
Navigator…).

Also, it is similar when opening e.g. Gallery from the View menu.

When opening Navigator from the View menu, it shows as a separate window.

I think it would be logical for all of the commands to show a complete sidebar,
with the respective section active.

-- 
You are receiving this mail because:
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 44241] [GUI Installation] extension manager doesn't highlight an newly installed extension.

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44241

--- Comment #5 from foss f...@openmailbox.org ---
OSX 10.10.1 LO ersion: 4.5.0.0.alpha0+
Build ID: 4e1e9eb2fb08fcddf076051501c875ce0766964b
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2014-12-17_08:03:20
Locale: de_

Persisting.

-- 
You are receiving this mail because:
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 84514] Plot options in chart series format are not shown for charts with internal data

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84514

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

   Keywords||bisected
 CC||fdb...@neosheffield.co.uk,
   ||olivier.hallot@documentfoun
   ||dation.org

--- Comment #3 from Matthew Francis fdb...@neosheffield.co.uk ---
The behaviour appears to have changed from the below commit.

Adding Cc: to olivier.hal...@documentfoundation.org. Could you possibly take a
look at this? Thanks


commit 7aa0f418f7ebe3f94062ed52e3234d10687180c8
Author: Olivier Hallot olivier.hal...@edx.srv.br
Date:   Mon Jul 15 00:22:56 2013 -0300

Convert tp_SeriesToAxis.src to tp_SeriesToAxis.ui

Change-Id: Ida1be6cc97e2a965373c8d6dc91c451adf7a
Reviewed-on: https://gerrit.libreoffice.org/4906
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.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 83565] CONTEXT MENU: Add missing “wrap before” and “Wrap after” options

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83565

--- Comment #4 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to master:

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

fdo#83565 addition of wrap left and wrap right to context menu

It will be available in 4.5.0.

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 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 83565] CONTEXT MENU: Add missing “wrap before” and “Wrap after” options

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83565

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|| target:4.5.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 71394] Text box position imported incorrectly after saving as xlsx

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71394

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #8 from foss f...@openmailbox.org ---
OS  All since when I open the test xlsx file the textbox is off in alignment.

To really reproduce, could you please provide a ods speadsheet file which has a
correct textbox. This then can be exported as xlsx to reproduce the faulte
behavior.

Setting to NEEDINFO until the requested information has been provided.

After that please set the bug back to NEW. 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 64741] FILEOPEN: Thunderbird-addressbook doesn't show collected addresses, shows only empty table AddressBook (personal addressbook of TB)

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64741

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|d.ostrov...@gmx.de  |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #18 from foss f...@openmailbox.org ---
Back to new. Bug was assigned for over a year. DavidO if you still want to work
on this, feel free to re-take this bug.

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


[Libreoffice-bugs] [Bug 86349] Meta: Context menu bugs and enhancements

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86349
Bug 86349 depends on bug 83565, which changed state.

Bug 83565 Summary: CONTEXT MENU: Add missing “wrap before” and “Wrap after” 
options
https://bugs.freedesktop.org/show_bug.cgi?id=83565

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |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 83565] CONTEXT MENU: Add missing “wrap before” and “Wrap after” options

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83565

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |philip...@hotmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 87392] FILESAVE: I/O error on file save

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87392

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||lio...@mamane.lu

--- Comment #3 from Matthew Francis fdb...@neosheffield.co.uk ---
Adding Cc: to lio...@mamane.lu as the originator of the above commit
(a43a18edb0023b2a9533e719c8cf3dd2f894dad7)

Based on the commit message, I'm guessing the breakage in this particular file
is due to some unrelated bug which just happened to be exposed by your commit,
but is there any chance you could take a look at this?

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 87777] fatal error

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=8

--- Comment #2 from Doug Edmunds dougedmu...@gmail.com ---
Created attachment 111419
  -- https://bugs.freedesktop.org/attachment.cgi?id=111419action=edit
popup i/o error msg  v 4.3.5

I removed v4.2.8 and installed 4.3.5.  When I attempted to open the file, I now
get a general i/o error popup. Unable to open the file 

To check that the problem is not in the pptx file, I downloaded the
 Microsoft Powerpoint Viewer.  The file opens
 fine with that program, and the slide-show works as expected.

-- 
You are receiving this mail because:
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 85214] libreoffice fails to build properly when /bin/sh is not bash

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85214

--- Comment #14 from Rémi Cardona r...@gentoo.org ---
(In reply to Julien Nabet from comment #5)
 SHELL=/bin/dash) but I don't get the lines:
 hecking for fc-match... /usr/bin/fc-match
 checking font mapping for 'Calibri'

Autoconf checks if /bin/sh is POSIXy enough before continuing. If it isn't,
configure automatically reruns itself with /bin/bash. Debian devs wanted to
make dash fully POSIX-compliant but this caused too many headaches[1], so they
disabled the one feature Autoconf checks to detect shells' POSIX-ness: LINENO
support. Bottom line, if you want to run ./configure with dash you need to set
the following environment variable: CONFIG_SHELL=/bin/dash.

(In reply to Evan Langlois from comment #4)
 checking font mapping for 'Calibri'... ./configure: 38799: shift: can't
 shift that many

I hit the same issue. Patch coming up.

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582952

-- 
You are receiving this mail because:
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 87777] fatal error

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=8

--- Comment #3 from Doug Edmunds dougedmu...@gmail.com ---
I removed v4.2.8 and installed 4.3.5.  When I attempted to open the file, I now
get a general i/o error popup. Unable to open the file 

To check that the problem is not in the pptx file, I downloaded the
 Microsoft Powerpoint Viewer.  The file opens
 fine with that program, and the slide-show works as expected.

-- 
You are receiving this mail because:
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 85214] libreoffice fails to build properly when /bin/sh is not bash

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85214

--- Comment #15 from Rémi Cardona r...@gentoo.org ---
Created attachment 111420
  -- https://bugs.freedesktop.org/attachment.cgi?id=111420action=edit
Remove bashisms from configure.ac

-- 
You are receiving this mail because:
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 87760] CRASH when drawing above hidden text in table

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87760

--- Comment #7 from Mike Kaganski mikekagan...@hotmail.com ---
Created attachment 111421
  -- https://bugs.freedesktop.org/attachment.cgi?id=111421action=edit
Screencast (Windows)

This screencast is to clarify how to reproduce this bug

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


[Libreoffice-bugs] [Bug 87786] Showing Styles and formatting when side bar is completely closed, doesn't show the whole sidebar

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87786

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl
Summary|Styles and formatting |Showing Styles and
   |toolbar button doesn't show |formatting when side bar
   |the whole sidebar   |is completely closed,
   ||doesn't show the whole
   ||sidebar
 Ever confirmed|0   |1

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

thanks for reporting.

I confirm that when opening Styles and Formatting and Gallery,   a somehow
incomplete sidebar appears: there are none of the 4 buttons 

set to new.

Wrt the Navigatorthe choice is made to have this one also open separate, to
allow use of Navigator and other panels (e.g. Styles and Formatting) at the
same time.

Cor

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


[Libreoffice-bugs] [Bug 87784] UNO: Add contoured wrap command that combines .uno:WrapOn) and .uno:WrapContour

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87784

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

   What|Removed |Added

 CC||c...@nouenoff.nl
Summary|UNO: Contoured wrap command |UNO: Add contoured wrap
   ||command that combines
   ||.uno:WrapOn) and
   ||.uno:WrapContour

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
nice one!

-- 
You are receiving this mail because:
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 87787] New: Improve cell border assignment

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87787

Bug ID: 87787
   Summary: Improve cell border assignment
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

Not sure if this should be considered a bug or an enhancement, bug setting cell
borders in writer and calc are a major pain because cells that share the same
border visually can have different border settings and these border dont play
nicely together.

For writer, if you insert a table of 3x3, and in cell B2 you set the borders to
none, the left and bottom borders show as transparent but not the top and
right. I'm assuming the way the cells are being draw to make up the table maybe
causing it to look like this, as unfortunately there isnt a means for me to
open up the cell properties and see exactly what is going on. In order to
achieve what is intended, a user will likely have to jump through many hoops to
get the way it should be.

For calc, select a number of cells (e.g. C7:F16), and set their inner and outer
borders, then select one of the cells (e.g. E12) in the changed cells and set
its borders to none. You wont visually see a difference because the cells
around it all have their borders on. So in order to achieve what is intended, a
user will have to go to each of the 4 cells around it, open up the formatting
cell dialog and disable the related sides.

So the simple solution is that when a cell border is set or unset in any manner
(border width, style, color, etc), that its neighboring cells must also be set
or unset in the same way.

-- 
You are receiving this mail because:
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 64741] FILEOPEN: Thunderbird-addressbook doesn't show collected addresses, shows only empty table AddressBook (personal addressbook of TB)

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64741

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #19 from rob...@familiegrosskopf.de ---
Let us close this bug.
The original bug was about empty Adress_Book. And this bug has been fixed.

I will reopen a new bug for the details in
https://bugs.freedesktop.org/show_bug.cgi?id=64741#c15.

-- 
You are receiving this mail because:
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 87782] Problem with pagination in LibreOffice 4.3 Writer

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87782

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

   What|Removed |Added

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

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

Sorry to read of your problems..

(In reply to Lee Harding from comment #0)

 and am wondering if this causes problems with 4.3. HOW CAN THIS BE FIXED? 

We really need a sample document that shows the problem.
It would be my personal bet that it's rather a change in the functionality
(Format  Page  .. Footer (or Header) Same content for first page) that may
cause this. But difficult to see without a sample document.

Can you provide one?
Cheers,
Cor

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


[Libreoffice-bugs] [Bug 87781] Problem with LibreOfice 4.1 writer

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87781

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

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #2 from Cor Nouws c...@nouenoff.nl ---
(I guess the report is landed in bug 87782 )

-- 
You are receiving this mail because:
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 87785] Sidebar settings not remembered after reopening

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87785

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

   What|Removed |Added

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

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Thanks, can confirm this

Strangely the query
https://bugs.freedesktop.org/buglist.cgi?list_id=509160product=LibreOfficequery_format=advancedshort_desc=side%20bar%20remembershort_desc_type=allwordssubstr
 doesn't show a similar report..

Maybe it's in here https://bugs.freedesktop.org/show_bug.cgi?id=65138 but hard
to tell without looking at them all ..

-- 
You are receiving this mail because:
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 65138] [META] Sidebar feature related issues

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65138

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

   What|Removed |Added

 Depends on||87785

--- Comment #15 from Cor Nouws c...@nouenoff.nl ---
add Bug 87785 - Sidebar settings not remembered after reopening (edit)

-- 
You are receiving this mail because:
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 87785] Sidebar settings not remembered after reopening

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87785

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

   What|Removed |Added

 Blocks||65138

-- 
You are receiving this mail because:
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 65138] [META] Sidebar feature related issues

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65138

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

   What|Removed |Added

 Depends on||87786

--- Comment #16 from Cor Nouws c...@nouenoff.nl ---
add Bug 87786 - Showing Styles and formatting when side bar is completely
closed, doesn't show the whole sidebar

-- 
You are receiving this mail because:
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 87786] Showing Styles and formatting when side bar is completely closed, doesn't show the whole sidebar

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87786

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

   What|Removed |Added

 Blocks||65138

-- 
You are receiving this mail because:
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 87789] New: Thunderbird-Addressbook doesn't show groups in collected addresses

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87789

Bug ID: 87789
   Summary: Thunderbird-Addressbook doesn't show groups in
collected addresses
   Product: LibreOffice
   Version: 4.0.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Database
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@familiegrosskopf.de

Create a database connected to Thunderbird addressbock.
There were shown AddressBook, CollectedAddressBook and groups, which are
created in AddressBook.

This bug appears since LO 4.*. LO 3.6.* shows all groups. There were shown the
groups as views of the AddressBook. So a regression.

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


[Libreoffice-bugs] [Bug 87779] The document appears to be read-only after the last character by not ahead of it.

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87779

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

   What|Removed |Added

 CC||c...@nouenoff.nl

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

thanks for the report and the test file!

When I open the file in 4.4.0.1 on Ubuntu, do Ctrl+End, I can simply type any
text.
So if that is what you try too, I cannot confirm.

Best,
Cor

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


[Libreoffice-bugs] [Bug 64741] FILEOPEN: Thunderbird-addressbook doesn't show collected addresses, shows only empty table AddressBook (personal addressbook of TB)

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64741

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 87789] Thunderbird-Addressbook doesn't show groups in collected addresses

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87789

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 84357] EDITING: Polygon objects are not able to manage text anymore

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84357

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

   Keywords||bisected

-- 
You are receiving this mail because:
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 84357] EDITING: Polygon objects are not able to manage text anymore

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84357

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk,
   ||nthieb...@gmail.com
 OS|Windows (All)   |All

--- Comment #5 from Matthew Francis fdb...@neosheffield.co.uk ---
The behaviour seems to have changed from the below commit.

Adding Cc: to nthieb...@gmail.com. Could you possibly have a look at this?
Thanks

commit 3cbfcee36dd16e451d76c561eaaaee0ff29b01a5
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sun Feb 2 22:16:48 2014 -0600

xub_StrLen and tools/string.hxx final straw

Thre is still some 0x limit left and possibly some
less than gracefully handled overflow/error cases

Change-Id: I00957ee3a30b02f73918ea49d7353056263dc638
Reviewed-on: https://gerrit.libreoffice.org/7787
Reviewed-by: Norbert Thiebaud nthieb...@gmail.com
Tested-by: Norbert Thiebaud nthieb...@gmail.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 78155] EDITING: RFE: Allow custom editable fields as allowed in LO Writer

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=78155

M.Eng. René Schwarz m...@rene-schwarz.com changed:

   What|Removed |Added

 CC||m...@rene-schwarz.com

--- Comment #8 from M.Eng. René Schwarz m...@rene-schwarz.com ---
I support this request for several reasons:

(1) The possibility to include custom fields will improve the flexibility of
the creation of presentation templates as required data can be easily set using
the File  Properties  Custom Properties dialog.

(2) An implementation in Impress could make reuse of the code base of the
Writer implementation of fields and thus lower the efforts connected with the
realization of this feature request.

(3) Since LibreOffice is seen as one software package from an end user point of
view it makes sense to harmonize the features across the different LibreOffice
components. That said, it is really not intuitive for an end user that the
implementation of fields differs between Writer and Impress.

-- 
You are receiving this mail because:
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 87676] TOOLBAR: Hiding 'line and filling' and 'text formatting' toolbars by default

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87676

--- Comment #2 from Jay Philips philip...@hotmail.com ---
(In reply to Cor Nouws from comment #1)
 The formatting tool bars are always visible by default.
 Depending on the state, they sort of change appearance.

Yes the object, image, and formatting toolbars hide and unhide depending on
context.

 See the discussion with Object.

Didnt understand this part.

-- 
You are receiving this mail because:
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 85214] libreoffice fails to build properly when /bin/sh is not bash

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85214

Rémi Cardona r...@gentoo.org changed:

   What|Removed |Added

 Attachment #111420|0   |1
is obsolete||

--- Comment #16 from Rémi Cardona r...@gentoo.org ---
Created attachment 111424
  -- https://bugs.freedesktop.org/attachment.cgi?id=111424action=edit
configure.ac: remove bashisms, see fdo#85214

Here's a properly crafted git patch that applies on today's master head.

-- 
You are receiving this mail because:
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 87790] New: Unexpected values in evaluating R2 using regr.lin (linear fit)

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87790

Bug ID: 87790
   Summary: Unexpected values in evaluating R2 using regr.lin
(linear fit)
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: f.mencarag...@gmail.com

When fitting a series of (x,y) data with a function a * x + b, everything
(slope, intercept, correlation) seems ok   (check done by comparison with excel
and by evaluaton using the standatd formulas in any book). Changing axis so
that the first (x,y) is in the origin and fitting with  a * x' the slope is ok,
but the correlation is wrong, It is neither the Pearson correlation nor the
explained variance vs the total variance.  The result is in disagreement with
what found in excel or by evlautaion with standard formula

I do not understand if there is a bug in the function or if the meaning of r2
is nn clearly eplaine in the on line manual

-- 
You are receiving this mail because:
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 87792] New: Shapes from Word shrink when saved to .odt

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87792

Bug ID: 87792
   Summary: Shapes from Word shrink when saved to .odt
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tima...@gmail.com

Created attachment 111425
  -- https://bugs.freedesktop.org/attachment.cgi?id=111425action=edit
sample docx

Open the attached heart.docx file. Save as OpenDocument text, the reload.
Observe that the size of the heart shape is about 50% of the original.

-- 
You are receiving this mail because:
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 87792] Shapes from Word shrink when saved to .odt

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87792

--- Comment #1 from Andras Timar tima...@gmail.com ---
Created attachment 111426
  -- https://bugs.freedesktop.org/attachment.cgi?id=111426action=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 87792] Shapes from Word shrink when saved to .odt

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87792

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

 Attachment #111425|text/plain  |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

-- 
You are receiving this mail because:
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 87792] Shapes from Word shrink when saved to .odt

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87792

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

   Keywords||regression

--- Comment #2 from Andras Timar tima...@gmail.com ---
In 4.2 it works well, regression.

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


[Libreoffice-bugs] [Bug 87794] New: SIDEBAR: Media playback content panel/section

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87794

Bug ID: 87794
   Summary: SIDEBAR: Media playback content panel/section
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org
Blocks: 65138

In impress, when you click on a media clip a whole toolbar row is taken up by
the popup media playback toolbar, so it would be better to move this
functionality into the sidebar, as presently the sidebar properties tab only
has the 'position and size' content panel in it, which leaves it pretty much
empty.

-- 
You are receiving this mail because:
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 65138] [META] Sidebar feature related issues

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65138

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Depends on||87794

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


  1   2   3   4   >