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

2016-02-17 Thread Oliver Specht
 framework/source/classes/menumanager.cxx |   46 +++
 framework/source/uielement/menubarmanager.cxx|   26 +++--
 framework/source/uielement/newmenucontroller.cxx |   11 +
 3 files changed, 47 insertions(+), 36 deletions(-)

New commits:
commit a6e8910a3c5d33e671a13559438b7228596b8bca
Author: Oliver Specht 
Date:   Wed Feb 17 12:07:59 2016 +0100

allow disabling file/new, wizards, recent documents menu entries

disabling the dispatches '.uno:AutoPilotMenu' and '.uno:AddDirect' and
.uno:RecentFileList via UNO API now results in disabled
menu entries as expected

Change-Id: Id99be9374306ff8c0cea919ea94ed96f715a8058
Reviewed-on: https://gerrit.libreoffice.org/22422
Reviewed-by: Oliver Specht 
Tested-by: Oliver Specht 

diff --git a/framework/source/classes/menumanager.cxx 
b/framework/source/classes/menumanager.cxx
index 8140cdf..3e76f14 100644
--- a/framework/source/classes/menumanager.cxx
+++ b/framework/source/classes/menumanager.cxx
@@ -177,33 +177,33 @@ MenuManager::MenuManager(
 }
 else
 {
-if ( nItemId == SID_NEWDOCDIRECT || aItemCommand == 
aSlotNewDocDirect )
+bool isNewDoc = nItemId == SID_NEWDOCDIRECT || aItemCommand == 
aSlotNewDocDirect;
+bool isAutoPilot = nItemId == SID_AUTOPILOTMENU || aItemCommand == 
aSlotAutoPilot;
+if(isNewDoc || isAutoPilot)
 {
-MenuConfiguration aMenuCfg( m_xContext );
-BmkMenu* pSubMenu = 
static_cast(aMenuCfg.CreateBookmarkMenu( rFrame, BOOKMARK_NEWMENU ));
-pMenu->SetPopupMenu( nItemId, pSubMenu );
-
-AddMenu(pSubMenu,OUString(),nItemId,true,false);
-if ( bShowMenuImages && !pMenu->GetItemImage( nItemId ))
+Reference< XDispatchProvider > xDispatchProvider( m_xFrame, 
UNO_QUERY );
+URL aTargetURL;
+aTargetURL.Complete = OUString::createFromAscii(isNewDoc ? 
aSlotNewDocDirect : aSlotAutoPilot);
+m_xURLTransformer->parseStrict( aTargetURL );
+Reference< XDispatch > xMenuItemDispatch = 
xDispatchProvider->queryDispatch(
+aTargetURL, 
OUString(), 0 );
+if(xMenuItemDispatch == nullptr)
 {
-Image aImage = 
vcl::CommandInfoProvider::Instance().GetImageForCommand(aItemCommand, false, 
rFrame );
-if ( !!aImage )
-   pMenu->SetItemImage( nItemId, aImage );
+m_pVCLMenu->EnableItem( nItemId, false );
 }
-}
-else if ( nItemId == SID_AUTOPILOTMENU || aItemCommand == 
aSlotAutoPilot )
-{
-MenuConfiguration aMenuCfg( m_xContext );
-BmkMenu* pSubMenu = 
static_cast(aMenuCfg.CreateBookmarkMenu( rFrame, BOOKMARK_WIZARDMENU 
));
-pMenu->SetPopupMenu( nItemId, pSubMenu );
-
-AddMenu(pSubMenu,OUString(),nItemId,true,false);
-
-if ( bShowMenuImages && !pMenu->GetItemImage( nItemId ))
+else
 {
-Image aImage = 
vcl::CommandInfoProvider::Instance().GetImageForCommand(aItemCommand, false, 
rFrame );
-if ( !!aImage )
-   pMenu->SetItemImage( nItemId, aImage );
+MenuConfiguration aMenuCfg( m_xContext );
+BmkMenu* pSubMenu = 
static_cast(aMenuCfg.CreateBookmarkMenu( rFrame,
+OUString::createFromAscii(isNewDoc ? 
BOOKMARK_NEWMENU : BOOKMARK_WIZARDMENU)));
+pMenu->SetPopupMenu( nItemId, pSubMenu );
+AddMenu(pSubMenu,OUString(),nItemId,true,false);
+if ( bShowMenuImages && !pMenu->GetItemImage( nItemId ))
+{
+Image aImage = 
vcl::CommandInfoProvider::Instance().GetImageForCommand(aItemCommand, false, 
rFrame );
+if ( !!aImage )
+pMenu->SetItemImage( nItemId, aImage );
+}
 }
 }
 else if ( pMenu->GetItemType( i ) != MenuItemType::SEPARATOR )
diff --git a/framework/source/uielement/menubarmanager.cxx 
b/framework/source/uielement/menubarmanager.cxx
index d5ae1d6..9e97edf 100644
--- a/framework/source/uielement/menubarmanager.cxx
+++ b/framework/source/uielement/menubarmanager.cxx
@@ -867,20 +867,22 @@ IMPL_LINK_TYPED( MenuBarManager, Activate, Menu *, pMenu, 
bool )
 xMenuItemDispatch = 
xDispatchProvider->queryDispatch( aTargetURL, OUString(), 0 );
 
 bool bPopupMenu( false );
-if ( 

[Libreoffice-bugs] [Bug 67071] VLOOKUP between two files is slow if both files are open

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67071

Markus Mohrhard  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com

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


[Libreoffice-bugs] [Bug 67071] VLOOKUP between two files is slow if both files are open

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67071

--- Comment #21 from Commit Notification 
 ---
Markus Mohrhard committed a patch related to this issue.
It has been pushed to "master":

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

don't fill the matrix cell by cell, tdf#67071

It will be available in 5.2.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2016-02-17 Thread Markus Mohrhard
 sc/inc/scmatrix.hxx |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

New commits:
commit fa20b651d61edb7bf9487cb79140bb57fc668967
Author: Markus Mohrhard 
Date:   Thu Feb 18 05:45:19 2016 +0100

fix DEBUG_MATRIX build

Change-Id: Iefffba765ff3e651fa0f6d4067ab3a335ec187c0
Reviewed-on: https://gerrit.libreoffice.org/22456
Reviewed-by: Markus Mohrhard 
Tested-by: Markus Mohrhard 

diff --git a/sc/inc/scmatrix.hxx b/sc/inc/scmatrix.hxx
index 99d859a..e177bed 100644
--- a/sc/inc/scmatrix.hxx
+++ b/sc/inc/scmatrix.hxx
@@ -401,7 +401,7 @@ public:
 DoubleOpFunction aDoubleFunc, BoolOpFunction aBoolFunc, 
StringOpFunction aStringFunc) const = 0;
 
 #if DEBUG_MATRIX
-void Dump() const;
+virtual void Dump() const = 0;
 #endif
 };
 
@@ -610,7 +610,7 @@ public:
 ScFullMatrix& operator+= ( const ScFullMatrix& r );
 
 #if DEBUG_MATRIX
-void Dump() const;
+virtual void Dump() const override;
 #endif
 };
 
@@ -819,6 +819,12 @@ public:
 DoubleOpFunction aDoubleFunc, BoolOpFunction aBoolFunc, 
StringOpFunction aStringFunc) const override;
 
 ScVectorRefMatrix& operator+=(const ScVectorRefMatrix& r);
+
+#if DEBUG_MATRIX
+virtual void Dump() const override
+{
+}
+#endif
 };
 
 inline void intrusive_ptr_add_ref(const ScMatrix* p)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-02-17 Thread Markus Mohrhard
 sc/inc/column.hxx|2 -
 sc/inc/document.hxx  |2 -
 sc/inc/table.hxx |2 -
 sc/source/core/data/column2.cxx  |   35 
 sc/source/core/data/documen8.cxx |4 +-
 sc/source/core/data/table1.cxx   |4 +-
 sc/source/ui/docshell/externalrefmgr.cxx |   54 ---
 7 files changed, 36 insertions(+), 67 deletions(-)

New commits:
commit c8ad72703b74b7338c5f8dd1fe0275822b1e45f0
Author: Markus Mohrhard 
Date:   Thu Feb 18 06:03:11 2016 +0100

don't fill the matrix cell by cell, tdf#67071

We are now at a place where filling one cell takes about a second with
the big document. We could in theory for the special case of this
document add some caching but that would fail in other cases. This
document is already quite large with an external reference to 70k cells
for each formula cell.

I consider it already quite nice and useable again.

Change-Id: I804094838471507e6bb7b0e0e3387e0c7fe53e4b
Reviewed-on: https://gerrit.libreoffice.org/22388
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index 0aaaeaf..0b560b9 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -562,7 +562,7 @@ public:
 ScFormulaVectorState GetFormulaVectorState( SCROW nRow ) const;
 formula::FormulaTokenRef ResolveStaticReference( SCROW nRow );
 bool ResolveStaticReference( ScMatrix& rMat, SCCOL nMatCol, SCROW nRow1, 
SCROW nRow2 );
-void FillMatrix( ScMatrix& rMat, size_t nMatCol, SCROW nRow1, SCROW nRow2 
) const;
+void FillMatrix( ScMatrix& rMat, size_t nMatCol, SCROW nRow1, SCROW nRow2, 
svl::SharedStringPool* pPool = nullptr ) const;
 formula::VectorRefArray FetchVectorRefArray( SCROW nRow1, SCROW nRow2 );
 void SetFormulaResults( SCROW nRow, const double* pResults, size_t nLen );
 void SetFormulaResults( SCROW nRow, const formula::FormulaTokenRef* 
pResults, size_t nLen );
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 9b8ab5e..a50b004 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -1847,7 +1847,7 @@ public:
 
 SC_DLLPUBLIC ScMacroManager* GetMacroManager();
 
-void FillMatrix( ScMatrix& rMat, SCTAB nTab, SCCOL nCol1, SCROW nRow1, 
SCCOL nCol2, SCROW nRow2 ) const;
+void FillMatrix( ScMatrix& rMat, SCTAB nTab, SCCOL nCol1, SCROW nRow1, 
SCCOL nCol2, SCROW nRow2, svl::SharedStringPool* pPool = nullptr) const;
 
 /**
  * Set an array of numerical formula results to a group of contiguous
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index e1b0706..bcb61f4 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -909,7 +909,7 @@ public:
 void DeleteBroadcasters( sc::ColumnBlockPosition& rBlockPos, SCCOL nCol, 
SCROW nRow1, SCROW nRow2 );
 bool HasBroadcaster( SCCOL nCol ) const;
 
-void FillMatrix( ScMatrix& rMat, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, 
SCROW nRow2 ) const;
+void FillMatrix( ScMatrix& rMat, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, 
SCROW nRow2, svl::SharedStringPool* pPool = nullptr ) const;
 
 void InterpretDirtyCells( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW 
nRow2 );
 
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 07bd2a6..2823d63 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -2150,10 +2150,12 @@ class FillMatrixHandler
 SCTAB mnTab;
 ScDocument* mpDoc;
 svl::SharedStringPool& mrPool;
+svl::SharedStringPool* mpPool; // if matrix is not in the same document
 
 public:
-FillMatrixHandler(ScMatrix& rMat, size_t nMatCol, size_t nTopRow, SCCOL 
nCol, SCTAB nTab, ScDocument* pDoc) :
-mrMat(rMat), mnMatCol(nMatCol), mnTopRow(nTopRow), mnCol(nCol), 
mnTab(nTab), mpDoc(pDoc), mrPool(pDoc->GetSharedStringPool()) {}
+FillMatrixHandler(ScMatrix& rMat, size_t nMatCol, size_t nTopRow, SCCOL 
nCol, SCTAB nTab, ScDocument* pDoc, svl::SharedStringPool* pPool) :
+mrMat(rMat), mnMatCol(nMatCol), mnTopRow(nTopRow), mnCol(nCol), 
mnTab(nTab),
+mpDoc(pDoc), mrPool(pDoc->GetSharedStringPool()), mpPool(pPool) {}
 
 void operator() (const sc::CellStoreType::value_type& node, size_t 
nOffset, size_t nDataSize)
 {
@@ -2169,8 +2171,22 @@ public:
 break;
 case sc::element_type_string:
 {
-const svl::SharedString* p = ::string_block::at(*node.data, 
nOffset);
-mrMat.PutString(p, nDataSize, mnMatCol, nMatRow);
+if (!mpPool)
+{
+const svl::SharedString* p = 
::string_block::at(*node.data, nOffset);
+mrMat.PutString(p, nDataSize, mnMatCol, nMatRow);
+}
+else
+{
+std::vector 

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

2016-02-17 Thread Markus Mohrhard
 sc/qa/unit/ucalc_formula.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit de669d714fa6f7d33d6df6e323c72710f470f77c
Author: Markus Mohrhard 
Date:   Wed Feb 17 20:24:07 2016 +0100

use better asserter macro

Change-Id: I144545f5376acbab164e05aecd8937d336e50e9b
Reviewed-on: https://gerrit.libreoffice.org/22455
Tested-by: Jenkins 
Reviewed-by: Markus Mohrhard 

diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx
index e3863bc..d66233b 100644
--- a/sc/qa/unit/ucalc_formula.cxx
+++ b/sc/qa/unit/ucalc_formula.cxx
@@ -5569,7 +5569,7 @@ void Test::testExternalRefFunctions()
 {
 m_pDoc->SetString(0, 0, 0, 
OUString::createFromAscii(aChecks[i].pFormula));
 m_pDoc->GetValue(0, 0, 0, val);
-CPPUNIT_ASSERT_MESSAGE("unexpected result involving external ranges.", 
val == aChecks[i].fResult);
+CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE("unexpected result involving 
external ranges.", aChecks[i].fResult, val, 1e-15);
 }
 
 pRefMgr->clearCache(nFileId);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - sc/qa sc/source

2016-02-17 Thread Katarina Behrens
 sc/qa/unit/subsequent_export-test.cxx |3 ++-
 sc/source/filter/excel/xestring.cxx   |3 +--
 sc/source/filter/excel/xetable.cxx|   17 +++--
 3 files changed, 14 insertions(+), 9 deletions(-)

New commits:
commit 14279955b467241a70b61f993c334757c2b4a756
Author: Katarina Behrens 
Date:   Thu Nov 5 17:57:07 2015 +0100

tdf#92296: Fix off-by-one formatting of text runs on OOXML export

This essentially reverts commit 8865ed2efecd03722d10e522265f31c99b13b2bb
and implements a different fix for tdf#90812:
If the formatting of entire cell is uniform, remove formatting of the
leading text run and create corresponding cell style. In all other cases,
write out formattings for each individual run.

Change-Id: I7724b7a474f773f2cdc39e9150d843642fb05bbe
Reviewed-on: https://gerrit.libreoffice.org/19811
Reviewed-by: Eike Rathke 
Tested-by: Eike Rathke 

Related tdf#92296, tdf#90812: Make this test more strict

i.e. not only make sure that rPr is there, but also test the text
chunk has the right font colour ( it went off-by-one in regression
caused by the fix of tdf#90812 )

Change-Id: I3788a845393686ed621743e117b7eb439e38e0b3
Reviewed-on: https://gerrit.libreoffice.org/22420
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index b1db159..eb0865e 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -2640,7 +2640,8 @@ void ScExportTest::testSheetRunParagraphProperty()
 xmlDocPtr pDoc = XPathHelper::parseExport(&(*xDocSh), m_xSFactory, 
"xl/sharedStrings.xml", XLSX);
 CPPUNIT_ASSERT(pDoc);
 
-assertXPath(pDoc, "/x:sst/x:si/x:r[1]/x:rPr[1]", 1);
+OUString aColor = getXPath(pDoc, "/x:sst/x:si/x:r[1]/x:rPr[1]/x:color", 
"rgb");
+CPPUNIT_ASSERT_EQUAL(OUString(""), aColor);
 
 xDocSh->DoClose();
 }
diff --git a/sc/source/filter/excel/xestring.cxx 
b/sc/source/filter/excel/xestring.cxx
index 0e1a127..2e716b0 100644
--- a/sc/source/filter/excel/xestring.cxx
+++ b/sc/source/filter/excel/xestring.cxx
@@ -427,10 +427,9 @@ void XclExpString::WriteXml( XclExpXmlStream& rStrm ) const
 const XclExpFont* pFont = NULL;
 for ( ; aIt != aEnd; ++aIt )
 {
-// pFont getting first then pass it to run otherwise pFont is NULL.
-pFont = rFonts.GetFont( aIt->mnFontIdx );
 nStart = lcl_WriteRun( rStrm, GetUnicodeBuffer(),
 nStart, aIt->mnChar-nStart, pFont );
+pFont = rFonts.GetFont( aIt->mnFontIdx );
 }
 lcl_WriteRun( rStrm, GetUnicodeBuffer(),
 nStart, GetUnicodeBuffer().size() - nStart, pFont );
diff --git a/sc/source/filter/excel/xetable.cxx 
b/sc/source/filter/excel/xetable.cxx
index 8422ef6..21f0aa9 100644
--- a/sc/source/filter/excel/xetable.cxx
+++ b/sc/source/filter/excel/xetable.cxx
@@ -723,13 +723,18 @@ void XclExpLabelCell::Init( const XclExpRoot& rRoot,
 mxText = xText;
 mnSstIndex = 0;
 
-// create the cell format
-sal_uInt16 nXclFont = mxText->RemoveLeadingFont();
-if( GetXFId() == EXC_XFID_NOTFOUND )
+const XclFormatRunVec& rFormats = mxText->GetFormats();
+// Create the cell format and remove formatting of the leading run
+// if the entire string is equally formatted
+if( rFormats.size() == 1 )
 {
-OSL_ENSURE( nXclFont != EXC_FONT_NOTFOUND, "XclExpLabelCell::Init - 
leading font not found" );
-bool bForceLineBreak = mxText->IsWrapped();
-SetXFId( rRoot.GetXFBuffer().InsertWithFont( pPattern, 
ApiScriptType::WEAK, nXclFont, bForceLineBreak ) );
+sal_uInt16 nXclFont = mxText->RemoveLeadingFont();
+if( GetXFId() == EXC_XFID_NOTFOUND )
+{
+OSL_ENSURE( nXclFont != EXC_FONT_NOTFOUND, "XclExpLabelCell::Init 
- leading font not found" );
+bool bForceLineBreak = mxText->IsWrapped();
+SetXFId( rRoot.GetXFBuffer().InsertWithFont( pPattern, 
ApiScriptType::WEAK, nXclFont, bForceLineBreak ) );
+}
 }
 
 // get auto-wrap attribute from cell format
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97964] New: Buggy resizing windows

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97964

Bug ID: 97964
   Summary: Buggy resizing windows
   Product: LibreOffice
   Version: 5.0.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ads...@gmail.com

Resizing is very slow. It look likes it resizes and redraws pixel by pixel. 

However, maximize and restore resizes instantly. 

Anyy LO application. 

Ubuntu 15.10

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


[Libreoffice-commits] dev-tools.git: scripts/esc-mentoring.py

2016-02-17 Thread jan iversen
 scripts/esc-mentoring.py |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2a26513bc551b6ab7b03621dc014452ccc895371
Author: jan iversen 
Date:   Thu Feb 18 08:27:27 2016 +0100

mentoring tool

Update to ESC report

diff --git a/scripts/esc-mentoring.py b/scripts/esc-mentoring.py
index c8bf8c6..a5a5c65 100755
--- a/scripts/esc-mentoring.py
+++ b/scripts/esc-mentoring.py
@@ -183,7 +183,7 @@ def ESC_report(easyHacks, gerritOpen, gerritContributor) :
   # can be merged (depending comments)
   if checkGerrit(1, row) :
 xRevi += 1
-print(' gerrit: open patches {} of which {} can be merged if no open 
comments'.format(xTot, xRevi))
+print(' gerrit: {} open patches of which {} can be merged if no open 
comments'.format(xTot, xRevi))
 xTot  = len(gerritContributor)
 xRevi = 0
 for row in gerritContributor:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: sysui/desktop

2016-02-17 Thread Yousuf Philips
 sysui/desktop/menus/draw.desktop |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit ab8c349f7bc0348b54e6e0766c5bd6785b415ae5
Author: Yousuf Philips 
Date:   Thu Feb 18 01:35:01 2016 +0400

Add pdf and visio to info to Draw's linux application menu file

Change-Id: I4d7964c60a3a1f775e696d45e8f1ef7ee06dfb4f
Reviewed-on: https://gerrit.libreoffice.org/22445
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/sysui/desktop/menus/draw.desktop b/sysui/desktop/menus/draw.desktop
index d4e82a4..78ad452 100644
--- a/sysui/desktop/menus/draw.desktop
+++ b/sysui/desktop/menus/draw.desktop
@@ -22,13 +22,13 @@ Icon=draw
 Type=Application
 
Categories=Office;FlowChart;Graphics;2DGraphics;VectorGraphics;X-Red-Hat-Base;X-MandrivaLinux-Office-Drawing;
 Exec=${UNIXBASISROOTNAME} --draw %%FILE%%
-MimeType=application/vnd.oasis.opendocument.graphics;application/vnd.oasis.opendocument.graphics-flat-xml;application/vnd.oasis.opendocument.graphics-template;application/vnd.sun.xml.draw;application/vnd.sun.xml.draw.template;application/vnd.visio;application/x-wpg;application/vnd.corel-draw;application/vnd.ms-publisher;image/x-freehand;application/clarisworks;application/x-pagemaker;
+MimeType=application/vnd.oasis.opendocument.graphics;application/vnd.oasis.opendocument.graphics-flat-xml;application/vnd.oasis.opendocument.graphics-template;application/vnd.sun.xml.draw;application/vnd.sun.xml.draw.template;application/vnd.visio;application/x-wpg;application/vnd.corel-draw;application/vnd.ms-publisher;image/x-freehand;application/clarisworks;application/x-pagemaker;application/pdf;
 Name=%PRODUCTNAME Draw
 GenericName=Drawing Program
 Comment=Create and edit drawings, flow charts and logos by using Draw.
 StartupNotify=true
 X-GIO-NoFuse=true
-Keywords=Vector;Schema;Diagram;Layout;OpenDocument Graphics;Microsoft 
Publisher;Corel Draw;cdr;odg;svg;
+Keywords=Vector;Schema;Diagram;Layout;OpenDocument Graphics;Microsoft 
Publisher;Microsoft Visio;Corel Draw;cdr;odg;svg;pdf;vsd
 InitialPreference=5
 StartupWMClass=libreoffice-draw
 X-KDE-Protocols=file,http,ftp,webdav
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - scp2/InstallModule_quickstart.mk

2016-02-17 Thread Michael Stahl
 scp2/InstallModule_quickstart.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5df14e419ae2bd0aa8e02fd6e2b7980fc2fb5011
Author: Michael Stahl 
Date:   Wed Feb 17 17:39:09 2016 +0100

scp2: fix typo in InstallModule_quickstart.mk

(cherry picked from commit 02ca4997d5a313c0679d7929f1f83f10f42f0510)

scp2: argh, fix the *other* typo on that line too

(cherry picked from commit 72720ac9b934af6f84111ec694fa46555d10a7bd)
Change-Id: I21f309e6cb53c129035d2985642a0e96c485cc56
Reviewed-on: https://gerrit.libreoffice.org/22435
Tested-by: Jenkins 
Reviewed-by: David Tardon 

diff --git a/scp2/InstallModule_quickstart.mk b/scp2/InstallModule_quickstart.mk
index fcc61d1..8ac14c9 100644
--- a/scp2/InstallModule_quickstart.mk
+++ b/scp2/InstallModule_quickstart.mk
@@ -9,7 +9,7 @@
 
 $(eval $(call gb_InstallModule_InstallModule,scp2/quickstart))
 
-$(eval $(call gb_installmodule_use_auto_install_libs,scp2/quickstart,\
+$(eval $(call gb_InstallModule_use_auto_install_libs,scp2/quickstart,\
quickstart \
 ))
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 97642] Beanshell Editor: Use native theming for swing controls

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97642

Samuel Mehrbrodt (CIB)  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 97642] Beanshell Editor: Use native theming for swing controls

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97642

Samuel Mehrbrodt (CIB)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |cmkmanw...@gmail.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97639] [META] Beanshell Editor bugs and enhancements

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97639
Bug 97639 depends on bug 97642, which changed state.

Bug 97642 Summary: Beanshell Editor: Use native theming for swing controls
https://bugs.documentfoundation.org/show_bug.cgi?id=97642

   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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2016-02-17 Thread David Ostrovsky
 configure.ac |   17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

New commits:
commit 9218ca64957a27dfeacefd317b12edb82b405c7c
Author: David Ostrovsky 
Date:   Thu Feb 18 00:30:16 2016 +0100

configure: Fix Windows SDK 10 retrieval

Change-Id: I800bd502c3ecd4ec1cdaa6cb3cbe1c4432d8358f
Reviewed-on: https://gerrit.libreoffice.org/22451
Tested-by: Jenkins 
Reviewed-by: David Ostrovsky 

diff --git a/configure.ac b/configure.ac
index 5143482..2e6eedb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3381,10 +3381,11 @@ find_msvs()
 
 find_ucrt()
 {
-reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows 
Kits/Installed Roots/KitsRoot10"
+reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft 
SDKs/Windows/v10.0/InstallationFolder"
 if test -n "$regvalue"; then
 ucrttest=$regvalue
-ucrtdir=10.0.10240.0
+reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft 
SDKs/Windows/v10.0/ProductVersion"
+ucrtdir=$regvalue
 fi
 }
 
@@ -3438,7 +3439,6 @@ if test "$_os" = "WINNT"; then
 AC_MSG_CHECKING([Visual C++])
 
 find_msvc "$with_visual_studio"
-
 if test -z "$vctest"; then
 if test -n "$with_visual_studio"; then
 AC_MSG_ERROR([No Visual Studio $with_visual_studio 
installation found])
@@ -3605,7 +3605,7 @@ if test "$_os" = "WINNT"; then
 ;;
 140)
 COMEX=19
-WINDOWS_SDK_ACCEPTABLE_VERSIONS="10.0A 8.1A 8.1 8.0 7.1A"
+WINDOWS_SDK_ACCEPTABLE_VERSIONS="10.0A 10.0 8.1A 8.1 8.0 7.1A"
 ;;
 esac
 
@@ -5309,11 +5309,12 @@ find_winsdk_version()
 return
 fi
 ;;
-10)
-reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows 
Kits/Installed Roots/KitsRoot10"
+10.0)
+reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft 
SDKs/Windows/v${1}/InstallationFolder"
 if test -n "$regvalue"; then
 winsdktest=$regvalue
-winsdklibsubdir=10.0.10056.0
+reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft 
SDKs/Windows/v${1}/ProductVersion"
+winsdklibsubdir=$regvalue
 return
 fi
 ;;
@@ -8837,7 +8838,7 @@ if test "$with_system_odbc" = "yes" -o '(' 
"$with_system_headers" = "yes" -a "$w
 save_CPPFLAGS=$CPPFLAGS
 find_winsdk
 PathFormat "$winsdktest"
-CPPFLAGS="$CPPFLAGS -I$formatted_path/include/um 
-I$formatted_path/Include/$winsdklibsubdir/um -I$formatted_path/include 
-I$formatted_path/include/shared"
+CPPFLAGS="$CPPFLAGS -I$formatted_path/include/um 
-I$formatted_path/Include/$winsdklibsubdir/um -I$formatted_path/include 
-I$formatted_path/include/shared 
-I$formatted_path/include/$winsdklibsubdir/shared"
 AC_CHECK_HEADER(sqlext.h, [],
 [AC_MSG_ERROR(odbc not found. install odbc)],
 [#include ])
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97526] Copy of the first line of the page and inserting, produce a page break (except of the first page)

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97526

--- Comment #5 from Juergen Funk (CIB)  ---
Now, the fix only remove the page-break from the first page, when you copy the
first line from the first page of the document, and paste then this make NO
page-break. 
But from the following pages it the same at the past, e.g. copy from the second
page the first line and paste at the beginning of the paragraph then you get
the page-break. When you paste NOT at the beginning from the paragraph, then it
is also suppressed

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


[Libreoffice-bugs] [Bug 63154] replace tools/solar.h macros with osl versions

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63154

jan iversen  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|marcos.souza@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #75 from jan iversen  ---
After mail

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


[Libreoffice-bugs] [Bug 97943] Presentation-mode: Slides aren't correctly displayed anymore

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97943

--- Comment #6 from bordfe...@web.de ---
Created attachment 122754
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122754=edit
LO-view-options for bug 97943

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


[Libreoffice-bugs] [Bug 97943] Presentation-mode: Slides aren't correctly displayed anymore

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97943

--- Comment #5 from bordfe...@web.de ---
Hi,

you can see the settings in the attached screenshot.

Thomas

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


LibreOffice_5.1.0.3

2016-02-17 Thread Steven Howe
I use DSL. I have 128K bits up, 1 mbits down. This is not uncommon.

Some issue with 'remote' file mode.
1) saving takes forever. The lock state is not good for remote file save.
Spin that task off. That's what multithreading is for.
2) local temp storage vs network. Use local for recovery. Not everyone has
gigibit bandwidth. Image I start the program and has to connect to google
drive to even finish starting up? What If my network is down? Local lock
files please.

I'd like to type 'ctrl-s' and get back to work, not wait for my Google
Drive to release me, if ever. I wait minutes the first time I use this
version. Let that process run in the background. Get back to typing.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 97859] cursor in Calc flickers since 5.0.5

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97859

tommy27  changed:

   What|Removed |Added

   Keywords||regression
 CC||ba...@quipo.it
Version|unspecified |5.0.5.2 rc
Summary|Regression: cursor in Calc  |cursor in Calc flickers
   |flickers since 5.0.5|since 5.0.5

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


[Libreoffice-bugs] [Bug 97846] Slow behaviour when opening or editing a file

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97846

Peter Lemkin  changed:

   What|Removed |Added

  Component|LibreOffice |Writer
Version|5.1.0.3 release |5.0.5.2 rc
 OS|Windows (All)   |Linux (All)

--- Comment #4 from Peter Lemkin  ---
This version has had so many bugs! I have a list of about ten that personally
are making my job as an editor difficult. Now, in the last few days, it slows
down to an almost stop. Windows can't be moved - only closed; making a
correction or even dropping down a menu can take a few minutes! I have a
lightning speed processor and tons of memory. Anyone know what the problem is
and why this just started but is now persistent every time I open it and try to
use it. I'm about to uninstall and downgrade to an earlier version. Sadly, I
don't remember what I was using before - but it was without flaws I could find.
This is so full of problems as to make it unusable until fixed. Sorry for the
tone and I know it upsets those who work on this, but I make my living doing
editing and time and ease of use are money for me and I can't work with this
version until many things are fixed...but the slowdown [without using much cpu]
is a last straw - until fixed. I can find no work around and am forced to shut
it down.

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


[Libreoffice-bugs] [Bug 97963] Input areas in Header dialog get wider and bottom area disappears

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97963

HD  changed:

   What|Removed |Added

 Attachment #122753|dialog gets wider   |input areas get wider
description||

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


[Libreoffice-bugs] [Bug 97963] Input areas in Header dialog get wider and bottom area disappears

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97963

HD  changed:

   What|Removed |Added

Summary|Input areas in Header   |Input areas in Header
   |dialog get wider and bottom |dialog get wider and bottom
   |area disappear  |area disappears

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


[Libreoffice-bugs] [Bug 97963] New: Input areas in Header dialog get wider and bottom area disappear

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97963

Bug ID: 97963
   Summary: Input areas in Header dialog get wider and bottom area
disappear
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kg_oooh...@ashisuto.co.jp

Created attachment 122753
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122753=edit
dialog gets wider

When header font size is so big, input areas in Header dialog get wider
vertically, as a result Custom header icons disappear. 
If this problem occurs I cannot modify font again.

Steps to reproduce:
1.Open new spreadsheet.
2.Click [Format] - [Page] - [Header] - [Edit...]
3.Put cursor in Center or Right area and click [Sheet Name] in Custom header.
4.Select inserted sheet name and click [Text Attributes] in Custom header.
5.Set text to font 80pt then click [OK].
6.Close all dialog with [OK].
7.Open Header dialog again...

Then Input areas get wider so that Header and Custom header area disappear.

This problem doesn't occur when you insert text in Left area in Header dialog.
Reproducible font size depends on screen resolution.
(e.g. 32pt with my laptop 1366 * 768)

Regards.

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


[Libreoffice-bugs] [Bug 73287] FORMATTING: Screen refresh bug with comment boxes

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73287

VincentYu  changed:

   What|Removed |Added

 CC||vincent_hy...@hotmail.com

--- Comment #9 from VincentYu  ---
*** Bug 87404 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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87404] UI: mouse over comments field in cell left a line of artifact behind

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87404

VincentYu  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #8 from VincentYu  ---
(In reply to rebelxt from comment #7)
> I believe this to be a duplicate of bug 73287. I don't know if I am allowed
> to mark it as such.

Just upgraded to 4.4.7 and able to reproduce it again.
Yes, I think it's a duplicate.

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

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


[Libreoffice-bugs] [Bug 97962] New: Native dialogs does not cleanup texts while typing

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97962

Bug ID: 97962
   Summary: Native dialogs does not cleanup texts while typing
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sadeqn+libreoff...@gmail.com

Created attachment 122752
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122752=edit
After typing and before typing screenshot

In any input box include comboboxes (except file open/save dialog) when you
correct typed text old character apear in place! seems that it just draw the
text over old area and does not clean background before draw.

This bug affect Writer/Calc.

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


[Libreoffice-bugs] [Bug 87404] UI: mouse over comments field in cell left a line of artifact behind

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87404

--- Comment #7 from rebelxt  ---
I believe this to be a duplicate of bug 73287. I don't know if I am allowed to
mark it as such.

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


[Libreoffice-bugs] [Bug 97961] New: Custom Icons on the Toolbar appears smaller

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97961

Bug ID: 97961
   Summary: Custom Icons on the Toolbar appears smaller
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ashokin...@gmail.com

Created attachment 122751
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122751=edit
Tool Bar Custom Icons

There are two issues for custom Icons in tool bar

1.   If you set a custom Icon on for any item in the Tool bar (Customize
Toolbar -> Modify -> Change Icon) from the existing list of Icons, the size of
the Icon becomes smaller in the Tool Bar.

2.  Suppose you set a custom Icon by Importing a PNG, then the size of the Icon
in the toolbar is the same as the rest of the items.  However upon restarting
writer/calc the Custom Icons become smaller than the rest of the Icons in the
Toolbar

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


[Libreoffice-bugs] [Bug 97960] New: Does not preserve the font size in tables

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97960

Bug ID: 97960
   Summary: Does not preserve the font size in tables
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: simpl...@mail.ru

Create new doc.
Create in document new table 5x5.
Select all cells in table and set font size e.g. 8.
Save and close this doc.
Open doc again.
Expected Result: Font size in cells set to 8
Сurrent result: Font size in cells set to default (12)

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


[Libreoffice-bugs] [Bug 97828] Do not copy the selected table in the new document

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97828

--- Comment #5 from Soldatov Semen  ---
I downgraded to 5.0.5. All works fine.

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


[Libreoffice-bugs] [Bug 97642] Beanshell Editor: Use native theming for swing controls

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97642

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|ToBeReviewed|ToBeReviewed target:5.2.0

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


[Libreoffice-commits] core.git: solenv/bin solenv/inc

2016-02-17 Thread Chris Sherlock
 solenv/bin/mkdocs.sh   |2 +-
 solenv/inc/doxygen.cfg |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f8f6ea8a68f326e0191e2c9031137462685c8dcb
Author: Chris Sherlock 
Date:   Wed Feb 17 16:41:05 2016 +1100

solenv: use html files for doxygen, not xhtml files

Change-Id: I2dd6e80698818f2a02e63cf91a72fe8c08b2265c
Reviewed-on: https://gerrit.libreoffice.org/22453
Tested-by: Jenkins 
Reviewed-by: Chris Sherlock 

diff --git a/solenv/bin/mkdocs.sh b/solenv/bin/mkdocs.sh
index 4efc5ba..6b2edd6 100755
--- a/solenv/bin/mkdocs.sh
+++ b/solenv/bin/mkdocs.sh
@@ -220,7 +220,7 @@ for module_name in *; do
   text="View module in:"
  text="${text}  http://cgit.freedesktop.org/libreoffice/core/tree/${module_name}\;>cgit"
   if $(echo $INPUT_PROJECTS | grep -q $module_name); then
-text="${text}  Doxygen"
+text="${text}  Doxygen"
   fi
   text="${text} "
  echo -e $text >> "$BASE_OUTPUT/${module_name}.html"
diff --git a/solenv/inc/doxygen.cfg b/solenv/inc/doxygen.cfg
index 11fbf2a..bb5872e 100644
--- a/solenv/inc/doxygen.cfg
+++ b/solenv/inc/doxygen.cfg
@@ -1052,7 +1052,7 @@ HTML_OUTPUT=
 # The default value is: .html.
 # This tag requires that the tag GENERATE_HTML is set to YES.
 
-HTML_FILE_EXTENSION= .xhtml
+HTML_FILE_EXTENSION= .html
 
 # The HTML_HEADER tag can be used to specify a user-defined HTML header file 
for
 # each generated HTML page. If the tag is left blank doxygen will generate a
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 97642] Beanshell Editor: Use native theming for swing controls

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97642

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|ToBeReviewed|ToBeReviewed target:5.2.0

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


[Bug 97642] Beanshell Editor: Use native theming for swing controls

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97642

--- Comment #5 from Commit Notification 
 ---
Chirag Manwani committed a patch related to this issue.
It has been pushed to "master":

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

tdf#97642 Use native theming for swing controls in Beanshell Editor

It will be available in 5.2.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 on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 97642] Beanshell Editor: Use native theming for swing controls

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97642

--- Comment #5 from Commit Notification 
 ---
Chirag Manwani committed a patch related to this issue.
It has been pushed to "master":

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

tdf#97642 Use native theming for swing controls in Beanshell Editor

It will be available in 5.2.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97642] Beanshell Editor: Use native theming for swing controls

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97642

--- Comment #4 from Chris Sherlock  ---
Caolan fixed a problem that occurs when GTK3 is loaded and Swing tries to use
GTK2. I've pushed this to master now.

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


[Bug 97642] Beanshell Editor: Use native theming for swing controls

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97642

--- Comment #4 from Chris Sherlock  ---
Caolan fixed a problem that occurs when GTK3 is loaded and Swing tries to use
GTK2. I've pushed this to master now.

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


[Libreoffice-commits] core.git: scripting/java

2016-02-17 Thread Chirag Manwani
 
scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
 |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 9046ce5cb9df2cdb379bc460dfd23e00f96e51f3
Author: Chirag Manwani 
Date:   Wed Feb 17 19:54:52 2016 +0530

tdf#97642 Use native theming for swing controls in Beanshell Editor

Change-Id: Ifb2f3cfe5132e9b6f7d5d2df5868b09b39c5ec47
Reviewed-on: https://gerrit.libreoffice.org/22429
Tested-by: Jenkins 
Reviewed-by: Chris Sherlock 

diff --git 
a/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
 
b/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
index 91e7b91..916234a 100644
--- 
a/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
+++ 
b/scripting/java/com/sun/star/script/framework/provider/beanshell/PlainSourceView.java
@@ -30,6 +30,7 @@ import javax.swing.JScrollPane;
 import javax.swing.JTextArea;
 import javax.swing.event.DocumentEvent;
 import javax.swing.event.DocumentListener;
+import javax.swing.UIManager;
 import javax.swing.text.BadLocationException;
 
 public class PlainSourceView extends JScrollPane implements
@@ -93,6 +94,12 @@ public class PlainSourceView extends JScrollPane implements
 }
 
 private void initUI() {
+try{
+
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
+}
+catch(Exception e){
+// What to do here
+}
 ta = new JTextArea();
 ta.setRows(15);
 ta.setColumns(40);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-02-17 Thread Caolán McNamara
 stoc/source/javavm/javavm.cxx |9 -
 vcl/unx/gtk/gtksys.cxx|7 +++
 2 files changed, 15 insertions(+), 1 deletion(-)

New commits:
commit 9f7f881d11ceb4e2534758b9507a55292ec697b0
Author: Caolán McNamara 
Date:   Wed Feb 17 16:09:01 2016 +

Resolves: rhbz#1285356 force swing not to use gtk2 if gtk3 is loaded

Change-Id: I6347bf4c25ce649073afdfe4225182ab2dc84af1
Reviewed-on: https://gerrit.libreoffice.org/22433
Tested-by: Jenkins 
Reviewed-by: Chris Sherlock 

diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx
index c7a061c..64b55f7 100644
--- a/stoc/source/javavm/javavm.cxx
+++ b/stoc/source/javavm/javavm.cxx
@@ -534,8 +534,15 @@ void initVMConfiguration(
 }
 
 *pjvm= jvm;
-setTimeZone(pjvm);
 
+// rhbz#1285356, native look will be gtk2, which crashes
+// when gtk3 is already loaded. Until there is a solution
+// java-side force look and feel to something that doesn't
+// crash when we are using gtk3
+if (getenv("STOC_FORCE_SYSTEM_LAF"))
+
pjvm->pushProp(OUString("swing.systemlaf=javax.swing.plaf.metal.MetalLookAndFeel"));
+
+setTimeZone(pjvm);
 }
 
 class DetachCurrentThread: private boost::noncopyable {
diff --git a/vcl/unx/gtk/gtksys.cxx b/vcl/unx/gtk/gtksys.cxx
index 80153fe..97f2464 100644
--- a/vcl/unx/gtk/gtksys.cxx
+++ b/vcl/unx/gtk/gtksys.cxx
@@ -40,6 +40,13 @@ GtkSalSystem::GtkSalSystem() : SalGenericSystem()
 {
 mpDisplay = gdk_display_get_default();
 countScreenMonitors();
+#if GTK_CHECK_VERSION(3,0,0)
+// rhbz#1285356, native look will be gtk2, which crashes
+// when gtk3 is already loaded. Until there is a solution
+// java-side force look and feel to something that doesn't
+// crash when we are using gtk3
+setenv("STOC_FORCE_SYSTEM_LAF", "true", 1);
+#endif
 }
 
 GtkSalSystem::~GtkSalSystem()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loolwsd/LOOLBroker.cpp loolwsd/LOOLKit.cpp

2016-02-17 Thread Henry Castro
 loolwsd/LOOLBroker.cpp |2 ++
 loolwsd/LOOLKit.cpp|2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 76f405af98956e8553dcfadd386c6167c7e89ff2
Author: Henry Castro 
Date:   Wed Feb 17 23:56:30 2016 -0400

loolwsd: add Log::info Preinit stage OK

diff --git a/loolwsd/LOOLBroker.cpp b/loolwsd/LOOLBroker.cpp
index 9561be9..418efaf 100644
--- a/loolwsd/LOOLBroker.cpp
+++ b/loolwsd/LOOLBroker.cpp
@@ -782,6 +782,8 @@ int main(int argc, char** argv)
 
 if (!sharePages)
 Log::warn("Cannot fork, will spawn instead.");
+else
+Log::info("Preinit stage OK.");
 
 // We must have at least one child, more is created dynamically.
 if (createLibreOfficeKit(sharePages, childRoot, sysTemplate,
diff --git a/loolwsd/LOOLKit.cpp b/loolwsd/LOOLKit.cpp
index 0fe0608..4043d76 100644
--- a/loolwsd/LOOLKit.cpp
+++ b/loolwsd/LOOLKit.cpp
@@ -719,7 +719,7 @@ void lokit_main(const std::string& childRoot,
 }
 #endif
 
-Log::info("loolbroker -> chroot(\"" + jailPath.toString() + "\")");
+Log::info("loolkit -> chroot(\"" + jailPath.toString() + "\")");
 if (chroot(jailPath.toString().c_str()) == -1)
 {
 Log::error("Error: chroot(\"" + jailPath.toString() + "\") 
failed.");
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96431] PDF and PRINTING Problem, PNG with alpha transparency on LXDE based UI

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96431

--- Comment #14 from Viruch Hemapanpairo  ---
Dear All,

It happens to be that this bug was already solved in the newly built of
developed version of 2016.02.17. Thanks for your all kind efforts.

OS : Lubuntu 14.04.3
DE : LXDE

Version: 5.1.2.0.0+
Build ID: 398fcdd3abcab3dbd0418dbae87ed4ca7451315c
CPU Threads: 4; OS Version: Linux 3.13; UI Render: default; 
TinderBox: Linux-rpm_deb-x86@71-TDF, Branch:libreoffice-5-1, Time:
2016-02-17_17:23:32
Locale: en-US (en_US.UTF-8)

Version: 5.2.0.0.alpha0+
Build ID: a3c70e760fa4203b7e6692f82d1d8a14214af3da
CPU Threads: 4; OS Version: Linux 3.13; UI Render: default; 
TinderBox: Linux-rpm_deb-x86@71-TDF, Branch:master, Time: 2016-02-17_23:47:57
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 97959] New: Writer embeds Base14 fonts in PDFs

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97959

Bug ID: 97959
   Summary: Writer embeds Base14 fonts in PDFs
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tomasmartin...@gmail.com

Base14 fonts do not need to be embedded in PDFs

Writer embeds them in making the files much bigger than necessary

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


[Libreoffice-bugs] [Bug 97921] Fatal Error / crash on slideshow with 3D transition

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97921

--- Comment #3 from HD  ---
Created attachment 122748
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122748=edit
backtrace

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


[Libreoffice-bugs] [Bug 97921] Fatal Error / crash on slideshow with 3D transition

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97921

--- Comment #2 from HD  ---
(In reply to Beluga from comment #1)
Thank you for your reply.
I got a backtrace. Hope it will help.

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


[Libreoffice-bugs] [Bug 97958] Sometimes, display of font goes badly wrong, depending on zoom factor

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97958

Luke Kendall  changed:

   What|Removed |Added

 CC||l...@zeta.org.au

--- Comment #1 from Luke Kendall  ---
Created attachment 122747
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122747=edit
Some more screenshots, after closed and re-opened

I spoke too soon when I said that closing and re-opening the file solved the
problem. When I scrolled down and re-commenced my work, some characters were
displayed wrongly: at first, I noticed that just all the Regular "P" characters
were being displayed as Italic (screenshot LO-fonts-bizarre-5.png) - three
instances. But again, depending on the zoom factor, different characters
displayed wrongly. It may be interesting that in this case, the only errors
were the Italic/Regular style being wrong. 

LO-fonts-bizarre-8.png is the only zoom factor showing correct rendering of the
text (maybe showing correct selection of bitmaps from a font cache?).

This time, closing and re-opening the file did *not* correct the problem.

I had three documents open: after exiting from LO completely and then
re-opening all three documents, the incorrect character display went away.

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


[Libreoffice-bugs] [Bug 97956] Don't fragment A:A conditional formatting when rows/columns are moved

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97956

--- Comment #2 from 7qia0t...@sneakemail.com ---
Version: 5.0.4.2
Build ID: 2b9802c1994aa0b7dc6079e128979269cf95bc78
Locale: en-US (en_US)

Windows 7 Pro 64-bit

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


[Libreoffice-bugs] [Bug 97933] Unable to record or run macros

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97933

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg
 Resolution|--- |NOTABUG

--- Comment #1 from m.a.riosv  ---
About record macros, you need to activate experimental features.
Menu/Tools/Options/LibreOffice/Advanced - Enable experimental features.

About run the macros, you need to set up properly the option

Menu/Tools/Options/LibreOffice/Security - Macros security.

I think there is not a bug, but if this doesn't solve your issues, please
reopen it.

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


[Libreoffice-bugs] [Bug 97958] New: Sometimes, display of font goes badly wrong, depending on zoom factor

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97958

Bug ID: 97958
   Summary: Sometimes, display of font goes badly wrong, depending
on zoom factor
   Product: LibreOffice
   Version: 5.0.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: l...@zeta.org.au

Created attachment 122746
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122746=edit
Four screenshots with just the document zoom factor changed

Usually, LO works just fine.  But every now and then, the display of the text
can't be trusted.  Usually, the first thing I notice is that I bold or
italicise some text via a shortcut, and it doesn't appear to change: though the
italic or bold icon in the toolbar will indicate the text style correctly (via
its highlighting).

Today, it's particularly bad: I had to zoom the document window up to an
unpleasantly large size before the text displayed correctly.  All sorts of
bizarre character substitutions appear to be going on, as if it's picking the
characters from entirely wrong fonts.  I've attached a few screenshots at
different zoom levels. Only the LO-fonts-bizarre-3.png file displays correctly:
all the others are very wrong.

I'm running this on a development build of Linux; and it *is* possible that new
fonts have been installed, since I've done a few large updates of the system,
while the document was open and being edited.

After closing the file and re-opening it, the font displayed correctly.

The text is all set in Times New Roman 14pt; paragraph style is Text Body.

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


[Libreoffice-bugs] [Bug 97956] Don't fragment A:A conditional formatting when rows/columns are moved

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97956

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||miguelangelrv@libreoffice.o
   ||rg
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
Please what is your LibreOffice version and your OS, few time ago some work
have been done about the behavior of  A:A and 1:1 with some actions, on the
other hand there is a request for enhancement to reunify CF condition ranges.

Cell ranges with the same Conditional Formatting should be consolidated to 1
range.
https://bugs.documentfoundation.org/show_bug.cgi?id=80768

CONDITIONAL FORMATTING: Option for reunify ranges with same conditions 
https://bugs.documentfoundation.org/show_bug.cgi?id=87274

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


[Libreoffice-bugs] [Bug 97957] System fails to keep new color table once loaded.

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97957

--- Comment #1 from Martin  ---
I got around this problem by saving the NewColorList.soc as standard.soc and
restarting the application but I shouldn't have to do this in the background
through the OS OfficeLibre should just use the NewColorList.soc as requested.

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


[Libreoffice-bugs] [Bug 92151] EDITING: Crash while editing text, and lost 20 mins of work

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92151

--- Comment #19 from Luke Kendall  ---
I do appreciate that triage a hard-to-reproduce bug is tedious and takes time.

I'd ask you to appreciate that a bug that crashes LO and loses all the work
from the previous save is also quite a big problem for a user.

Is there anything more I can do?  It hasn't happened for a while, but I haven't
been editing as many large documents with as many comments.

If you have a suggestion for something I can do that would make the triag-ing
easier, let me know and I'll see if I can do that.

I see you've marked the bug as Resolved. That's very disappointing.  I think
that's a policy error: it would be better to introduce a new category:
Postponed or TooHard or something.

But I appreciate your difficulty: tracking down a hard-to-reproduce crash in a
big program is enormously difficult.

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


[Libreoffice-bugs] [Bug 97957] New: System fails to keep new color table once loaded.

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97957

Bug ID: 97957
   Summary: System fails to keep new color table once loaded.
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mcl1...@yahoo.com.au

Created attachment 122745
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122745=edit
Screen Dumps of the Problem

This bug also applies to Version: 5.1.0.0.alpha1+ (x64)
Build ID: 4a2b1ed4443f7cc2b69f20dfe8c6174b4b79f123
Locale: en-AU (en_AU) and possibly others since 5.0.3.2 release.
Tools/Options/LibreOffice/Colors
NOTE Color List is Table: standard
Load Color List
Choose new list and select OPEN,
NOTE Color List is Table: NewColorList
select OK
Dialog box closes.
Reopen Dialog
Tools/Options/LibreOffice/Colors
NOTE Color List is Table: standard.

The effect of all this is that it is impossible to use other or user defined
color table throughout LibreOffice.

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


[Libreoffice-bugs] [Bug 97928] Website Documentation Page Out Of Date

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97928

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
  Component|UI  |Documentation
Version|4.5.0.0.alpha0+ Master  |5.0.0.5 release
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 97956] New: Don't fragment A:A conditional formatting when rows/columns are moved

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97956

Bug ID: 97956
   Summary: Don't fragment A:A conditional formatting when
rows/columns are moved
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 7qia0t...@sneakemail.com

Created attachment 122744
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122744=edit
broken conditional formatting

If a conditional format is specified for a column like "F:F" it is stored in
Conditional Formatting as "F1:F1048576" rather than "F:F".  

https://bugs.documentfoundation.org/show_bug.cgi?id=44419

If the rows are then reordered using Alt+Drag, the Conditional Formatting
breaks and is fragmented into multiple small pieces.

F:F means that it applies to the entire column; don't break it up when things
are moved around.

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


[Libreoffice-bugs] [Bug 97951] Draw not registered with OS as a PDF editor

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97951

V Stuart Foote  changed:

   What|Removed |Added

  Component|Draw|filters and storage

--- Comment #4 from V Stuart Foote  ---
@Jay, *

moving to filters and storage as this is NOT a Draw issue -- that just happens
to be the default module assigned to receive the filter imported PDF on
opening.

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


[Libreoffice-bugs] [Bug 97951] Draw not registered with OS as a PDF editor

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97951

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #3 from V Stuart Foote  ---
@Jay, *

Yes file association can be made, but I would strongly caution against claims
positioning LibreOffice as a PDF editor.

In reality, Draw does not and cannot "edit" PDF -- rather, we filter import the
PDF and then render the import results as Draw objects.  We can not save back
to the original PDF, rather we must complete an export filter writing output to
PDF.

And, simply put, filters in both directions have fidelity issues.

As you know, numerous occasions where folks have also asked for a more
prominent "Save as PDF". Because that would have suggested that LibreOffice can
do something that it could not it was been down played--instead categorizing
our handling PDF clearly (and safely) as an Export capability. Some of the devs
have pretty strong opinions that we not pursue this association. 

In addition, while Draw is the "default" target for filter import of
PDF--Writer and Impress do just fine with the existing pdf import filter.

Also, the "Save as Hybrid PDF" of embedding ODF into PDF is kind of
useful--extending it for LibreOffice users, but is hardly standard PDF and has
other negative ramifications as there is no effective way to identify a
LibreOffice Hybrid PDF from any other PDF. (some ugly reading on that in bug
82509 and bug 79811).

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


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

2016-02-17 Thread Henry Castro
 sd/source/ui/func/fuinsert.cxx |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 6eec9807349494c54decfdd22bc2d36e70dfea2f
Author: Henry Castro 
Date:   Tue Feb 16 19:05:47 2016 -0400

tdf#97719: Canceling insert image dialog gives error dialog

Change-Id: I3ac9b0fe4d5a91d16af559ee8e38bc7be97cc694
Reviewed-on: https://gerrit.libreoffice.org/22408
Tested-by: Jenkins 
Reviewed-by: Henry Castro 

diff --git a/sd/source/ui/func/fuinsert.cxx b/sd/source/ui/func/fuinsert.cxx
index 81a0874..e1c697c 100644
--- a/sd/source/ui/func/fuinsert.cxx
+++ b/sd/source/ui/func/fuinsert.cxx
@@ -142,13 +142,13 @@ void FuInsertGraphic::DoExecute( SfxRequest& rReq )
 {
 SvxOpenGraphicDialogaDlg(SdResId(STR_INSERTGRAPHIC));
 
-if( aDlg.Execute() == GRFILTER_OK )
-{
-nError = aDlg.GetGraphic(aGraphic);
-bAsLink = aDlg.IsAsLink();
-aFileName = aDlg.GetPath();
-aFilterName = aDlg.GetCurrentFilter();
-}
+if( aDlg.Execute() != GRFILTER_OK )
+return; // cancel dialog
+
+nError = aDlg.GetGraphic(aGraphic);
+bAsLink = aDlg.IsAsLink();
+aFileName = aDlg.GetPath();
+aFilterName = aDlg.GetCurrentFilter();
 }
 
 if( nError == GRFILTER_OK )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90319] Image flip vertically or horizontally not working with png files in writer

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90319

--- Comment #25 from pasqual milvaques  ---
Problem reproduces in cinnamon mint 17.3 (which is based on ubuntu 14.04). I'm
not sure if in a vanilla ubuntu 14.04 the problem reproduces, I will try to
take a look tomorrow. Anyway I now have a functional development environment in
mint 17.03 so perhaps I could take a deeper look to what is happening there

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.0' - include/LibreOfficeKit sd/qa sd/source

2016-02-17 Thread Henry Castro
 include/LibreOfficeKit/LibreOfficeKitEnums.h|   12 +
 sd/qa/unit/tiledrendering/data/insert-delete.odp|binary
 sd/qa/unit/tiledrendering/tiledrendering.cxx|  122 
 sd/source/ui/inc/SlideSorterViewShell.hxx   |3 
 sd/source/ui/inc/ViewShell.hxx  |3 
 sd/source/ui/slidesorter/inc/model/SlideSorterModel.hxx |4 
 sd/source/ui/slidesorter/model/SlideSorterModel.cxx |   36 +++-
 7 files changed, 168 insertions(+), 12 deletions(-)

New commits:
commit 8e19dadb7734fc54c41c688854aa2649ec9acf18
Author: Henry Castro 
Date:   Wed Feb 17 20:05:30 2016 -0400

sd lok: add LOK_CALLBACK_PARTS_COUNT_CHANGED callback

In the tiled rendering case, when a slide is deleted or inserted
the sorted slides are updated on client side.

However, when .uno:Undo and .uno:Redo actions are requested on
client side the sorted slides are required to update all
sorted slides.

So every time when .uno:InsertPage, .uno:DeletePage, .uno:Undo, .uno:Redo
actions are requested, it will notify verbose action (PageInserted, 
PageDeleted)
with index on client side to update the sorted slide index.

Change-Id: Iebda2aa11be13aea8fbb6d0cc50442805d7485e9
Reviewed-on: https://gerrit.libreoffice.org/22309
Reviewed-by: Miklos Vajna 
Tested-by: Henry Castro 

diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h 
b/include/LibreOfficeKit/LibreOfficeKitEnums.h
index 343d169..7e2cc30 100644
--- a/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -280,6 +280,18 @@ typedef enum
  * }
  */
 LOK_CALLBACK_ERROR,
+
+/**
+ * A part has been added to or removed from the document.
+ *
+ * {
+ *  "action" : "PartInserted" | "PartDeleted"
+ *  "part"   : "Part Index"
+ * }
+ *
+ * Note: this is currently emitted by Impress.
+ */
+LOK_CALLBACK_PARTS_COUNT_CHANGED
 }
 LibreOfficeKitCallbackType;
 
diff --git a/sd/qa/unit/tiledrendering/data/insert-delete.odp 
b/sd/qa/unit/tiledrendering/data/insert-delete.odp
new file mode 100644
index 000..e388fb6
Binary files /dev/null and b/sd/qa/unit/tiledrendering/data/insert-delete.odp 
differ
diff --git a/sd/qa/unit/tiledrendering/tiledrendering.cxx 
b/sd/qa/unit/tiledrendering/tiledrendering.cxx
index 5c88c53..0c037f8 100644
--- a/sd/qa/unit/tiledrendering/tiledrendering.cxx
+++ b/sd/qa/unit/tiledrendering/tiledrendering.cxx
@@ -31,10 +31,14 @@
 #include 
 #include 
 
+#include 
+#include 
+#include 
 #include 
 #include 
 #include 
 #include 
+#include 
 #include 
 
 using namespace css;
@@ -51,6 +55,7 @@ public:
 virtual void tearDown() SAL_OVERRIDE;
 
 #if !defined(WNT) && !defined(MACOSX)
+void testInsertPage();
 void testRegisterCallback();
 void testPostKeyEvent();
 void testPostMouseEvent();
@@ -67,6 +72,7 @@ public:
 
 CPPUNIT_TEST_SUITE(SdTiledRenderingTest);
 #if !defined(WNT) && !defined(MACOSX)
+CPPUNIT_TEST(testInsertPage);
 CPPUNIT_TEST(testRegisterCallback);
 CPPUNIT_TEST(testPostKeyEvent);
 CPPUNIT_TEST(testPostMouseEvent);
@@ -97,6 +103,7 @@ private:
 sal_Int32 m_nPart;
 std::vector m_aSearchResultSelection;
 std::vector m_aSearchResultPart;
+std::vector m_aPageList;
 int m_nSelectionBeforeSearchResult;
 int m_nSelectionAfterSearchResult;
 #endif
@@ -223,6 +230,19 @@ void SdTiledRenderingTest::callbackImpl(int nType, const 
char* pPayload)
 }
 }
 break;
+case LOK_CALLBACK_PARTS_COUNT_CHANGED:
+{
+boost::property_tree::ptree aTree;
+std::stringstream aStream(pPayload);
+boost::property_tree::read_json(aStream, aTree);
+auto aAction = aTree.get("action", "");
+auto aPart = aTree.get("part", "");
+if (!aAction.empty() && !aPart.empty())
+{
+m_aPageList.push_back(std::atoi(aPart.data()));
+}
+}
+break;
 }
 }
 
@@ -498,6 +518,108 @@ void SdTiledRenderingTest::testSearchAllFollowedBySearch()
 CPPUNIT_ASSERT_EQUAL(OString("match"), 
pXImpressDocument->getTextSelection("text/plain;charset=utf-8", aUsedFormat));
 }
 
+void SdTiledRenderingTest::testInsertPage()
+{
+uno::Sequence aFilterOptions;
+uno::Reference xLoader(mxDesktop, uno::UNO_QUERY);
+CPPUNIT_ASSERT(xLoader.is());
+
+uno::Reference xComponent;
+xComponent = xLoader->loadComponentFromURL(
+getURLFromSrc(DATA_DIRECTORY) + OUString("insert-delete.odp"),
+"_blank",
+0,
+aFilterOptions);
+CPPUNIT_ASSERT(xComponent.is());
+
+SfxObjectShell* pFoundShell = 
SfxObjectShell::GetShellFromComponent(xComponent);
+CPPUNIT_ASSERT(pFoundShell);
+
+::sd::DrawDocShell* xDocSh = dynamic_cast(pFoundShell);
+CPPUNIT_ASSERT(xDocSh);
+
+sd::ViewShell* 

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

2016-02-17 Thread Michael Meeks
 vcl/source/control/tabctrl.cxx|2 -
 vcl/win/gdi/salnativewidgets-luna.cxx |   36 +-
 2 files changed, 28 insertions(+), 10 deletions(-)

New commits:
commit 2966d57bdfdd40a55e31408f7da75b415e809d8e
Author: Michael Meeks 
Date:   Wed Feb 17 21:42:37 2016 +

tdf#95618 - opengl - mend control regions and caching for tab headers.

Some tab headers in some themes unhelpfully enlarge the control region
in some states - so query the region size in advance. Sadly the
control region querying is something of a train-wreck too - so only
use that for CTRL_TAB_ITEMs for now.

Also fix Rectangle constructor ordering.

Change-Id: I5e66ec541193f5b66a656dd45d5fba67a771e132

diff --git a/vcl/source/control/tabctrl.cxx b/vcl/source/control/tabctrl.cxx
index 40a107d..917b637 100644
--- a/vcl/source/control/tabctrl.cxx
+++ b/vcl/source/control/tabctrl.cxx
@@ -847,8 +847,8 @@ void TabControl::ImplDrawItem(vcl::RenderContext& 
rRenderContext, ImplTabItem* p
 if (!bLayout && (bNativeOK = 
rRenderContext.IsNativeControlSupported(CTRL_TAB_ITEM, PART_ENTIRE_CONTROL)))
 {
 TabitemValue tiValue(Rectangle(pItem->maRect.Left() + TAB_TABOFFSET_X,
-   pItem->maRect.Right() - TAB_TABOFFSET_X,
pItem->maRect.Top() + TAB_TABOFFSET_Y,
+   pItem->maRect.Right() - TAB_TABOFFSET_X,
pItem->maRect.Bottom() - 
TAB_TABOFFSET_Y));
 if (pItem->maRect.Left() < 5)
 tiValue.mnAlignment |= TabitemFlags::LeftAligned;
diff --git a/vcl/win/gdi/salnativewidgets-luna.cxx 
b/vcl/win/gdi/salnativewidgets-luna.cxx
index 1fa4d58..f789f17 100644
--- a/vcl/win/gdi/salnativewidgets-luna.cxx
+++ b/vcl/win/gdi/salnativewidgets-luna.cxx
@@ -1162,20 +1162,35 @@ bool ImplDrawNativeControl( HDC hDC, HTHEME hTheme, 
RECT rc,
  *  aCaption:   A caption or title string (like button text etc)
  */
 bool WinSalGraphics::drawNativeControl( ControlType nType,
-ControlPart nPart,
-const Rectangle& rControlRegion,
-ControlState nState,
-const ImplControlValue& aValue,
-const OUString& aCaption )
+ControlPart nPart,
+const Rectangle& rControlRegion,
+ControlState nState,
+const ImplControlValue& aValue,
+const OUString& aCaption )
 {
 bool bOk = false;
 HTHEME hTheme = NULL;
 
 Rectangle buttonRect = rControlRegion;
+Rectangle cacheRect = rControlRegion;
+Size keySize = cacheRect.GetSize();
 
 WinOpenGLSalGraphicsImpl* pImpl = 
dynamic_cast(mpImpl.get());
 
-ControlCacheKey aControlCacheKey(nType, nPart, nState, 
buttonRect.GetSize());
+// tdf#95618 - A few controls render outside the region they're given.
+if (pImpl && nType == CTRL_TAB_ITEM)
+{
+Rectangle rNativeBoundingRegion;
+Rectangle rNativeContentRegion;
+if (getNativeControlRegion(nType, nPart, rControlRegion, nState, 
aValue, aCaption,
+   rNativeBoundingRegion, 
rNativeContentRegion))
+{
+cacheRect = rNativeBoundingRegion;
+keySize = rNativeBoundingRegion.GetSize();
+}
+}
+
+ControlCacheKey aControlCacheKey(nType, nPart, nState, keySize);
 if (pImpl != NULL && pImpl->TryRenderCachedNativeControl(aControlCacheKey, 
buttonRect.Left(), buttonRect.Top()))
 {
 return true;
@@ -1288,18 +1303,18 @@ bool WinSalGraphics::drawNativeControl( ControlType 
nType,
 else
 {
 // We can do OpenGL
-OpenGLCompatibleDC aBlackDC(*this, buttonRect.Left(), 
buttonRect.Top(), buttonRect.GetWidth(), buttonRect.GetHeight());
+OpenGLCompatibleDC aBlackDC(*this, cacheRect.Left(), cacheRect.Top(), 
cacheRect.GetWidth()+1, cacheRect.GetHeight()+1);
 SetTextAlign(aBlackDC.getCompatibleHDC(), 
TA_LEFT|TA_TOP|TA_NOUPDATECP);
 aBlackDC.fill(MAKE_SALCOLOR(0, 0, 0));
 
-OpenGLCompatibleDC aWhiteDC(*this, buttonRect.Left(), 
buttonRect.Top(), buttonRect.GetWidth(), buttonRect.GetHeight());
+OpenGLCompatibleDC aWhiteDC(*this, cacheRect.Left(), cacheRect.Top(), 
cacheRect.GetWidth()+1, cacheRect.GetHeight()+1);
 SetTextAlign(aWhiteDC.getCompatibleHDC(), 
TA_LEFT|TA_TOP|TA_NOUPDATECP);
 aWhiteDC.fill(MAKE_SALCOLOR(0xff, 0xff, 0xff));
 
 if (ImplDrawNativeControl(aBlackDC.getCompatibleHDC(), hTheme, rc, 
nType, nPart, nState, aValue, aCaptionStr) &&
 ImplDrawNativeControl(aWhiteDC.getCompatibleHDC(), hTheme, rc, 
nType, nPart, nState, aValue, 

[Libreoffice-bugs] [Bug 96333] Menus open in the wrong place with RTL interface under gtk3

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96333

Yotam Benshalom  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Yotam Benshalom  ---
I confirm this bug. Not only main menus are affected but also pop-up menus and
combo boxes.
Also, the buttons of the combo boxes are drawn at the opposite side of the box,
which is very ugly.

This means that gtk3 libreoffice is unusable for anyone with RTL system
interface.

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


[Libreoffice-bugs] [Bug 97932] PDF exporting destroys rotated JPEG images.

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97932

MM  changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #1 from MM  ---
Looks like a dup from bug 96653

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


[Libreoffice-commits] core.git: canvas/source chart2/source cui/source dbaccess/source drawinglayer/source editeng/source extensions/source reportdesign/source toolkit/source

2016-02-17 Thread David Ostrovsky
 canvas/source/opengl/ogl_spritedevicehelper.cxx   |2 ++
 chart2/source/controller/accessibility/AccessibleBase.cxx |1 +
 chart2/source/controller/main/ObjectHierarchy.cxx |1 +
 cui/source/customize/macropg.cxx  |1 +
 dbaccess/source/ui/app/AppControllerDnD.cxx   |1 +
 dbaccess/source/ui/dlg/DbAdminImpl.cxx|1 +
 dbaccess/source/ui/relationdesign/RelationController.cxx  |1 +
 drawinglayer/source/primitive2d/baseprimitive2d.cxx   |1 +
 editeng/source/outliner/paralist.cxx  |2 ++
 extensions/source/propctrlr/eventhandler.cxx  |1 +
 extensions/source/propctrlr/propertycomposer.cxx  |1 +
 reportdesign/source/filter/xml/xmlExport.cxx  |1 +
 reportdesign/source/ui/inspection/GeometryHandler.cxx |1 +
 toolkit/source/helper/formpdfexport.cxx   |1 +
 14 files changed, 16 insertions(+)

New commits:
commit a3c70e760fa4203b7e6692f82d1d8a14214af3da
Author: David Ostrovsky 
Date:   Wed Feb 17 23:28:26 2016 +0100

Fix missing iterator include on MSVC 14.0

Change-Id: I55de612aef52038fd9979426950d4ae4131ca586
Reviewed-on: https://gerrit.libreoffice.org/22448
Tested-by: Jenkins 
Reviewed-by: David Ostrovsky 

diff --git a/canvas/source/opengl/ogl_spritedevicehelper.cxx 
b/canvas/source/opengl/ogl_spritedevicehelper.cxx
index 80812a0..50a4499 100644
--- a/canvas/source/opengl/ogl_spritedevicehelper.cxx
+++ b/canvas/source/opengl/ogl_spritedevicehelper.cxx
@@ -30,6 +30,8 @@
 #include "ogl_canvascustomsprite.hxx"
 #include "ogl_texturecache.hxx"
 
+#include 
+
 using namespace ::com::sun::star;
 
 static void initContext()
diff --git a/chart2/source/controller/accessibility/AccessibleBase.cxx 
b/chart2/source/controller/accessibility/AccessibleBase.cxx
index ad2da37..350a593 100644
--- a/chart2/source/controller/accessibility/AccessibleBase.cxx
+++ b/chart2/source/controller/accessibility/AccessibleBase.cxx
@@ -51,6 +51,7 @@
 #include 
 
 #include 
+#include 
 
 #include "ChartElementFactory.hxx"
 
diff --git a/chart2/source/controller/main/ObjectHierarchy.cxx 
b/chart2/source/controller/main/ObjectHierarchy.cxx
index fb2f37e..d9c82de 100644
--- a/chart2/source/controller/main/ObjectHierarchy.cxx
+++ b/chart2/source/controller/main/ObjectHierarchy.cxx
@@ -34,6 +34,7 @@
 
 #include 
 #include 
+#include 
 
 #include 
 #include 
diff --git a/cui/source/customize/macropg.cxx b/cui/source/customize/macropg.cxx
index 927a2dd..778b513 100644
--- a/cui/source/customize/macropg.cxx
+++ b/cui/source/customize/macropg.cxx
@@ -43,6 +43,7 @@
 #include 
 
 #include 
+#include 
 #include 
 
 using namespace ::com::sun::star;
diff --git a/dbaccess/source/ui/app/AppControllerDnD.cxx 
b/dbaccess/source/ui/app/AppControllerDnD.cxx
index cc71d6b..151ad46 100644
--- a/dbaccess/source/ui/app/AppControllerDnD.cxx
+++ b/dbaccess/source/ui/app/AppControllerDnD.cxx
@@ -68,6 +68,7 @@
 #include "dbexchange.hxx"
 #include "UITools.hxx"
 #include 
+#include 
 #include 
 #include 
 #include 
diff --git a/dbaccess/source/ui/dlg/DbAdminImpl.cxx 
b/dbaccess/source/ui/dlg/DbAdminImpl.cxx
index 91ae318..7d9a004 100644
--- a/dbaccess/source/ui/dlg/DbAdminImpl.cxx
+++ b/dbaccess/source/ui/dlg/DbAdminImpl.cxx
@@ -69,6 +69,7 @@
 #include 
 
 #include 
+#include 
 #include 
 #include 
 
diff --git a/dbaccess/source/ui/relationdesign/RelationController.cxx 
b/dbaccess/source/ui/relationdesign/RelationController.cxx
index 29a71be..c5e17da 100644
--- a/dbaccess/source/ui/relationdesign/RelationController.cxx
+++ b/dbaccess/source/ui/relationdesign/RelationController.cxx
@@ -19,6 +19,7 @@
 
 #include 
 
+#include 
 #include 
 
 #include "dbu_reghelper.hxx"
diff --git a/drawinglayer/source/primitive2d/baseprimitive2d.cxx 
b/drawinglayer/source/primitive2d/baseprimitive2d.cxx
index 382cdbb..6f89cf3 100644
--- a/drawinglayer/source/primitive2d/baseprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/baseprimitive2d.cxx
@@ -19,6 +19,7 @@
 
 #include 
 
+#include 
 #include 
 
 #include 
diff --git a/editeng/source/outliner/paralist.cxx 
b/editeng/source/outliner/paralist.cxx
index 5c0a2c2..3912f58 100644
--- a/editeng/source/outliner/paralist.cxx
+++ b/editeng/source/outliner/paralist.cxx
@@ -26,6 +26,8 @@
 #include 
 #include 
 
+#include 
+
 ParagraphData::ParagraphData()
 : nDepth( -1 )
 , mnNumberingStartValue( -1 )
diff --git a/extensions/source/propctrlr/eventhandler.cxx 
b/extensions/source/propctrlr/eventhandler.cxx
index d2ac643..496ccd0 100644
--- a/extensions/source/propctrlr/eventhandler.cxx
+++ b/extensions/source/propctrlr/eventhandler.cxx
@@ -69,6 +69,7 @@
 
 #include 
 #include 
+#include 
 #include 
 
 extern "C" void SAL_CALL createRegistryInfo_EventHandler()
diff --git a/extensions/source/propctrlr/propertycomposer.cxx 

[MSVC 14.0] jpeg-turbo breakage on master

2016-02-17 Thread David Ostrovsky
@Stephan,

could you please have a look, why this change: [1] broke jpeg-turbo 
compilation on MSVC 14.0.

For the record, MS did a great job in splitting the include path in two

* compiler internal
* UCRT (Universal C Runtime)

This is mapped in configure.ac: [2] and respected in external modules.
When you overwrite CFLAGS in the invocation of gcc-warpper, then
presumably the UCRT include path is lost.

Here is the config.log with offended commit: [3]. And this one after
I've reverted it: [4], you see the include, it worked in the end.
This solved the breakage, caused by: [1].

[1] https://cgit.freedesktop.org/libreoffice/core/commit/?id=8729504f93
c8b59cb2fd6145a1f02987d5fcdb47
[2] http://paste.openstack.org/show/487351
[3] http://paste.openstack.org/show/487348
[4] http://paste.openstack.org/show/487349
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 62255] FILEOPEN: PPTX Import background color of table is set to light blue

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62255

matus.uzak  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |matus.u...@gmail.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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97226] Can not open Remote Files in Google Drive on Win XP x86

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97226

Razak  changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
 OS|Windows (All)   |All

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


[Libreoffice-bugs] [Bug 97226] Can not open Remote Files in Google Drive on Win XP x86

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97226

--- Comment #4 from Razak  ---
The same problem

If you have turned on 2-step authentication:
do not go
If it is turned off, will succeed

I would like to be left switched on. I'd feel safe

The Google application code is not good. (16 digit)

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


[Libreoffice-bugs] [Bug 96727] After upgrading to LO 5.1 there is a grey line below the menu bar

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96727

--- Comment #3 from antara...@web.de ---
Created attachment 122743
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122743=edit
Screenshot showing grey boxes around menu bars

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


[Libreoffice-bugs] [Bug 96727] After upgrading to LO 5.1 there is a grey line below the menu bar

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96727

--- Comment #2 from antara...@web.de ---
Build-ID: 1:5.1.0~rc3-0ubuntu2
OS: Ubuntu 16.04 beta

For me it’s two entire grey boxes around the menu bars: see screenshot. The
problem also exists with themes other than Numix (like Gnome’s standard
Adwaita).

However, since I’m currently using the unstable Ubuntu Xenial Xerus, this might
as well be OS-related.

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


[Libreoffice-bugs] [Bug 97955] New: Faulty Spell Checker

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97955

Bug ID: 97955
   Summary: Faulty Spell Checker
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Linguistic
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ja...@honeybank.co.uk

When running the spell check, and selecting all corrections, even after saving
the file reverts to the incorrect spellings

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1-1' - 4 commits - vcl/opengl

2016-02-17 Thread Michael Meeks
 vcl/opengl/gdiimpl.cxx |   13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

New commits:
commit 751d6cbc16a010e3f8712da26bb8a1edaf93034b
Author: Michael Meeks 
Date:   Wed Feb 17 21:28:17 2016 +

Revert bits pushed to wrong branch.

This reverts commit d60bbf190dd993827cda86862af6c58fdbb36e84.
This reverts commit 17d91c85fe91b21cb77afa343c4f1217ea8081ed.

diff --git a/include/vcl/salnativewidgets.hxx b/include/vcl/salnativewidgets.hxx
index 0789270..8c1176a 100644
--- a/include/vcl/salnativewidgets.hxx
+++ b/include/vcl/salnativewidgets.hxx
@@ -288,12 +288,6 @@ public:
 case CTRL_RADIOBUTTON:
 case CTRL_LISTNODE:
 case CTRL_SLIDER:
-// FIXME: these guys have complex state hidden in ImplControlValue
-// structs which affects rendering, needs to be a and needs to be
-// part of the key to our cache.
-case CTRL_SPINBOX:
-case CTRL_SPINBUTTONS:
-case CTRL_TAB_ITEM:
 return false;
 
 case CTRL_MENUBAR:
diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx
index 11958cd..12a0b70 100644
--- a/include/vcl/toolbox.hxx
+++ b/include/vcl/toolbox.hxx
@@ -155,8 +155,7 @@ public:
 using Window::ImplInit;
 private:
 SAL_DLLPRIVATE void InvalidateItem(sal_uInt16 nPosition);
-SAL_DLLPRIVATE void InvalidateSpin(bool bInvalidateUpper = true,
-   bool bInvalidateLower = true);
+SAL_DLLPRIVATE void InvalidateSpin(bool bUpperIn, bool bLowerIn);
 SAL_DLLPRIVATE void InvalidateMenuButton();
 
 SAL_DLLPRIVATE voidImplInit( vcl::Window* pParent, WinBits 
nStyle );
diff --git a/vcl/source/control/spinfld.cxx b/vcl/source/control/spinfld.cxx
index daf4b5f..5f86629 100644
--- a/vcl/source/control/spinfld.cxx
+++ b/vcl/source/control/spinfld.cxx
@@ -142,9 +142,8 @@ bool ImplDrawNativeSpinbuttons(vcl::RenderContext& 
rRenderContext, const Spinbut
 
 if (rRenderContext.IsNativeControlSupported(CTRL_SPINBUTTONS, 
PART_ENTIRE_CONTROL))
 {
-Rectangle aArea = 
rSpinbuttonValue.maUpperRect.GetUnion(rSpinbuttonValue.maLowerRect);
 // only paint the standalone spin buttons, all buttons are painted at 
once
-bNativeOK = rRenderContext.DrawNativeControl(CTRL_SPINBUTTONS, 
PART_ALL_BUTTONS, aArea,
+bNativeOK = rRenderContext.DrawNativeControl(CTRL_SPINBUTTONS, 
PART_ALL_BUTTONS, Rectangle(),
  ControlState::ENABLED, 
rSpinbuttonValue, OUString());
 }
 return bNativeOK;
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index 62140e4..e0e8492 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -3455,7 +3455,8 @@ bool ToolBox::ImplHandleMouseMove( const MouseEvent& 
rMEvt, bool bRepeat )
 if ( bNewIn != mbIn )
 {
 mbIn = bNewIn;
-InvalidateSpin(true, false);
+Invalidate();
+InvalidateSpin(mbIn, false);
 }
 return true;
 }
@@ -3466,7 +3467,7 @@ bool ToolBox::ImplHandleMouseMove( const MouseEvent& 
rMEvt, bool bRepeat )
 if ( bNewIn != mbIn )
 {
 mbIn = bNewIn;
-InvalidateSpin(false, true);
+InvalidateSpin(false, mbIn);
 }
 return true;
 }
@@ -3581,7 +3582,7 @@ bool ToolBox::ImplHandleMouseButtonUp( const MouseEvent& 
rMEvt, bool bCancel )
 mbUpper = false;
 mbLower = false;
 mbIn= false;
-InvalidateSpin();
+InvalidateSpin(false, false);
 return true;
 }
 
@@ -4483,7 +4484,7 @@ void ToolBox::Command( const CommandEvent& rCEvt )
 ShowLine( false );
 else if ( (mnCurLine+mnVisLines-1 < mnCurLines) && 
(pData->GetDelta() < 0) )
 ShowLine( true );
-InvalidateSpin();
+InvalidateSpin(false, false);
 return;
 }
 }
@@ -5192,7 +5193,7 @@ void ToolBox::KeyInput( const KeyEvent& rKEvt )
 mnCurLine = 1;
 mbFormat = true;
 ImplFormat();
-InvalidateSpin();
+InvalidateSpin(false, false);
 ImplChangeHighlight( ImplGetFirstValidItem( mnCurLine ) );
 }
 break;
@@ -5205,7 +5206,7 @@ void ToolBox::KeyInput( const KeyEvent& rKEvt )
 mnCurLine = mnCurLines;
 mbFormat = true;
 ImplFormat();
-InvalidateSpin();
+InvalidateSpin(false, false);
 ImplChangeHighlight( ImplGetFirstValidItem( mnCurLine ) );
 }
 break;
commit 17d91c85fe91b21cb77afa343c4f1217ea8081ed
Author: Michael Meeks 
Date:   Wed Feb 17 21:05:50 2016 +

tdf#97922 - Mend 

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

2016-02-17 Thread Michael Meeks
 include/vcl/salnativewidgets.hxx |6 ++
 include/vcl/toolbox.hxx  |3 ++-
 vcl/source/control/spinfld.cxx   |3 ++-
 vcl/source/window/toolbox.cxx|   13 ++---
 4 files changed, 16 insertions(+), 9 deletions(-)

New commits:
commit 497c511f082d8c0eb0db0f7cbc490a6c91f78d66
Author: Michael Meeks 
Date:   Wed Feb 17 21:56:54 2016 +

tdf#97922 - Mend nonsensical spin invalidation to improve rendering.

Change-Id: Ief3d95b0b03e8062115785461b3834a03f9fb52b

diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index 9c1e93b..0d076a4 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -3581,7 +3581,7 @@ bool ToolBox::ImplHandleMouseButtonUp( const MouseEvent& 
rMEvt, bool bCancel )
 mbUpper = false;
 mbLower = false;
 mbIn= false;
-InvalidateSpin(false, false);
+InvalidateSpin();
 return true;
 }
 
commit c4c3aa5cd957067709e24037d7f40246039660fc
Author: Michael Meeks 
Date:   Wed Feb 17 21:05:50 2016 +

tdf#97922 - Mend nonsensical spin invalidation to improve rendering.

Change-Id: I3a398c47c69cc292a681ebe2414d844c224f3e3e

diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx
index 12a0b70..11958cd 100644
--- a/include/vcl/toolbox.hxx
+++ b/include/vcl/toolbox.hxx
@@ -155,7 +155,8 @@ public:
 using Window::ImplInit;
 private:
 SAL_DLLPRIVATE void InvalidateItem(sal_uInt16 nPosition);
-SAL_DLLPRIVATE void InvalidateSpin(bool bUpperIn, bool bLowerIn);
+SAL_DLLPRIVATE void InvalidateSpin(bool bInvalidateUpper = true,
+   bool bInvalidateLower = true);
 SAL_DLLPRIVATE void InvalidateMenuButton();
 
 SAL_DLLPRIVATE voidImplInit( vcl::Window* pParent, WinBits 
nStyle );
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx
index b147b0e..9c1e93b 100644
--- a/vcl/source/window/toolbox.cxx
+++ b/vcl/source/window/toolbox.cxx
@@ -3457,8 +3457,7 @@ bool ToolBox::ImplHandleMouseMove( const MouseEvent& 
rMEvt, bool bRepeat )
 if ( bNewIn != mbIn )
 {
 mbIn = bNewIn;
-Invalidate();
-InvalidateSpin(mbIn, false);
+InvalidateSpin(true, false);
 }
 return true;
 }
@@ -3469,7 +3468,7 @@ bool ToolBox::ImplHandleMouseMove( const MouseEvent& 
rMEvt, bool bRepeat )
 if ( bNewIn != mbIn )
 {
 mbIn = bNewIn;
-InvalidateSpin(false, mbIn);
+InvalidateSpin(false, true);
 }
 return true;
 }
@@ -4482,7 +4481,7 @@ void ToolBox::Command( const CommandEvent& rCEvt )
 ShowLine( false );
 else if ( (mnCurLine+mnVisLines-1 < mnCurLines) && 
(pData->GetDelta() < 0) )
 ShowLine( true );
-InvalidateSpin(false, false);
+InvalidateSpin();
 return;
 }
 }
@@ -5188,7 +5187,7 @@ void ToolBox::KeyInput( const KeyEvent& rKEvt )
 mnCurLine = 1;
 mbFormat = true;
 ImplFormat();
-InvalidateSpin(false, false);
+InvalidateSpin();
 ImplChangeHighlight( ImplGetFirstValidItem( mnCurLine ) );
 }
 break;
@@ -5201,7 +5200,7 @@ void ToolBox::KeyInput( const KeyEvent& rKEvt )
 mnCurLine = mnCurLines;
 mbFormat = true;
 ImplFormat();
-InvalidateSpin(false, false);
+InvalidateSpin();
 ImplChangeHighlight( ImplGetFirstValidItem( mnCurLine ) );
 }
 break;
commit 469ce3ed324c784a2af1e2fdb0a1f09e28170def
Author: Michael Meeks 
Date:   Wed Feb 17 20:42:52 2016 +

tdf#97922 - get control area right for spinbuttons.

Also avoid caching both spin-buttons and some other complex types.
The cache key needs to be able to include more state.

Change-Id: I8eff6b1c5c51d27afb796cae66b45390433138b4

diff --git a/include/vcl/salnativewidgets.hxx b/include/vcl/salnativewidgets.hxx
index 55de313..0b60312 100644
--- a/include/vcl/salnativewidgets.hxx
+++ b/include/vcl/salnativewidgets.hxx
@@ -286,6 +286,12 @@ public:
 case CTRL_RADIOBUTTON:
 case CTRL_LISTNODE:
 case CTRL_SLIDER:
+// FIXME: these guys have complex state hidden in ImplControlValue
+// structs which affects rendering, needs to be a and needs to be
+// part of the key to our cache.
+case CTRL_SPINBOX:
+case CTRL_SPINBUTTONS:
+case CTRL_TAB_ITEM:
 return false;
 
 case CTRL_MENUBAR:
diff --git a/vcl/source/control/spinfld.cxx b/vcl/source/control/spinfld.cxx
index 1ef9c96..e0bcf16 100644
--- 

[Libreoffice-bugs] [Bug 97951] Draw not registered with OS as a PDF editor

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97951

--- Comment #2 from steve -_-  ---
Confirmed on OS X.

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


[Libreoffice-bugs] [Bug 97954] New: Spell checker manual corrections of misplaced punctuation freeze

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97954

Bug ID: 97954
   Summary: Spell checker manual corrections of misplaced
punctuation freeze
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: litre...@charter.net

changing weapo,ns to weapons, causes Writer to into NOT RESPONDING state while
in spell checker when the checker advances to recheck the word.

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


[Libreoffice-ux-advise] [Bug 97946] LibreOffice components should be single .apps on OS X

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97946

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||philip...@hotmail.com
 Ever confirmed|0   |1

--- Comment #1 from Yousuf (Jay) Philips  ---
Usability-wise, having the entries for each of the modules appearing in the
application menu on OS X like it does on other platforms is a win for
application discovery and search, so users dont always need to begin at the
start center.

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


[Libreoffice-bugs] [Bug 97946] LibreOffice components should be single .apps on OS X

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97946

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||philip...@hotmail.com
 Ever confirmed|0   |1

--- Comment #1 from Yousuf (Jay) Philips  ---
Usability-wise, having the entries for each of the modules appearing in the
application menu on OS X like it does on other platforms is a win for
application discovery and search, so users dont always need to begin at the
start center.

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


[Libreoffice-bugs] [Bug 97951] Draw not registered with OS as a PDF editor

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97951

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||needsDevEval, topicUI
 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |momonas...@gmail.com
   |.freedesktop.org|
  Component|ux-advise   |Draw
 Ever confirmed|0   |1

--- Comment #1 from Yousuf (Jay) Philips  ---
I would assume that this feature should be easy to implement on other
platforms, as i've sent in a patch to fix it on linux.

https://gerrit.libreoffice.org/22445

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


[Libreoffice-ux-advise] [Bug 97951] Draw not registered with OS as a PDF editor

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97951

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||needsDevEval, topicUI
 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |momonas...@gmail.com
   |.freedesktop.org|
  Component|ux-advise   |Draw
 Ever confirmed|0   |1

--- Comment #1 from Yousuf (Jay) Philips  ---
I would assume that this feature should be easy to implement on other
platforms, as i've sent in a patch to fix it on linux.

https://gerrit.libreoffice.org/22445

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


[Libreoffice-bugs] [Bug 93529] Meta: VCL/OpenGL tracker bug for 5.0+

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 97922, which changed state.

Bug 97922 Summary: Customize Toolbar Change Icon List does not show all icons
https://bugs.documentfoundation.org/show_bug.cgi?id=97922

   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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97922] Customize Toolbar Change Icon List does not show all icons

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97922

Michael Meeks  changed:

   What|Removed |Added

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

--- Comment #7 from Michael Meeks  ---
Fixed in master and queued for -5-1 as:

https://gerrit.libreoffice.org/22443
tdf#97922 - get control area right for spinbuttons.
https://gerrit.libreoffice.org/22444
tdf#97922 - Mend nonsensical spin invalidation to improve rendering.

Thanks for filing =) turns out there is a rats nest of nonsense associated with
this feature of the toolbar (sadly).

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


[Libreoffice-bugs] [Bug 97952] gtk3 / CTRL_SPINBUTTONS oddness ...

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97952

Michael Meeks  changed:

   What|Removed |Added

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

--- Comment #1 from Michael Meeks  ---
stupid dup I filed - bad cnx. etc.

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


[Libreoffice-bugs] [Bug 97953] gtk3 / CTRL_SPINBUTTONS oddness ...

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97953

Michael Meeks  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||caol...@redhat.com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=97
   ||922
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 97922] Customize Toolbar Change Icon List does not show all icons

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97922

Michael Meeks  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=97
   ||953

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


[Libreoffice-bugs] [Bug 97953] New: gtk3 / CTRL_SPINBUTTONS oddness ...

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97953

Bug ID: 97953
   Summary: gtk3 / CTRL_SPINBUTTONS oddness ...
   Product: LibreOffice
   Version: 5.1.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michael.me...@collabora.com

Looks pretty odd before my patch:

commit a3566b6700a1d7818b6ca6ba5e15b4b8227e94c8
Author: Michael Meeks 
Date:   Wed Feb 17 20:42:52 2016 +

tdf#97922 - get control area right for spinbuttons.

And still not great afterwards; bug#97922 gives some great steps to see a
toolbar with this up/down 'feature' =)

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


[Libreoffice-bugs] [Bug 97952] New: gtk3 / CTRL_SPINBUTTONS oddness ...

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97952

Bug ID: 97952
   Summary: gtk3 / CTRL_SPINBUTTONS oddness ...
   Product: LibreOffice
   Version: 5.1.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michael.me...@collabora.com

Looks pretty odd before my patch:

commit a3566b6700a1d7818b6ca6ba5e15b4b8227e94c8
Author: Michael Meeks 
Date:   Wed Feb 17 20:42:52 2016 +

tdf#97922 - get control area right for spinbuttons.

And still not great afterwards; bug#97922 gives some great steps to see a
toolbar with this up/down 'feature' =)

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


[Libreoffice-bugs] [Bug 97895] [META] FILEOPEN RTF layout problem with table, checkboxes, extra pages

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97895

--- Comment #2 from Óvári  ---
(In reply to Beluga from comment #1)
> Yep, but each of these should go in their own report.

Bug 97947 - FILEOPEN RTF layout problem with table
Table on page 3 extends past right page boundary.

Bug 97948 - FILEOPEN RTF layout problem with checkboxes
Check boxes all checked; checkboxes should be unchecked.

Bug 97949 - FILEOPEN RTF layout problem with page 2 extending to page 3
Page 2 extends over to page 3.

Bug 97950 - FILEOPEN RTF layout problem with extra pages
Lots of blank pages at the end of the document making it a 27 page document;
should be 4 pages in total.

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


[Libreoffice-bugs] [Bug 97895] [META] FILEOPEN RTF layout problem with table, checkboxes, extra pages

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97895

Óvári  changed:

   What|Removed |Added

Summary|FILEOPEN RTF layout problem |[META] FILEOPEN RTF layout
   |with table, checkboxes, |problem with table,
   |extra pages |checkboxes, extra pages

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


[Libreoffice-bugs] [Bug 97895] FILEOPEN RTF layout problem with table, checkboxes, extra pages

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97895

Óvári  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=97 |
   |947,|
   |https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=97 |
   |948 |
 Depends on||97947, 97948

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


[Libreoffice-bugs] [Bug 97948] FILEOPEN RTF layout problem with checkboxes

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97948

Óvári  changed:

   What|Removed |Added

 Blocks||97895
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=97 |
   |895 |

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


[Libreoffice-bugs] [Bug 97947] FILEOPEN RTF layout problem with table

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97947

Óvári  changed:

   What|Removed |Added

 Blocks||97895
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=97 |
   |895 |

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


[Libreoffice-ux-advise] [Bug 97951] New: Draw not registered with OS as a PDF editor

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97951

Bug ID: 97951
   Summary: Draw not registered with OS as a PDF editor
   Product: LibreOffice
   Version: 5.1.1.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-b...@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-advise@lists.freedesktop.org

Draw has the ability to edit PDFs, but this feature is heavily unknown to
users, and this feature could be more easily exposed if Draw was registered as
a PDF opener/editor, so if a user right-clicked on a PDF file, they would have
the option to open it with Draw.

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


[Libreoffice-bugs] [Bug 97951] New: Draw not registered with OS as a PDF editor

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97951

Bug ID: 97951
   Summary: Draw not registered with OS as a PDF editor
   Product: LibreOffice
   Version: 5.1.1.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

Draw has the ability to edit PDFs, but this feature is heavily unknown to
users, and this feature could be more easily exposed if Draw was registered as
a PDF opener/editor, so if a user right-clicked on a PDF file, they would have
the option to open it with Draw.

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


[Libreoffice-bugs] [Bug 93327] Can't open document with webdav(s) url (dav:// or davs://)

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93327

Julien Nabet  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #11 from Julien Nabet  ---
(In reply to Giuseppe Castagno (aka beppec56) from comment #10)
>...
> Where it's clearly stated the addon supports only up to LO 4.2.8.2.
> See comment 2 for old Google code link.
> ...
So not our bug, addon just needs to evolve.

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


[Libreoffice-bugs] [Bug 97950] FILEOPEN RTF layout problem with extra pages

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97950

Óvári  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
 Blocks||97895

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


[Libreoffice-bugs] [Bug 97895] FILEOPEN RTF layout problem with table, checkboxes, extra pages

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97895

Óvári  changed:

   What|Removed |Added

 Depends on||97950

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


[Libreoffice-bugs] [Bug 97950] New: FILEOPEN RTF layout problem with extra pages

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97950

Bug ID: 97950
   Summary: FILEOPEN RTF layout problem with extra pages
   Product: LibreOffice
   Version: 5.1.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ovar...@gmail.com

Attached government RTF document from bug 97895 does not display correctly:
Births, Deaths and Marriages Registration Act 1997—Form 201-BRS — Birth
registration statement
http://www.legislation.act.gov.au/af/2014-46/default.asp

Lots of blank pages at the end of the document making it a 27 page document;
should be 4 pages in total.

Thank you

Linux Mint 17.3 64-bit Cinnamon
LO Version: 5.1.0.3
Build ID: 5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737
CPU Threads: 2; OS Version: Linux 3.19; UI Render: default

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


[Libreoffice-bugs] [Bug 97949] FILEOPEN RTF layout problem with page 2 extending to page 3

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97949

Óvári  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
 Blocks||97895

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


[Libreoffice-bugs] [Bug 97895] FILEOPEN RTF layout problem with table, checkboxes, extra pages

2016-02-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97895

Óvári  changed:

   What|Removed |Added

 Depends on||97949

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


  1   2   3   4   5   >