[Libreoffice-bugs] [Bug 96067] Crash on undo row inserts

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96067

--- Comment #14 from Commit Notification 
 ---
Oliver Specht committed a patch related to this issue.
It has been pushed to "libreoffice-5-1-0":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=151aba28ba46d6f0aae6ac69b70144e713d466e1=libreoffice-5-1-0

tdf#96067: fix crash in undo of table row insertion

It will be available in 5.1.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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


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

2016-01-13 Thread Oliver Specht
 sw/source/core/undo/untbl.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 151aba28ba46d6f0aae6ac69b70144e713d466e1
Author: Oliver Specht 
Date:   Tue Jan 12 13:05:56 2016 +0100

tdf#96067: fix crash in undo of table row insertion

create SwIterator with SwLayoutFrame instead of SwTabFrame
the wrong usage worked with tools/rtti because of incomplete
type information above of SwLayoutFrame

Change-Id: I9967fa1b534fc28dc5e0cd1fa5b64179faa9b94d
Reviewed-on: https://gerrit.libreoffice.org/21420
Reviewed-by: Stephan Bergmann 
Tested-by: Stephan Bergmann 

diff --git a/sw/source/core/undo/untbl.cxx b/sw/source/core/undo/untbl.cxx
index 116c686..2072eda 100644
--- a/sw/source/core/undo/untbl.cxx
+++ b/sw/source/core/undo/untbl.cxx
@@ -1094,7 +1094,7 @@ void _SaveTable::NewFrameFormat( const SwTableLine* 
pTableLn, const SwTableBox*
 }
 
 // first re-assign Frames
-SwIterator aIter( *pOldFormat );
+SwIterator aIter( *pOldFormat );
 for( SwFrame* pLast = aIter.First(); pLast; pLast = aIter.Next() )
 {
 if( pTableLn ? static_cast(pLast)->GetTabLine() == 
pTableLn
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-13 Thread Miklos Vajna
 xmlsecurity/inc/xmlsecurity/documentsignaturehelper.hxx|7 +
 xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx |5 
 xmlsecurity/source/component/documentdigitalsignatures.cxx |8 -
 xmlsecurity/source/helper/documentsignaturehelper.cxx  |   13 ++
 xmlsecurity/source/helper/xmlsignaturehelper.cxx   |   80 +
 xmlsecurity/source/helper/xsecctl.cxx  |1 
 xmlsecurity/source/helper/xsecctl.hxx  |2 
 xmlsecurity/source/helper/xsecverify.cxx   |   11 -
 8 files changed, 118 insertions(+), 9 deletions(-)

New commits:
commit dbfb82b6da0f4e6d7be9a0010eb4db8e1bf92ee0
Author: Miklos Vajna 
Date:   Wed Jan 13 09:37:10 2016 +0100

xmlsecurity: refactor to allow multiple signature parser implementations

Change-Id: I1d1ae4a0bf41b89fe2f8db9b44d3b0b7a0dfd1cd

diff --git a/xmlsecurity/source/helper/xsecctl.cxx 
b/xmlsecurity/source/helper/xsecctl.cxx
index 2cdfbb1..cc6a2e1 100644
--- a/xmlsecurity/source/helper/xsecctl.cxx
+++ b/xmlsecurity/source/helper/xsecctl.cxx
@@ -56,7 +56,6 @@ XSecController::XSecController( const 
cssu::Reference&
 , m_nStatusOfSecurityComponents(UNINITIALIZED)
 , m_bIsSAXEventKeeperSticky(false)
 , m_pErrorMessage(nullptr)
-, m_pXSecParser(nullptr)
 , m_nReservedSignatureId(0)
 , m_bVerifyCurrentSignature(false)
 {
diff --git a/xmlsecurity/source/helper/xsecctl.hxx 
b/xmlsecurity/source/helper/xsecctl.hxx
index 916fb3c..734ecdb 100644
--- a/xmlsecurity/source/helper/xsecctl.hxx
+++ b/xmlsecurity/source/helper/xsecctl.hxx
@@ -310,7 +310,7 @@ private:
 /*
  * the XSecParser which is used to parse the signature stream
  */
-XSecParser *m_pXSecParser;
+css::uno::Reference m_xSecParser;
 
 /*
  * the caller assigned signature id for the next signature in the
diff --git a/xmlsecurity/source/helper/xsecverify.cxx 
b/xmlsecurity/source/helper/xsecverify.cxx
index 6f09354..ba89bad 100644
--- a/xmlsecurity/source/helper/xsecverify.cxx
+++ b/xmlsecurity/source/helper/xsecverify.cxx
@@ -31,6 +31,7 @@
 #include 
 #include 
 
+using namespace com::sun::star;
 namespace cssu = com::sun::star::uno;
 namespace cssl = com::sun::star::lang;
 namespace cssxc = com::sun::star::xml::crypto;
@@ -371,7 +372,7 @@ void XSecController::collectToVerify( const OUString& 
referenceId )
 
 void XSecController::addSignature( sal_Int32 nSignatureId )
 {
-DBG_ASSERT( m_pXSecParser != nullptr, "No XSecParser initialized" );
+DBG_ASSERT( m_xSecParser.is(), "No XSecParser initialized" );
 
 m_nReservedSignatureId = nSignatureId;
 m_bVerifyCurrentSignature = true;
@@ -379,18 +380,18 @@ void XSecController::addSignature( sal_Int32 nSignatureId 
)
 
 cssu::Reference< cssxs::XDocumentHandler > 
XSecController::createSignatureReader()
 {
-m_pXSecParser = new XSecParser( this, nullptr );
-cssu::Reference< cssl::XInitialization > xInitialization = m_pXSecParser;
+m_xSecParser = new XSecParser( this, nullptr );
+cssu::Reference< cssl::XInitialization > xInitialization(m_xSecParser, 
uno::UNO_QUERY);
 
 setSAXChainConnector(xInitialization, nullptr, nullptr);
 
-return m_pXSecParser;
+return m_xSecParser;
 }
 
 void XSecController::releaseSignatureReader()
 {
 clearSAXChainConnector( );
-m_pXSecParser = nullptr;
+m_xSecParser.clear();
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
commit 5524754e9f7c936f7152f49815af0e11d9c92613
Author: Miklos Vajna 
Date:   Wed Jan 13 09:36:06 2016 +0100

xmlsecurity: initial 
XMLSignatureHelper::ReadAndVerifySignatureStorageStream()

Change-Id: Ida3f77a763c55a7ec8a52a3de4521d18a952e752

diff --git a/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx 
b/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx
index bf5cfea..ea954d1 100644
--- a/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx
+++ b/xmlsecurity/inc/xmlsecurity/xmlsignaturehelper.hxx
@@ -178,8 +178,10 @@ public:
 static void CloseDocumentHandler( const ::com::sun::star::uno::Reference< 
com::sun::star::xml::sax::XDocumentHandler>& xDocumentHandler );
 static void ExportSignature( const com::sun::star::uno::Reference< 
com::sun::star::xml::sax::XDocumentHandler >& xDocumentHandler, const 
SignatureInformation& signatureInfo );
 
-/// Read and verify an OOXML signature.
+/// Read and verify OOXML signatures.
 bool ReadAndVerifySignatureStorage(const 
css::uno::Reference& xStorage);
+/// Read and verify a single OOXML signature.
+bool ReadAndVerifySignatureStorageStream(const 
css::uno::Reference& xInputStream);
 };
 
 #endif // INCLUDED_XMLSECURITY_INC_XMLSECURITY_XMLSIGNATUREHELPER_HXX
diff --git a/xmlsecurity/source/helper/xmlsignaturehelper.cxx 
b/xmlsecurity/source/helper/xmlsignaturehelper.cxx
index 89d5d95..95f26e3 100644
--- a/xmlsecurity/source/helper/xmlsignaturehelper.cxx
+++ 

Re: [Libreoffice-commits] core.git: New saving behavior

2016-01-13 Thread Lionel Elie Mamane
> On 12/23/2015 10:38 AM, Maxim Monastirsky wrote:
> >commit 22328a224df4619218b88205838307f70612207e
> >Author: Maxim Monastirsky 
> >Date:   Tue Dec 22 13:12:23 2015 +0200
> >
> > New saving behavior
> >
> > Changes in this commit:
> >
> > - AlwaysAllowSave config is gone. Saving is always permitted, unless in
> >   a read only document. Also changed the behavior in dbaccess to match
> >   sfx2.

I'm rather worried about the hunks that remove the
OInterceptor::documentEventOccured stuff, which was registered as a
DocumentEventListener. I'm afraid that this is the mechanism that was
used for embedded databases to do the actual "save embedded database
in the ZIP" step.

For firebird, see connectivity/source/drivers/firebird/Connection.cxx
near the end of Connection::construct.

For HSQLDB, I'm not quite sure how it is done exactly. I know it
overrides HSQLDB's output functions at the Java level (see
connectivity/source/drivers/hsqldb/*Storage*.cxx), but I'm not sure
how this is synchronised with the other stuff in the ZIP structure
(the .odb file).

Did you ascertain that my above worry is not founded? If not, could
you please kindly do?

If my above worry is not founded, then what was this
OInterceptor::documentEventOccured used for?

Thanks in advance.

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


[Libreoffice-commits] core.git: 9 commits - include/svtools include/svx svtools/inc svtools/source svx/source ucb/source UnoControls/inc unotools/source vbahelper/source writerfilter/source xmloff/inc

2016-01-13 Thread Noel Grandin
 UnoControls/inc/multiplexer.hxx   |2 
 include/svtools/accessibletable.hxx   |2 
 include/svtools/brwbox.hxx|2 
 include/svtools/contextmenuhelper.hxx |2 
 include/svtools/ctrlbox.hxx   |2 
 include/svtools/editbrowsebox.hxx |1 
 include/svtools/ehdl.hxx  |2 
 include/svtools/extcolorcfg.hxx   |3 
 include/svtools/grfmgr.hxx|4 
 include/svtools/imap.hxx  |1 
 include/svtools/inetimg.hxx   |2 
 include/svtools/ivctrl.hxx|2 
 include/svtools/parhtml.hxx   |2 
 include/svtools/svlbitm.hxx   |2 
 include/svtools/svparser.hxx  |   14 +-
 include/svtools/tabbar.hxx|2 
 include/svtools/treelistbox.hxx   |   10 -
 include/svtools/valueset.hxx  |2 
 include/svtools/wizardmachine.hxx |5 
 include/svx/AccessibleShape.hxx   |8 -
 include/svx/EnhancedCustomShape2d.hxx |4 
 include/svx/ShapeTypeHandler.hxx  |5 
 include/svx/fmsrcimp.hxx  |4 
 include/svx/fmtools.hxx   |3 
 include/svx/gallery1.hxx  |2 
 include/svx/langbox.hxx   |6 -
 include/svx/nbdtmg.hxx|   24 ++--
 include/svx/sdr/table/tablecontroller.hxx |2 
 include/svx/sdrmasterpagedescriptor.hxx   |4 
 include/svx/svdedtv.hxx   |4 
 include/svx/svdedxv.hxx   |4 
 include/svx/svdetc.hxx|6 -
 include/svx/svdglue.hxx   |1 
 include/svx/svdhdl.hxx|2 
 include/svx/svdlayer.hxx  |4 
 include/svx/svdmark.hxx   |5 
 include/svx/svdmodel.hxx  |6 -
 include/svx/svdmrkv.hxx   |   12 +-
 include/svx/svdobj.hxx|2 
 include/svx/svdotext.hxx  |2 
 include/svx/svdpagv.hxx   |2 
 include/svx/svdsnpv.hxx   |6 -
 include/svx/unoshape.hxx  |2 
 include/svx/xbitmap.hxx   |1 
 include/svx/xmleohlp.hxx  |2 
 include/svx/xpoly.hxx |3 
 svtools/inc/table/tablecontrol.hxx|2 
 svtools/source/brwbox/brwbox1.cxx |   17 ---
 svtools/source/contnr/ivctrl.cxx  |4 
 svtools/source/contnr/svlbitm.cxx |4 
 svtools/source/contnr/treelistbox.cxx |   35 ++
 svtools/source/control/ctrlbox.cxx|4 
 svtools/source/control/tabbar.cxx |6 -
 svtools/source/control/valueset.cxx   |8 -
 svtools/source/dialogs/wizardmachine.cxx  |9 -
 svtools/source/graphic/grfmgr.cxx |6 -
 svtools/source/misc/ehdl.cxx  |5 
 svtools/source/svhtml/htmlsupp.cxx|4 
 svtools/source/table/tablecontrol.cxx |4 
 svtools/source/uno/contextmenuhelper.cxx  |6 -
 svtools/source/urlobj/inetimg.cxx |5 
 svx/source/accessibility/AccessibleShape.cxx  |8 -
 svx/source/accessibility/ShapeTypeHandler.cxx |4 
 svx/source/customshapes/EnhancedCustomShape2d.cxx |   16 --
 svx/source/dialog/langbox.cxx |   14 +-
 svx/source/form/fmsrcimp.cxx  |   11 -
 svx/source/gallery2/gallery1.cxx  |6 -
 svx/source/sidebar/nbdtmg.cxx |  102 +-
 svx/source/svdraw/sdrmasterpagedescriptor.cxx |   14 --
 svx/source/svdraw/svdedtv.cxx |5 
 svx/source/svdraw/svdedxv.cxx |7 -
 svx/source/svdraw/svdetc.cxx  |   12 +-
 svx/source/svdraw/svdlayer.cxx|3 
 svx/source/svdraw/svdmodel.cxx|   13 --
 svx/source/svdraw/svdmrkv.cxx |   16 --
 svx/source/svdraw/svdobj.cxx  |4 
 svx/source/svdraw/svdotext.cxx|3 
 svx/source/svdraw/svdpagv.cxx |4 
 

[Libreoffice-bugs] [Bug 95616] autocorrect replacement table has transient black background when resized

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95616

Michael Meeks  changed:

   What|Removed |Added

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

--- Comment #4 from Michael Meeks  ---
We should not flash black anymore; perhaps a white background; Beluga reports:

commit 6c8fffdf4f968b4838dc4cb3d5161631877b0ebd
Author: Michael Meeks 
Date:   Tue Jan 12 21:13:13 2016 +

bug#96385 - opengl: dynamically adjust priority of swap buffers.

Which fixes the auto-correct flicker for me.

Thanks for reporting ! =)

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


[Libreoffice-bugs] [Bug 94843] OpenGL messes up interface with black flashing refreshes etc. on Windows with 5.1, while 5.0 is ok

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94843

--- Comment #7 from Michael Meeks  ---
We should not flash black anymore; perhaps a white background; Beluga reports:

commit 6c8fffdf4f968b4838dc4cb3d5161631877b0ebd
Author: Michael Meeks 
Date:   Tue Jan 12 21:13:13 2016 +

bug#96385 - opengl: dynamically adjust priority of swap buffers.

Thanks for reporting ! =)

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/milestone-7' - loleaflet/reference.html loleaflet/src

2016-01-13 Thread Jan Holesovsky
 loleaflet/reference.html  |   15 +++
 loleaflet/src/control/Control.Tabs.js |   10 +++---
 2 files changed, 22 insertions(+), 3 deletions(-)

New commits:
commit 8363bb3d2c1803d5adb0c526643a4afcebbcbbd0
Author: Jan Holesovsky 
Date:   Wed Jan 13 11:37:55 2016 +0100

loleaflet: Update the spreadsheet tabs after inserting a sheet.

diff --git a/loleaflet/reference.html b/loleaflet/reference.html
index d098fea..dfe1736 100644
--- a/loleaflet/reference.html
+++ b/loleaflet/reference.html
@@ -8563,6 +8563,21 @@ var unoCommands = [
 },
 
 {
+uno: '.uno:Insert',
+parameter: {
+'Name': {
+'type': 'string',
+'value': 'Sheet Name'
+},
+'Index': {
+'type': 'long',
+'value': 0
+}
+},
+description: 'Inserts a new sheet to the spreadsheet. The "Name" parameter 
can be left as empty string, in that case the sheet name will be generated. The 
"Index" parameter means the position where it should be inserted - "1" means 
adding as the 1st sheet, etc. 0 is special, and means adding as the last sheet.'
+},
+
+{
 header: 'Appearance options',
 },
 
diff --git a/loleaflet/src/control/Control.Tabs.js 
b/loleaflet/src/control/Control.Tabs.js
index 33df796..6a3a28d 100644
--- a/loleaflet/src/control/Control.Tabs.js
+++ b/loleaflet/src/control/Control.Tabs.js
@@ -17,7 +17,6 @@ L.Control.Tabs = L.Control.extend({
var parts = e.parts;
var selectedPart = e.selectedPart;
var docType = e.docType;
-   var partNames = e.partNames;
if (docType === 'text') {
return;
}
@@ -31,10 +30,16 @@ L.Control.Tabs = L.Control.extend({

$('.scroll-container').mCustomScrollbar('update');

$('.scroll-container').mCustomScrollbar('scrollTo', [0, 0]);
}, this), 100);
+   this._tabsInitialized = true;
+   }
+   if ('partNames' in e) {
+   while (this._tabsCont.firstChild) {
+   
this._tabsCont.removeChild(this._tabsCont.firstChild);
+   }
for (var i = 0; i < parts; i++) {
var id = 'spreadsheet-tab' + i;
var tab = L.DomUtil.create('li', '', 
this._tabsCont);
-   tab.innerHTML = partNames[i];
+   tab.innerHTML = e.partNames[i];
tab.id = id;
L.DomEvent
.on(tab, 'click', 
L.DomEvent.stopPropagation)
@@ -43,7 +48,6 @@ L.Control.Tabs = L.Control.extend({
.on(tab, 'click', 
this._refocusOnMap, this);
this._spreadsheetTabs[id] = tab;
}
-   this._tabsInitialized = true;
}
for (var key in this._spreadsheetTabs) {
var part =  parseInt(key.match(/\d+/g)[0]);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96942] Installer is localized to operating system language and does not match the language of the downloaded package

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96942

Beluga  changed:

   What|Removed |Added

Summary|Some dialogs show multiple  |Installer is localized to
   |and wrong languages |operating system language
   ||and does not match the
   ||language of the downloaded
   ||package

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


[Libreoffice-bugs] [Bug 94726] Sluggish performance on high-end computer

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94726

Michael Meeks  changed:

   What|Removed |Added

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

--- Comment #23 from Michael Meeks  ---
This should be significantly improved in 5.0.2 RC2 (due this week). Please can
you re-test, and re-open if problems persist.

Thanks !

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


[Libreoffice-bugs] [Bug 95913] Sidebar: Slider Transparency in Area (and Shadow) section does not move (if OpenGL enabled!)

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95913

Michael Meeks  changed:

   What|Removed |Added

 CC||t...@iki.fi

--- Comment #4 from Michael Meeks  ---
Reproduced in something close to 5.1.0 RC2 -> Tor - hopefully this is some
simple double-buffered rendering problem somewhere in the slider impl. not
re-rendering for some reason ? =)

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


[Libreoffice-bugs] [Bug 95587] position values do not follow base point setting

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95587

Katarina Behrens (CIB)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |katarina.behr...@cib.de
   |desktop.org |

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


[Libreoffice-bugs] [Bug 97092] New: Autotext's bookmarks inserts in the document in wrong location

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97092

Bug ID: 97092
   Summary: Autotext's bookmarks inserts in the document in wrong
location
   Product: LibreOffice
   Version: 4.4.6.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bmed...@serikat.es

Created attachment 121894
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121894=edit
TheBug.zip:There are three files. "Bug.odt" describes how to reproduced the
bug. "Informe.ott" and "Informe.bau" are necessary to reproduce the error

The bug are detected in 4.4.6.3 (reléase) and 4.4.7.2 (reléase).

Autotext with bookmarks, sametimes when  inserts  the autotext, the bookmarks
are put in wrong location. View document with example.

The bug in version 5.0.2 IS SOLVED, but this versión doesn't stable.

Thanks. Serikat.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - sw/source

2016-01-13 Thread Oliver Specht
 sw/source/core/undo/untbl.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9a4f133bc8b00ea2051e6979087b46fd0401e60f
Author: Oliver Specht 
Date:   Tue Jan 12 13:05:56 2016 +0100

tdf#96067: fix crash in undo of table row insertion

create SwIterator with SwLayoutFrame instead of SwTabFrame
the wrong usage worked with tools/rtti because of incomplete
type information above of SwLayoutFrame

Change-Id: I9967fa1b534fc28dc5e0cd1fa5b64179faa9b94d
Reviewed-on: https://gerrit.libreoffice.org/21419
Reviewed-by: Michael Stahl 
Tested-by: Michael Stahl 

diff --git a/sw/source/core/undo/untbl.cxx b/sw/source/core/undo/untbl.cxx
index 116c686..2072eda 100644
--- a/sw/source/core/undo/untbl.cxx
+++ b/sw/source/core/undo/untbl.cxx
@@ -1094,7 +1094,7 @@ void _SaveTable::NewFrameFormat( const SwTableLine* 
pTableLn, const SwTableBox*
 }
 
 // first re-assign Frames
-SwIterator aIter( *pOldFormat );
+SwIterator aIter( *pOldFormat );
 for( SwFrame* pLast = aIter.First(); pLast; pLast = aIter.Next() )
 {
 if( pTableLn ? static_cast(pLast)->GetTabLine() == 
pTableLn
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96067] Crash on undo row inserts

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96067

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|haveValgrind target:5.2.0   |haveValgrind target:5.2.0
   ||target:5.1.0

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


[Libreoffice-bugs] [Bug 39894] MathType OLE formulas show (and print) very incorrect

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39894

--- Comment #29 from Massimo  ---
(In reply to Jean-Baptiste Faure from comment #28)

I answer making reference to bug 95902, where I have reported the same problem
in LO5.

Fonts used by Mathype are:
Times New Roman
Symbol
MT Extra
MS Mincho (for the Japanese).

However, in the small sample, only Times New Roman, and possibly Symbol, are
used.

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


Re: [Libreoffice-commits] core.git: New saving behavior

2016-01-13 Thread Stephan Bergmann

On 12/23/2015 10:38 AM, Maxim Monastirsky wrote:

commit 22328a224df4619218b88205838307f70612207e
Author: Maxim Monastirsky 
Date:   Tue Dec 22 13:12:23 2015 +0200

 New saving behavior

 Changes in this commit:

 - AlwaysAllowSave config is gone. Saving is always permitted, unless in
   a read only document. Also changed the behavior in dbaccess to match
   sfx2.

 - The toolbar save button is always enabled, to always give access to
   the dropdown. That's the case even in a read only document, except
   that it changes to DROPDOWNONLY, and the save as command icon+tooltip.
   In table/query designers we still disable the button in read only state.

 - When the document is modified, the toolbar button gets a special icon
   to indicate that.

 TODO:

 - Icons for the document modified state are still missing. I added some
   fake links to Tango's links.txt in order to test the new behavior.
   These links shouldn't stay as-is in a production version!

 Change-Id: I56c169bf48b78faaf53c2989ce8624f8297ffb6e
 Reviewed-on: https://gerrit.libreoffice.org/20839
 Reviewed-by: Maxim Monastirsky 
 Tested-by: Maxim Monastirsky 

[...]

diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index b8d9828..1655acb 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -5606,13 +5606,6 @@
  
  false

-  
-
-  Determines if the user can save the document even when it's not
-  modified.
-
-false
-  

  
Determines if various experimental, and potentially unstable

[...]

Just a reminder that removing a configuration property is incompatible, 
and comes at a cost:


* Settings for the property in .xcu files (a UserInstallion's 
registrymodifications.xcu, or .xcu files included in LO extensions) will 
silently be ignored (emitting a SAL_WARN in debug builds).


* But client code accessing the configuration via the UNO API will 
trigger exceptions when accessing that property (e.g., 
css.beans.UnknownPropertyException upon calling 
css.beans.XPropertySet.get/setPropertyValue).


It should always be weighed whether keeping the property (even if 
dysfunctional) or removing it is the better choice overall.  And if it 
is removed, that should be mentioned in the release notes.

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


[Libreoffice-bugs] [Bug 96875] Submenus of MenuBarManager based context menus don't work (OS X native menus only)

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96875

steve -_-  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED
   Assignee|libreoffice-b...@lists.free |momonas...@gmail.com
   |desktop.org |

--- Comment #11 from steve -_-  ---
Maxim, thanks a lot for your quick fix.

Verified with Version: 5.2.0.0.alpha0+
Build ID: c995196ff0e9f7041b03fc513d703d6e60b8c867
CPU Threads: 8; OS Version: -; UI Render: default; 
TinderBox: MacOSX-x86_64@49-TDF, Branch:master, Time: 2016-01-12_23:55:31
Locale: de-DE (de.UTF-8)

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


[Libreoffice-bugs] [Bug 60428] Duplex Printing - HP Officejet Pro 8600 Plus

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60428

--- Comment #23 from herman.via...@edpnet.be ---
Tried my hand at bibisect, got LO 5.1.0 on my PC 
but at CLI:
> git checkout latest
error: pathspec 'latest' did not match any file(s) known to git.
So I used 
> git checkout oldest
and that got me the 5.1.0 version
but:
Opening a multipage document and choose File - Printer Settings: I can select
duplex. When I OK it, and open the dialogue again, the setting is preserved.
Then opening File - Print, choose Properties for the HP Officejet Pro 8100: the
duplex setting is NOT on, I can set it, I OK the setting, and open the
Properties again, the duplex setting is gone.
Trying to print two pages of the document gives me two pages of paper, the
duplex setting doess not work.

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


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

2016-01-13 Thread Miklos Vajna
 sal/osl/all/log.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 20b0c8fc3bb5bcf4ae8ba81c88aaa5726dbcf9e2
Author: Miklos Vajna 
Date:   Wed Jan 13 12:09:52 2016 +0100

sal: avoid " at:\n" at the end of SAL_DEBUG() messages

This reverts one hunk of commit c995196ff0e9f7041b03fc513d703d6e60b8c867
(Fixup SAL_DEBUG_TRACE macro., 2016-01-12).

Change-Id: Icbf611c4aaa909b8c495bed1280fad73ba876e8c

diff --git a/sal/osl/all/log.cxx b/sal/osl/all/log.cxx
index 665942b..a010c33 100644
--- a/sal/osl/all/log.cxx
+++ b/sal/osl/all/log.cxx
@@ -210,7 +210,7 @@ void log(
 }
 
 s << message;
-if (isDebug(level)) {
+if (level == SAL_DETAIL_LOG_LEVEL_DEBUG_TRACE) {
 s << " at:\n";
 s << OUString(osl_backtraceAsString(), SAL_NO_ACQUIRE);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96522] [ANIMATION] Animation Spiral in does not work

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96522

Armin Le Grand  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |armin.le.gr...@me.com
   |desktop.org |

--- Comment #11 from Armin Le Grand  ---
Added solution https://gerrit.libreoffice.org/21401 to gerrit

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


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

2016-01-13 Thread Miklos Vajna
 sc/source/core/data/documen3.cxx |5 +++--
 sc/source/core/data/global.cxx   |3 ++-
 sc/source/ui/app/inputhdl.cxx|   11 +--
 sc/source/ui/view/gridwin.cxx|   18 +-
 sc/source/ui/view/gridwin2.cxx   |3 ++-
 sc/source/ui/view/gridwin3.cxx   |3 ++-
 sc/source/ui/view/gridwin4.cxx   |7 ---
 sc/source/ui/view/viewdata.cxx   |   12 +---
 sc/source/ui/view/viewfun2.cxx   |2 +-
 9 files changed, 33 insertions(+), 31 deletions(-)

New commits:
commit 64659d59310b17ce6ca410bfca2e231d8b79b0ff
Author: Miklos Vajna 
Date:   Wed Jan 13 09:12:45 2016 +0100

sc: clean up remaining non-static isTiledRendering() usage

Change-Id: I546f644e220069904fc2723f953ce2e6e2bfaca3

diff --git a/sc/source/core/data/documen3.cxx b/sc/source/core/data/documen3.cxx
index f7b662aa..c96eb59 100644
--- a/sc/source/core/data/documen3.cxx
+++ b/sc/source/core/data/documen3.cxx
@@ -74,6 +74,7 @@
 
 #include "globalnames.hxx"
 #include 
+#include 
 #include 
 
 using namespace com::sun::star;
@@ -1301,7 +1302,7 @@ bool ScDocument::SearchAndReplace(
 rSearchItem, nCol, nRow );
 
 // notify LibreOfficeKit about changed page
-if ( GetDrawLayer() && 
GetDrawLayer()->isTiledRendering() )
+if ( comphelper::LibreOfficeKit::isActive() )
 {
 OString aPayload = OString::number(nTab);
 
GetDrawLayer()->libreOfficeKitCallback(LOK_CALLBACK_SET_PART, 
aPayload.getStr());
@@ -1331,7 +1332,7 @@ bool ScDocument::SearchAndReplace(
 rSearchItem, nCol, nRow );
 
 // notify LibreOfficeKit about changed page
-if ( GetDrawLayer() && 
GetDrawLayer()->isTiledRendering() )
+if ( comphelper::LibreOfficeKit::isActive() )
 {
 OString aPayload = OString::number(nTab);
 
GetDrawLayer()->libreOfficeKitCallback(LOK_CALLBACK_SET_PART, 
aPayload.getStr());
diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx
index bc0cdcf..43e22c1 100644
--- a/sc/source/core/data/global.cxx
+++ b/sc/source/core/data/global.cxx
@@ -59,6 +59,7 @@
 #include 
 
 #include 
+#include 
 
 #include "global.hxx"
 #include "scresid.hxx"
@@ -871,7 +872,7 @@ bool ScGlobal::EETextObjEqual( const EditTextObject* pObj1,
 
 void ScGlobal::OpenURL(const OUString& rURL, const OUString& rTarget, const 
SdrModel* pDrawLayer)
 {
-if (pDrawLayer && pDrawLayer->isTiledRendering())
+if (pDrawLayer && comphelper::LibreOfficeKit::isActive())
 {
 pDrawLayer->libreOfficeKitCallback(LOK_CALLBACK_HYPERLINK_CLICKED, 
rURL.toUtf8().getStr());
 return;
diff --git a/sc/source/ui/app/inputhdl.cxx b/sc/source/ui/app/inputhdl.cxx
index 82a8185..65fd839 100644
--- a/sc/source/ui/app/inputhdl.cxx
+++ b/sc/source/ui/app/inputhdl.cxx
@@ -53,6 +53,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include "inputwin.hxx"
 #include "tabvwsh.hxx"
@@ -639,9 +640,8 @@ void ScInputHandler::ImplCreateEditEngine()
 // paint
 if (pActiveViewSh)
 {
-ScDocument& rDoc = 
pActiveViewSh->GetViewData().GetDocShell()->GetDocument();
 if (EditView* pEditView = pEngine->GetActiveView())
-
pEditView->setTiledRendering(rDoc.GetDrawLayer()->isTiledRendering());
+
pEditView->setTiledRendering(comphelper::LibreOfficeKit::isActive());
 }
 }
 
@@ -1719,8 +1719,7 @@ void ScInputHandler::UpdateActiveView()
 if (pActiveViewSh && pTableView)
 {
 ScDocShell* pDocShell = pActiveViewSh->GetViewData().GetDocShell();
-ScDocument& rDoc = pDocShell->GetDocument();
-if (rDoc.GetDrawLayer()->isTiledRendering())
+if (comphelper::LibreOfficeKit::isActive())
 {
 ScDrawLayer *pDrawLayer = pDocShell->GetDocument().GetDrawLayer();
 
pTableView->registerLibreOfficeKitCallback(pDrawLayer->getLibreOfficeKitCallback(),
 pDrawLayer->getLibreOfficeKitData());
@@ -2133,7 +2132,7 @@ void ScInputHandler::DataChanged( bool bFromTopNotify, 
bool bSetModified )
 
 ScDocShell* pDocSh = pActiveViewSh->GetViewData().GetDocShell();
 ScDocument& rDoc = pDocSh->GetDocument();
-if ( rDoc.GetDrawLayer()->isTiledRendering() )
+if ( comphelper::LibreOfficeKit::isActive() )
 
rDoc.GetDrawLayer()->libreOfficeKitCallback(LOK_CALLBACK_CELL_FORMULA, 
aText.toUtf8().getStr());
 }
 
@@ -3470,7 +3469,7 @@ void ScInputHandler::NotifyChange( const ScInputHdlState* 
pState,
 
 if ( pInputWin )
 pInputWin->SetTextString(aString);
-else if ( 

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

2016-01-13 Thread Tor Lillqvist
 sfx2/source/dialog/backingwindow.cxx |   27 +--
 1 file changed, 9 insertions(+), 18 deletions(-)

New commits:
commit 88ee54654e95f1f62266ee2737d2b82c8d5080a6
Author: Tor Lillqvist 
Date:   Wed Jan 13 10:58:24 2016 +0200

Just use the strings as such

Change-Id: Iab4d669ef5dc397786de2aadcd4efb7a244a

diff --git a/sfx2/source/dialog/backingwindow.cxx 
b/sfx2/source/dialog/backingwindow.cxx
index 69b11e7..6646b6c 100644
--- a/sfx2/source/dialog/backingwindow.cxx
+++ b/sfx2/source/dialog/backingwindow.cxx
@@ -61,15 +61,6 @@ using namespace ::com::sun::star::frame;
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::document;
 
-const char WRITER_URL[] = "private:factory/swriter";
-const char CALC_URL[] =   "private:factory/scalc";
-const char IMPRESS_WIZARD_URL[] = "private:factory/simpress?slot=6686";
-const char DRAW_URL[] =   "private:factory/sdraw";
-const char BASE_URL[] =   "private:factory/sdatabase?Interactive";
-const char MATH_URL[] =   "private:factory/smath";
-const char TEMPLATE_URL[] =   ".uno:NewDoc";
-const char OPEN_URL[] =   ".uno:Open";
-const char REMOTE_URL[] = ".uno:OpenRemote";
 const char SERVICENAME_CFGREADACCESS[] = 
"com.sun.star.configuration.ConfigurationAccess";
 
 // increase size of the text in the buttons on the left fMultiplier-times
@@ -549,17 +540,17 @@ IMPL_LINK_TYPED( BackingWindow, ClickHdl, Button*, 
pButton, void )
 {
 // dispatch the appropriate URL and end the dialog
 if( pButton == mpWriterAllButton )
-dispatchURL( WRITER_URL );
+dispatchURL( "private:factory/swriter" );
 else if( pButton == mpCalcAllButton )
-dispatchURL( CALC_URL );
+dispatchURL( "private:factory/scalc" );
 else if( pButton == mpImpressAllButton )
-dispatchURL( IMPRESS_WIZARD_URL );
+dispatchURL( "private:factory/simpress?slot=6686" );
 else if( pButton == mpDrawAllButton )
-dispatchURL( DRAW_URL );
+dispatchURL( "private:factory/sdraw" );
 else if( pButton == mpDBAllButton )
-dispatchURL( BASE_URL );
+dispatchURL( "private:factory/sdatabase?Interactive" );
 else if( pButton == mpMathAllButton )
-dispatchURL( MATH_URL );
+dispatchURL( "private:factory/smath" );
 else if( pButton == mpOpenButton )
 {
 Reference< XDispatchProvider > xFrame( mxFrame, UNO_QUERY );
@@ -569,7 +560,7 @@ IMPL_LINK_TYPED( BackingWindow, ClickHdl, Button*, pButton, 
void )
 pArg[0].Name = "Referer";
 pArg[0].Value <<= OUString("private:user");
 
-dispatchURL( OPEN_URL, OUString(), xFrame, aArgs );
+dispatchURL( ".uno:Open", OUString(), xFrame, aArgs );
 }
 else if( pButton == mpRemoteButton )
 {
@@ -577,7 +568,7 @@ IMPL_LINK_TYPED( BackingWindow, ClickHdl, Button*, pButton, 
void )
 
 Sequence< css::beans::PropertyValue > aArgs(0);
 
-dispatchURL( REMOTE_URL, OUString(), xFrame, aArgs );
+dispatchURL( ".uno:OpenRemote", OUString(), xFrame, aArgs );
 }
 else if( pButton == mpRecentButton )
 {
@@ -627,7 +618,7 @@ IMPL_LINK_TYPED( BackingWindow, MenuSelectHdl, MenuButton*, 
pButton, void )
 pArg[0].Name = "Referer";
 pArg[0].Value <<= OUString("private:user");
 
-dispatchURL( TEMPLATE_URL, OUString(), xFrame, aArgs );
+dispatchURL( ".uno:NewDoc", OUString(), xFrame, aArgs );
 
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96991] EDITING Issues when creating tables and editing fields 5.x

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96991

--- Comment #5 from Beluga  ---
Did you open bug reports for all separate problems? Please link to them here.

Please include exact steps we need to do to see the problems. Most bug testers
don't have much experience with Base.

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


[Libreoffice-bugs] [Bug 96916] Table of Contents Tab stop fills all tabs

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96916

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Beluga  ---
Could you attach an example document so we can look at it and test?

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the document.

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


Re: [Libreoffice-commits] core.git: New saving behavior

2016-01-13 Thread Maxim Monastirsky
Hi Lionel,

On Wed, 2016-01-13 at 10:27 +0100, Lionel Elie Mamane wrote:
> 
> I'm rather worried about the hunks that remove the
> OInterceptor::documentEventOccured stuff, which was registered as a
> DocumentEventListener. I'm afraid that this is the mechanism that was
> used for embedded databases to do the actual "save embedded database
> in the ZIP" step.
Do you aware of any specific scenario where it stopped working because
of this commit?

> For firebird, see connectivity/source/drivers/firebird/Connection.cxx
> near the end of Connection::construct.
The Connection class is a listener, much like OInterceptor was. There
were no changes in the broadcaster, and I don't understand how removing
one listener could make others stop working. Unless I'm missing
something?

> If my above worry is not founded, then what was this
> OInterceptor::documentEventOccured used for?
It was used to notify XStatusListeners on whether the component is
modified or not, by sending updates for ".uno:Save" with
enabled/disabled states respectively. See tdf#92203 and the related
bugfix commit.

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


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

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

Bug 94726 Summary: Sluggish performance on high-end computer
https://bugs.documentfoundation.org/show_bug.cgi?id=94726

   What|Removed |Added

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

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


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

2016-01-13 Thread Jan Holesovsky
 sc/source/core/data/document.cxx |5 +
 sc/source/ui/view/tabvwshf.cxx   |   12 +---
 2 files changed, 14 insertions(+), 3 deletions(-)

New commits:
commit b908497aaff0ec48340f24df33182430b32a4023
Author: Jan Holesovsky 
Date:   Wed Jan 13 11:12:12 2016 +0100

sc: Make .uno:Insert (inserting a new sheet) always succeed.

Also, when provided with '0' as the sheet number, treat it as adding at the
end - which I think is the usual use case one wants to target.

Change-Id: I9e1a1733c2310b8c6bb7ff239351e88bbef09ac7

diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index deaddf4..e878815 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -105,6 +105,8 @@
 #include 
 #include 
 
+#include 
+
 #include "mtvelements.hxx"
 
 using ::editeng::SvxBorderLine;
@@ -566,6 +568,9 @@ bool ScDocument::InsertTab(
 aCxt.mnTabDeletedStart = nPos;
 aCxt.mnTabDeletedEnd = nPos;
 SetAllFormulasDirty(aCxt);
+
+if (GetDrawLayer()->isTiledRendering())
+
GetDrawLayer()->libreOfficeKitCallback(LOK_CALLBACK_DOCUMENT_SIZE_CHANGED, "");
 }
 
 return bValid;
diff --git a/sc/source/ui/view/tabvwshf.cxx b/sc/source/ui/view/tabvwshf.cxx
index 0f31469..2b838bf 100644
--- a/sc/source/ui/view/tabvwshf.cxx
+++ b/sc/source/ui/view/tabvwshf.cxx
@@ -177,15 +177,21 @@ void ScTabViewShell::ExecuteTable( SfxRequest& rReq )
 bool bOk = false;
 const SfxPoolItem*  pTabItem;
 const SfxPoolItem*  pNameItem;
-OUStringaName;
 
 if ( pReqArgs->HasItem( FN_PARAM_1,  ) &&
  pReqArgs->HasItem( nSlot,  ) )
 {
+OUString aName = static_cast(pNameItem)->GetValue();
+pDoc->CreateValidTabName(aName);
+
 // sheet number from basic: 1-based
+// 0 is special, means adding at the end
+nTabNr = static_cast(pTabItem)->GetValue();
+if (nTabNr == 0)
+nTabNr = nTabCount;
+else
+--nTabNr;
 
-aName = static_cast(pNameItem)->GetValue();
-nTabNr = static_cast(pTabItem)->GetValue() - 1;
 if ( nTabNr <= nTabCount )
 bOk = InsertTable( aName, nTabNr );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97093] New: Backspace changes font to standard if it is not the same

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97093

Bug ID: 97093
   Summary: Backspace changes font to standard if it is not the
same
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: birqu...@web.de

If I want to change the last written word or letter etc. useing "Backspace",
the font changes to standard if it is not the same, e.g. from "Arial" (used
font) to "Times New Roman" (standard font). The templates where this behaviour
appeares are older ones (made 2007/08 last change 2014). The standard font here
is another than the one chosen under extras > options > writer > fonts
(standard font: "Arial" while template "standard" is "Times New Roman".

I hope my desription is understandable.

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


[Libreoffice-bugs] [Bug 96125] FORMATTING: Writer paragraph text-to-text alignment doesn't work

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96125

jmxhyz  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 96540] Calc crashes with this file

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96540

Luke Picciau  changed:

   What|Removed |Added

 CC||luke.b.picc...@gmail.com

--- Comment #5 from Luke Picciau  ---
When I tried to open the file calc hung for about 20 seconds and the window
went dark gray showing it was unresponsive a few times but in the end the file
did open. Took way longer then a file of that size should take to open.


LO Version: 5.0.3.2
Build ID: 1:5.0.3~rc2-0ubuntu1
Locale: en-AU (en_AU.UTF-8)
OS: 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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93120] Flickering of Thumbnails in Start Center while Moving the Mouse Pointer

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93120

--- Comment #21 from Tor Lillqvist  ---
... but in the case of toolbar icons, I see the flicker only when not using
OpenGL. So maybe not the same root cause after all.

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


[Libreoffice-bugs] [Bug 96385] Tracker: GL black / flickering issues

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96385
Bug 96385 depends on bug 94843, which changed state.

Bug 94843 Summary: OpenGL messes up interface with black flashing refreshes 
etc. on Windows with 5.1, while 5.0 is ok
https://bugs.documentfoundation.org/show_bug.cgi?id=94843

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - framework/inc framework/source icon-themes/galaxy

2016-01-13 Thread Maxim Monastirsky
 framework/inc/classes/resource.hrc|3 +++
 framework/source/classes/resource.src |9 +
 framework/source/uielement/popuptoolbarcontroller.cxx |   12 +---
 icon-themes/galaxy/res/savemodified_large.png |binary
 icon-themes/galaxy/res/savemodified_small.png |binary
 5 files changed, 17 insertions(+), 7 deletions(-)

New commits:
commit 3c11617d80ec1cadc150626a2da357f438f0928c
Author: Maxim Monastirsky 
Date:   Wed Jan 13 00:45:08 2016 +0200

Modified state icons not packaged into zip

It seems that images must be mentioned in some src file.
Unfortunately had to copy the save icon in place of the
modified icon in galaxy, to satisfy the resource compiler.

Change-Id: If3fa7a8a194a0289c79fa10987138dfb35eaeca2
(cherry picked from commit 40f9ae367ca71e9dadb7cd76b08616b229726d7e)
Reviewed-on: https://gerrit.libreoffice.org/21409
Tested-by: Jenkins 
Reviewed-by: Samuel Mehrbrodt 

diff --git a/framework/inc/classes/resource.hrc 
b/framework/inc/classes/resource.hrc
index 4331a42..d1fdfeb 100644
--- a/framework/inc/classes/resource.hrc
+++ b/framework/inc/classes/resource.hrc
@@ -53,6 +53,9 @@
 #define STR_OPEN_REMOTE (RID_STR_START+26)
 #define STR_REMOTE_TITLE(RID_STR_START+27)
 
+#define IMG_SAVEMODIFIED_SMALL  (RID_IMAGE_START+0)
+#define IMG_SAVEMODIFIED_LARGE  (RID_IMAGE_START+1)
+
 #define POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION(RID_MENU_START+0)
 
 #define MENUITEM_TOOLBAR_VISIBLEBUTTON  1
diff --git a/framework/source/classes/resource.src 
b/framework/source/classes/resource.src
index 66f5a24..9e0fee8 100644
--- a/framework/source/classes/resource.src
+++ b/framework/source/classes/resource.src
@@ -205,4 +205,13 @@ String STR_LANGSTATUS_HINT
 Text [ en-US ] = "Text Language. Right-click to set character or paragraph 
language" ;
 };
 
+Image IMG_SAVEMODIFIED_SMALL
+{
+ImageBitmap = Bitmap{File = "savemodified_small.png";};
+};
+Image IMG_SAVEMODIFIED_LARGE
+{
+ImageBitmap = Bitmap{File = "savemodified_large.png";};
+};
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/framework/source/uielement/popuptoolbarcontroller.cxx 
b/framework/source/uielement/popuptoolbarcontroller.cxx
index 111491b..0464368 100644
--- a/framework/source/uielement/popuptoolbarcontroller.cxx
+++ b/framework/source/uielement/popuptoolbarcontroller.cxx
@@ -17,6 +17,9 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#include 
+#include 
+
 #include 
 #include 
 #include 
@@ -43,7 +46,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -413,12 +415,8 @@ void SaveToolbarController::updateImage()
 }
 else if ( m_xModifiable.is() && m_xModifiable->isModified() )
 {
-const OUString aImageURL( 
"private:graphicrepository/res/savemodified_" + ( bLargeIcons ? OUString( 
"large.png" ) : OUString( "small.png" ) ) );
-const css::uno::Reference< css::graphic::XGraphicProvider > 
xGraphicProvider( css::graphic::GraphicProvider::create( m_xContext ) );
-const css::uno::Reference< css::graphic::XGraphic > xGraphic(
-xGraphicProvider->queryGraphic( comphelper::InitPropertySequence( 
{ { "URL", css::uno::makeAny( aImageURL ) } } ) ), css::uno::UNO_QUERY );
-if ( xGraphic.is() )
-aImage = Image( xGraphic );
+Image aResImage( bLargeIcons ? FwkResId( IMG_SAVEMODIFIED_LARGE ) : 
FwkResId( IMG_SAVEMODIFIED_SMALL ) );
+aImage = aResImage;
 }
 
 if ( !aImage )
diff --git a/icon-themes/galaxy/res/savemodified_large.png 
b/icon-themes/galaxy/res/savemodified_large.png
new file mode 100644
index 000..51505d7
Binary files /dev/null and b/icon-themes/galaxy/res/savemodified_large.png 
differ
diff --git a/icon-themes/galaxy/res/savemodified_small.png 
b/icon-themes/galaxy/res/savemodified_small.png
new file mode 100644
index 000..d893023
Binary files /dev/null and b/icon-themes/galaxy/res/savemodified_small.png 
differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90627] Saving presentation results in invalid PPTX file

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90627

--- Comment #3 from herman.via...@edpnet.be ---
Similar problem with saving as ppsx from a Mageia5 LibreOffice 4.4.6,
Powerpoint users on Windows cannot open such file.
To make it even worse: such file can be opened ONCE in Impress (4.3.3) on
Windows 10. After that, LibreOffice will not open anymore in no way possible
(no feedback from command line), unless Windows 10 is completely restarted.

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


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

2016-01-13 Thread Jan Holesovsky
 sc/source/core/data/document.cxx |5 +
 sc/source/ui/view/tabvwshf.cxx   |   14 ++
 2 files changed, 15 insertions(+), 4 deletions(-)

New commits:
commit 39997d4831fc1ca900d1037b0beec1b8b91b6e83
Author: Jan Holesovsky 
Date:   Wed Jan 13 11:12:12 2016 +0100

sc: Make .uno:Insert (inserting a new sheet) always succeed.

Also, when provided with '0' as the sheet number, treat it as adding at the
end - which I think is the usual use case one wants to target.

Change-Id: I9e1a1733c2310b8c6bb7ff239351e88bbef09ac7

diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index bb6431a..0e93b81 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -104,6 +104,8 @@
 #include 
 #include 
 
+#include 
+
 #include "mtvelements.hxx"
 
 using ::editeng::SvxBorderLine;
@@ -555,6 +557,9 @@ bool ScDocument::InsertTab(
 aCxt.mnTabDeletedStart = nPos;
 aCxt.mnTabDeletedEnd = nPos;
 SetAllFormulasDirty(aCxt);
+
+if (GetDrawLayer()->isTiledRendering())
+
GetDrawLayer()->libreOfficeKitCallback(LOK_CALLBACK_DOCUMENT_SIZE_CHANGED, "");
 }
 
 return bValid;
diff --git a/sc/source/ui/view/tabvwshf.cxx b/sc/source/ui/view/tabvwshf.cxx
index 7fd1fdc..63adab3 100644
--- a/sc/source/ui/view/tabvwshf.cxx
+++ b/sc/source/ui/view/tabvwshf.cxx
@@ -178,15 +178,21 @@ void ScTabViewShell::ExecuteTable( SfxRequest& rReq )
 bool bOk = false;
 const SfxPoolItem*  pTabItem;
 const SfxPoolItem*  pNameItem;
-OUStringaName;
 
 if ( pReqArgs->HasItem( FN_PARAM_1,  ) &&
  pReqArgs->HasItem( nSlot,  ) )
 {
-//  tablenumber from basic: 1-based
+OUString aName = static_cast(pNameItem)->GetValue();
+pDoc->CreateValidTabName(aName);
+
+// tablenumber from basic is 1-based
+// 0 is special, means adding at the end
+nTabNr = static_cast(pTabItem)->GetValue();
+if (nTabNr == 0)
+nTabNr = nTabCount;
+else
+--nTabNr;
 
-aName = static_cast(pNameItem)->GetValue();
-nTabNr = static_cast(pTabItem)->GetValue() - 1;
 if ( nTabNr <= nTabCount )
 bOk = InsertTable( aName, nTabNr );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94462] Dropdown menus flicker when OpenGL is enabled

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94462

Michael Meeks  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from Michael Meeks  ---
This should be fixed in 5.0.4 (defaulting to non-Open-GL) - and also much
improved for LibreOffice 5.1.0 RC2 (due this week). Please re-open if you can
reproduce in 5.1.0 RC2.

Thanks !

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


[Libreoffice-bugs] [Bug 96385] Tracker: GL black / flickering issues

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96385
Bug 96385 depends on bug 94462, which changed state.

Bug 94462 Summary: Dropdown menus flicker when OpenGL is enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=94462

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 96903] LO5: Creating, saving ODS then exiting LO5 locks Plasma 5

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96903

Beluga  changed:

   What|Removed |Added

   Keywords||haveBacktrace

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


[Libreoffice-bugs] [Bug 94843] OpenGL messes up interface with black flashing refreshes etc. on Windows with 5.1, while 5.0 is ok

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94843

Michael Meeks  changed:

   What|Removed |Added

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

--- Comment #6 from Michael Meeks  ---
Beluga reports the flashing is gone - "in the start center with ogl, the menus
don't flash black, but they do flash blank/grey ie. there is a lag".

Perhaps good to file the lagging as a separate issue; we try to render the
window completely before showing it at idle; but perhaps there is some
prioritisation issue; I don't see a significant lag here though.

Thanks !

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


[Libreoffice-bugs] [Bug 93565] MAILMERGE: Mail merge doesn't work with version 5.0 (individual documents in PDF format does not increment to next record data)

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93565

raal  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 93565] MAILMERGE: Mail merge doesn't work with version 5.0 (individual documents in PDF format does not increment to next record data)

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93565

raal  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

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


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

2016-01-13 Thread Jan Holesovsky
 sc/source/ui/view/tabvwshf.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit b550d3b10adf3a7f8c3013c231e8251059343c5e
Author: Jan Holesovsky 
Date:   Wed Jan 13 11:56:34 2016 +0100

sc: Further .uno:Insert (inserting a new sheet) tweak.

Change-Id: I5437e173009be2b21594abfa133c1b48e53a2ff3

diff --git a/sc/source/ui/view/tabvwshf.cxx b/sc/source/ui/view/tabvwshf.cxx
index 2b838bf..8ed4937 100644
--- a/sc/source/ui/view/tabvwshf.cxx
+++ b/sc/source/ui/view/tabvwshf.cxx
@@ -192,8 +192,10 @@ void ScTabViewShell::ExecuteTable( SfxRequest& rReq )
 else
 --nTabNr;
 
-if ( nTabNr <= nTabCount )
-bOk = InsertTable( aName, nTabNr );
+if (nTabNr > nTabCount)
+nTabNr = nTabCount;
+
+bOk = InsertTable(aName, nTabNr);
 }
 
 if (bOk)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-01-13 Thread Jan Holesovsky
 sc/source/ui/view/tabvwshf.cxx |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 2c4ccc60075493963229d71df27464a2a4f276e4
Author: Jan Holesovsky 
Date:   Wed Jan 13 11:56:34 2016 +0100

sc: Further .uno:Insert (inserting a new sheet) tweak.

Change-Id: I5437e173009be2b21594abfa133c1b48e53a2ff3

diff --git a/sc/source/ui/view/tabvwshf.cxx b/sc/source/ui/view/tabvwshf.cxx
index 63adab3..82a33dc 100644
--- a/sc/source/ui/view/tabvwshf.cxx
+++ b/sc/source/ui/view/tabvwshf.cxx
@@ -193,8 +193,10 @@ void ScTabViewShell::ExecuteTable( SfxRequest& rReq )
 else
 --nTabNr;
 
-if ( nTabNr <= nTabCount )
-bOk = InsertTable( aName, nTabNr );
+if (nTabNr > nTabCount)
+nTabNr = nTabCount;
+
+bOk = InsertTable(aName, nTabNr);
 }
 
 if (bOk)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96067] Crash on undo row inserts

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96067

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|haveValgrind target:5.2.0   |haveValgrind target:5.2.0
   |target:5.1.0|target:5.1.0 target:5.1.1

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


[Libreoffice-bugs] [Bug 96067] Crash on undo row inserts

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96067

--- Comment #15 from Commit Notification 
 ---
Oliver Specht committed a patch related to this issue.
It has been pushed to "libreoffice-5-1":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=9a4f133bc8b00ea2051e6979087b46fd0401e60f=libreoffice-5-1

tdf#96067: fix crash in undo of table row insertion

It will be available in 5.1.1.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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


Dinner @ FOSDEM

2016-01-13 Thread Italo Vignoli
We will organize a TDF dinner at FOSDEM on Saturday night (January 30),
most probably at the Kasbah (http://www.lakasbahresto.com, we have been
there in 2014 and 2015). In order to book in advance, as we will be a
rather sizeable group, I need to know who will be coming ASAP.

Please reply to me (not to the list, please), or write a message to
it...@libreoffice.org, to confirm your presence. If you are coming with
other people from the same group, a single email with all the names is
all I need.

I will finalize the list at the end of next week (Friday, January 22).

Ciao, Italo

-- 
Italo Vignoli - Marketing & PR
mobile +39.348.5653829 - email / jabber it...@libreoffice.org
hangout / jabber italo.vign...@gmail.com - skype italovignoli
GPG Key ID - 0xAAB8D5C0
DB75 1534 3FD0 EA5F 56B5 FDA6 DE82 934C AAB8 D5C0
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: framework/README sfx2/README

2016-01-13 Thread Tor Lillqvist
 framework/README |7 ++-
 sfx2/README  |3 +++
 2 files changed, 5 insertions(+), 5 deletions(-)

New commits:
commit faf636b09fdc634bd1ec136cc29c0a146469e289
Author: Tor Lillqvist 
Date:   Wed Jan 13 10:48:58 2016 +0200

Increase relevancy

Change-Id: I3a7e46f96898d535b4beff35fdf7245c0eea989e

diff --git a/framework/README b/framework/README
index 8a2e86c..2efd636 100644
--- a/framework/README
+++ b/framework/README
@@ -1,7 +1,4 @@
-UI rewrite, toolbars, menus, UNO stuff, including accelerators and 
interaction, etc.
+Toolbars, menus, UNO stuff, including accelerators and interaction, etc.
 
 See also:
-[http://wiki.openoffice.org/wiki/Framework]
-
-Notable files:
-[git:framework/source/services/backingwindow.hxx] Layout of the Startcenter 
buttons and the corresponding event handler.
+http://wiki.openoffice.org/wiki/Framework
diff --git a/sfx2/README b/sfx2/README
index 19d06f2..9726870 100644
--- a/sfx2/README
+++ b/sfx2/README
@@ -23,3 +23,6 @@ dispatch.
 
 There are also some UNO services here that could really be implemented
 anywhere, e.g. the DocumentProperties or DocumentMetadataAccess.
+
+Notable files:
+sfx2/source/dialog/backingwindow.cxx Startcenter buttons and the corresponding 
event handler.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93120] Flickering of Thumbnails in Start Center while Moving the Mouse Pointer

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93120

--- Comment #20 from Tor Lillqvist  ---
This flicker might be a generic problem with thingies that are displaying a
tooltip. If you slowly move the mouse cursor between tool icons in the toolbar
of Writer, for instance, so that the tooltip stays visible (and its contents
switches as you move the cursor between icons), you will notice, now and then,
that the icon you are leaving and/or entering flickers. Probably it is much
more noticeable for the start centre thumbnails just because they are much
larger and take a little longer to draw.

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


Re: [Libreoffice-commits] core.git: New saving behavior

2016-01-13 Thread Lionel Elie Mamane
On Wed, Jan 13, 2016 at 12:11:05PM +0200, Maxim Monastirsky wrote:
> Hi Lionel,
> 
> On Wed, 2016-01-13 at 10:27 +0100, Lionel Elie Mamane wrote:
> > 
> > I'm rather worried about the hunks that remove the
> > OInterceptor::documentEventOccured stuff, which was registered as a
> > DocumentEventListener. I'm afraid that this is the mechanism that was
> > used for embedded databases to do the actual "save embedded database
> > in the ZIP" step.
> Do you aware of any specific scenario where it stopped working because
> of this commit?

No, "I was worried", not "I found a bug".

>> For firebird, see
>> connectivity/source/drivers/firebird/Connection.cxx near the end of
>> Connection::construct.

> The Connection class is a listener, much like OInterceptor was.

Ah, OK, then. The OInterceptor looked like it was rebroadcasting the
event to "sub-listeners". I understand you say that the Connection
class was listening at the same level as the OInterceptor, and was not
such a "sublistener". Then that's alright. Thanks for checking.

>> If my above worry is not founded, then what was this
>> OInterceptor::documentEventOccured used for?

> It was used to notify XStatusListeners on whether the component is
> modified or not, by sending updates for ".uno:Save" with
> enabled/disabled states respectively.

And I presume the HSQLDB driver was not such a listener, OK. The list
of listeners were taken from m_pStatCL, and I didn't see this list of
listeners being removed, so it seemed weird to me.

Thanks for reassuring me.

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


[Libreoffice-bugs] [Bug 96385] Tracker: GL black / flickering issues

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96385
Bug 96385 depends on bug 95616, which changed state.

Bug 95616 Summary: autocorrect replacement table has transient black background 
when resized
https://bugs.documentfoundation.org/show_bug.cgi?id=95616

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94682] VIEWING: OpenGL text rendering performance.

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94682

Michael Meeks  changed:

   What|Removed |Added

Summary|VIEWING: OpenGL related |VIEWING: OpenGL text
   |performance regression  |rendering performance.
   |between versions 4.4 and|
   |5.0.2.2 (release)   |

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


[Libreoffice-commits] online.git: loleaflet/reference.html loleaflet/src

2016-01-13 Thread Jan Holesovsky
 loleaflet/reference.html  |   15 +++
 loleaflet/src/control/Control.Tabs.js |   10 +++---
 2 files changed, 22 insertions(+), 3 deletions(-)

New commits:
commit 3cc15e88b9d50e2ec0ee3aa2a8a4624513ee315a
Author: Jan Holesovsky 
Date:   Wed Jan 13 11:37:55 2016 +0100

loleaflet: Update the spreadsheet tabs after inserting a sheet.

diff --git a/loleaflet/reference.html b/loleaflet/reference.html
index d098fea..dfe1736 100644
--- a/loleaflet/reference.html
+++ b/loleaflet/reference.html
@@ -8563,6 +8563,21 @@ var unoCommands = [
 },
 
 {
+uno: '.uno:Insert',
+parameter: {
+'Name': {
+'type': 'string',
+'value': 'Sheet Name'
+},
+'Index': {
+'type': 'long',
+'value': 0
+}
+},
+description: 'Inserts a new sheet to the spreadsheet. The "Name" parameter 
can be left as empty string, in that case the sheet name will be generated. The 
"Index" parameter means the position where it should be inserted - "1" means 
adding as the 1st sheet, etc. 0 is special, and means adding as the last sheet.'
+},
+
+{
 header: 'Appearance options',
 },
 
diff --git a/loleaflet/src/control/Control.Tabs.js 
b/loleaflet/src/control/Control.Tabs.js
index 33df796..6a3a28d 100644
--- a/loleaflet/src/control/Control.Tabs.js
+++ b/loleaflet/src/control/Control.Tabs.js
@@ -17,7 +17,6 @@ L.Control.Tabs = L.Control.extend({
var parts = e.parts;
var selectedPart = e.selectedPart;
var docType = e.docType;
-   var partNames = e.partNames;
if (docType === 'text') {
return;
}
@@ -31,10 +30,16 @@ L.Control.Tabs = L.Control.extend({

$('.scroll-container').mCustomScrollbar('update');

$('.scroll-container').mCustomScrollbar('scrollTo', [0, 0]);
}, this), 100);
+   this._tabsInitialized = true;
+   }
+   if ('partNames' in e) {
+   while (this._tabsCont.firstChild) {
+   
this._tabsCont.removeChild(this._tabsCont.firstChild);
+   }
for (var i = 0; i < parts; i++) {
var id = 'spreadsheet-tab' + i;
var tab = L.DomUtil.create('li', '', 
this._tabsCont);
-   tab.innerHTML = partNames[i];
+   tab.innerHTML = e.partNames[i];
tab.id = id;
L.DomEvent
.on(tab, 'click', 
L.DomEvent.stopPropagation)
@@ -43,7 +48,6 @@ L.Control.Tabs = L.Control.extend({
.on(tab, 'click', 
this._refocusOnMap, this);
this._spreadsheetTabs[id] = tab;
}
-   this._tabsInitialized = true;
}
for (var key in this._spreadsheetTabs) {
var part =  parseInt(key.match(/\d+/g)[0]);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93592] Cant' add localized strings to Basic dialog.

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93592

Michael Meeks  changed:

   What|Removed |Added

 Depends on||94682

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


[Libreoffice-bugs] [Bug 94682] VIEWING: OpenGL related performance regression between versions 4.4 and 5.0.2.2 (release)

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94682

Michael Meeks  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
 CC||t...@iki.fi
 Blocks|94691   |93592

--- Comment #7 from Michael Meeks  ---
Tor - text rendering performance is far less than ideal here in 5.1.0 RC2 too -
I'd love to get a profile of that; I'd suspect GL / program selection for glyph
rendering ;-) either way, would be good to see what we can do here.

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


[Libreoffice-bugs] [Bug 94691] [META] OpenGL bugs

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94691

Michael Meeks  changed:

   What|Removed |Added

 Depends on|94682   |

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


[Libreoffice-bugs] [Bug 97097] New: FEATUNE REQUEST : AUTO‑COR‑REC‑TI‑ÔN FEAT‑UNE TO AD‑D

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97097

Bug ID: 97097
   Summary: FEATUNE REQUEST : AUTO‑COR‑REC‑TI‑ÔN FEAT‑UNE TO AD‑D
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nem...@hotmail.com

Hi,

I would like to ask some‑thing, to de‑vs...

In auto‑cor‑rec‑ti‑ôn you can make modi‑fica‑ti‑ôn, but the modi‑fica‑ti‑ôn
happën after hitt‑ing "space", some‑time if the term is pollov‑ed / follow‑ed
by ", . ! ?", it is not värg‑ing...

But I would like to be able to make change in the term auto‑mati‑cal‑ly pro
ex‑ample to use a long A : "Ā", I would like to be able to ad‑d "AAA"
auto‑cor‑rec‑ti‑ôn "Ā", but in di‑rect‑ly in the in‑tra‑term, with‑out do‑ing
"space"...

To do that, you just need to ad‑d a new func‑ti‑ôn with a box to check, in
"auto‑cor‑rec‑ti‑ôn", to say do that modi‑fica‑ti‑ôn di‑rect‑ly by typ‑ing in
it "III = Ī" or "~I = Ĩ",, with‑out need to press "space"...

Be‑cause if I wanth to change AAA to Ā, now I have to do it to pro each terms
like this KAAALLË /KĀLLË, RAAALLË / RĀLLË, so please ad‑d this func‑ti‑ôn of
di‑rect change (by typ‑ing it) in the term...

→⊕⊕⊕Plêasë... 
→⊕⊕⊕Kanth كانث you 
↔⊜⊜⊜&
→⊕⊕⊕Tʰang 帑 كتأنجى you.



ASK.LIBREOFFICE.ORG FORUM POST (RÊAD ALL COM‑MENTH) :
- https://ask.libreoffice.org/en/question/62566/autocorrection-featune-to-add/

Ʒood day.

Kanth you.

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


[Libreoffice-bugs] [Bug 96125] FORMATTING: Writer paragraph text-to-text alignment doesn't work

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96125

Timur  changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
Version|5.1.0.0.beta1   |5.0.2.1 rc
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=77
   ||514

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


[Libreoffice-bugs] [Bug 94698] cleanup Makefiles

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94698

Michael Meeks  changed:

   What|Removed |Added

   Keywords||difficultyBeginner,
   ||easyHack, skillCpp,
   ||topicCleanup

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


[Libreoffice-bugs] [Bug 96918] Rounding display error for 15 digits integers

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96918

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

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

unit test for tdf#96918 display accurate integer double values

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


[Libreoffice-bugs] [Bug 96918] Rounding display error for 15 digits integers

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96918

Commit Notification  changed:

   What|Removed |Added

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


[Libreoffice-bugs] [Bug 96918] Rounding display error for 15 digits integers

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96918

--- Comment #4 from Commit Notification 
 ---
Eike Rathke committed a patch related to this issue.
It has been pushed to "master":

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

tdf#96918 display accurate integer double values up to (2^53)-1

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


[Libreoffice-bugs] [Bug 95573] EXTENSION MANAGER - freeze / hang when attempting to install extensions on OSX 10.11, installation confirmation dialog not displayed

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95573

--- Comment #28 from Maxim Monastirsky  ---
Created attachment 121898
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121898=edit
backtrace 1

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


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

2016-01-13 Thread Noel Grandin
 svx/source/customshapes/EnhancedCustomShape2d.cxx |6 -
 sw/source/filter/html/htmlcss1.cxx|   33 +++---
 sw/source/filter/html/parcss1.cxx |8 --
 sw/source/filter/html/parcss1.hxx |   10 +--
 sw/source/filter/html/svxcss1.cxx |9 --
 sw/source/filter/html/svxcss1.hxx |4 -
 sw/source/filter/html/swcss1.hxx  |2 
 sw/source/filter/html/swhtml.hxx  |2 
 sw/source/filter/html/wrthtml.hxx |4 -
 sw/source/filter/ww8/escher.hxx   |2 
 sw/source/filter/ww8/rtfsdrexport.cxx |4 -
 sw/source/filter/ww8/rtfsdrexport.hxx |2 
 sw/source/filter/ww8/wrtw8esh.cxx |   16 +---
 sw/source/filter/ww8/wrtw8nds.cxx |4 -
 sw/source/filter/ww8/wrtw8sty.cxx |3 
 sw/source/filter/ww8/wrtww8.cxx   |   18 ++---
 sw/source/filter/ww8/wrtww8.hxx   |   15 ++--
 sw/source/filter/ww8/ww8graf.cxx  |3 
 sw/source/filter/ww8/ww8graf.hxx  |2 
 sw/source/filter/ww8/ww8graf2.cxx |4 -
 sw/source/filter/ww8/ww8par.cxx   |   17 ++---
 sw/source/filter/ww8/ww8par.hxx   |8 +-
 sw/source/filter/ww8/ww8par2.cxx  |   18 ++---
 sw/source/filter/ww8/ww8par3.cxx  |   11 +--
 sw/source/filter/ww8/ww8scan.cxx  |   39 +++
 sw/source/filter/ww8/ww8scan.hxx  |   18 ++---
 sw/source/ui/fldui/fldpage.cxx|7 --
 sw/source/ui/fldui/fldpage.hxx|2 
 sw/source/ui/fldui/fldvar.cxx |4 -
 sw/source/ui/fldui/fldvar.hxx |2 
 sw/source/ui/frmdlg/frmpage.cxx   |4 -
 sw/source/ui/vba/vbaborders.cxx   |5 -
 sw/source/uibase/config/caption.cxx   |8 --
 sw/source/uibase/dochdl/gloshdl.cxx   |7 --
 sw/source/uibase/dochdl/swdtflvr.cxx  |6 -
 sw/source/uibase/docvw/edtwin.cxx |   20 +-
 sw/source/uibase/fldui/fldmgr.cxx |5 -
 sw/source/uibase/frmdlg/frmmgr.cxx|3 
 sw/source/uibase/inc/caption.hxx  |3 
 sw/source/uibase/inc/conttree.hxx |2 
 sw/source/uibase/inc/dbinsdlg.hxx |2 
 sw/source/uibase/inc/edtwin.hxx   |2 
 sw/source/uibase/inc/fldmgr.hxx   |2 
 sw/source/uibase/inc/frmmgr.hxx   |2 
 sw/source/uibase/inc/frmpage.hxx  |2 
 sw/source/uibase/inc/gloshdl.hxx  |4 -
 sw/source/uibase/inc/gloslst.hxx  |2 
 sw/source/uibase/inc/olmenu.hxx   |2 
 sw/source/uibase/inc/pview.hxx|2 
 sw/source/uibase/inc/redlndlg.hxx |2 
 sw/source/uibase/inc/srcview.hxx  |2 
 sw/source/uibase/inc/swdtflvr.hxx |2 
 sw/source/uibase/inc/toxmgr.hxx   |1 
 sw/source/uibase/inc/wrtsh.hxx|   72 +++---
 sw/source/uibase/index/toxmgr.cxx |8 --
 sw/source/uibase/lingu/olmenu.cxx |3 
 sw/source/uibase/uiview/pview.cxx |3 
 sw/source/uibase/uiview/srcview.cxx   |3 
 sw/source/uibase/utlui/content.cxx|3 
 sw/source/uibase/utlui/gloslst.cxx|3 
 sw/source/uibase/wrtsh/delete.cxx |   34 +++---
 sw/source/uibase/wrtsh/move.cxx   |   39 +--
 sw/source/uibase/wrtsh/select.cxx |   27 ++--
 sw/source/uibase/wrtsh/wrtsh3.cxx |   11 +--
 xmloff/source/style/TransGradientStyle.cxx|4 -
 65 files changed, 220 insertions(+), 357 deletions(-)

New commits:
commit c2460312ffcc430f97bea6fb1101be2e736fe002
Author: Noel Grandin 
Date:   Wed Jan 13 13:44:16 2016 +0200

-Werror=unused-but-set-variable

Change-Id: I61a07db63cc8a6bad159ca455f92d604c5e78edc

diff --git a/svx/source/customshapes/EnhancedCustomShape2d.cxx 
b/svx/source/customshapes/EnhancedCustomShape2d.cxx
index 7fd344a..de8b9d4 100644
--- a/svx/source/customshapes/EnhancedCustomShape2d.cxx
+++ b/svx/source/customshapes/EnhancedCustomShape2d.cxx
@@ -536,12 +536,6 @@ bool 
EnhancedCustomShape2d::ConvertSequenceToEnhancedCustomShape2dHandle(
 
 void EnhancedCustomShape2d::ApplyShapeAttributes( const 
SdrCustomShapeGeometryItem& rGeometryItem )
 {
-const sal_Int32* pDefData = nullptr;
-const mso_CustomShape* pDefCustomShape = GetCustomShapeContent( eSpType );
-if ( pDefCustomShape )
-pDefData = pDefCustomShape->pDefData;
-
-
 // AdjustmentValues
 const Any* pAny = 

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

2016-01-13 Thread Tor Lillqvist
 include/vcl/opengl/glxtest.hxx  |   23 ---
 vcl/inc/opengl/framebuffer.hxx  |1 -
 vcl/inc/opengl/x11/glxtest.hxx  |   23 +++
 vcl/opengl/framebuffer.cxx  |3 +--
 vcl/opengl/x11/X11DeviceInfo.cxx|2 +-
 vcl/source/opengl/OpenGLContext.cxx |1 -
 vcl/source/salmain/salmain.cxx  |2 +-
 vcl/unx/glxtest.cxx |2 +-
 8 files changed, 27 insertions(+), 30 deletions(-)

New commits:
commit 5fdb9cd64cfb48949a8c15292eda9266155a62ea
Author: Tor Lillqvist 
Date:   Wed Jan 13 15:01:35 2016 +0200

This stuff is private to vcl

Change-Id: I623da89ea390a07bd6a3236b5c099be094a7acde

diff --git a/include/vcl/opengl/glxtest.hxx b/vcl/inc/opengl/x11/glxtest.hxx
similarity index 84%
rename from include/vcl/opengl/glxtest.hxx
rename to vcl/inc/opengl/x11/glxtest.hxx
index 687038f..979f795 100644
--- a/include/vcl/opengl/glxtest.hxx
+++ b/vcl/inc/opengl/x11/glxtest.hxx
@@ -7,8 +7,8 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
-#ifndef INCLUDED_VCL_OPENGL_GLXTEST_HXX
-#define INCLUDED_VCL_OPENGL_GLXTEST_HXX
+#ifndef INCLUDED_VCL_INC_OPENGL_X11_GLXTEST_HXX
+#define INCLUDED_VCL_INC_OPENGL_X11_GLXTEST_HXX
 
 #include 
 
diff --git a/vcl/opengl/x11/X11DeviceInfo.cxx b/vcl/opengl/x11/X11DeviceInfo.cxx
index e9754ea..49593c7 100644
--- a/vcl/opengl/x11/X11DeviceInfo.cxx
+++ b/vcl/opengl/x11/X11DeviceInfo.cxx
@@ -8,8 +8,8 @@
  */
 
 #include "opengl/x11/X11DeviceInfo.hxx"
+#include "opengl/x11//glxtest.hxx"
 
-#include 
 #include 
 
 #include 
diff --git a/vcl/source/salmain/salmain.cxx b/vcl/source/salmain/salmain.cxx
index ee9ed69..32d5737 100644
--- a/vcl/source/salmain/salmain.cxx
+++ b/vcl/source/salmain/salmain.cxx
@@ -29,7 +29,7 @@
 #include "salinst.hxx"
 
 #if defined( UNX ) && !defined MACOSX && !defined IOS && !defined ANDROID && 
!defined LIBO_HEADLESS
-#include 
+#include "opengl/x11/glxtest.hxx"
 #endif
 
 SAL_IMPLEMENT_MAIN() {
diff --git a/vcl/unx/glxtest.cxx b/vcl/unx/glxtest.cxx
index 12811e8..efe5591 100644
--- a/vcl/unx/glxtest.cxx
+++ b/vcl/unx/glxtest.cxx
@@ -26,7 +26,7 @@
 #include "stdint.h"
 #include 
 
-#include 
+#include "opengl/x11/glxtest.hxx"
 
 #ifdef __SUNPRO_CC
 #include 
commit 4a846b9b93b89152b8f74f3dfc893441ae1347b8
Author: Tor Lillqvist 
Date:   Wed Jan 13 14:52:05 2016 +0200

We only use the prev pointer

(Why not use a std::list? Maybe there is some reason.)

Change-Id: I09010726e9fe45cfa0f530a085c48ec8d3d02cfb

diff --git a/vcl/inc/opengl/framebuffer.hxx b/vcl/inc/opengl/framebuffer.hxx
index 7acd710..9f94a8f 100644
--- a/vcl/inc/opengl/framebuffer.hxx
+++ b/vcl/inc/opengl/framebuffer.hxx
@@ -41,7 +41,6 @@ public:
 
 public:
 OpenGLFramebuffer* mpPrevFramebuffer;
-OpenGLFramebuffer* mpNextFramebuffer;
 };
 
 #endif // INCLUDED_VCL_INC_OPENGL_FRAMEBUFFER_H
diff --git a/vcl/opengl/framebuffer.cxx b/vcl/opengl/framebuffer.cxx
index 215eadf..aa20a93 100644
--- a/vcl/opengl/framebuffer.cxx
+++ b/vcl/opengl/framebuffer.cxx
@@ -18,8 +18,7 @@ OpenGLFramebuffer::OpenGLFramebuffer() :
 mnWidth( 0 ),
 mnHeight( 0 ),
 mnAttachedTexture( 0 ),
-mpPrevFramebuffer( nullptr ),
-mpNextFramebuffer( nullptr )
+mpPrevFramebuffer( nullptr )
 {
 glGenFramebuffers( 1,  );
 CHECK_GL_ERROR();
diff --git a/vcl/source/opengl/OpenGLContext.cxx 
b/vcl/source/opengl/OpenGLContext.cxx
index d70d27e..f409bec 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -1649,7 +1649,6 @@ OpenGLFramebuffer* OpenGLContext::AcquireFramebuffer( 
const OpenGLTexture& rText
 if( mpLastFramebuffer )
 {
 pFramebuffer->mpPrevFramebuffer = mpLastFramebuffer;
-mpLastFramebuffer->mpNextFramebuffer = pFramebuffer;
 mpLastFramebuffer = pFramebuffer;
 }
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91970] Stylesheet Underline & strike through are not visible

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91970

--- Comment #4 from sven-jac...@gmx.de ---
Indeed, as stated in the specification the shd can be part of the pPr and also
rPr.

Within the pPr the whole paragraph gets a background shading, if defined within
the rPr then the text run gets a background shading.

If both are defined, then first the paragraph background shading is applied
thereafter the text run shading. 

The documentation to the rPr shading can be found in the ECMA-376 Fourth
Edition Fundamentals And Markup Language Reference.pdf on page 303 (17.3.2.32
shd Run Shading) 

Be it as it is, both shadings are having the "clear" value which means that no
pattern is used -> no background is to be painted. The question is, why does
this background pattern affect underline and or strike through attributing ?

Best regards, 
Sven

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


[Libreoffice-bugs] [Bug 97095] New: FEATUNE REQUEST : NEW OPTHIMIZ‑ED VUNG‑TI‑ÔNS PRO SUB‑STITUTE

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97095

Bug ID: 97095
   Summary: FEATUNE REQUEST : NEW OPTHIMIZ‑ED VUNG‑TI‑ÔNS PRO
SUB‑STITUTE
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nem...@hotmail.com

Hi have some trouble with the func‑ti‑ôn sub‑stitute I get error...

Buth still I have to ask you some‑thing :

Can you please in‑stead than vrit‑ing all of this (con‑vert Latin character in
others scripts (Greek, Cyrillic) : A = ܐ, B = ܒ, etc...)

   
=(MAJUSCULE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE(SUBSTITUE($G3495;A.$B$2;A.$B$3);A.$D$2;A.$D$3);A.$E$2;A.$E$3);A.$G$2;A.$G$3);A.$H$2;A.$H$3);A.$I$2;A.$I$3);A.$J$2;A.$J$3);A.$K$2;A.$K$3);A.$L$2;A.$L$3);A.$M$2;A.$M$3);A.$N$2;A.$N$3);A.$O$2;A.$O$3);A.$P$2;A.$P$3);A.$Q$2;A.$Q$3);A.$R$2;A.$R$3);A.$S$2;A.$S$3);A.$T$2;A.$T$3);A.$U$2;A.$U$3);A.$V$2;A.$V$3);A.$W$2;A.$W$3);A.$X$2;A.$X$3);A.$Y$2;A.$Y$3);A.$Z$2;A.$Z$3);A.$AA$2;A.$AA$3);A.$AB$2;A.$AB$3);A.$AC$2;A.$AC$3);A.$AD$2;A.$AD$3);A.$AE$2;A.$AE$3);A.$AF$2;A.$AF$3);A.$AG$2;A.$AG$3);A.$AH$2;A.$AH$3);A.$AI$2;A.$AI$3);A.$AJ$2;A.$AJ$3);A.$AK$2;A.$AK$3);A.$AL$2;A.$AL$3);A.$AM$2;A.$AM$3);A.$AN$2;A.$AN$3);A.$AO$2;A.$AO$3)))


To use this one :
=(MAJUSCULE(SUBSTITUE($G3495;A.$B$2:A.AO$2;A.$B$3:A.$AO$3)))
=(MAJUSCULE(SUBSTITUE($G3495;A.$(B:AO)$2;A.$(B:AO)$3)))

or

=(MAJUSCULE(SUBSTITUE($G3495;A.$*$2;A.$*$3)))  {* = ALL}


And in others case of superposed table :
=(MAJUSCULE(SUBSTITUE($G3495;A.$B$2:A.B$40;A.$C$3:A.$C$40))) 

or

=(MAJUSCULE(SUBSTITUE($G3495;A.$B$(2:40);A.$C$(3:40

or

=(MAJUSCULE(SUBSTITUE($G3495;A.$B$*;A.$C$*))) {* = ALL}

IT WOULD BE LOT BEDDËR !!!
AND WITH‑OUT LIMITA‑TI‑ÔN OF SUB‑STITUTE (POLY TʰAN 200)
BE‑CAUSE NOW I GET ERR:514 !!!

KANTH YOU, ƷOOD DAY.

ASK.LIBREOFFICE.ORG FORUM POST :
- https://ask.libreoffice.org/en/question/61889/new-functions-for-substitute/
- https://ask.libreoffice.org/en/question/62973/function-substitute-err514/

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


[Libreoffice-bugs] [Bug 93565] MAILMERGE: Mail merge doesn't work with version 5.0 (individual documents in PDF format does not increment to next record data)

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93565

Timur  changed:

   What|Removed |Added

 Whiteboard| target:5.2.0   |target:5.2.0 target:5.1.0.2
   |target:5.1.0.2  | backportRequest:5.0

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


[Libreoffice-bugs] [Bug 97098] New: FEATUNE REQUEST : IM‑PORTH ?="FOXREPLACE"=?UTF-8?Q? MODI‑FICA‑TI‑ÔN LIST IN AUTO‑COR‑REC‑TI‑ÔN

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97098

Bug ID: 97098
   Summary: FEATUNE REQUEST : IM‑PORTH "FOXREPLACE"
MODI‑FICA‑TI‑ÔN LIST IN AUTO‑COR‑REC‑TI‑ÔN
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nem...@hotmail.com

Hi, 

I use an Ex‑tensi‑ôn pro my browser to change eviil
Franco‑Latino‑Britannico‑Greco‑Semito‑Toscano‑Scipio words in to Têtshêllêngég
Geg‑ôn‑ist terms, but I ask‑ed to the dev (Marc Ruiz) if he can allow to
im‑porth the modi‑fica‑ti‑ôn made in Writer, in FoxReplace (im‑porth) he
re‑spond‑ed it is to much vork वोरक ۋرقة, and I in‑fra‑stand...

So I'm ask‑ing this, and it is very im‑porth‑anth, please, Devs of Libre
Office, allow us to im‑port the modi‑fica‑ti‑ôn ("FoxReplace.json") in Writer /
Calc Auto‑cor‑rec‑ti‑ôn some‑how (and by choosing which language) ???

It would be cool and we will not need to make two time the change...

Please, please. Amiinë.

Tũng. 

Ʒood day & Kanth you...



ASK.LIBREOFFICE.ORG FORUM POST :
-
https://ask.libreoffice.org/en/question/61882/import-foxreplace-modification-list-in-autocorrection/

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


[Libreoffice-bugs] [Bug 97099] Impress doesn't embed any video.

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97099

--- Comment #1 from Leigh Bowden  ---
And then crashes as well.

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


[Libreoffice-bugs] [Bug 97099] Impress doesn't embed any video.

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97099

--- Comment #2 from Leigh Bowden  ---
Created attachment 121896
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121896=edit
Then crashed

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


[Libreoffice-bugs] [Bug 40494] TABLE tab event, new row at end of table doesn't respect protected tables/cells

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40494

Oliver Specht  changed:

   What|Removed |Added

 CC||oliver.spe...@cib.de
   Severity|enhancement |normal

--- Comment #8 from Oliver Specht  ---
This is a bug, not an enhancement. Changing content in protected sections
should not be possible.

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


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

2016-01-13 Thread Michael Stahl
 sw/source/uibase/dochdl/gloshdl.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit e17855d3bf12de307693aa34ace8f4fd20c707e6
Author: Michael Stahl 
Date:   Wed Jan 13 13:57:46 2016 +0100

sw: -Werror=unused-but-set-variable

Change-Id: I9e42af61beff705a8691322a56a967676d560678

diff --git a/sw/source/uibase/dochdl/gloshdl.cxx 
b/sw/source/uibase/dochdl/gloshdl.cxx
index 5de1b12..464deac 100644
--- a/sw/source/uibase/dochdl/gloshdl.cxx
+++ b/sw/source/uibase/dochdl/gloshdl.cxx
@@ -187,7 +187,6 @@ void SwGlossaryHdl::NewGroup(OUString , const 
OUString& rTitle)
 
 void SwGlossaryHdl::RenameGroup(const OUString& rOld, OUString& rNew, const 
OUString& rNewTitle)
 {
-bool bRet = false;
 OUString sOldGroup(rOld);
 if (rOld.indexOf(GLOS_DELIM)<0)
 FindGroupName(sOldGroup);
@@ -198,7 +197,6 @@ void SwGlossaryHdl::RenameGroup(const OUString& rOld, 
OUString& rNew, const OUSt
 {
 pGroup->SetName(rNewTitle);
 delete pGroup;
-bRet = true;
 }
 }
 else
@@ -208,7 +206,7 @@ void SwGlossaryHdl::RenameGroup(const OUString& rOld, 
OUString& rNew, const OUSt
 {
 sNewGroup += OUStringLiteral1() + "0";
 }
-bRet = rStatGlossaries.RenameGroupDoc(sOldGroup, sNewGroup, rNewTitle);
+rStatGlossaries.RenameGroupDoc(sOldGroup, sNewGroup, rNewTitle);
 rNew = sNewGroup;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 47989] EDITING: Resume does not refresh Spell Check dialog box contents

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47989

Oliver Specht  changed:

   What|Removed |Added

 CC||oliver.spe...@cib.de
   Severity|enhancement |normal

--- Comment #2 from Oliver Specht  ---
This is not an enhancement but a bug introduced with the fix of issue 39348.

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


[Libreoffice-bugs] [Bug 95573] EXTENSION MANAGER - freeze / hang when attempting to install extensions on OSX 10.11, installation confirmation dialog not displayed

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95573

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #30 from Maxim Monastirsky  ---
Why the progress bar is updated, if I didn't accept the installation yet?

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


[Libreoffice-bugs] [Bug 97099] New: Impress doesn't embed any video.

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97099

Bug ID: 97099
   Summary: Impress doesn't embed any video.
   Product: LibreOffice
   Version: 4.4.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lgbow...@leighgbowden.co.uk

Created attachment 121895
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121895=edit
Embedded video.

I've done a few experiments on various LibreOffices and Windows(7 and  8.1).
This version is 4452 on Win 8.1.

Basically can't get embedded video to play or show. Screen shot shows avi, mov
and mp4. Avi shows thumbnail but doesn't play and the other two just show the
grey box with question mark.

This sort of needs to work. It's very hard to justify LibreOffice when it can't
do this when PowerPoint can. It's not like these are obscure formats. Some are
only 3MB.

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


[Libreoffice-bugs] [Bug 97100] New: Incorrect French translation in Compress image dialog

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97100

Bug ID: 97100
   Summary: Incorrect French translation in Compress image dialog
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nalimi...@club.fr

In the "Compress image" dialog (right click on an image in Writer -> Compress
image), the string "Afficher la taille" is obviously wrong in French. Without
checking, I guess it's a translation of "Display size", and I think it should
be "Taille d'affichage".

I also wonder whether "Qualité de l'image" et "Nouvelle qualité" are correct.
Looks like this should be "Taille de l'image" and "Nouvelle taille" (i.e.
"Image size" and "New size").

Finally, "Réduire la résolution des images" should probably be singular, as the
settings only affect the currently selected one.

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


[Libreoffice-bugs] [Bug 97071] Basic Dialogs: Mnemonics don't work on buttons

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97071

Samuel Mehrbrodt  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||samuel.mehrbr...@cib.de
 Resolution|--- |INVALID

--- Comment #2 from Samuel Mehrbrodt  ---
Hm now it also works for me - no idea what happened yesterday.
Thanks for testing!

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


[Libreoffice-bugs] [Bug 97087] timers and idles should have programmer comprehensible, unique names ...

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97087

Michael Meeks  changed:

   What|Removed |Added

   Keywords||difficultyBeginner,
   ||easyHack, skillCpp,
   ||topicCleanup
 Whiteboard|easyHack difficultyBeginner |
   |skillCpp topicCleanup   |

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


[Libreoffice-bugs] [Bug 96988] The place to set the language for the document is ridiculously undiscoverable

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96988

Michael Meeks  changed:

   What|Removed |Added

   Keywords|easyHack|

--- Comment #11 from Michael Meeks  ---
Hi Teo =) Easy Hacks are things for developers to create - they need code
pointers so that a newbie can jump in and really quickly fix them =) just to
get them used to the flow of contributing. Until this bug has that (and is
non-controversial - we don't want a flame-fest for a first contribution) - I'm
dropping the keyword. Thanks for filing though.

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


[Libreoffice-bugs] [Bug 97078] SVG render problem

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97078

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #2 from raal  ---
Hello,
looks like duplicate of bug 93703 .
PLease could you test with dev version? Please could you test it with dev
version?  You can download it here:
http://dev-builds.libreoffice.org/daily/master/

Thank you

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


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

2016-01-13 Thread Eike Rathke
 sal/qa/rtl/math/test-rtl-math.cxx |   41 +++
 sal/rtl/math.cxx  |   67 ++
 2 files changed, 108 insertions(+)

New commits:
commit a3f5f4f6369552a3da870de1ed4ea9d8c628c7a8
Author: Eike Rathke 
Date:   Wed Jan 13 14:45:29 2016 +0100

unit test for tdf#96918 display accurate integer double values

Change-Id: I619e0cb0fbbfd0dfba3b2fe9c3476be55a3eea8e

diff --git a/sal/qa/rtl/math/test-rtl-math.cxx 
b/sal/qa/rtl/math/test-rtl-math.cxx
index aa7b213..6636934 100644
--- a/sal/qa/rtl/math/test-rtl-math.cxx
+++ b/sal/qa/rtl/math/test-rtl-math.cxx
@@ -88,6 +88,46 @@ public:
 CPPUNIT_ASSERT_EQUAL(0.0, res);
 }
 
+void test_doubleToString() {
+double fVal = 999;
+sal_Int32 aGroups[3] = { 3, 2, 0 };
+rtl::OUString aRes( rtl::math::doubleToUString( fVal,
+rtl_math_StringFormat_Automatic,
+rtl_math_DecimalPlaces_Max,
+'.', aGroups, ',', true));
+CPPUNIT_ASSERT_EQUAL( OUString("99,99,99,99,99,99,999"), aRes);
+
+fVal = 4503599627370495;
+aRes = rtl::math::doubleToUString( fVal,
+rtl_math_StringFormat_Automatic,
+rtl_math_DecimalPlaces_Max, '.', false);
+CPPUNIT_ASSERT_EQUAL( OUString("4503599627370495"), aRes);
+
+fVal = 4503599627370496;
+aRes = rtl::math::doubleToUString( fVal,
+rtl_math_StringFormat_Automatic,
+2, '.', false);
+CPPUNIT_ASSERT_EQUAL( OUString("4503599627370496.00"), aRes);
+
+fVal = 9007199254740991;// (2^53)-1
+aRes = rtl::math::doubleToUString( fVal,
+rtl_math_StringFormat_Automatic,
+rtl_math_DecimalPlaces_Max, '.', true);
+CPPUNIT_ASSERT_EQUAL( OUString("9007199254740991"), aRes);
+
+fVal = 9007199254740992;// (2^53), algorithm switch
+aRes = rtl::math::doubleToUString( fVal,
+rtl_math_StringFormat_Automatic,
+rtl_math_DecimalPlaces_Max, '.', true);
+CPPUNIT_ASSERT_EQUAL( OUString("9.00719925474099E+015"), aRes);
+
+fVal = 9007199254740993;// (2^53)+1 would be but is 
9007199254740992
+aRes = rtl::math::doubleToUString( fVal,
+rtl_math_StringFormat_Automatic,
+rtl_math_DecimalPlaces_Max, '.', true);
+CPPUNIT_ASSERT_EQUAL( OUString("9.00719925474099E+015"), aRes);
+}
+
 void test_erf() {
 double x, res;
 x =  0.0;
@@ -176,6 +216,7 @@ public:
 CPPUNIT_TEST(test_stringToDouble_good);
 CPPUNIT_TEST(test_stringToDouble_bad);
 CPPUNIT_TEST(test_stringToDouble_exponent_without_digit);
+CPPUNIT_TEST(test_doubleToString);
 CPPUNIT_TEST(test_erf);
 CPPUNIT_TEST(test_erfc);
 CPPUNIT_TEST(test_expm1);
commit 0f6203edf74832f84d8263d7a544d679203a4efc
Author: Eike Rathke 
Date:   Wed Jan 13 14:40:12 2016 +0100

tdf#96918 display accurate integer double values up to (2^53)-1

Change-Id: I42001583c72bc3faab94489a4eabfa183cab5ae2

diff --git a/sal/rtl/math.cxx b/sal/rtl/math.cxx
index be8ebbe..45d07b7 100644
--- a/sal/rtl/math.cxx
+++ b/sal/rtl/math.cxx
@@ -207,6 +207,73 @@ inline void doubleToString(StringT ** pResult,
 return;
 }
 
+// Use integer representation for integer values that fit into the
+// mantissa (1.((2^53)-1)) with a precision of 1 for highest accuracy.
+const sal_Int64 kMaxInt = (static_cast(1) << 53) - 1;
+if ((eFormat == rtl_math_StringFormat_Automatic ||
+ eFormat == rtl_math_StringFormat_F) && fValue <= 
static_cast(kMaxInt))
+{
+sal_Int64 nInt = static_cast(fValue);
+// Check the integer range again because double comparison may yield
+// true within the precision range.
+if (nInt <= kMaxInt && static_cast(nInt) == fValue)
+{
+if (nDecPlaces == rtl_math_DecimalPlaces_Max || 
bEraseTrailingDecZeros)
+nDecPlaces = 0;
+else
+nDecPlaces = ::std::min( nDecPlaces, 15);
+
+// Max 1 sign, 16 integer digits, 15 group separators, 1 decimal
+// separator, 15 decimals digits.
+typename T::Char aBuf[64];
+typename T::Char * pBuf = aBuf;
+typename T::Char * p = pBuf;
+
+// Backward fill.
+size_t nGrouping = 0;
+sal_Int32 nGroupDigits = 0;
+do
+{
+typename T::Char nDigit = nInt % 10;
+nInt /= 10;
+*p++ = nDigit + '0';
+if (pGroups && pGroups[nGrouping] == ++nGroupDigits && nInt > 
0 && cGroupSeparator)
+{
+*p++ = cGroupSeparator;
+if (pGroups[nGrouping+1])
+++nGrouping;
+   

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

2016-01-13 Thread Michael Stahl
 sc/source/core/data/document.cxx |5 -
 sc/source/ui/view/tabvwshf.cxx   |   18 +-
 2 files changed, 5 insertions(+), 18 deletions(-)

New commits:
commit 6dc3dbcf91c2ac63651e0494951e090953c96cb5
Author: Michael Stahl 
Date:   Wed Jan 13 14:36:27 2016 +0100

Revert "sc: Make .uno:Insert (inserting a new sheet) always succeed."

This reverts commit b908497aaff0ec48340f24df33182430b32a4023.

Causes segfaults in various calc unit tests.

Change-Id: I6b986450fb32db094b1e1f6cbbca1b92f23e4873

diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index e878815..deaddf4 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -105,8 +105,6 @@
 #include 
 #include 
 
-#include 
-
 #include "mtvelements.hxx"
 
 using ::editeng::SvxBorderLine;
@@ -568,9 +566,6 @@ bool ScDocument::InsertTab(
 aCxt.mnTabDeletedStart = nPos;
 aCxt.mnTabDeletedEnd = nPos;
 SetAllFormulasDirty(aCxt);
-
-if (GetDrawLayer()->isTiledRendering())
-
GetDrawLayer()->libreOfficeKitCallback(LOK_CALLBACK_DOCUMENT_SIZE_CHANGED, "");
 }
 
 return bValid;
diff --git a/sc/source/ui/view/tabvwshf.cxx b/sc/source/ui/view/tabvwshf.cxx
index 2b838bf..0f31469 100644
--- a/sc/source/ui/view/tabvwshf.cxx
+++ b/sc/source/ui/view/tabvwshf.cxx
@@ -177,21 +177,15 @@ void ScTabViewShell::ExecuteTable( SfxRequest& rReq )
 bool bOk = false;
 const SfxPoolItem*  pTabItem;
 const SfxPoolItem*  pNameItem;
+OUStringaName;
 
 if ( pReqArgs->HasItem( FN_PARAM_1,  ) &&
  pReqArgs->HasItem( nSlot,  ) )
 {
-OUString aName = static_cast(pNameItem)->GetValue();
-pDoc->CreateValidTabName(aName);
-
 // sheet number from basic: 1-based
-// 0 is special, means adding at the end
-nTabNr = static_cast(pTabItem)->GetValue();
-if (nTabNr == 0)
-nTabNr = nTabCount;
-else
---nTabNr;
 
+aName = static_cast(pNameItem)->GetValue();
+nTabNr = static_cast(pTabItem)->GetValue() - 1;
 if ( nTabNr <= nTabCount )
 bOk = InsertTable( aName, nTabNr );
 }
commit 93adda8562b09e14624e52a9bb3fd1e5f321789d
Author: Michael Stahl 
Date:   Wed Jan 13 14:36:23 2016 +0100

Revert "sc: Further .uno:Insert (inserting a new sheet) tweak."

This reverts commit b550d3b10adf3a7f8c3013c231e8251059343c5e.

diff --git a/sc/source/ui/view/tabvwshf.cxx b/sc/source/ui/view/tabvwshf.cxx
index 8ed4937..2b838bf 100644
--- a/sc/source/ui/view/tabvwshf.cxx
+++ b/sc/source/ui/view/tabvwshf.cxx
@@ -192,10 +192,8 @@ void ScTabViewShell::ExecuteTable( SfxRequest& rReq )
 else
 --nTabNr;
 
-if (nTabNr > nTabCount)
-nTabNr = nTabCount;
-
-bOk = InsertTable(aName, nTabNr);
+if ( nTabNr <= nTabCount )
+bOk = InsertTable( aName, nTabNr );
 }
 
 if (bOk)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 95573] EXTENSION MANAGER - freeze / hang when attempting to install extensions on OSX 10.11, installation confirmation dialog not displayed

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95573

--- Comment #29 from Maxim Monastirsky  ---
Created attachment 121899
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121899=edit
backtrace 2

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


[Libreoffice-bugs] [Bug 87843] text-strings in CALC limited to 255 characters per cell

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87843

--- Comment #5 from viviana  ---
(In reply to m.a.riosv from comment #4)
> Please @maik, is the issue solved?

Hi @m.a.riosv! I'm not maik, but I've exactly the same problem:
when I copy FROM Microsoft Excel TO Calc, the text will be cut after 255
characters.

The same text will be pasted if it's from Notepad++

Tested on LibreOffice Vers. 4.4.7.2

What about the bug state? Must I change in "REOPENED"?

(I'm not so experienced, it's my first time :-])

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


[Libreoffice-bugs] [Bug 97096] New: FEATUNE REQUEST : EX‑PORTH AUTO‑COR‑REC‑TI‑ÔN IN CLOUD

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97096

Bug ID: 97096
   Summary: FEATUNE REQUEST : EX‑PORTH AUTO‑COR‑REC‑TI‑ÔN IN CLOUD
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nem...@hotmail.com

Hi, 

I love the Auto‑correc‑ti‑ôn func‑ti‑ôn, buth it would be cool to be able to
ex‑porth the modi‑fi‑ed list di‑rect‑ly vrom the Auto‑cor‑rec‑ti‑ôn windows, to
Google Drive / Apple Cloud / One Drive or to HD/USB, in format TEXT or CALC,
like that we can back‑up our modi‑fica‑ti‑ôn, and re‑in‑stall them if need‑ed
after formatt‑ing the drive or a pro‑blem (virus, failure)... 

Can you allov us, to make our own en_NAMEOFUSER.dic when we use Open / Libre
Office ? I would like to use my own versi‑ôn of en_UK.dic call‑ed
en_NEMZAGDI.dic or en_AMNGZEDI.dic...

With the possi‑bili‑ty to ex‑porth them like in cloud di‑rect‑ly vrôm the
Auto‑cor‑rec‑ti‑ôn windows menu, like I ask‑ed it here :
-
https://ask.libreoffice.org/en/question/56969/can-you-add-export-autocorrection-in-calc-format-to-any-cloud/

Also, some‑time I would like to trans‑code text (vrom web copi‑ed in VRITE)
us‑ing my auto‑cor‑rec‑ti‑ôn modi‑fica‑ti‑ôn, buth there is no button to push
to trans‑muthe the text, can you please ad‑d it ?

Please do all of this pro us !!! Tʰang... Ʒood day...


ASK.LIBREOFFICE.ORG FORUM POST :
-
https://ask.libreoffice.org/en/question/56969/can-you-add-export-autocorrection-in-calc-format-to-any-cloud/
-
https://ask.libreoffice.org/en/question/59838/can-you-add-in-autocorrection-personnal-zzz_vvdic/
-
https://ask.libreoffice.org/en/question/59839/bouton-to-use-autocorrection-in-text/

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


[Libreoffice-bugs] [Bug 96949] dung out dead code...

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96949

Michael Meeks  changed:

   What|Removed |Added

   Keywords||difficultyBeginner,
   ||easyHack, skillCpp,
   ||topicCleanup
 Whiteboard|easyHack difficultyBeginner |
   |skillCpp topicCleanup   |

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


[Libreoffice-bugs] [Bug 97074] flicker creating window ...

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97074

Michael Meeks  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 96971] SetXORMode - remove un-needed parameter ...

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96971

Michael Meeks  changed:

   What|Removed |Added

   Keywords||difficultyBeginner,
   ||easyHack, skillCpp,
   ||topicCleanup
 Whiteboard|easyHack difficultyBeginner |
   |skillCpp topicCleanup   |

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


[Libreoffice-bugs] [Bug 96888] Kill internal vcl dog-tags ...

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96888

Michael Meeks  changed:

   What|Removed |Added

   Keywords||difficultyBeginner,
   ||easyHack, skillCpp,
   ||topicCleanup
 Whiteboard|easyHack difficultyBeginner |
   |skillCpp topicCleanup   |
   |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
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96918] Rounding display error for 15 digits integers

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96918

Eike Rathke  changed:

   What|Removed |Added

Version|4.4.7.2 release |Inherited From OOo
   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 97094] New: FEATUNE REQUEST : VERTICAL ALIGNEMENT

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97094

Bug ID: 97094
   Summary: FEATUNE REQUEST : VERTICAL ALIGNEMENT
   Product: LibreOffice
   Version: 5.0.4.2 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nem...@hotmail.com

Hi,

Can you ad‑d writ‑ing "vêrthi‑cal" in PARA‑GRAPH STYLE, to be able to vrite not
left or right but down to up when scroll‑ing... Some‑one giv‑ed me a
com‑bina‑ti‑ôn to make that by search & re‑place :

→search: ( |\t)+

→replace: \n

→→more Options [x]regular Expression

- https://www.pinterest.com/pin/273804852323185295/

Buth a ana‑logous func‑ti‑ôn di‑rêct‑ly in Para‑graph style will be cool...
Also we should be able to vrite a vord next to vêrthi‑cal one if we need it,
like this :

→⊕⊕ABCDEF

←⊖⊖FEDCBA

→⊕⊕BDFECA

←⊖⊖ACEFDB / ΑΓΕΦΔΒ (possibility to add a terms next even if vertical
automatically)

Likë Asia Chinese Japanese Mongol Tibetan do...

Please. Ʒood day.


ASK.LIBREOFFICE.ORG FORUM POST :
-
https://ask.libreoffice.org/en/question/61612/please-add-vertical-orientation-in-vrite/
-
https://ask.libreoffice.org/en/question/61079/can-we-change-the-text-vrom-left-to-right-automatically-to-up-to-down/

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


[Libreoffice-bugs] [Bug 97083] Think-cell charts displayed improperly

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97083

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
Hello Brent,

Thank you for filing the bug. Please send us a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO', so please do change it back to
'UNCONFIRMED' once you have attached a document.
(Please note that the attachment will be public, remove any sensitive
information before attaching it.)
How can I eliminate confidential data from a sample document?
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
Thank you

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


Re: Deprecation (was Re: Remove ActiveX from LibreOffice)

2016-01-13 Thread Rick C. Hodgin
In addition, everything thru Windows 10 currently supports ActiveX, and of
all the various versions of Windows still seen in the wild, Windows 8, 8.1,
and 10 account for only 23% of all OSes, and 26% of Windows OSes.  Windows
7 accounts for 56%, and Windows XP comes in at #2 accounting for 11%.

http://netmarketshare.com/operating-system-market-share.aspx?qprid=10=0

Windows OSes that support these features are not going away anytime soon.
Microsoft may even remove them from future releases, but there will be
users who will not so easily let go of their former feature sets.  There
are too many powerful features in 32-bit Windows and 64-bit Windows to let
them all go.  Microsoft and the rest of the business world may want to move
us all to browser-based operating systems, but there is no real computing
power there.  It changes the user base from owners to renters, and there
are many who will not stand for that, and it will be those people who
continue to use LibreOffice, for example, as they are looking for real
ownership of their machine, and not just being a renter.

Allodial Title -- it makes all the difference. :-)

Best regards,
Rick C. Hodgin


On Wed, Jan 13, 2016 at 1:36 AM, James E Lang  wrote:

> But Bryan, Rick is pointing out that ActiveX usage is not limited to
> browsers only. If its usage is deprecated then I assume there is a
> functionally equivalent alternative but the *effective* life cycle of
> applications that use ActiveX is almost certain to stretch past the start
> of LO 6.
>
> I would define effective life cycle of an application as being AT LEAST
> two half lives of the application beyond the first release of the
> application that replaces the final LEGITIMATE release with an 18 month
> minimum (36 months if there is no subsequent application update release).
>
> All support for Windows XP has been discontinued by Microsoft yet many
> computers still use it. Requiring a Windows XP upgrade to support EXISTING
> functionality in LO is quite possibly premature even now.
>
> Depreciation means to me that products should cease requiring use of
> something in ongoing development cycles but that for its effective life
> cycle its use WRT previously developed programs will not be abridged.
>
> I'm told that ActiveX has been a security nightmare since it was first
> released. That's probably a better reason to not support it than citing its
> depreciation status.
>
> I realize that on volunteer projects such as LO such standards are a bit
> of a burden but they warrant at least a nodding recognition.
>
> --
> Jim
>
> -Original Message-
> From: Bryan Quigley 
> To: "Rick C. Hodgin" 
> Cc: Chris Sherlock , Ashod Nakashian <
> ashnak...@gmail.com>, libreoffice 
> Sent: Tue, 12 Jan 2016 20:27
> Subject: Re: Remove ActiveX from LibreOffice
>
> Hi Rick,
>
> ActiveX is deprecated by Microsoft and will be less useful (or not at
> all) on newer MS browsers.  I'm unsure if it ever worked (or was
> supposed to) let you embed ActiveX controls into LibreOffice itself.
>
> Kind regards,
> Bryan
>
> On Mon, Jan 11, 2016 at 10:08 PM, Rick C. Hodgin
>  wrote:
> > Why are you removing ActiveX from LibreOffice? Excel supports it, and it
> is
> > desirable for integration with Windows apps like C#, Visual Basic, Visual
> > FoxPro. It allows those other apps to integrate the app directly into
> their
> > app.
> >
> > I have tried to use it previously, but could not find documentation for
> it.
> > If it's an unused feature, I'd suggest that's why than for other reasons.
> >
> > Best regards,
> > Rick C. Hodgin
> >
> >
> >
> >
> >  Original Message 
> > From: Chris Sherlock
> > Sent: Mon, 11/01/2016 08:21 PM
> > To: Ashod Nakashian
> > CC: libreoffice ; Bryan Quigley
> > Subject: Re: Remove ActiveX from LibreOffice
> >
> > That sounds pretty reasonable to me.
> >
> > Out of interest, just how “integrated” is this with the code? If someone
> > wanted to create an external project on GitHub or some place like this,
> > would it be feasible?
> >
> > I guess I’m trying to understand how much of core it touches… to
> reimplement
> > an ActiveX control outside of the main tree, would a developer need to
> fork
> > LibreOffice entirely, or could they maintain their codebranch entirely
> > seperately and update the control if necessary after we do our changes to
> > the main codebase?
> >
> > I’m definitely for removing all vestiges of ActiveX from LO, but the
> more I
> > think about it the more I can see that some corporation somewhere might
> be
> > affected, far more so than the remove of NPAPI… giving them the option
> of a
> > control that can be maintained outside of the main project would be nice
> :-)
> >
> > Chris
> >
> > On 12 Jan 2016, at 9:37 AM, Ashod Nakashian  wrote:
> >
> >
> >
> > On Mon, Jan 11, 2016 at 2:32 

[Libreoffice-bugs] [Bug 97071] Basic Dialogs: Mnemonics don't work on buttons

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97071

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
Created attachment 121897
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121897=edit
test file

Works for me with this file in 5.0.3.2, win7

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


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

2016-01-13 Thread Michael Stahl
 sw/source/filter/ww8/ww8par2.cxx |5 -
 1 file changed, 5 deletions(-)

New commits:
commit 37c35bc263b46edb5881cc9eb824d3eb432c0441
Author: Michael Stahl 
Date:   Wed Jan 13 14:04:50 2016 +0100

sw: -Werror=unused-but-set-variable

Change-Id: Iec8f2715a526d69332e771b99058fa1b321dbc57

diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx
index cc25522..ed846b0 100644
--- a/sw/source/filter/ww8/ww8par2.cxx
+++ b/sw/source/filter/ww8/ww8par2.cxx
@@ -3257,9 +3257,6 @@ void WW8TabDesc::UpdateTableMergeGroup(  WW8_TCell& 
rCell,
 SwTableBox*pActBox,
 sal_uInt16 nCol )
 {
-// set default for return
-SwTableBox* pResult = nullptr;
-
 // check if the box has to be merged
 // If cell is the first one to be merged, a new merge group has to be 
provided.
 // E.g., it could be that a cell is the first one to be merged, but no
@@ -3286,8 +3283,6 @@ void WW8TabDesc::UpdateTableMergeGroup(  WW8_TCell& 
rCell,
 {
 // add current box to merge group
 pTheMergeGroup->push_back(pActBox);
-// return target box
-pResult = (*pTheMergeGroup)[ 0 ];
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97082] Pasting slides causes white background behind text

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97082

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
Please could you attach test file and steps how to reproduce the bug? Thank you

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


[Bug 92925] Remove export of old and obsolete graphic formats

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92925

Bryan Quigley  changed:

   What|Removed |Added

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

--- Comment #14 from Bryan Quigley  ---
That's all of them.  

>From going through this list I wanted to mention that if we want to remove
import support in the future I suggest starting with:
PCT - Mac Pict
PBM,GM,PM - Portable Bitmap, Graymap, Pixelmap (actually the format might just
be bad)
MET - OS/2 Metafile

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


[Libreoffice-bugs] [Bug 92796] [ODF] Writer does not remove unused page background image

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92796

--- Comment #8 from Olivier Hallot  ---
because of this bug, the file is not compliant to ODF 1.2 according to ODF
Validator in http://odf-validator.rhcloud.com/

The image attached is the result of the validation. Note the  error.

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


[Libreoffice-bugs] [Bug 92796] [ODF] Writer does not remove unused page background image

2016-01-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92796

--- Comment #9 from Olivier Hallot  ---
Created attachment 121904
  --> https://bugs.documentfoundation.org/attachment.cgi?id=121904=edit
image shows results of ODF validation with the file that has the bug.

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


  1   2   3   >