[Libreoffice-bugs] [Bug 100726] Improve readability of OUString concatanations

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100726

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

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

tdf#100726: Improve readability of OUString concatenation

It will be available in 5.3.0.

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

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

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


[Libreoffice-commits] core.git: basctl/source basic/source

2016-08-03 Thread nadith
 basctl/source/basicide/baside3.cxx  |4 +---
 basctl/source/basicide/basobj3.cxx  |3 +--
 basctl/source/basicide/moduldlg.cxx |3 +--
 basic/source/runtime/runtime.cxx|4 +---
 basic/source/sbx/sbxdate.cxx|3 +--
 basic/source/sbx/sbxform.cxx|3 +--
 basic/source/uno/dlgcont.cxx|9 +++--
 basic/source/uno/namecont.cxx   |   19 ++-
 8 files changed, 15 insertions(+), 33 deletions(-)

New commits:
commit c85a3ac70d813eef9baa9a5592c0a2d724bb9038
Author: nadith 
Date:   Fri Jul 29 11:47:40 2016 +0530

tdf#100726: Improve readability of OUString concatenation

all most all of the places in the basic basctl modules this bug fixed

Change-Id: I1a4a03e207c1b520449c31a05265585120da07f6
Reviewed-on: https://gerrit.libreoffice.org/27662
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/basctl/source/basicide/baside3.cxx 
b/basctl/source/basicide/baside3.cxx
index 185dba4..5929df1 100644
--- a/basctl/source/basicide/baside3.cxx
+++ b/basctl/source/basicide/baside3.cxx
@@ -763,9 +763,7 @@ void DialogWindow::SaveDialog()
 aURLObj.removeSegment();
 OUString aURL( aURLObj.GetMainURL( INetURLObject::NO_DECODE ) 
);
 bool bReadOnly = false;
-OUString aComment( "# " );
-aComment += aDialogName;
-aComment += " strings" ;
+OUString aComment = "# " + aDialogName + " strings" ;
 Reference< task::XInteractionHandler > xDummyHandler;
 
 // Remove old properties files in case of overwriting Dialog 
files
diff --git a/basctl/source/basicide/basobj3.cxx 
b/basctl/source/basicide/basobj3.cxx
index 360b72f..ad9626e 100644
--- a/basctl/source/basicide/basobj3.cxx
+++ b/basctl/source/basicide/basobj3.cxx
@@ -72,8 +72,7 @@ SbMethod* CreateMacro( SbModule* pModule, const OUString& 
rMacroName )
 sal_Int32 nMacro = 1;
 while ( !bValid )
 {
-aMacroName = "Macro";
-aMacroName += OUString::number( nMacro );
+aMacroName = "Macro" + OUString::number( nMacro );
 // test whether existing...
 bValid = pModule->FindMethod( aMacroName, SbxClassType::Method 
) == nullptr;
 nMacro++;
diff --git a/basctl/source/basicide/moduldlg.cxx 
b/basctl/source/basicide/moduldlg.cxx
index cf4e557..71bdc91 100644
--- a/basctl/source/basicide/moduldlg.cxx
+++ b/basctl/source/basicide/moduldlg.cxx
@@ -953,8 +953,7 @@ void LibDialog::dispose()
 
 void LibDialog::SetStorageName( const OUString& rName )
 {
-OUString aName( IDE_RESSTR(RID_STR_FILENAME) );
-aName += rName;
+OUString aName = IDE_RESSTR(RID_STR_FILENAME) + rName;
 m_pStorageFrame->set_label(aName);
 }
 
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 5978764..88e38fd 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -3576,9 +3576,7 @@ SbxBase* SbiRuntime::FindElementExtern( const OUString& 
rName )
 if ( !pElem && pMeth )
 {
 // for statics, set the method's name in front
-OUString aMethName = pMeth->GetName();
-aMethName += ":";
-aMethName += rName;
+OUString aMethName = pMeth->GetName() + ":" + rName;
 pElem = pMod->Find(aMethName, SbxClassType::DontCare);
 }
 
diff --git a/basic/source/sbx/sbxdate.cxx b/basic/source/sbx/sbxdate.cxx
index 4ed7ed0..ac09888 100644
--- a/basic/source/sbx/sbxdate.cxx
+++ b/basic/source/sbx/sbxdate.cxx
@@ -126,8 +126,7 @@ double ImpGetDate( const SbxValues* p )
 case YMD: aDateStr = "/MM/DD"; break;
 }
 
-OUString aStr( aDateStr );
-aStr += " HH:MM:SS";
+OUString aStr = aDateStr + " HH:MM:SS";
 
 pFormatter->PutandConvertEntry( aStr, nCheckPos, nType,
 nIndex, LANGUAGE_ENGLISH_US, 
eLangType );
diff --git a/basic/source/sbx/sbxform.cxx b/basic/source/sbx/sbxform.cxx
index 55e93f1..59325bd 100644
--- a/basic/source/sbx/sbxform.cxx
+++ b/basic/source/sbx/sbxform.cxx
@@ -1026,8 +1026,7 @@ OUString SbxBasicFormater::BasicFormat( double dNumber, 
const OUString& _sFormat
 {
 if( sNegFormatStrg.isEmpty() && bPosFormatFound )
 {
-sTempStrg = "-";
-sTempStrg += sPosFormatStrg;
+sTempStrg = "-" + sPosFormatStrg;
 }
 else
 {
diff --git a/basic/source/uno/dlgcont.cxx b/basic/source/uno/dlgcont.cxx
index 2a8684e..ec6d3c6 100644
--- a/basic/source/uno/dlgcont.cxx
+++ b/basic/source/uno/dlgcont.cxx
@@ -359,8 +359,7 @@ Reference< css::resource::XStringResourcePersistence >
 // get ui locale
 ::com::sun  

[Libreoffice-bugs] [Bug 93341] loading calc is slow

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93341

Bojan  changed:

   What|Removed |Added

Version|5.0.0.5 release |5.2.0.3 rc

--- Comment #11 from Bojan  ---
I have noticed since LO 5.2 RC1 on, and also now with LO 5.2.0.4 (Build ID:
066b007f5ebcc236395c7d282ba488bca6720265) that Calc is extremely slow when
loading, scrolling and/or navigating between sheet. The files I work with have
an average of 400 kb so nothing to do with the filesize. In addition, in time
System Activity shows a substantial increase in LO memory consumption, starting
from around 300.000kb and ending with 2.000.000kb during an hour or so of work.
And at max 2 files are opened. OpenGL is disabled.

Machine detail:
OpenSuse Leap 42.1
KDE Plasma 5.7.3
KDE Frameworks 5.24.0
QT 5.7.0
Kernel 4.1.27-27-default
OS 64-bit
processor 4xIntel Xeon 2.80GHz
Memory 16 GB

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


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

2016-08-03 Thread Rosen
 xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx |5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 3c9d834af059bf3e9485ab9f0190733aa21dd9a6
Author: Rosen 
Date:   Thu Aug 4 07:04:59 2016 +0530

tdf#100726 Improve readability of OUString concatanations

concat string to easy readability

Change-Id: Ied5db1d74ad6266df558b859074257fd0049ad29
Reviewed-on: https://gerrit.libreoffice.org/27858
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx 
b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx
index 4c975a2..109fec4 100644
--- a/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx
+++ b/xmlsecurity/source/xmlsec/mscrypt/x509certificate_mscryptimpl.cxx
@@ -163,10 +163,7 @@ OUString replaceTagSWithTagST(OUString oldDN)
 
 if (pairIndex.first != -1)
 {
-OUString newDN = oldDN.copy(0, pairIndex.first);
-newDN += "ST";
-newDN += oldDN.copy(pairIndex.second);
-return newDN;
+return oldDN.copy(0, 
pairIndex.first)+"ST"+oldDN.copy(pairIndex.second);
 }
 return oldDN;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100726] Improve readability of OUString concatanations

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100726

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

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

tdf#100726 Improve readability of OUString concatanations

It will be available in 5.3.0.

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

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

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


[Libreoffice-bugs] [Bug 88205] Adapt uses of css::uno::Sequence to use initializer_list ctor

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88205

--- Comment #17 from Commit Notification 
 ---
Muhammet Kara committed a patch related to this issue.
It has been pushed to "master":

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

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

It will be available in 5.3.0.

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

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

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


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

2016-08-03 Thread Noel Grandin
 accessibility/inc/extended/AccessibleBrowseBox.hxx|2 +-
 accessibility/inc/extended/textwindowaccessibility.hxx|2 +-
 accessibility/inc/helper/IComboListBoxHelper.hxx  |2 +-
 accessibility/source/extended/textwindowaccessibility.cxx |2 +-
 accessibility/source/standard/vclxaccessiblelist.cxx  |2 +-
 accessibility/source/standard/vclxaccessibletoolbox.cxx   |2 +-
 avmedia/source/viewer/mediawindow.cxx |2 +-
 avmedia/source/viewer/mediawindow_impl.hxx|2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit f5e3b7b0e46dad98dc147bc85fa78248f374e2a9
Author: Noel Grandin 
Date:   Tue Aug 2 14:55:18 2016 +0200

loplugin:countusersofdefaultparams in accessibility,avmedia

Change-Id: Ic173f43c882384fe594e8ba3e44aedc3796a45f6
Reviewed-on: https://gerrit.libreoffice.org/27792
Reviewed-by: Noel Grandin 
Tested-by: Noel Grandin 

diff --git a/accessibility/inc/extended/AccessibleBrowseBox.hxx 
b/accessibility/inc/extended/AccessibleBrowseBox.hxx
index 0b1d2fe..fe43d19 100644
--- a/accessibility/inc/extended/AccessibleBrowseBox.hxx
+++ b/accessibility/inc/extended/AccessibleBrowseBox.hxx
@@ -109,7 +109,7 @@ public:
 */
 void commitHeaderBarEvent(sal_Int16 nEventId,
 const css::uno::Any& rNewValue,
-const css::uno::Any& rOldValue,bool _bColumnHeaderBar = true);
+const css::uno::Any& rOldValue, bool _bColumnHeaderBar);
 
 // helper functions
 /** commitTableEvent commit the event at all listeners of the table
diff --git a/accessibility/inc/extended/textwindowaccessibility.hxx 
b/accessibility/inc/extended/textwindowaccessibility.hxx
index 70fa94f..fbb7f9b 100644
--- a/accessibility/inc/extended/textwindowaccessibility.hxx
+++ b/accessibility/inc/extended/textwindowaccessibility.hxx
@@ -538,7 +538,7 @@ public:
 
 css::i18n::Boundary
 retrieveParagraphLineBoundary( Paragraph const * pParagraph,
-   ::sal_Int32 nIndex, ::sal_Int32 *pLineNo = 
nullptr);
+   ::sal_Int32 nIndex, ::sal_Int32 *pLineNo);
 
 css::i18n::Boundary
 retrieveParagraphBoundaryOfLine( Paragraph const * pParagraph,
diff --git a/accessibility/inc/helper/IComboListBoxHelper.hxx 
b/accessibility/inc/helper/IComboListBoxHelper.hxx
index 8d528be..bcb195b 100644
--- a/accessibility/inc/helper/IComboListBoxHelper.hxx
+++ b/accessibility/inc/helper/IComboListBoxHelper.hxx
@@ -55,7 +55,7 @@ namespace accessibility
 virtual voidSelectEntryPos( sal_Int32  nPos, bool bSelect 
= true ) = 0;
 virtual sal_Int32   GetSelectEntryCount() const = 0;
 virtual voidSetNoSelection() = 0;
-virtual sal_Int32   GetSelectEntryPos( sal_Int32  nSelIndex = 0 ) 
const = 0;
+virtual sal_Int32   GetSelectEntryPos( sal_Int32  nSelIndex ) 
const = 0;
 virtual boolIsInDropDown() const = 0;
 virtual Rectangle   GetEntryCharacterBounds( const sal_Int32 
_nEntryPos, const sal_Int32 _nCharacterIndex ) const = 0;
 virtual longGetIndexForPoint( const Point& rPoint, 
sal_Int32 & nPos ) const = 0;
diff --git a/accessibility/source/extended/textwindowaccessibility.cxx 
b/accessibility/source/extended/textwindowaccessibility.cxx
index 5ddf1ca..4a5f0cb 100644
--- a/accessibility/source/extended/textwindowaccessibility.cxx
+++ b/accessibility/source/extended/textwindowaccessibility.cxx
@@ -725,7 +725,7 @@ void Paragraph::implGetLineBoundary( css::i18n::Boundary& 
rBoundary,
 if ( implIsValidIndex( nIndex, nLength ) || nIndex == nLength )
 {
 css::i18n::Boundary aBoundary =
-m_xDocument->retrieveParagraphLineBoundary( this, nIndex );
+m_xDocument->retrieveParagraphLineBoundary( this, nIndex, nullptr 
);
 rBoundary.startPos = aBoundary.startPos;
 rBoundary.endPos = aBoundary.endPos;
 }
diff --git a/accessibility/source/standard/vclxaccessiblelist.cxx 
b/accessibility/source/standard/vclxaccessiblelist.cxx
index b439dd1..42747d74 100644
--- a/accessibility/source/standard/vclxaccessiblelist.cxx
+++ b/accessibility/source/standard/vclxaccessiblelist.cxx
@@ -89,7 +89,7 @@ VCLXAccessibleList::VCLXAccessibleList (VCLXWindow* 
pVCLWindow, BoxType aBoxType
 UpdateVisibleLineCount();
 if(m_pListBoxHelper)
 {
-m_nCurSelectedPos=m_pListBoxHelper->GetSelectEntryPos();
+m_nCurSelectedPos=m_pListBoxHelper->GetSelectEntryPos(0);
 }
 sal_uInt16 nCount = static_cast(getAccessibleChildCount());
 m_aAccessibleChildren.reserve(nCount);
diff --git a/accessibility/source/standard/vclxaccessibletoolbox.cxx 
b/accessibility/source/standard/vclxaccessibletoolbox.cxx
index 9efb926..126e4c1 100644
--- a/accessibility/source/standard/vclxaccessibletoolbox.cxx
+++ 

[Libreoffice-bugs] [Bug 101264] Can't switch windows with CMD + F1 key on OS X

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101264

--- Comment #4 from yuki  ---
Japanese keyboard is like this.
http://wm-eddie.info/blog/wp-content/uploads/2012/03/AppleJISKeyboard.png

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


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

2016-08-03 Thread Muhammet Kara
 avmedia/source/framework/soundhandler.cxx|3 +--
 avmedia/source/gstreamer/gstframegrabber.cxx |4 +---
 avmedia/source/gstreamer/gstmanager.cxx  |4 +---
 avmedia/source/gstreamer/gstplayer.cxx   |4 +---
 avmedia/source/gstreamer/gstwindow.cxx   |4 +---
 avmedia/source/macavf/framegrabber.mm|4 +---
 avmedia/source/macavf/manager.mm |4 +---
 avmedia/source/macavf/player.mm  |4 +---
 avmedia/source/macavf/window.mm  |3 +--
 avmedia/source/opengl/oglframegrabber.cxx|3 +--
 avmedia/source/opengl/oglmanager.cxx |3 +--
 avmedia/source/opengl/oglplayer.cxx  |3 +--
 avmedia/source/opengl/oglwindow.cxx  |3 +--
 avmedia/source/quicktime/framegrabber.mm |4 +---
 avmedia/source/quicktime/manager.mm  |4 +---
 avmedia/source/quicktime/player.mm   |4 +---
 avmedia/source/quicktime/window.mm   |4 +---
 avmedia/source/vlc/vlcframegrabber.cxx   |3 +--
 avmedia/source/vlc/vlcmanager.cxx|3 +--
 avmedia/source/vlc/vlcplayer.cxx |3 +--
 avmedia/source/vlc/vlcwindow.cxx |3 +--
 avmedia/source/win/framegrabber.cxx  |4 +---
 avmedia/source/win/manager.cxx   |4 +---
 avmedia/source/win/player.cxx|4 +---
 avmedia/source/win/window.cxx|4 +---
 25 files changed, 25 insertions(+), 65 deletions(-)

New commits:
commit 7f01cf67f8181836430fd3c8433e8bf2f55c95f2
Author: Muhammet Kara 
Date:   Mon Aug 1 14:05:42 2016 +0300

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

in SoundHandler, FrameGrabber, Manager, MissingPluginInstaller,
and several classes in 'avmedia' module.

Change-Id: I9ab42d2ef95f3b0c724a7be9eb9e2389336a6f38
Reviewed-on: https://gerrit.libreoffice.org/2
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/avmedia/source/framework/soundhandler.cxx 
b/avmedia/source/framework/soundhandler.cxx
index c86583c..785f6ce 100644
--- a/avmedia/source/framework/soundhandler.cxx
+++ b/avmedia/source/framework/soundhandler.cxx
@@ -125,8 +125,7 @@ sal_Bool SAL_CALL SoundHandler::supportsService( const 
OUString& sServiceName )
 // XServiceInfo
 css::uno::Sequence< OUString > SAL_CALL 
SoundHandler::getSupportedServiceNames() throw( css::uno::RuntimeException, 
std::exception )
 {
-css::uno::Sequence seqServiceNames { 
"com.sun.star.frame.ContentHandler" };
-return seqServiceNames;
+return { "com.sun.star.frame.ContentHandler" };
 }
 
 
/*-
diff --git a/avmedia/source/gstreamer/gstframegrabber.cxx 
b/avmedia/source/gstreamer/gstframegrabber.cxx
index 9a37b06..2ad8cfa 100644
--- a/avmedia/source/gstreamer/gstframegrabber.cxx
+++ b/avmedia/source/gstreamer/gstframegrabber.cxx
@@ -218,9 +218,7 @@ sal_Bool SAL_CALL FrameGrabber::supportsService( const 
OUString& ServiceName )
 uno::Sequence< OUString > SAL_CALL FrameGrabber::getSupportedServiceNames()
 throw (uno::RuntimeException, std::exception)
 {
-uno::Sequence< OUString > aRet { AVMEDIA_GST_FRAMEGRABBER_SERVICENAME };
-
-return aRet;
+return { AVMEDIA_GST_FRAMEGRABBER_SERVICENAME };
 }
 
 } // namespace gstreamer
diff --git a/avmedia/source/gstreamer/gstmanager.cxx 
b/avmedia/source/gstreamer/gstmanager.cxx
index 2837556..d12a66e 100644
--- a/avmedia/source/gstreamer/gstmanager.cxx
+++ b/avmedia/source/gstreamer/gstmanager.cxx
@@ -67,9 +67,7 @@ sal_Bool SAL_CALL Manager::supportsService( const OUString& 
ServiceName )
 uno::Sequence< OUString > SAL_CALL Manager::getSupportedServiceNames(  )
 throw (uno::RuntimeException, std::exception)
 {
-uno::Sequence aRet { AVMEDIA_GST_MANAGER_SERVICENAME };
-
-return aRet;
+return { AVMEDIA_GST_MANAGER_SERVICENAME };
 }
 
 } // namespace gstreamer
diff --git a/avmedia/source/gstreamer/gstplayer.cxx 
b/avmedia/source/gstreamer/gstplayer.cxx
index 24722f0..a849a58 100644
--- a/avmedia/source/gstreamer/gstplayer.cxx
+++ b/avmedia/source/gstreamer/gstplayer.cxx
@@ -993,9 +993,7 @@ sal_Bool SAL_CALL Player::supportsService( const OUString& 
ServiceName )
 uno::Sequence< OUString > SAL_CALL Player::getSupportedServiceNames()
 throw (uno::RuntimeException, std::exception)
 {
-uno::Sequence aRet { AVMEDIA_GST_PLAYER_SERVICENAME };
-
-return aRet;
+return { AVMEDIA_GST_PLAYER_SERVICENAME };
 }
 
 } // namespace gstreamer
diff --git a/avmedia/source/gstreamer/gstwindow.cxx 
b/avmedia/source/gstreamer/gstwindow.cxx
index 765343d..3b061f3 100644
--- a/avmedia/source/gstreamer/gstwindow.cxx
+++ b/avmedia/source/gstreamer/gstwindow.cxx
@@ -233,9 +233,7 @@ sal_Bool SAL_CALL Window::supportsService( const OUString& 
ServiceName )
 uno::Sequence< 

[Libreoffice-commits] core.git: basctl/source basegfx/source basic/source

2016-08-03 Thread Noel Grandin
 basctl/source/basicide/baside2.cxx |2 +-
 basctl/source/basicide/baside2.hxx |4 ++--
 basctl/source/basicide/baside2b.cxx|2 +-
 basctl/source/basicide/basides1.cxx|2 +-
 basctl/source/basicide/basobj3.cxx |2 +-
 basctl/source/basicide/macrodlg.cxx|2 +-
 basctl/source/basicide/moduldlg.hxx|2 +-
 basctl/source/dlged/dlgedobj.cxx   |2 +-
 basctl/source/inc/basidesh.hxx |6 +++---
 basctl/source/inc/bastypes.hxx |   12 ++--
 basctl/source/inc/dlgedobj.hxx |2 +-
 basegfx/source/inc/stringconversiontools.hxx   |6 +++---
 basegfx/source/tools/stringconversiontools.cxx |2 +-
 basic/source/classes/sbunoobj.cxx  |8 
 basic/source/comp/dim.cxx  |4 ++--
 basic/source/comp/parser.cxx   |2 +-
 basic/source/inc/parser.hxx|2 +-
 basic/source/inc/runtime.hxx   |4 ++--
 basic/source/inc/symtbl.hxx|4 ++--
 basic/source/runtime/runtime.cxx   |4 ++--
 basic/source/sbx/sbxscan.cxx   |2 +-
 21 files changed, 38 insertions(+), 38 deletions(-)

New commits:
commit e5e7475febbca460c30eaf4959d3282688383ef2
Author: Noel Grandin 
Date:   Tue Aug 2 14:56:27 2016 +0200

loplugin:countusersofdefaultparams in basctl..basic

Change-Id: I16fac3317ebf55581cb9aaef676a9759de51d695
Reviewed-on: https://gerrit.libreoffice.org/27793
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/basctl/source/basicide/baside2.cxx 
b/basctl/source/basicide/baside2.cxx
index 1a4ad3e..c994910 100644
--- a/basctl/source/basicide/baside2.cxx
+++ b/basctl/source/basicide/baside2.cxx
@@ -778,7 +778,7 @@ void ModulWindow::UpdateData()
 
 sal_Int32 ModulWindow::countPages( Printer* pPrinter )
 {
-return FormatAndPrint( pPrinter );
+return FormatAndPrint( pPrinter, -1 );
 }
 
 void ModulWindow::printPage( sal_Int32 nPage, Printer* pPrinter )
diff --git a/basctl/source/basicide/baside2.hxx 
b/basctl/source/basicide/baside2.hxx
index 23d8477..8a04886 100644
--- a/basctl/source/basicide/baside2.hxx
+++ b/basctl/source/basicide/baside2.hxx
@@ -246,7 +246,7 @@ public:
 
 voidAddWatch( const OUString& rVName );
 voidRemoveSelectedWatch();
-voidUpdateWatches( bool bBasicStopped = false );
+voidUpdateWatches( bool bBasicStopped );
 };
 
 
@@ -313,7 +313,7 @@ private:
 
 static void GoOnTop();
 
-sal_Int32   FormatAndPrint( Printer* pPrinter, sal_Int32 nPage = 
-1 );
+sal_Int32   FormatAndPrint( Printer* pPrinter, sal_Int32 nPage );
 SbModuleRef const & XModule();
 protected:
 virtual voidResize() override;
diff --git a/basctl/source/basicide/baside2b.cxx 
b/basctl/source/basicide/baside2b.cxx
index 8c86398..d16fb35 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -1744,7 +1744,7 @@ void WatchWindow::AddWatch( const OUString& rVName )
 aTreeListBox->MakeVisible(pNewEntry);
 aRemoveWatchButton->Enable();
 
-UpdateWatches();
+UpdateWatches(false);
 }
 
 void WatchWindow::RemoveSelectedWatch()
diff --git a/basctl/source/basicide/basides1.cxx 
b/basctl/source/basicide/basides1.cxx
index 6819a7c..4546873 100644
--- a/basctl/source/basicide/basides1.cxx
+++ b/basctl/source/basicide/basides1.cxx
@@ -1081,7 +1081,7 @@ void Shell::ManageToolbars()
 
 VclPtr Shell::FindApplicationWindow()
 {
-return FindWindow( ScriptDocument::getApplicationScriptDocument() );
+return FindWindow( ScriptDocument::getApplicationScriptDocument(), "", "", 
TYPE_UNKNOWN );
 }
 
 VclPtr Shell::FindWindow(
diff --git a/basctl/source/basicide/basobj3.cxx 
b/basctl/source/basicide/basobj3.cxx
index 70b85e4..360b72f 100644
--- a/basctl/source/basicide/basobj3.cxx
+++ b/basctl/source/basicide/basobj3.cxx
@@ -254,7 +254,7 @@ void MarkDocumentModified( const ScriptDocument& rDocument )
 {
 if (Shell* pShell = GetShell())
 {
-pShell->SetAppBasicModified();
+pShell->SetAppBasicModified(true);
 pShell->UpdateObjectCatalog();
 }
 }
diff --git a/basctl/source/basicide/macrodlg.cxx 
b/basctl/source/basicide/macrodlg.cxx
index c10aab9..aed300e 100644
--- a/basctl/source/basicide/macrodlg.cxx
+++ b/basctl/source/basicide/macrodlg.cxx
@@ -366,7 +366,7 @@ SbMethod* MacroChooser::CreateMacro()
 if ( !pModule )
 {
 pModule = createModImpl( static_cast( this ),
-aDocument, *m_pBasicBox, aLibName, aModName );
+aDocument, *m_pBasicBox, aLibName, aModName, false );
 }
 
 OUString aSubName = m_pMacroNameEdit->GetText();
diff --git 

[Libreoffice-bugs] [Bug 89329] convert pImpl pointers to use std::unique_ptr

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89329

--- Comment #115 from Commit Notification 
 ---
Arnold Dumas committed a patch related to this issue.
It has been pushed to "master":

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

tdf#89329: use unique_ptr for mpImpl in macroass

It will be available in 5.3.0.

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

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

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


[Libreoffice-bugs] [Bug 88205] Adapt uses of css::uno::Sequence to use initializer_list ctor

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88205

--- Comment #16 from Commit Notification 
 ---
Muhammet Kara committed a patch related to this issue.
It has been pushed to "master":

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

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

It will be available in 5.3.0.

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

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

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


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

2016-08-03 Thread Arnold Dumas
 cui/source/inc/macroass.hxx  |3 ++-
 cui/source/tabpages/macroass.cxx |4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 6d9cf658eda57c29c2848a7b6eaf5a8285e14972
Author: Arnold Dumas 
Date:   Tue Aug 2 23:20:47 2016 +0200

tdf#89329: use unique_ptr for mpImpl in macroass

Change-Id: I6d3263cf35db3bef6963b2443cb8538343ca9a3a
Reviewed-on: https://gerrit.libreoffice.org/27812
Reviewed-by: Noel Grandin 
Tested-by: Noel Grandin 

diff --git a/cui/source/inc/macroass.hxx b/cui/source/inc/macroass.hxx
index 1ec314f..66986e4 100644
--- a/cui/source/inc/macroass.hxx
+++ b/cui/source/inc/macroass.hxx
@@ -26,6 +26,7 @@
 #include 
 #include 
 #include 
+#include 
 
 class SfxMacroTabPage_;
 class SvTabListBox;
@@ -45,7 +46,7 @@ class SfxMacroTabPage : public SfxTabPage
 DECL_DLLPRIVATE_LINK_TYPED( TimeOut_Impl, Idle*, void );
 
 protected:
-SfxMacroTabPage_Impl*   mpImpl;
+std::unique_ptr   mpImpl;
 
 voidInitAndSetHandler();
 voidFillEvents();
diff --git a/cui/source/tabpages/macroass.cxx b/cui/source/tabpages/macroass.cxx
index e607a48..973b6b1 100644
--- a/cui/source/tabpages/macroass.cxx
+++ b/cui/source/tabpages/macroass.cxx
@@ -139,7 +139,7 @@ void SfxMacroTabPage::EnableButtons()
 SfxMacroTabPage::SfxMacroTabPage(vcl::Window* pParent, const Reference< XFrame 
>& rxDocumentFrame, const SfxItemSet& rAttrSet )
 : SfxTabPage(pParent, "EventAssignPage", "cui/ui/eventassignpage.ui", 
)
 {
-mpImpl = new SfxMacroTabPage_Impl;
+mpImpl.reset(new SfxMacroTabPage_Impl);
 mpImpl->sStrEvent = get("eventft")->GetText();
 mpImpl->sAssignedMacro = get("assignft")->GetText();
 get(mpImpl->pEventLB , "assignments");
@@ -166,7 +166,7 @@ SfxMacroTabPage::~SfxMacroTabPage()
 
 void SfxMacroTabPage::dispose()
 {
-DELETEZ( mpImpl );
+mpImpl.reset();
 SfxTabPage::dispose();
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: basctl/source basegfx/source canvas/source

2016-08-03 Thread Muhammet Kara
 basctl/source/accessibility/accessibledialogcontrolshape.cxx |3 +--
 basctl/source/accessibility/accessibledialogwindow.cxx   |3 +--
 basctl/source/basicide/unomodel.cxx  |3 +--
 basegfx/source/tools/unopolypolygon.cxx  |4 +---
 canvas/source/cairo/cairo_canvasbitmap.cxx   |4 +---
 canvas/source/cairo/cairo_canvascustomsprite.cxx |4 +---
 canvas/source/cairo/cairo_canvasfont.cxx |4 +---
 canvas/source/cairo/cairo_textlayout.cxx |4 +---
 canvas/source/directx/dx_canvasbitmap.cxx|4 +---
 canvas/source/directx/dx_canvascustomsprite.cxx  |4 +---
 canvas/source/directx/dx_canvasfont.cxx  |4 +---
 canvas/source/directx/dx_textlayout.cxx  |4 +---
 canvas/source/factory/cf_service.cxx |3 +--
 canvas/source/tools/cachedprimitivebase.cxx  |4 +---
 canvas/source/tools/parametricpolypolygon.cxx|4 +---
 canvas/source/vcl/canvasbitmap.cxx   |4 +---
 canvas/source/vcl/canvascustomsprite.cxx |4 +---
 canvas/source/vcl/canvasfont.cxx |4 +---
 canvas/source/vcl/textlayout.cxx |4 +---
 19 files changed, 19 insertions(+), 53 deletions(-)

New commits:
commit 0bd4154b176af84e036c4f0869e635e9fcefed1c
Author: Muhammet Kara 
Date:   Mon Aug 1 15:00:00 2016 +0300

tdf#88205 Adapt uses of css::uno::Sequence to use initializer_list ctor

in basctl, basegfx, canvas

Change-Id: I59383d2599793b99b56087e163a3d80eecec
Reviewed-on: https://gerrit.libreoffice.org/27778
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 

diff --git a/basctl/source/accessibility/accessibledialogcontrolshape.cxx 
b/basctl/source/accessibility/accessibledialogcontrolshape.cxx
index a0b4d47..b4f8ac0 100644
--- a/basctl/source/accessibility/accessibledialogcontrolshape.cxx
+++ b/basctl/source/accessibility/accessibledialogcontrolshape.cxx
@@ -301,8 +301,7 @@ sal_Bool AccessibleDialogControlShape::supportsService( 
const OUString& rService
 
 Sequence< OUString > AccessibleDialogControlShape::getSupportedServiceNames() 
throw (RuntimeException, std::exception)
 {
-Sequence aNames { "com.sun.star.drawing.AccessibleShape" };
-return aNames;
+return { "com.sun.star.drawing.AccessibleShape" };
 }
 
 // XAccessible
diff --git a/basctl/source/accessibility/accessibledialogwindow.cxx 
b/basctl/source/accessibility/accessibledialogwindow.cxx
index dc56db4..18e07bc 100644
--- a/basctl/source/accessibility/accessibledialogwindow.cxx
+++ b/basctl/source/accessibility/accessibledialogwindow.cxx
@@ -585,8 +585,7 @@ sal_Bool AccessibleDialogWindow::supportsService( const 
OUString& rServiceName )
 
 Sequence< OUString > AccessibleDialogWindow::getSupportedServiceNames() throw 
(RuntimeException, std::exception)
 {
-Sequence aNames { "com.sun.star.awt.AccessibleWindow" };
-return aNames;
+return { "com.sun.star.awt.AccessibleWindow" };
 }
 
 // XAccessible
diff --git a/basctl/source/basicide/unomodel.cxx 
b/basctl/source/basicide/unomodel.cxx
index fe1942b..5cceb2a 100644
--- a/basctl/source/basicide/unomodel.cxx
+++ b/basctl/source/basicide/unomodel.cxx
@@ -99,8 +99,7 @@ uno::Sequence< OUString > 
SIDEModel::getSupportedServiceNames() throw( uno::Runt
 
 uno::Sequence< OUString > SIDEModel::getSupportedServiceNames_Static()
 {
-uno::Sequence< OUString > aRet { "com.sun.star.script.BasicIDE" };
-return aRet;
+return { "com.sun.star.script.BasicIDE" };
 }
 
 uno::Reference< uno::XInterface > SAL_CALL SIDEModel_createInstance(
diff --git a/basegfx/source/tools/unopolypolygon.cxx 
b/basegfx/source/tools/unopolypolygon.cxx
index 2e12a9e..12e00a7 100644
--- a/basegfx/source/tools/unopolypolygon.cxx
+++ b/basegfx/source/tools/unopolypolygon.cxx
@@ -448,9 +448,7 @@ namespace unotools
 
 uno::Sequence< OUString > SAL_CALL 
UnoPolyPolygon::getSupportedServiceNames()  throw( uno::RuntimeException, 
std::exception )
 {
-uno::Sequence aRet { SERVICE_NAME };
-
-return aRet;
+return { SERVICE_NAME };
 }
 
 B2DPolyPolygon UnoPolyPolygon::getPolyPolygon() const
diff --git a/canvas/source/cairo/cairo_canvasbitmap.cxx 
b/canvas/source/cairo/cairo_canvasbitmap.cxx
index 86020ac..09e1d21 100644
--- a/canvas/source/cairo/cairo_canvasbitmap.cxx
+++ b/canvas/source/cairo/cairo_canvasbitmap.cxx
@@ -220,9 +220,7 @@ namespace cairocanvas
 
 uno::Sequence< OUString > SAL_CALL CanvasBitmap::getSupportedServiceNames( 
 ) throw (uno::RuntimeException, std::exception)
 {
-uno::Sequence< OUString > aRet { "com.sun.star.rendering.CanvasBitmap" 
};
-
-return aRet;
+return { 

[Libreoffice-bugs] [Bug 101185] Improve readability of OString concatanations

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101185

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

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

tdf#101185 OString concatanations for efficiently coding

It will be available in 5.3.0.

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

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

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


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

2016-08-03 Thread nadith
 dbaccess/source/core/recovery/settingsimport.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 51cf057f4e5277ef5ce99c76dd67aeff702a448e
Author: nadith 
Date:   Thu Aug 4 00:11:18 2016 +0530

tdf#101185 OString concatanations for efficiently coding

Change-Id: I1d3dd633b7de2dcd64f6cde892da3a5f02fcf80d
Reviewed-on: https://gerrit.libreoffice.org/27844
Reviewed-by: jan iversen 
Tested-by: jan iversen 

diff --git a/dbaccess/source/core/recovery/settingsimport.cxx 
b/dbaccess/source/core/recovery/settingsimport.cxx
index 4063bf2..10675ac 100644
--- a/dbaccess/source/core/recovery/settingsimport.cxx
+++ b/dbaccess/source/core/recovery/settingsimport.cxx
@@ -102,9 +102,9 @@ namespace dbaccess
 return new ConfigItemSetImport( m_rSettings );
 
 #if OSL_DEBUG_LEVEL > 0
-OString sMessage( "unknown (or unsupported at this place) element name 
'" );
-sMessage += OUStringToOString( i_rElementName, RTL_TEXTENCODING_UTF8 );
-sMessage += "', ignoring";
+OString sMessage = "unknown (or unsupported at this place) element 
name '"
+ + OUStringToOString( i_rElementName, 
RTL_TEXTENCODING_UTF8 )
+ + "', ignoring";
 OSL_FAIL( sMessage.getStr() );
 #endif
 return new IgnoringSettingsImport;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101264] Can't switch windows with CMD + F1 key on OS X

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101264

--- Comment #3 from yuki  ---
Thank Alex for replying.

OK. I seem to misunderstand about shortcut key to switch windows.
This is specific problem on Japanese keyboard environment.
On Japanese keyboard, we used to use "CMD + F1" instead of "CMD + `" to do it
by default.
Because we don't have independent " ` " key on our keyboard. 
So we must use "Shift + @" key to input " ` ". Then, we can't switch windows
with "CMD + `".

I try to find the way to customize of switching windows on LibreOffice.
Many thanks.

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


[Libreoffice-commits] core.git: icon-themes/sifr

2016-08-03 Thread Matthias Freund
 icon-themes/sifr/cmd/32/connector.png  |binary
 icon-themes/sifr/cmd/32/selectobject.png   |binary
 icon-themes/sifr/cmd/lc_absoluterecord.png |binary
 icon-themes/sifr/cmd/lc_addwatch.png   |binary
 icon-themes/sifr/cmd/lc_basicstepinto.png  |binary
 icon-themes/sifr/cmd/lc_basicstepout.png   |binary
 icon-themes/sifr/cmd/lc_basicstepover.png  |binary
 icon-themes/sifr/cmd/lc_basicstop.png  |binary
 icon-themes/sifr/cmd/lc_choosemacro.png|binary
 icon-themes/sifr/cmd/lc_matchgroup.png |binary
 icon-themes/sifr/cmd/lc_showtrackedchanges.png |binary
 icon-themes/sifr/cmd/sc_addwatch.png   |binary
 icon-themes/sifr/cmd/sc_showtrackedchanges.png |binary
 13 files changed

New commits:
commit def97cb031572b225ad829bb4cf812b1c8e2644c
Author: Matthias Freund 
Date:   Wed Aug 3 21:19:14 2016 +0200

tdf#75256 Sifr icon update

Change-Id: I6d08448056f42b80c9ba04a3b5d99a5679952c5e
Reviewed-on: https://gerrit.libreoffice.org/27845
Reviewed-by: jan iversen 
Tested-by: jan iversen 

diff --git a/icon-themes/sifr/cmd/32/connector.png 
b/icon-themes/sifr/cmd/32/connector.png
new file mode 100644
index 000..1f99c9e
Binary files /dev/null and b/icon-themes/sifr/cmd/32/connector.png differ
diff --git a/icon-themes/sifr/cmd/32/selectobject.png 
b/icon-themes/sifr/cmd/32/selectobject.png
index de10f5c..a7cf65a 100644
Binary files a/icon-themes/sifr/cmd/32/selectobject.png and 
b/icon-themes/sifr/cmd/32/selectobject.png differ
diff --git a/icon-themes/sifr/cmd/lc_absoluterecord.png 
b/icon-themes/sifr/cmd/lc_absoluterecord.png
new file mode 100644
index 000..41bfb8a
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_absoluterecord.png differ
diff --git a/icon-themes/sifr/cmd/lc_addwatch.png 
b/icon-themes/sifr/cmd/lc_addwatch.png
new file mode 100644
index 000..b3fa196
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_addwatch.png differ
diff --git a/icon-themes/sifr/cmd/lc_basicstepinto.png 
b/icon-themes/sifr/cmd/lc_basicstepinto.png
new file mode 100644
index 000..e27e2a4
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_basicstepinto.png differ
diff --git a/icon-themes/sifr/cmd/lc_basicstepout.png 
b/icon-themes/sifr/cmd/lc_basicstepout.png
new file mode 100644
index 000..ef0d8e1
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_basicstepout.png differ
diff --git a/icon-themes/sifr/cmd/lc_basicstepover.png 
b/icon-themes/sifr/cmd/lc_basicstepover.png
new file mode 100644
index 000..41f5d13
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_basicstepover.png differ
diff --git a/icon-themes/sifr/cmd/lc_basicstop.png 
b/icon-themes/sifr/cmd/lc_basicstop.png
new file mode 100644
index 000..4798dff
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_basicstop.png differ
diff --git a/icon-themes/sifr/cmd/lc_choosemacro.png 
b/icon-themes/sifr/cmd/lc_choosemacro.png
new file mode 100644
index 000..ae06762
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_choosemacro.png differ
diff --git a/icon-themes/sifr/cmd/lc_matchgroup.png 
b/icon-themes/sifr/cmd/lc_matchgroup.png
new file mode 100644
index 000..c7ff153
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_matchgroup.png differ
diff --git a/icon-themes/sifr/cmd/lc_showtrackedchanges.png 
b/icon-themes/sifr/cmd/lc_showtrackedchanges.png
new file mode 100644
index 000..dd61a3b
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_showtrackedchanges.png 
differ
diff --git a/icon-themes/sifr/cmd/sc_addwatch.png 
b/icon-themes/sifr/cmd/sc_addwatch.png
new file mode 100644
index 000..609cc3a
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_addwatch.png differ
diff --git a/icon-themes/sifr/cmd/sc_showtrackedchanges.png 
b/icon-themes/sifr/cmd/sc_showtrackedchanges.png
new file mode 100644
index 000..3afc460
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_showtrackedchanges.png 
differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 50916] Allow more than 1024 columns in calc

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50916

--- Comment #38 from Dennis Francis  ---
Submitted a patch for refactoring ScAttrArray at
https://gerrit.libreoffice.org/27828

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


[Libreoffice-bugs] [Bug 101269] Version 5.2.0.4 - Cannot click/edit text inside a frame

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101269

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression
 Status|UNCONFIRMED |NEW
   Hardware|x86 (IA32)  |All
Version|unspecified |5.2.0.1 rc
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #4 from Aron Budea  ---
Thanks for the sample, it was very helpful!

Reproduced with LibreOffice 5.2.0.1 and master build, not reproduced with
LibreOffice 5.1.5.2 (Windows 7). => regression
Also reproduced with LO 5.2.0.3 / Ubuntu 16.04. => likely all OSes affected

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


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

2016-08-03 Thread Yousuf Philips
 icon-themes/galaxy/cmd/lc_dataranges.png   |binary
 icon-themes/galaxy/cmd/lc_deletepage.png   |binary
 icon-themes/galaxy/cmd/lc_diagramarea.png  |binary
 icon-themes/galaxy/cmd/lc_diagramaxisz.png |binary
 icon-themes/galaxy/cmd/lc_freezepanes.png  |binary
 icon-themes/galaxy/cmd/lc_insertendnote.png|binary
 icon-themes/galaxy/cmd/lc_insertmenutitles.png |binary
 icon-themes/galaxy/cmd/lc_insertpagebreak.png  |binary
 icon-themes/galaxy/cmd/lc_legend.png   |binary
 icon-themes/galaxy/cmd/lc_presentationcurrentslide.png |binary
 icon-themes/galaxy/cmd/lc_resetattributes.png  |binary
 icon-themes/galaxy/cmd/lc_slidemasterpage.png  |binary
 icon-themes/galaxy/cmd/lc_splitwindow.png  |binary
 icon-themes/galaxy/cmd/lc_styleupdatebyexample.png |binary
 icon-themes/galaxy/cmd/lc_togglesheetgrid.png  |binary
 icon-themes/galaxy/links.txt   |2 ++
 16 files changed, 2 insertions(+)

New commits:
commit 9001992ea312af4dcb3711d614a69d4d1df91784
Author: Yousuf Philips 
Date:   Sun Jul 31 09:31:05 2016 +0400

Galaxy: Replace tango icons with galaxy icons

Change-Id: I88c062299d4fbd757ee3b91ece1a75bec0fd3827
Reviewed-on: https://gerrit.libreoffice.org/27740
Tested-by: Jenkins 
Reviewed-by: Tomaž Vajngerl 

diff --git a/icon-themes/galaxy/cmd/lc_dataranges.png 
b/icon-themes/galaxy/cmd/lc_dataranges.png
new file mode 100644
index 000..946429d
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_dataranges.png differ
diff --git a/icon-themes/galaxy/cmd/lc_deletepage.png 
b/icon-themes/galaxy/cmd/lc_deletepage.png
index c13002e..717b854 100644
Binary files a/icon-themes/galaxy/cmd/lc_deletepage.png and 
b/icon-themes/galaxy/cmd/lc_deletepage.png differ
diff --git a/icon-themes/galaxy/cmd/lc_diagramarea.png 
b/icon-themes/galaxy/cmd/lc_diagramarea.png
new file mode 100644
index 000..df4a0e7
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_diagramarea.png differ
diff --git a/icon-themes/galaxy/cmd/lc_diagramaxisz.png 
b/icon-themes/galaxy/cmd/lc_diagramaxisz.png
new file mode 100644
index 000..6df327c
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_diagramaxisz.png differ
diff --git a/icon-themes/galaxy/cmd/lc_freezepanes.png 
b/icon-themes/galaxy/cmd/lc_freezepanes.png
index 6c21d0a..fdad6a9 100644
Binary files a/icon-themes/galaxy/cmd/lc_freezepanes.png and 
b/icon-themes/galaxy/cmd/lc_freezepanes.png differ
diff --git a/icon-themes/galaxy/cmd/lc_insertendnote.png 
b/icon-themes/galaxy/cmd/lc_insertendnote.png
index a971096..8c702fe 100644
Binary files a/icon-themes/galaxy/cmd/lc_insertendnote.png and 
b/icon-themes/galaxy/cmd/lc_insertendnote.png differ
diff --git a/icon-themes/galaxy/cmd/lc_insertmenutitles.png 
b/icon-themes/galaxy/cmd/lc_insertmenutitles.png
new file mode 100644
index 000..c8a2fe9
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_insertmenutitles.png 
differ
diff --git a/icon-themes/galaxy/cmd/lc_insertpagebreak.png 
b/icon-themes/galaxy/cmd/lc_insertpagebreak.png
index faca2ac..2bae45e 100644
Binary files a/icon-themes/galaxy/cmd/lc_insertpagebreak.png and 
b/icon-themes/galaxy/cmd/lc_insertpagebreak.png differ
diff --git a/icon-themes/galaxy/cmd/lc_legend.png 
b/icon-themes/galaxy/cmd/lc_legend.png
new file mode 100644
index 000..3f9af41
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_legend.png differ
diff --git a/icon-themes/galaxy/cmd/lc_presentationcurrentslide.png 
b/icon-themes/galaxy/cmd/lc_presentationcurrentslide.png
index 63e09b7..74bc512 100644
Binary files a/icon-themes/galaxy/cmd/lc_presentationcurrentslide.png and 
b/icon-themes/galaxy/cmd/lc_presentationcurrentslide.png differ
diff --git a/icon-themes/galaxy/cmd/lc_resetattributes.png 
b/icon-themes/galaxy/cmd/lc_resetattributes.png
index 13cf0ad..e490692 100644
Binary files a/icon-themes/galaxy/cmd/lc_resetattributes.png and 
b/icon-themes/galaxy/cmd/lc_resetattributes.png differ
diff --git a/icon-themes/galaxy/cmd/lc_slidemasterpage.png 
b/icon-themes/galaxy/cmd/lc_slidemasterpage.png
index c24e0a7..2b62823 100644
Binary files a/icon-themes/galaxy/cmd/lc_slidemasterpage.png and 
b/icon-themes/galaxy/cmd/lc_slidemasterpage.png differ
diff --git a/icon-themes/galaxy/cmd/lc_splitwindow.png 
b/icon-themes/galaxy/cmd/lc_splitwindow.png
index 6506c1e..e478637 100644
Binary files a/icon-themes/galaxy/cmd/lc_splitwindow.png and 
b/icon-themes/galaxy/cmd/lc_splitwindow.png differ
diff --git a/icon-themes/galaxy/cmd/lc_styleupdatebyexample.png 
b/icon-themes/galaxy/cmd/lc_styleupdatebyexample.png
new file mode 100644
index 000..7ad7989
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_styleupdatebyexample.png 
differ
diff --git a/icon-themes/galaxy/cmd/lc_togglesheetgrid.png 
b/icon-themes/galaxy/cmd/lc_togglesheetgrid.png
index 

[Libreoffice-bugs] [Bug 101285] New: Manage Conditional Formatting dialog doesn' t remember position, column sizes, and range selection

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101285

Bug ID: 101285
   Summary: Manage Conditional Formatting dialog doesn't remember
position, column sizes, and range selection
   Product: LibreOffice
   Version: 5.2.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ddascalescu+freedesk...@gmail.com

Created attachment 126566
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126566=edit
Conditional Formatting Manage dialog with long ranges

1. In a spreadsheet with conditional formats, open Format -> Conditional
Formatting -> Manage
2. Move the dialog (you might want to see some calls behind it in the
spreadsheet)
3. Resize the Range column (some ranges can contain many cells)
4. Click on a range other than the first
5. Click Edit...
6. In the newly opened dialog, click Cancel

Notice that,
1. The position of the Manage dialog was reset so that it's in the middle of
the parent LibreCalc window
2. The column widths have been reset as well, and you can no longer see the
full range.
3. The first range is selected, instead of the one you edited.

This is annoying because as seen in the screenshot, I have a number of
single-cell ranges which I suspect have the same conditions, but it's hard to
go over each of them and verify that (which range I selected is reset when I
close the Edit... dialog, and the first range is selected instead).

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


[Libreoffice-bugs] [Bug 93660] FILEOPEN: Writer cannot open DOCX with large table again

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93660

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu

--- Comment #6 from Aron Budea  ---
Created attachment 126565
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126565=edit
Screenshot from Very Sleepy

Let's see if Very Sleepy profiler is any useful, I ran it with a 120s time
limit on an enable-symbols master build. I'm attaching a screenshot, most of it
is useless, but the following function stands out:

SwIterator::Next
http://opengrok.libreoffice.org/xref/core/sw/inc/calbck.hxx#306
(74s seems to be spent inside it, and 60s on dynamic casts, compared to the
120s limit that is significant)

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


[Libreoffice-bugs] [Bug 101279] Unable to Undo after drag and drop ".odt" file in LibreOffice Writer

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101279

Rosen Silva  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 90800] [Graphite] Some fonts looks composing disorderly in LibreOffice for Windows

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90800

--- Comment #26 from General Kutuzov  ---
(In reply to Buovjaga from comment #25)
> Thanks, let's close.

Thanks. I hope new common SAL layout would performanced better.

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


Rosen Silva license statement

2016-08-03 Thread Rosen Silva
All of my past & future contributions to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.  
  ___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 99265] If done after cropping, compress displays image stretched

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99265

--- Comment #19 from Björn Michaelsen  ---
(In reply to Gérald Maruccia from comment #17)
> Is bibisection really needed as we already when the bug was introduced

Yes. While "between 5.1.1.3 and 5.1.2.2" is a start, bibisection is more
granular and thus helps.

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


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

2016-08-03 Thread Markus Mohrhard
 sc/source/core/data/table1.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit d133a1892bbb300737065ee4d2ee067e2e4ed950
Author: Markus Mohrhard 
Date:   Sun Jul 31 16:25:14 2016 +0200

don't call the function inside of the loop

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

diff --git a/sc/source/core/data/table1.cxx b/sc/source/core/data/table1.cxx
index 0d21592..597901d 100644
--- a/sc/source/core/data/table1.cxx
+++ b/sc/source/core/data/table1.cxx
@@ -169,6 +169,7 @@ bool SetOptimalHeightsToRows(
 SCROW nRngStart = 0;
 SCROW nRngEnd = 0;
 sal_uInt16 nLast = 0;
+sal_uInt16 nExtraHeight = rCxt.getExtraHeight();
 for (SCSIZE i=0; iSetValue( nStartRow+i, nRegionEndRow, nRowFlag 
| CR_MANUALSIZE);
@@ -193,7 +194,7 @@ bool SetOptimalHeightsToRows(
 {
 if (nLast)
 {
-if (rCxt.getHeightArray()[nInner] + rCxt.getExtraHeight() 
== nLast)
+if (rCxt.getHeightArray()[nInner] + nExtraHeight == nLast)
 nRngEnd = nStartRow+nInner;
 else
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2016-08-03 Thread Markus Mohrhard
 sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 626a1aa960ed36f5c3370e2aab1e72d41df875cf
Author: Markus Mohrhard 
Date:   Wed Aug 3 20:10:05 2016 +0200

add more nullptr checks, related tdf#100820

See

http://crashreport.libreoffice.org/stats/crash_details/8569250c-b04a-43b0-b4b8-4b3a94daffe1

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

diff --git a/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx 
b/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx
index 0788cb9..fff50a6 100644
--- a/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx
+++ b/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx
@@ -194,7 +194,7 @@ uno::Reference 
MMCurrentEntryController::createItemWindow(const un
 IMPL_LINK_TYPED(MMCurrentEntryController, CurrentEditUpdatedHdl, Edit&, rEdit, 
void)
 {
 SwView* pView = ::GetActiveView();
-SwMailMergeConfigItem* pConfigItem = pView->GetMailMergeConfigItem();
+SwMailMergeConfigItem* pConfigItem = pView ? 
pView->GetMailMergeConfigItem() : nullptr;
 
 if (!pConfigItem)
 return;
@@ -215,7 +215,7 @@ void MMCurrentEntryController::statusChanged(const 
frame::FeatureStateEvent& rEv
 return;
 
 SwView* pView = ::GetActiveView();
-SwMailMergeConfigItem* pConfigItem = pView->GetMailMergeConfigItem();
+SwMailMergeConfigItem* pConfigItem = pView ? 
pView->GetMailMergeConfigItem() : nullptr;
 
 if (!pConfigItem || !rEvent.IsEnabled)
 {
@@ -261,7 +261,7 @@ uno::Reference 
MMExcludeEntryController::createItemWindow(const un
 IMPL_STATIC_LINK_TYPED(MMExcludeEntryController, ExcludeHdl, CheckBox&, 
rCheckbox, void)
 {
 SwView* pView = ::GetActiveView();
-SwMailMergeConfigItem* pConfigItem = pView->GetMailMergeConfigItem();
+SwMailMergeConfigItem* pConfigItem = pView ? 
pView->GetMailMergeConfigItem() : nullptr;
 
 if (pConfigItem)
 pConfigItem->ExcludeRecord(pConfigItem->GetResultSetPosition(), 
rCheckbox.IsChecked());
@@ -273,7 +273,7 @@ void MMExcludeEntryController::statusChanged(const 
frame::FeatureStateEvent& rEv
 return;
 
 SwView* pView = ::GetActiveView();
-SwMailMergeConfigItem* pConfigItem = pView->GetMailMergeConfigItem();
+SwMailMergeConfigItem* pConfigItem = pView ? 
pView->GetMailMergeConfigItem() : nullptr;
 
 if (!pConfigItem || !rEvent.IsEnabled)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: bin/upload_symbols.py

2016-08-03 Thread Markus Mohrhard
 bin/upload_symbols.py |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit 26bd99076a8d28865bbbe0122178a5a9ff2d55d0
Author: Markus Mohrhard 
Date:   Wed Aug 3 23:04:11 2016 +0200

add a way to mark system symbols

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

diff --git a/bin/upload_symbols.py b/bin/upload_symbols.py
index f708797..07f3e3e 100755
--- a/bin/upload_symbols.py
+++ b/bin/upload_symbols.py
@@ -13,10 +13,10 @@ def detect_platform():
 return platform.system()
 
 def main():
-if len(sys.argv) != 4:
+if len(sys.argv) < 4:
 print(sys.argv)
 print("Invalid number of parameters")
-print("Usage: upload-symbols.py symbols.zip config.ini \"long 
explanation\"")
+print("Usage: upload-symbols.py symbols.zip config.ini \"long 
explanation\" [--system]")
 sys.exit(1)
 
 upload_url = "http://crashreport.libreoffice.org/upload/;
@@ -32,6 +32,9 @@ def main():
 files = {'symbols': open(sys.argv[1], 'rb')}
 data = {'version': sys.argv[3], 'platform': platform}
 
+if len(sys.argv) > 4 and sys.argv[4] == "--system":
+data['system'] = True
+
 session = requests.session()
 session.get(login_url)
 csrftoken = session.cookies['csrftoken']
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 101074] Implement Color Schemes as style

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101074

Luke  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 101074] Implement Color Schemes as style

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101074

Luke  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-ux-advise] [Bug 101074] Implement Color Schemes as style

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101074

Luke  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|LibreOffice |ux-advise

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


[Libreoffice-bugs] [Bug 101074] Implement Color Schemes as style

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101074

Luke  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|LibreOffice |ux-advise

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


[Libreoffice-bugs] [Bug 101074] Implement Color Schemes as style

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101074

--- Comment #1 from Luke  ---
Created attachment 126564
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126564=edit
Custom Color Theme

Our poor support for color themes leads to many MSO interoperability issues
such as Bug 67830,  Bug 84205, and issues like this one [1]. There is also a
huge demand to quickly change document color scheme with people trying to use
the color replacement tool in Bug 55592 and all of its dupes. A better solution
to this common problem is to offer a group of color slots that could be used to
quickly change the colors of fonts, shapes, and charts. 



Heiko,
Could you please take a look at this and consider it with your design
improvements?


[1] https://lists.freedesktop.org/archives/libreoffice/2015-May/068280.html

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


[Libreoffice-bugs] [Bug 101269] Version 5.2.0.4 - Cannot click/edit text inside a frame

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101269

PaulJayD  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from PaulJayD  ---
The attached file "Frames for Wallet.docx" was created in LO 5.1.4.2 and is
edittable therein.
When opened in LO 5.2.0.4, clicking in the frame does not set the cursor. I
cannot edit the text within the frame.
I'm on Windows 10 currently.

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


[Libreoffice-bugs] [Bug 101269] Version 5.2.0.4 - Cannot click/edit text inside a frame

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101269

--- Comment #2 from PaulJayD  ---
Created attachment 126563
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126563=edit
docx file  with Frame created in LO 5.1.4.2

The attached file "Frames for Wallet.docx" was created in LO 5.1.4.2 and is
edittable therein.
When opened in LO 5.2.0.4, clicking in the frame does not set the cursor. I
cannot edit the text within the frame.
I'm on Windows 10 currently.

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


[Libreoffice-bugs] [Bug 101284] Resizing windows sometimes doesn' t throttle and kills the CPU at 100% usage on all cores

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101284

--- Comment #1 from Dan Dascalescu  ---
Created attachment 126562
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126562=edit
LibreOffice extremely high CPU usage when resizing its window

Adding the attachment separately because Bugzilla croaked when I added it along
with creating the bug (it should've checked for the size being > 10,000Kb).

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


[Libreoffice-bugs] [Bug 100039] while editing calc crashes, repeatedly.

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100039

--- Comment #12 from Will MacGhee  ---
Created attachment 126561
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126561=edit
another backtrace

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


[Libreoffice-bugs] [Bug 100039] while editing calc crashes, repeatedly.

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100039

--- Comment #11 from Will MacGhee  ---
Created attachment 126560
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126560=edit
backtraces

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


[Libreoffice-bugs] [Bug 101270] Error opening a password encrypted PDF

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101270

Aron Budea  changed:

   What|Removed |Added

   Keywords||filter:pdf
 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@caesar.elte.hu
  Component|LibreOffice |filters and storage
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
Since there's no sample attached, I tried with an example encrypted PDF from
[1] ("PDF Example - Password protection" in particular), got a password entry
dialog, but even with correct password "test" supplied, this was displayed
instead of the document:
"This PDF file is encrypted and can't be opened."

I can confirm there is an issue, but not sure if it's the exact same issue as
reported (there could be different formats, plus there's also bug 70705 that
shows this message with certain unencrypted files).
Version used: LibreOffice 5.2.0.4/Windows 7.

Can you attach a sample encrypted PDF with the password? (obviously with no
sensitive data, the simpler the better)
Return status of bug report to UNCONFIRMED with your reply.

[1] http://www.novapdf.com/kb/pdf-example-files-created-with-novapdf-138.html

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


[Libreoffice-bugs] [Bug 101284] New: Resizing windows sometimes doesn' t throttle and kills the CPU at 100% usage on all cores

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101284

Bug ID: 101284
   Summary: Resizing windows sometimes doesn't throttle and kills
the CPU at 100% usage on all cores
   Product: LibreOffice
   Version: 5.2.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ddascalescu+freedesk...@gmail.com

1. Launch LibreCalc 5.2.0.1
2. Open the attachment from bug 100709
3. While the spreadsheet is opening (which takes a pretty long while), drag
around two or more corners of the window to resize it.

Notice how at some point, the resizing handler keeps firing with every mouse
move.

It could be argued this is a corner case, but it's not. After the resizing has
stabilized,

4. Open another file (I could reproduce the issue with a CSV with less than 20
lines),
5. Resize that window after the file has finished loading (a very legitimate
use case).

You may see the very same CPU-killing behavior as seen at the end of the
screencast.

I've seen the second part (completely normal use case) of the bug many times,
but it appears it takes working with Calc for a number of minutes before the
issue appears. Steps 1-3 simply accelerate the reproduction.

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


[Libreoffice-bugs] [Bug 70705] PDF: Trying to open password-less file gives " PDF file is encrypted" error

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70705

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu

--- Comment #6 from Aron Budea  ---
Still occurring as of LibreOffice 5.2.0.4.

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


[Libreoffice-bugs] [Bug 100154] Pointer to sheet with dotted name in xlsx

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100154

Bartosz  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #4 from Bartosz  ---
Please attach ods file format which could be next exported into .xlsx

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


[Libreoffice-bugs] [Bug 100312] Many errors and links deleted when a file is saved in xlsx and opened with Excel

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100312

Bartosz  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 100737] FILEOPEN FILESAVE

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100737

Bartosz  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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


[Libreoffice-bugs] [Bug 100888] Unable to display Image in header from xlsx file

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100888

--- Comment #2 from Bartosz  ---
Created attachment 126559
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126559=edit
Screenshot from opening example file with LO 5.1

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


[Libreoffice-bugs] [Bug 100822] FILEOPEN: xlsx file: imported DateTime cells are empty ( Excel 2010 compatible)

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100822

Bartosz  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |gan...@poczta.onet.pl
   |desktop.org |

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


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

2016-08-03 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/logest.fods | 3324 +
 1 file changed, 3324 insertions(+)

New commits:
commit f2da3173f8d91898638749039265b7ad3303df2a
Author: Zdeněk Crhonek 
Date:   Tue Aug 2 18:26:15 2016 +0200

add LOGEST testcase

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

diff --git a/sc/qa/unit/data/functions/fods/logest.fods 
b/sc/qa/unit/data/functions/fods/logest.fods
new file mode 100644
index 000..51ac91d
--- /dev/null
+++ b/sc/qa/unit/data/functions/fods/logest.fods
@@ -0,0 +1,3324 @@
+
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
2016-08-02T18:25:37.357529091P0D1LibreOfficeDev/5.3.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/389b08190092f9a9103b3ac098994ec83b2d0bfa
+ 
+  
+   0
+   0
+   69019
+   21702
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   80
+   60
+   true
+   false
+  
+  
+   9
+   41
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   80
+   60
+   true
+   false
+  
+ 
+ Sheet1
+ 1241
+ 0
+ 80
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ false
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+ false
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1270
+   1270
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Lexmark-E352dn
+   
+
+ en
+ US
+ 
+ 
+ 
+
+
+ fr
+ FR
+ 
+ 
+ 
+
+
+ ru
+ RU
+ 
+ 
+ 
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   qQH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAzwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkE0AElucHV0U2xvdDpUcmF5MQBEdXBsZXg6Tm9uZQAAEgBDT01QQVRfRFVQTEVYX01PREUKAERVUExFWF9PRkY=
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   
+
+   Kč
+   
+  
+  
+$
+   
+
+  
+  
+$(
+   
+   )
+  
+  
+$-
+   
+
+  
+  
+   
+
+   
+   
+   
+  
+  
+   
+  
+  
+   £
+   
+  
+  
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  

[Libreoffice-bugs] [Bug 100888] Unable to display Image in header from xlsx file

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100888

Bartosz  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

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


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

2016-08-03 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/avedev.fods | 3706 +
 1 file changed, 3706 insertions(+)

New commits:
commit b502a082d7780a97d3745b20c3f9b76304382568
Author: Zdeněk Crhonek 
Date:   Wed Aug 3 19:48:55 2016 +0200

add AVEDEV test case

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

diff --git a/sc/qa/unit/data/functions/fods/avedev.fods 
b/sc/qa/unit/data/functions/fods/avedev.fods
new file mode 100644
index 000..c847cc9
--- /dev/null
+++ b/sc/qa/unit/data/functions/fods/avedev.fods
@@ -0,0 +1,3706 @@
+
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
2016-07-24T08:15:55.36200P0D1LibreOfficeDev/5.3.0.0.alpha0$Windows_x86
 
LibreOffice_project/3e758bbdf21b865ecc76f5bb33d00fa2793b5320
+ 
+  
+   0
+   0
+   40534
+   8445
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   75
+   60
+   true
+   false
+  
+  
+   3
+   7
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   75
+   60
+   true
+   false
+  
+ 
+ Sheet2
+ 1216
+ 0
+ 75
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ false
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+ false
+
+   
+  
+  
+   true
+   true
+   true
+   true
+   12632256
+   true
+   false
+   true
+   3
+   true
+   false
+   false
+   1270
+   1270
+   1
+   1
+   true
+   true
+   false
+   PDF-XChange 4.0
+   +AX+/1BERi1YQ2hhbmdlIDQuMAAAUERGLVhDaGFuZ2UgNC4wAAAWAAEAGgUEAAhSAAAEdAAAM1ROVwYAUABEAEYALQBYAEMAaABhAG4AZwBlACAANAAuADEEAATcADgEEwwBAAEACQCaCzQIZAABLAECAAEALAEAQQA0GDQIAACaCwAAAERDWFAEAQA0CAAAmgssAQAAZAEAAABDAHUAcgByAGUAbgB0
 

[Libreoffice-bugs] [Bug 101042] XLSX file with a frozen column causes Excel on OSX to degrade

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101042

Bartosz  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |gan...@poczta.onet.pl
   |desktop.org |

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


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

2016-08-03 Thread Zdeněk Crhonek
 sc/qa/unit/data/functions/fods/minverse.fods | 3236 +++
 1 file changed, 3236 insertions(+)

New commits:
commit 46bb9041b62837466ee1173c468f86f1bf510803
Author: Zdeněk Crhonek 
Date:   Wed Aug 3 22:16:09 2016 +0200

add MINVERSE test case

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

diff --git a/sc/qa/unit/data/functions/fods/minverse.fods 
b/sc/qa/unit/data/functions/fods/minverse.fods
new file mode 100644
index 000..ec57880
--- /dev/null
+++ b/sc/qa/unit/data/functions/fods/minverse.fods
@@ -0,0 +1,3236 @@
+
+
+http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" 
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" 
xmlns:math="http://www.w3.org/1998/Math/MathML; 
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:scr
 ipt="urn:oasis:names:tc:opendocument:xmlns:script:1.0" 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:ooow="http://openoffice.org/2004/writer; 
xmlns:oooc="http://openoffice.org/2004/calc; 
xmlns:dom="http://www.w3.org/2001/xml-events; 
xmlns:xforms="http://www.w3.org/2002/xforms; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xmlns:rpt="http://openoffice.org/2005/report; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xhtml="http://www.w3.org/1999/xhtml; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#; 
xmlns:tableooo="http://openoffice.org/2009/table; 
xmlns:drawooo="http://openoffice.org/2010/draw; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
 xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" 
xmlns:form
 x="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" 
xmlns:css3t="http://www.w3.org/TR/css3-text/; office:version="1.2" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
2016-08-02T18:25:37.357529091P0D1LibreOfficeDev/5.3.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/389b08190092f9a9103b3ac098994ec83b2d0bfa
+ 
+  
+   0
+   0
+   69019
+   15019
+   
+
+ view1
+ 
+  
+   2
+   8
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   80
+   60
+   true
+   false
+  
+  
+   9
+   28
+   0
+   0
+   0
+   0
+   2
+   0
+   0
+   0
+   0
+   0
+   80
+   60
+   true
+   false
+  
+ 
+ Sheet2
+ 1241
+ 0
+ 80
+ 60
+ false
+ true
+ true
+ true
+ 12632256
+ true
+ true
+ true
+ true
+ false
+ false
+ false
+ 1270
+ 1270
+ 1
+ 1
+ true
+ false
+
+   
+  
+  
+   7
+   false
+   false
+   true
+   true
+   false
+   false
+   false
+   1270
+   1270
+   true
+   true
+   true
+   true
+   true
+   false
+   12632256
+   false
+   Lexmark-E352dn
+   
+
+ en
+ US
+ 
+ 
+ 
+
+
+ fr
+ FR
+ 
+ 
+ 
+
+
+ ru
+ RU
+ 
+ 
+ 
+
+   
+   true
+   true
+   3
+   1
+   true
+   1
+   true
+   qQH+/0xleG1hcmstRTM1MmRuQ1VQUzpMZXhtYXJrLUUzNTJkbgAWAAMAzwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TGV4bWFyay1FMzUyZG4Kb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhClBhZ2VTaXplOkE0AElucHV0U2xvdDpUcmF5MQBEdXBsZXg6Tm9uZQAAEgBDT01QQVRfRFVQTEVYX01PREUKAERVUExFWF9PRkY=
+   false
+   0
+  
+ 
+ 
+  
+   http://openoffice.org/2004/office; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
+
+   
+  
+ 
+ 
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+  
+  
+   
+
+   Kč
+  
+  
+   
+   -
+   
+
+   Kč
+   
+  
+  
+$
+   
+
+  
+  
+$(
+   
+   )
+  
+  
+$-
+   
+
+  
+  
+   
+
+   
+   
+   
+  
+  
+   
+  
+  
+   £
+   
+  
+  
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   -
+   £
+   
+   
+  
+  
+   £
+   
+  
+  
+   
+   -
+   £
+   
+   
+  
+  
+   £

[Libreoffice-bugs] [Bug 101059] Save to xlsx from LibreCalc and cannot open from Excel 2007

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101059

--- Comment #4 from Bartosz  ---
After open corrupted file, please save it again with Excel 2007 into .xlsx.

Is it solve that opening issue?
Please attach this file which you have resaved.

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


[Libreoffice-bugs] [Bug 101059] Save to xlsx from LibreCalc and cannot open from Excel 2007

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101059

Bartosz  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |gan...@poczta.onet.pl
   |desktop.org |

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


[Libreoffice-ux-advise] [Bug 68662] PRINTING: Option to print grid in Draw

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68662

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #6 from Regina Henschel  ---
Drawing your own grid needs only a few clicks. Draw a vertical line at the left
edge, then Edit > Duplicate. Draw a horizontal line at the top edge, then Edit
> Duplicate. Don't forget to use a separate layer for your grid, so you can
easily protect and hide them if needed. Having full control about thickness,
color and style is an advantage for me. As far as I know, at least in Germany
technical drawings to not need a grid but measure lines.

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


[Libreoffice-bugs] [Bug 68662] PRINTING: Option to print grid in Draw

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68662

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #6 from Regina Henschel  ---
Drawing your own grid needs only a few clicks. Draw a vertical line at the left
edge, then Edit > Duplicate. Draw a horizontal line at the top edge, then Edit
> Duplicate. Don't forget to use a separate layer for your grid, so you can
easily protect and hide them if needed. Having full control about thickness,
color and style is an advantage for me. As far as I know, at least in Germany
technical drawings to not need a grid but measure lines.

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


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

2016-08-03 Thread Eike Rathke
 sc/source/filter/oox/formulabase.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e1b88ef7dbbdf7e333630e9295bd317772907ad6
Author: Eike Rathke 
Date:   Fri Jul 15 13:43:09 2016 +0200

mapping ERROR.TYPE to ORG.OPENOFFICE.ERRORTYPE was always wrong

Change-Id: I02b941a1a884a984b39632cad36579130cd71d6c
(cherry picked from commit 3d70765218986abba8b6d7c8e3cadd83a62ee035)
Reviewed-on: https://gerrit.libreoffice.org/27853
Reviewed-by: Michael Stahl 
Tested-by: Jenkins 

diff --git a/sc/source/filter/oox/formulabase.cxx 
b/sc/source/filter/oox/formulabase.cxx
index b17a896..b2e9d63 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -487,7 +487,7 @@ static const FunctionData saFuncTableBiff4[] =
 { "RANK",   "RANK", 216,216,2,  3, 
 V, { VR, RO, VR }, 0 },
 { "DB", "DB",   247,247,4,  5, 
 V, { VR }, 0 },
 { "FREQUENCY",  "FREQUENCY",252,252,2,  2, 
 A, { RA }, 0 },
-{ "ORG.OPENOFFICE.ERRORTYPE","ERROR.TYPE",  261,261,1,  1, 
 V, { VR }, 0 },
+{ "ERROR.TYPE", "ERROR.TYPE",   261,261,1,  1, 
 V, { VR }, 0 },
 { "AVEDEV", "AVEDEV",   269,269,1,  
MX, V, { RX }, 0 },
 { "BETADIST",   "BETADIST", 270,270,3,  5, 
 V, { VR }, 0 },
 { "GAMMALN","GAMMALN",  271,271,1,  1, 
 V, { VR }, 0 },
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 101059] Save to xlsx from LibreCalc and cannot open from Excel 2007

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101059

--- Comment #2 from Bartosz  ---
I don't have such problems with MS Excel 2010

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


[Libreoffice-bugs] [Bug 101059] Save to xlsx from LibreCalc and cannot open from Excel 2007

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101059

--- Comment #3 from Bartosz  ---
I don't have such problems with MS Excel 2010

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


[Libreoffice-bugs] [Bug 101234] FILESAVE: XLXS-spreadsheet Column Width shrinking automatically

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101234

Bartosz  changed:

   What|Removed |Added

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

--- Comment #4 from Bartosz  ---


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

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


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

2016-08-03 Thread Markus Mohrhard
 chart2/qa/extras/chart2export.cxx |   10 +-
 chart2/qa/extras/chart2import.cxx |   18 +-
 2 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit a04ccc9417bf1997d03e9863f321c1b1535fba8a
Author: Markus Mohrhard 
Date:   Wed Aug 3 20:07:55 2016 +0200

fix loplugin:cppunitassertequals in chart2

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

diff --git a/chart2/qa/extras/chart2export.cxx 
b/chart2/qa/extras/chart2export.cxx
index e70fa9d..5975c7a 100644
--- a/chart2/qa/extras/chart2export.cxx
+++ b/chart2/qa/extras/chart2export.cxx
@@ -855,10 +855,10 @@ void Chart2ExportTest::testDataLabelBordersDOCX()
 CPPUNIT_ASSERT(xPropSet.is());
 drawing::FillStyle eStyle = 
xPropSet->getPropertyValue("FillStyle").get();
 sal_Int32 nColor = 
xPropSet->getPropertyValue("FillColor").get();
-CPPUNIT_ASSERT_MESSAGE("'Automatic' chart background fill in docx should 
be loaded as solid fill.",
-eStyle == drawing::FillStyle_SOLID);
-CPPUNIT_ASSERT_MESSAGE("'Automatic' chart background fill in docx should 
be loaded as solid white.",
-(nColor & 0x00FF) == 0x00FF); // highest 2 bytes are 
transparency which we ignore here.
+CPPUNIT_ASSERT_EQUAL_MESSAGE("'Automatic' chart background fill in docx 
should be loaded as solid fill.",
+drawing::FillStyle_SOLID, eStyle);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("'Automatic' chart background fill in docx 
should be loaded as solid white.",
+ sal_Int32(0x00FF), sal_Int32(nColor & 0x00FF)); // highest 2 
bytes are transparency which we ignore here.
 
 aTest.checkObject1(xChartDoc);
 xChartDoc.set(getChartDocFromWriter(1), uno::UNO_QUERY);
@@ -982,7 +982,7 @@ void Chart2ExportTest::testDataLabelDefaultLineChartDOCX()
 sal_Int32 nLabelPlacement = -1;
 if (xPropSet->getPropertyValue("LabelPlacement") >>= nLabelPlacement)
 // This option may not be set.  Check its value only when it's set.
-CPPUNIT_ASSERT_MESSAGE("Line chart's default label placement should be 
'right'.", nLabelPlacement == chart::DataLabelPlacement::RIGHT);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Line chart's default label placement 
should be 'right'.", chart::DataLabelPlacement::RIGHT, nLabelPlacement );
 }
 
 void Chart2ExportTest::testBarChartRotation()
diff --git a/chart2/qa/extras/chart2import.cxx 
b/chart2/qa/extras/chart2import.cxx
index a97b2282..7d0f8f2 100644
--- a/chart2/qa/extras/chart2import.cxx
+++ b/chart2/qa/extras/chart2import.cxx
@@ -404,8 +404,8 @@ void Chart2ImportTest::testPPTXHiddenDataSeries()
 Reference xPropSet = xChartDoc->getPageBackground();
 CPPUNIT_ASSERT(xPropSet.is());
 drawing::FillStyle eStyle = 
xPropSet->getPropertyValue("FillStyle").get();
-CPPUNIT_ASSERT_MESSAGE("'Automatic' chart background fill in pptx should 
be loaded as no fill (transparent).",
-eStyle == drawing::FillStyle_NONE);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("'Automatic' chart background fill in pptx 
should be loaded as no fill (transparent).",
+drawing::FillStyle_NONE, eStyle);
 
 Reference xCT = getChartTypeFromDoc(xChartDoc, 0);
 CPPUNIT_ASSERT(xCT.is());
@@ -700,7 +700,7 @@ void Chart2ImportTest::testTransparentBackground(OUString 
const & filename)
 css::drawing::FillStyle aStyle;
 xPropSet -> getPropertyValue("FillStyle") >>= aStyle;
 
-CPPUNIT_ASSERT_MESSAGE("Background needs to be with solid fill style", 
aStyle == 1);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Background needs to be with solid fill 
style", css::drawing::FillStyle_SOLID, aStyle);
 }
 // 2 test methods here so that tearDown() can dispose the document
 void Chart2ImportTest::testFdo54361()
@@ -723,10 +723,10 @@ void Chart2ImportTest::testAutoBackgroundXLSX()
 CPPUNIT_ASSERT(xPropSet.is());
 drawing::FillStyle eStyle = 
xPropSet->getPropertyValue("FillStyle").get();
 sal_Int32 nColor = 
xPropSet->getPropertyValue("FillColor").get();
-CPPUNIT_ASSERT_MESSAGE("'Automatic' chart background fill in xlsx should 
be loaded as solid fill.",
-eStyle == drawing::FillStyle_SOLID);
-CPPUNIT_ASSERT_MESSAGE("'Automatic' chart background fill in xlsx should 
be loaded as solid white.",
-(nColor & 0x00FF) == 0x00FF); // highest 2 bytes are 
transparency which we ignore here.
+CPPUNIT_ASSERT_EQUAL_MESSAGE("'Automatic' chart background fill in xlsx 
should be loaded as solid fill.",
+drawing::FillStyle_SOLID, eStyle);
+CPPUNIT_ASSERT_EQUAL_MESSAGE("'Automatic' chart background fill in xlsx 
should be loaded as solid white.",
+sal_Int32(0x00FF), sal_Int32(nColor & 0x00FF)); // highest 2 
bytes are transparency which we ignore here.
 }
 
 void Chart2ImportTest::testChartAreaStyleBackgroundXLSX()
@@ -740,8 

[Libreoffice-bugs] [Bug 98521] Font in tablecontrol isn't shown in right format

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98521

--- Comment #5 from frofa  ---
This bug is still evident in LO 5.2.0.4 (under MacOS 10.11.6). If only someone
would look at this recently introduced bug. The small default font-size is hard
to read. Is there a work-around?

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


[Libreoffice-bugs] [Bug 101283] New: Text find does not work

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101283

Bug ID: 101283
   Summary: Text find does not work
   Product: LibreOffice
   Version: 5.1.1.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mjwal...@comcast.net

Text Find does not work.  After entering the search text, nothing is found.

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


[Libreoffice-ux-advise] [Bug 68662] PRINTING: Option to print grid in Draw

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68662

--- Comment #5 from Al  ---
I have been waiting for this feature for years, and at this point it is the
*only* thing that forces me to abandon Draw and use other drawing tools.  Draw
is actually quite adept at quick technical drawings, which I do frequently (and
I believe many others do as well).  Unfortunately, the scale that is used in
any given technical document needs to be explicit *and* visible as represented
by a reference grid.  At the moment that is difficult to do in Draw, the only
way is to draw a grid of lines exactly over the grid.  However, as soon as you
do that these lines are constantly in your way as you attempt to manipulate the
drawing, being selected when you don't want them to be selected, etc.  Plus, if
one decides to change the scaling in a drawing that grid of lines needs to be
deleted and a different grid again drawn in its place.

Please consider this a near-term feature request.  I would propose a very
simple implementation consisting of a checkbox to turn it on/off, a color
selector to set the color of the gridlines, and a transparency setting to
determine their transparency.

Thanks!

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


[Libreoffice-bugs] [Bug 68662] PRINTING: Option to print grid in Draw

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68662

--- Comment #5 from Al  ---
I have been waiting for this feature for years, and at this point it is the
*only* thing that forces me to abandon Draw and use other drawing tools.  Draw
is actually quite adept at quick technical drawings, which I do frequently (and
I believe many others do as well).  Unfortunately, the scale that is used in
any given technical document needs to be explicit *and* visible as represented
by a reference grid.  At the moment that is difficult to do in Draw, the only
way is to draw a grid of lines exactly over the grid.  However, as soon as you
do that these lines are constantly in your way as you attempt to manipulate the
drawing, being selected when you don't want them to be selected, etc.  Plus, if
one decides to change the scaling in a drawing that grid of lines needs to be
deleted and a different grid again drawn in its place.

Please consider this a near-term feature request.  I would propose a very
simple implementation consisting of a checkbox to turn it on/off, a color
selector to set the color of the gridlines, and a transparency setting to
determine their transparency.

Thanks!

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


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

2016-08-03 Thread Takeshi Abe
 starmath/inc/node.hxx|5 +++--
 starmath/source/node.cxx |2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 8da4ba9be2d2deb8990f40fa0cc5d6b16d525c72
Author: Takeshi Abe 
Date:   Wed Aug 3 17:54:11 2016 +0900

starmath: SmDynIntegralNode always has a couple of subnodes

And the 0th subnode is SmDynIntegralSymbolNode.

Change-Id: Icb15125abf1846204d0f9130ad1ec964c5172589
Reviewed-on: https://gerrit.libreoffice.org/27820
Tested-by: Jenkins 
Reviewed-by: Takeshi Abe 

diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index 7966133..c22e9a7 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -1274,7 +1274,8 @@ inline const SmNode* SmRootNode::Body() const
 
 inline SmDynIntegralSymbolNode* SmDynIntegralNode::Symbol()
 {
-OSL_ASSERT( GetNumSubNodes() > 0 && GetSubNode( 0 )->GetType() == 
NDYNINTSYMBOL );
+assert( GetNumSubNodes() == 2 );
+assert( GetSubNode( 0 )->GetType() == NDYNINTSYMBOL );
 return static_cast< SmDynIntegralSymbolNode* >( GetSubNode( 0 ));
 }
 inline const SmDynIntegralSymbolNode* SmDynIntegralNode::Symbol() const
@@ -1283,7 +1284,7 @@ inline const SmDynIntegralSymbolNode* 
SmDynIntegralNode::Symbol() const
 }
 inline SmNode* SmDynIntegralNode::Body()
 {
-OSL_ASSERT( GetNumSubNodes() > 1 );
+assert( GetNumSubNodes() == 2 );
 return GetSubNode( 1 );
 }
 inline const SmNode* SmDynIntegralNode::Body() const
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index e6a4726..c1d53f1 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -807,7 +807,7 @@ void SmDynIntegralNode::CreateTextFromNode(OUString )
 {
 
 rText += "intd ";
-SmNode *pBody = GetSubNode(1);
+SmNode *pBody = Body();
 
 if (pBody->GetNumSubNodes() > 1)
 rText += "{ ";
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 83672] FILEOPEN: .xlsx Rotated Images No longer Rotated

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83672

Bartosz  changed:

   What|Removed |Added

 CC||delph...@i.ua

--- Comment #16 from Bartosz  ---
*** Bug 67776 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 98360] [META] CMIS bugs and enhancements

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98360
Bug 98360 depends on bug 87938, which changed state.

Bug 87938 Summary: Google Drive via CMIS: two-factor authentication (2FA) is 
not possible
https://bugs.documentfoundation.org/show_bug.cgi?id=87938

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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


[Libreoffice-bugs] [Bug 67776] FILEOPEN: Some SmartArt shapes have wrong direction (.xlsx)

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67776

Bartosz  changed:

   What|Removed |Added

 CC||gan...@poczta.onet.pl
   Assignee|libreoffice-b...@lists.free |gan...@poczta.onet.pl
   |desktop.org |

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


[Libreoffice-bugs] [Bug 67776] FILEOPEN: Some SmartArt shapes have wrong direction (.xlsx)

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67776

--- Comment #6 from Bartosz  ---
Still the issue with LO 5.1 on ubuntu 16.04

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


[Libreoffice-bugs] [Bug 63114] XLSX import: Diagram invisible

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63114

Bartosz  changed:

   What|Removed |Added

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

--- Comment #12 from Bartosz  ---
Closed as the original problem was resolved.

If you noticed any other issue, please create new bug report.

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


[Libreoffice-bugs] [Bug 99265] If done after cropping, compress displays image stretched

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99265

--- Comment #18 from Gérald Maruccia  ---
Crop-then-compress bug is still present in
Version: 5.2.0.4
Build ID: 1:5.2.0~rc4-0ubuntu1~trusty1

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


[Libreoffice-bugs] [Bug 101213] New Upgrade very slow in calc

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101213

Björn Michaelsen  changed:

   What|Removed |Added

   Keywords||regression

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


[Libreoffice-bugs] [Bug 101213] New Upgrade very slow in calc

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101213

Björn Michaelsen  changed:

   What|Removed |Added

Version|5.1.5.1 rc  |5.0.5.2 release

--- Comment #7 from Björn Michaelsen  ---
(reports so far are about 5.1.5.2 which is in the ppa)

Does this happen with LibreOffice as provided from libreoffice.org too?

Also please be specific: "multiple Linux distros" doesnt help -- listing them
(and the architecture, e.g. amd64, i386) does.

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


Julian Mehne license statement

2016-08-03 Thread Julian Mehne
All of my past & future contributions to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 101213] New Upgrade very slow in calc

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101213

Björn Michaelsen  changed:

   What|Removed |Added

   Keywords||perf

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


[Libreoffice-bugs] [Bug 61148] FORMATTING: Different thickness of lines for LibreOffice Calc and Microsoft Excel

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61148

Bartosz  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |gan...@poczta.onet.pl
   |desktop.org |

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


[Libreoffice-bugs] [Bug 99265] If done after cropping, compress displays image stretched

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99265

--- Comment #17 from Gérald Maruccia  ---
Is bibisection really needed as we already when the bug was introduced :

« Hello all,

I confirm this bug. I'm using Libreoffice x86_64 for Windows.
I confirm it affects both Draw and Writer. I tested earlier versions, and this
bug seems to have been introduced in version 5.1.2, as version 5.1.1.3 isn't
affected.

How to reproduce (using version 5.1.2.2):
 - In writer or draw, insert an image in the document
 - crop the image
 - compress the image (I tested compressing to 300 dpi, everithing else as
default)
 ==> bug

I'm going back to version 5.1.1.3, as I use this feature a lot.

Best regards,

Fábio Melo Pfeifer »

from some comments above ?

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


[Libreoffice-qa] Bug 101213 (Marqeaux) - New Upgrade very slow in calc (5.1.5 vs 5.1.4)

2016-08-03 Thread m.a.riosv
Hi *
could someone test this issue for Linux, if reproducible maybe critical. 
There are three users that can reproduce it.
Miguel Ángel.

Bug 101213 (Marqeaux) - New Upgrade very slow in calc, 5.1.5 vs 5.1.4.
https://bugs.documentfoundation.org/show_bug.cgi?id=101213



--
View this message in context: 
http://nabble.documentfoundation.org/Bug-101213-Marqeaux-New-Upgrade-very-slow-in-calc-5-1-5-vs-5-1-4-tp4190063.html
Sent from the QA mailing list archive at Nabble.com.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 101213] New Upgrade very slow in calc

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101213

Marqeaux  changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |x86 (IA32)
  Alias||Marqeaux

--- Comment #6 from Marqeaux  ---
I encounter the same behaviour since I got an update from LO 5.1.4. to 5.1.5. I
encounter this problem on multiple Linux distro's and on multiple machines (x86
and x86_64). I tried somewhat everything to solve this, but was unsuccesful so
far. Starting with a new, fresh profile doesn't do the trick, increasing the
memory usage of Libreoffice doesn't show any improvement, and OpenGL was
already disabled by default. This sluggish behaviour, which launches my CPU to
100% instantly is not only seen with Calc, but also with Base. Both are
practically unusable at this moment.

When starting up LO you see the start centre blink three times, and every time
you hit the menu with the mouse pointer, the whole menu blinks again. Trying to
scroll through a Calc or Base document makes it horribly slow.

It looks like there's something changed in the way the screen is rendered when
in LibreOffice. LO 5.1.4 was working like a charm, but since the update to
5.1.5 a few days ago it totally went the wrong way.

I hope this is fixed very soon. I need LibreOffice for my work, and at this
point I just can't do much with it.

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


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

2016-08-03 Thread Eike Rathke
 sc/source/filter/oox/formulabase.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 7fc61bc051fa2bb6a95bbc76d6239118f3eb434b
Author: Eike Rathke 
Date:   Wed Aug 3 23:22:39 2016 +0200

remove the now duplicated ERROR.TYPE mapping already present in BIFF4

Change-Id: Ia6cf9abe31e6bc7874ebe2d8c881d1a4d3e03d66

diff --git a/sc/source/filter/oox/formulabase.cxx 
b/sc/source/filter/oox/formulabase.cxx
index 6c5cabc..72b7493 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -885,8 +885,7 @@ static const FunctionData saFuncTable2013[] =
 { "UNICHAR","UNICHAR",  NOID,   NOID,   1,  1, 
 V, { VR }, FUNCFLAG_MACROCALL_NEW },
 { "UNICODE","UNICODE",  NOID,   NOID,   1,  1, 
 V, { VR }, FUNCFLAG_MACROCALL_NEW },
 { "COM.MICROSOFT.WEBSERVICE","WEBSERVICE",  NOID,   NOID,   1,  1, 
 V, { VR }, FUNCFLAG_MACROCALL_NEW },
-{ "XOR","XOR",  NOID,   NOID,   1,  
MX, V, { RX }, FUNCFLAG_MACROCALL_NEW },
-{ "ERROR.TYPE", "ERROR.TYPE",   NOID,   NOID,   1,  1, 
 V, { VR }, FUNCFLAG_MACROCALL_NEW }
+{ "XOR","XOR",  NOID,   NOID,   1,  
MX, V, { RX }, FUNCFLAG_MACROCALL_NEW }
 };
 
 /** Functions new in Excel 2016.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 61148] FORMATTING: Different thickness of lines for LibreOffice Calc and Microsoft Excel

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61148

--- Comment #7 from Bartosz  ---
Created attachment 126555
  --> https://bugs.documentfoundation.org/attachment.cgi?id=126555=edit
file with border width 1.25pt and 3.25pt exported to .xlsx by LO 5.1

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


[Libreoffice-bugs] [Bug 101269] Version 5.2.0.4 - Cannot click/edit text inside a frame

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101269

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@caesar.elte.hu
 Ever confirmed|0   |1

--- Comment #1 from Aron Budea  ---
Please give detailed steps of what you were doing, what you were expecting to
happen, and what actually happened. Give your LibreOffice and OS version as
well.

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


[Libreoffice-bugs] [Bug 101234] FILESAVE: XLXS-spreadsheet Column Width shrinking automatically

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101234

--- Comment #3 from DocJohnson  ---
Would be nice if someone could spend some spare seconds to test this, there
must be more users which want to save their spreadsheets in xlsx-format.

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


[Libreoffice-bugs] [Bug 101282] Alt arrow keys single pixel movement stopped working

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101282

brian.bj.parke...@gmail.com changed:

   What|Removed |Added

Summary|Alt arrow keys  |Alt arrow keys single pixel
   ||movement stopped working

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


[Libreoffice-bugs] [Bug 101282] New: Alt arrow keys

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101282

Bug ID: 101282
   Summary: Alt arrow keys
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: brian.bj.parke...@gmail.com

In Draw in OS X Alt+arrow keys would move the selected object by one pixel
(compared with the default movement of multiple pixels). This worked in earlier
versions but in the later versions this stopped working. In particular, it does
not work in LO Version: 5.2.0.4 but actually stopped working several versions
ago.

Moving by a larger amount with shift+arrow keys still works.

The key combination is documented at
https://help.libreoffice.org/Common/General_Shortcut_Keys_in

This is an essential operation for precise drawing operations and so should be
re-enabled.

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


[Libreoffice-bugs] [Bug 99327] Wrong hash algorithm informed on signed PDF/A export

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99327

--- Comment #11 from Daniel Miranda  ---
By the way, it does not seem to be an issue specific do PDF/A, but to all
signed PDF exports.

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


[Libreoffice-bugs] [Bug 101281] Possibility of null pointer dereferencing

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101281

Aron Budea  changed:

   What|Removed |Added

   Keywords||filter:ppt, needAdvice
 CC||ba...@caesar.elte.hu

--- Comment #1 from Aron Budea  ---
On first look, that class could use an STL container for mpGroupEntry instead.
Maybe a stack?

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


[Libreoffice-bugs] [Bug 99327] Wrong hash algorithm informed on signed PDF/A export

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99327

--- Comment #10 from Daniel Miranda  ---
Hi, I am seeing the same problem here and the culprit seems to be this line in
LibreOffice's source code:

https://cgit.freedesktop.org/libreoffice/core/tree/vcl/source/gdi/pdfwriter_impl.cxx#n7188


The following line:
 aSignerInfo.HashAlgorithm.pszObjId = const_cast(szOID_RSA_SHA1RSA);
Should probably read:
 aSignerInfo.HashAlgorithm.pszObjId = const_cast(szOID_OIWSEC_sha1);


I have traced that path from the pdfexport.cxx code, which creates an aContext
structure and creates a pPDFWriter object at:

https://cgit.freedesktop.org/libreoffice/core/tree/filter/source/pdf/pdfexport.cxx#n787

The implementation of the code that does the actual signing is in
pdfwriter_impl.cxx and creates the aSignerInfo structure of type
CMSG_SIGNER_ENCODE_INFO, documented in

https://msdn.microsoft.com/pt-br/library/aa925156.aspx

The specific field that is set is aSignerInfo.HashAlgorithm.pszObjId, which is
documented at:

https://msdn.microsoft.com/pt-br/library/office/aa381133.aspx.

The value currently in the code is:
 szOID_RSA_SHA1RSA
 "1.2.840.113549.1.1.5"
 which is NOT a digest algorithm, but an encryption and signing algorithn.

The likely value for that should be:
 szOID_OIWSEC_sha1
 "1.3.14.3.2.26"

Or, while we are at that, upgrade the algorithm to a more modern one not
relying on sha1. It should have minor performance impact:
 szOID_NIST_sha256
 "2.16.840.1.101.3.4.2.1"
 or
 szOID_NIST_sha512
 "2.16.840.1.101.3.4.2.3" 


Other parts of the file should also be updated:

https://cgit.freedesktop.org/libreoffice/core/tree/vcl/source/gdi/pdfwriter_impl.cxx#n7159
 (although it seems the aPara structure is not actually being used anywhere
else)

CAVEAT:
  1. I am not familiar with LibreOffice's codebase, please check if these two
lines are really all it takes.
  2. The digest algorithm upgrade seems to be a bit more complex than a fix for
this bug, it requires changes in other parts of the file. Nonetheless, I think
this is a wonderful time to do it, since sha1 is showing it's age. Bruce
Scheiner blogged in 2005 - 11 years ago - that it was no longer safe even then.
See https://www.schneier.com/blog/archives/2005/02/cryptanalysis_o.html

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


[Libreoffice-bugs] [Bug 45065] Problem with EDITING of technical pdfs

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45065

--- Comment #16 from brian.bj.parke...@gmail.com ---
(In reply to Heiko Tietze from comment #14)
> Looks like the issue has been fixed. Please verify with 5.2.
> 
> Version: 5.2.0.0.alpha0+
> Build ID: 6b232aeecc55f1715bc111e636e36a8e24827efb
> CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
> TinderBox: Win-x86@39, Branch:master, Time: 2016-01-26_07:40:04
> Locale: de-DE (de_DE)
> 
> (setting 61144 as duplicate of this one)

The bug is still visible in LO Draw Version: 5.2.0.4 under OSX 10.11.6.

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


[Libreoffice-bugs] [Bug 99490] After upgrading, spell checker no longer works

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99490

Buovjaga  changed:

   What|Removed |Added

 Status|REOPENED|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 99490] After upgrading, spell checker no longer works

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99490

Todd  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---
 Ever confirmed|0   |1

--- Comment #16 from Todd  ---
oops.. Not resolved.

I was STUNG by bug 38171, which you guys are dragging your feet on fixing. 
mumble, mumble, mumble

I now have TWO installations of LO: 5.1 and 5.2.

I did realize I was testing a version that had not changed.

I will let you know if this is fixed after scrubbing out 5.1 and updating all
my launchers.   mumble, mumble, mumble

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


[Libreoffice-bugs] [Bug 66401] FILESAVE: DOCX exporting a document with 'Combined Characters' loses them

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66401

Bartosz  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 101265] Calc closes/crashes when I click chart

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101265

Julien Nabet  changed:

   What|Removed |Added

Version|unspecified |5.1.4.2 release

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


[Libreoffice-bugs] [Bug 101273] diagram

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101273

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #1 from Julien Nabet  ---
Which LO version do you use?

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


[Libreoffice-bugs] [Bug 101281] New: Possibility of null pointer dereferencing

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101281

Bug ID: 101281
   Summary: Possibility of null pointer dereferencing
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: chudug...@gmail.com

I came across some code which I think, can lead to dereferencing of a
null-pointer.

For example:

File /core/sd/source/filter/eppt/pptx-grouptable.cxx
pTemp is dereferenced in line 47 without checking whether the new operator
returned a non-null-pointer.
45| GroupEntry** pTemp = new GroupEntry*[ nEntrys ];
46| for ( sal_uInt32 i = 0; i < mnCurrentGroupEntry; i++ )
47| pTemp[ i ] = mpGroupEntry[ i ];

Lines 59 and 60 of the same file has a similar case.

File /core/desktop/unx/source/start.c too has calloc call with similar
situation.
In the line 118 ppArgs is dereferenced without checking for a non-null-pointer.

I think this is some issue which we can work on (probably there will be some
more) to make the code better (Please correct me if I have misunderstood
anything)

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


[Libreoffice-bugs] [Bug 99490] After upgrading, spell checker no longer works

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99490

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #15 from Buovjaga  ---
(In reply to Todd from comment #14)
> Did you guys work on this?

I checked on the dev IRC channel about one fix I suspected, but was told it is
not related to this.

I guess we could set this to WFM and if it comes back, change to unconfirmed
again.

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


[Libreoffice-bugs] [Bug 101272] Cut and paste crashes writer

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101272

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@caesar.elte.hu
 Resolution|--- |WORKSFORME

--- Comment #1 from Aron Budea  ---
Crash occurs in LibreOffice 5.1.4.2/Windows 7.
No crash in LibreOffice 5.1.5.2 or 5.2.0.4. Please try with those versions.
Return status to UNCONFIRMED if you still encounter the crash.

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


[Libreoffice-bugs] [Bug 101280] [META] Layout Loops

2016-08-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101280

Björn Michaelsen  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


  1   2   3   4   >