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

2016-03-03 Thread Pranav Kant
 loleaflet/src/control/Control.ColumnHeader.js |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 87a3b5d3ac19159afd138f84286249b71aca9fc0
Author: Pranav Kant 
Date:   Fri Mar 4 13:15:36 2016 +0530

loleaflet: Fix JS errors

Change-Id: I9740e0a223c43449ce9f40f91b8c90250d1b7560

diff --git a/loleaflet/src/control/Control.ColumnHeader.js 
b/loleaflet/src/control/Control.ColumnHeader.js
index eababcb..0091893 100644
--- a/loleaflet/src/control/Control.ColumnHeader.js
+++ b/loleaflet/src/control/Control.ColumnHeader.js
@@ -65,10 +65,12 @@ L.Control.ColumnHeader = L.Control.extend({
text.setAttribute('rel', 'spreadsheet-column-' + 
content); // for easy addressing
text.innerHTML = content;
width = Math.round(converter.call(context, twip).x) - 1 
+ 'px';
-   if (width === '-1px')
+   if (width === '-1px') {
L.DomUtil.setStyle(text, 'display', 'none');
-   else
+   }
+   else {
L.DomUtil.setStyle(text, 'width', width);
+   }
}
},
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98403] New: UGX Currency

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

Bug ID: 98403
   Summary: UGX Currency
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: diarm...@obriain.com

Created attachment 123221
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123221=edit
UGX currency select

Hi,

In Format cells -> Category -> Currency -> Format -> "UGX USh Ghana"

The UGX/USh currency is incorrectly labeled as "Ghana", it should be labeled
"Uganda". i.e. Ugandan Shilling.

The currency in Ghana is the Cedi (GHS) and it is correctly labeled in the
dropdown.

regards,
xcsd
Diarmuid

-- 
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: 2 commits - writerfilter/source

2016-03-03 Thread Miklos Vajna
 writerfilter/source/rtftok/rtffly.hxx   |   16 
 writerfilter/source/rtftok/rtftokenizer.cxx |   50 ++--
 writerfilter/source/rtftok/rtftokenizer.hxx |8 ++--
 3 files changed, 37 insertions(+), 37 deletions(-)

New commits:
commit 505473154bd2e717d21b1a7ff1fce322403049df
Author: Miklos Vajna 
Date:   Fri Mar 4 08:39:22 2016 +0100

writerfilter: prefix members of RTFTokenizer

Change-Id: Icba6646e183bc283e3c86a223a7f76306123200b

diff --git a/writerfilter/source/rtftok/rtftokenizer.cxx 
b/writerfilter/source/rtftok/rtftokenizer.cxx
index 1a920c6..1af73de 100644
--- a/writerfilter/source/rtftok/rtftokenizer.cxx
+++ b/writerfilter/source/rtftok/rtftokenizer.cxx
@@ -21,10 +21,10 @@ namespace writerfilter
 namespace rtftok
 {
 
-std::vector RTFTokenizer::m_aRTFControlWords;
-bool RTFTokenizer::m_bControlWordsSorted;
-std::vector RTFTokenizer::m_aRTFMathControlWords;
-bool RTFTokenizer::m_bMathControlWordsSorted;
+std::vector RTFTokenizer::s_m_aRTFControlWords;
+bool RTFTokenizer::s_m_bControlWordsSorted;
+std::vector RTFTokenizer::s_m_aRTFMathControlWords;
+bool RTFTokenizer::s_m_bMathControlWordsSorted;
 
 RTFTokenizer::RTFTokenizer(RTFListener& rImport, SvStream* pInStream, 
uno::Reference const& xStatusIndicator)
 : m_rImport(rImport),
@@ -35,17 +35,17 @@ RTFTokenizer::RTFTokenizer(RTFListener& rImport, SvStream* 
pInStream, uno::Refer
   m_nLineStartPos(0),
   m_nGroupStart(0)
 {
-if (!RTFTokenizer::m_bControlWordsSorted)
+if (!RTFTokenizer::s_m_bControlWordsSorted)
 {
-RTFTokenizer::m_bControlWordsSorted = true;
-m_aRTFControlWords = std::vector(aRTFControlWords, 
aRTFControlWords + nRTFControlWords);
-std::sort(m_aRTFControlWords.begin(), m_aRTFControlWords.end());
+RTFTokenizer::s_m_bControlWordsSorted = true;
+s_m_aRTFControlWords = std::vector(aRTFControlWords, 
aRTFControlWords + nRTFControlWords);
+std::sort(s_m_aRTFControlWords.begin(), s_m_aRTFControlWords.end());
 }
-if (!RTFTokenizer::m_bMathControlWordsSorted)
+if (!RTFTokenizer::s_m_bMathControlWordsSorted)
 {
-RTFTokenizer::m_bMathControlWordsSorted = true;
-m_aRTFMathControlWords = 
std::vector(aRTFMathControlWords, aRTFMathControlWords + 
nRTFMathControlWords);
-std::sort(m_aRTFMathControlWords.begin(), 
m_aRTFMathControlWords.end());
+RTFTokenizer::s_m_bMathControlWordsSorted = true;
+s_m_aRTFMathControlWords = 
std::vector(aRTFMathControlWords, aRTFMathControlWords + 
nRTFMathControlWords);
+std::sort(s_m_aRTFMathControlWords.begin(), 
s_m_aRTFMathControlWords.end());
 }
 }
 
@@ -271,11 +271,11 @@ RTFError RTFTokenizer::resolveKeyword()
 
 bool RTFTokenizer::lookupMathKeyword(RTFMathSymbol& rSymbol)
 {
-std::vector::iterator low = 
std::lower_bound(m_aRTFMathControlWords.begin(), m_aRTFMathControlWords.end(), 
rSymbol);
-int i = low - m_aRTFMathControlWords.begin();
-if (low == m_aRTFMathControlWords.end() || rSymbol < *low)
+std::vector::iterator low = 
std::lower_bound(s_m_aRTFMathControlWords.begin(), 
s_m_aRTFMathControlWords.end(), rSymbol);
+int i = low - s_m_aRTFMathControlWords.begin();
+if (low == s_m_aRTFMathControlWords.end() || rSymbol < *low)
 return false;
-rSymbol = m_aRTFMathControlWords[i];
+rSymbol = s_m_aRTFMathControlWords[i];
 return true;
 }
 
@@ -293,9 +293,9 @@ RTFError RTFTokenizer::dispatchKeyword(OString& rKeyword, 
bool bParam, int nPara
  "' with param? " << (bParam ? 1 : 0) <<" param val: '" << (bParam 
? nParam : 0) << "'");
 RTFSymbol aSymbol;
 aSymbol.sKeyword = rKeyword.getStr();
-std::vector::iterator low = 
std::lower_bound(m_aRTFControlWords.begin(), m_aRTFControlWords.end(), aSymbol);
-int i = low - m_aRTFControlWords.begin();
-if (low == m_aRTFControlWords.end() || aSymbol < *low)
+std::vector::iterator low = 
std::lower_bound(s_m_aRTFControlWords.begin(), s_m_aRTFControlWords.end(), 
aSymbol);
+int i = low - s_m_aRTFControlWords.begin();
+if (low == s_m_aRTFControlWords.end() || aSymbol < *low)
 {
 SAL_INFO("writerfilter", OSL_THIS_FUNC << ": unknown keyword '\\" << 
rKeyword.getStr() << "'");
 RTFSkipDestination aSkip(m_rImport);
@@ -304,28 +304,28 @@ RTFError RTFTokenizer::dispatchKeyword(OString& rKeyword, 
bool bParam, int nPara
 }
 
 RTFError ret;
-switch (m_aRTFControlWords[i].nControlType)
+switch (s_m_aRTFControlWords[i].nControlType)
 {
 case CONTROL_FLAG:
 // flags ignore any parameter by definition
-ret = m_rImport.dispatchFlag(m_aRTFControlWords[i].nIndex);
+ret = m_rImport.dispatchFlag(s_m_aRTFControlWords[i].nIndex);
 if (ret != RTFError::OK)
 return ret;
 break;
 case CONTROL_DESTINATION:
 // same for destinations
-ret = 

[Libreoffice-bugs] [Bug 65138] [META] Sidebar feature related issues

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

Bug 87812 Summary: SIDEBAR: More animation information in list control
https://bugs.documentfoundation.org/show_bug.cgi?id=87812

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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


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

2016-03-03 Thread Akshay Deep
 sd/source/ui/animations/CustomAnimationList.cxx |   46 ++--
 1 file changed, 35 insertions(+), 11 deletions(-)

New commits:
commit 5351188c8ea2426e9545543646a40dc6d6df1a14
Author: Akshay Deep 
Date:   Wed Feb 17 00:09:30 2016 +0530

tdf#87812 - SIDEBAR: More animation information in list control

Modified Custom Animation ListBox entry to include multiple lines.
Added Effect names in Custom Animation List Control.

Change-Id: Ic974ffc9fca6803ff76135620df1fbe9edcde565
Reviewed-on: https://gerrit.libreoffice.org/22403
Tested-by: Jenkins 
Reviewed-by: Samuel Mehrbrodt 

diff --git a/sd/source/ui/animations/CustomAnimationList.cxx 
b/sd/source/ui/animations/CustomAnimationList.cxx
index a8cc25e..2ef0644 100644
--- a/sd/source/ui/animations/CustomAnimationList.cxx
+++ b/sd/source/ui/animations/CustomAnimationList.cxx
@@ -215,29 +215,43 @@ public:
 private:
 VclPtr mpParent;
 OUStringmaDescription;
+OUStringeffectName;
 CustomAnimationEffectPtr mpEffect;
+const CustomAnimationPresets* mpCustomAnimationPresets;
+const long nIconWidth = 19;
+const long nItemMinHeight = 38;
 };
 
 CustomAnimationListEntryItem::CustomAnimationListEntryItem( SvTreeListEntry* 
pEntry, sal_uInt16 nFlags, const OUString& aDescription, 
CustomAnimationEffectPtr pEffect, CustomAnimationList* pParent  )
 : SvLBoxString( pEntry, nFlags, aDescription )
 , mpParent( pParent )
 , maDescription( aDescription )
+, effectName( OUString() )
 , mpEffect(pEffect)
+, 
mpCustomAnimationPresets(::getCustomAnimationPresets())
 {
+effectName = 
mpCustomAnimationPresets->getUINameForPresetId(mpEffect->getPresetId());
 }
 
+
+
 CustomAnimationListEntryItem::~CustomAnimationListEntryItem()
 {
 }
 
+
 void CustomAnimationListEntryItem::InitViewData( SvTreeListBox* pView, 
SvTreeListEntry* pEntry, SvViewDataItem* pViewData )
 {
 if( !pViewData )
 pViewData = pView->GetViewDataItem( pEntry, this );
 
-Size aSize(pView->GetTextWidth( maDescription ) + 2 * 19, 
pView->GetTextHeight() );
-if( aSize.Height() < 19 )
-aSize.Height() = 19;
+long width = pView->GetTextWidth( maDescription ) + nIconWidth;
+if( width < (pView->GetTextWidth( effectName ) + 2*nIconWidth))
+width = pView->GetTextWidth( effectName ) + 2*nIconWidth;
+
+Size aSize( width, pView->GetTextHeight() );
+if( aSize.Height() < nItemMinHeight )
+aSize.Height() = nItemMinHeight;
 pViewData->maSize = aSize;
 }
 
@@ -259,8 +273,17 @@ void CustomAnimationListEntryItem::Paint(const Point& 
rPos, SvTreeListBox& rDev,
 {
 rRenderContext.DrawImage(aPos, 
mpParent->getImage(IMG_CUSTOMANIMATION_AFTER_PREVIOUS));
 }
+else if (nNodeType == EffectNodeType::WITH_PREVIOUS)
+{
+//FIXME With previous image not defined in CustomAnimation.src
+}
 
-aPos.X() += 19;
+aPos.X() += nIconWidth;
+
+
+rRenderContext.DrawText(aPos, 
rRenderContext.GetEllipsisString(maDescription, 
rDev.GetOutputSizePixel().Width() - aPos.X()));
+
+aPos.Y() += nIconWidth;
 
 sal_uInt16 nImage;
 switch (mpEffect->getPresetClass())
@@ -295,14 +318,14 @@ void CustomAnimationListEntryItem::Paint(const Point& 
rPos, SvTreeListBox& rDev,
 {
 const Image& rImage = mpParent->getImage(nImage);
 Point aImagePos(aPos);
-aImagePos.Y() += (aSize.Height() - rImage.GetSizePixel().Height()) >> 
1;
+aImagePos.Y() += (aSize.Height()/2 - rImage.GetSizePixel().Height()) 
>> 1;
 rRenderContext.DrawImage(aImagePos, rImage);
 }
 
-aPos.X() += 19;
-aPos.Y() += (aSize.Height() - rDev.GetTextHeight()) >> 1;
+aPos.X() += nIconWidth;
+aPos.Y() += (aSize.Height()/2 - rDev.GetTextHeight()) >> 1;
 
-rRenderContext.DrawText(aPos, 
rRenderContext.GetEllipsisString(maDescription, 
rDev.GetOutputSizePixel().Width() - aPos.X()));
+rRenderContext.DrawText(aPos, rRenderContext.GetEllipsisString(effectName, 
rDev.GetOutputSizePixel().Width() - aPos.X()));
 }
 
 SvLBoxItem* CustomAnimationListEntryItem::Create() const
@@ -353,6 +376,7 @@ public:
 
 private:
 OUStringmaDescription;
+const long nIconWidth = 19;
 };
 
 CustomAnimationTriggerEntryItem::CustomAnimationTriggerEntryItem( 
SvTreeListEntry* pEntry, sal_uInt16 nFlags, const OUString& aDescription )
@@ -369,9 +393,9 @@ void CustomAnimationTriggerEntryItem::InitViewData( 
SvTreeListBox* pView, SvTree
 if( !pViewData )
 pViewData = pView->GetViewDataItem( pEntry, this );
 
-Size aSize(pView->GetTextWidth( maDescription ) + 2 * 19, 
pView->GetTextHeight() );
-if( aSize.Height() < 19 )
-aSize.Height() = 19;
+Size aSize(pView->GetTextWidth( maDescription ) + 2 * nIconWidth, 
pView->GetTextHeight() );
+if( aSize.Height() < nIconWidth )
+aSize.Height() = nIconWidth;
 pViewData->maSize = aSize;
 }
 

[Libreoffice-bugs] [Bug 98215] EDITING: copy/paste of words from one doc to another changes text paragraph style

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

--- Comment #2 from Luke Kendall  ---
Earlier this week, with LO performing slowly, the screen locked on me twice (as
if I had used the keyboard shortcut - for me, Ctrl-Alt-L - to lock the screen,
as if I had typed it. (I hadn't.) Then a 3rd time, the screen appeared to lock
up, but on this occasion it appeared that the computer had been put into
Suspend mode. On this Intel NUC system, I had only ever tried Suspend mode
once, as that had me thinking I'd bricked the system. (Some weird firmware
problem where it won't progress to the BIOS boot unless you unplug all UDB3
devices, and sometimes also all HDMI device.)

Anyway, after (eventually) managing to successfully reboot the system, I've
been doing heaps of the editing described below, but have not experienced any
repetition of the problem.

The behaviour described in Comment 1 however is still perfectly reproducible.

But the main problem I was reporting has not recurred once since the reboot.  I
suspect that since the reboot, I've been running a later kernel.

-- 
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 97021] [LOCALHELP] Write help page for FORECAST.ETS function

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

--- Comment #2 from Winfried Donkers  ---
Created attachment 123220
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123220=edit
help text for exponential smoothing forecast functions

@Olivier:
The code (finally) got pushed and will be in 5.2.0.
Attached is the help text, i.e. the best I could make of it.
I hope it is not much trouble for you to edit it where neccessary and put it in
the help text base.
I very much appreciate your kind help :-)

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


[Libreoffice-bugs] [Bug 96505] Get rid of cargo cult "long" integer literals

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

--- Comment #4 from Tor Lillqvist  ---
Thanks for taking up this.

-- 
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 35361] Support Apple Quick Look plugin (OS X feature)

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

Frantisek Erben  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #66 from Frantisek Erben  ---
In LO bundle is only "OOoSpotlightImporter.mdimporter", I cannot find anything
related to QuickLook (*.qlgenerator).

Problem is following:
So *.odt (text) files are handled by system "Office.qlgenerator" or
"Text.qlgenerator" (located at /System/Library/QuickLook/).

Other LO file types as *.ods (spreadsheet), *.odp (presentation), *.odg (draw)
hasn't their QuickLook plugin.

-- 
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 96505] Get rid of cargo cult "long" integer literals

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

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

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

tdf#96505 Remove long integer literal specifier when not needed

It will be available in 5.2.0.

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

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

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


[Libreoffice-bugs] [Bug 96505] Get rid of cargo cult "long" integer literals

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|ToBeReviewed|ToBeReviewed target:5.2.0

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


[Libreoffice-commits] core.git: basctl/source sax/source sc/source sd/source starmath/inc starmath/source

2016-03-03 Thread Aleksas Pantechovskis
 basctl/source/basicide/basicbox.cxx |2 +-
 basctl/source/basicide/bastype2.cxx |2 +-
 basctl/source/basicide/bastypes.cxx |2 +-
 basctl/source/basicide/macrodlg.cxx |6 +++---
 basctl/source/basicide/moduldl2.cxx |6 +++---
 basctl/source/basicide/moduldlg.cxx |   16 
 sax/source/tools/converter.cxx  |4 ++--
 sc/source/core/data/global.cxx  |2 +-
 sc/source/core/tool/detfunc.cxx |6 +++---
 sc/source/filter/excel/excdoc.cxx   |4 ++--
 sc/source/filter/excel/xecontent.cxx|2 +-
 sc/source/ui/Accessibility/AccessibleCsvControl.cxx |2 +-
 sc/source/ui/app/drwtrans.cxx   |2 +-
 sc/source/ui/app/inputwin.cxx   |2 +-
 sc/source/ui/condformat/condformatdlgentry.cxx  |2 +-
 sc/source/ui/dialogs/searchresults.cxx  |2 +-
 sc/source/ui/formdlg/formula.cxx|2 +-
 sc/source/ui/vba/vbainterior.cxx|2 +-
 sc/source/ui/vba/vbaworksheets.cxx  |2 +-
 sc/source/ui/view/olinewin.cxx  |2 +-
 sc/source/ui/view/tabvwsh5.cxx  |2 +-
 sc/source/ui/view/tabvwsh9.cxx  |2 +-
 sc/source/ui/view/tabvwshe.cxx  |4 ++--
 sc/source/ui/view/viewfun2.cxx  |2 +-
 sc/source/ui/view/viewfun4.cxx  |4 ++--
 sc/source/ui/view/viewfun6.cxx  |2 +-
 sc/source/ui/view/viewutil.cxx  |2 +-
 sd/source/filter/cgm/sdcgmfilter.cxx|2 +-
 sd/source/filter/grf/sdgrffilter.cxx|2 +-
 sd/source/ui/view/drviews1.cxx  |2 +-
 sd/source/ui/view/drviews2.cxx  |6 +++---
 sd/source/ui/view/drviews4.cxx  |2 +-
 sd/source/ui/view/drviews5.cxx  |4 ++--
 sd/source/ui/view/drviews9.cxx  |2 +-
 sd/source/ui/view/drviewsa.cxx  |2 +-
 sd/source/ui/view/drviewsb.cxx  |2 +-
 sd/source/ui/view/drviewsd.cxx  |2 +-
 sd/source/ui/view/drviewse.cxx  |2 +-
 sd/source/ui/view/drviewsi.cxx  |2 +-
 starmath/inc/rect.hxx   |2 +-
 starmath/source/ElementsDockingWindow.cxx   |2 +-
 starmath/source/dialog.cxx  |2 +-
 starmath/source/edit.cxx|8 
 starmath/source/view.cxx|6 +++---
 44 files changed, 69 insertions(+), 69 deletions(-)

New commits:
commit 57d0caacee2f395be2e89b78f8ece2d47b2c8683
Author: Aleksas Pantechovskis 
Date:   Thu Mar 3 15:43:51 2016 +0200

tdf#96505 Remove long integer literal specifier when not needed

Remove L from integer literals if it does not produce warnings
and does not change semantics

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

diff --git a/basctl/source/basicide/basicbox.cxx 
b/basctl/source/basicide/basicbox.cxx
index cc7c5cb..847a1a0 100644
--- a/basctl/source/basicide/basicbox.cxx
+++ b/basctl/source/basicide/basicbox.cxx
@@ -311,7 +311,7 @@ void LibBox::NotifyIDE()
 if (SfxDispatcher* pDispatcher = GetDispatcher())
 pDispatcher->Execute(
 SID_BASICIDE_LIBSELECTED,
-SfxCallMode::SYNCHRON, , , 0L
+SfxCallMode::SYNCHRON, , , 0
 );
 }
 ReleaseFocus();
diff --git a/basctl/source/basicide/bastype2.cxx 
b/basctl/source/basicide/bastype2.cxx
index 30fa792..288d7ed 100644
--- a/basctl/source/basicide/bastype2.cxx
+++ b/basctl/source/basicide/bastype2.cxx
@@ -932,7 +932,7 @@ bool TreeListBox::OpenCurrent()
 );
 pDispatcher->Execute(
 SID_BASICIDE_SHOWSBX,
-SfxCallMode::SYNCHRON, , 0L
+SfxCallMode::SYNCHRON, , 0
 );
 return true;
 }
diff --git a/basctl/source/basicide/bastypes.cxx 
b/basctl/source/basicide/bastypes.cxx
index f911713..01e0b6d 100644
--- a/basctl/source/basicide/bastypes.cxx
+++ b/basctl/source/basicide/bastypes.cxx
@@ -555,7 +555,7 @@ void TabBar::EndRenaming()
 SfxStringItem aNewName( SID_BASICIDE_ARG_MODULENAME, GetEditText() );
 if (SfxDispatcher* pDispatcher = GetDispatcher())
 pDispatcher->Execute( SID_BASICIDE_NAMECHANGEDONTAB,
-  SfxCallMode::SYNCHRON, , , 0L );
+   

[Libreoffice-bugs] [Bug 98402] New: 'Spreadsheet' file filter in insert Chart from File dialog doesnt list spreadsheet files

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

Bug ID: 98402
   Summary: 'Spreadsheet' file filter in insert Chart from File
dialog doesnt list spreadsheet files
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com

Steps:
1) Open Calc
2) Insert > Object > Chart from File (.uno:InsertObjectChartFromFile)
3) Change file type filter from 'All files' to 'Spreadsheet'
4) Browse to a folder with any spreadsheet files (*.ods,*.xls,*.xlsx)
5) None will be shown

Version: 5.2.0.0.alpha0+
Build ID: 003d0ccf902d2449320dd24119564565a384f365
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-02-23_02:42:33
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 98389] FILEOPEN Calc crashes on opening xlsx document

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

Winfried Donkers  changed:

   What|Removed |Added

Version|5.0.4.2 release |4.4.7.2 release

--- Comment #3 from Winfried Donkers  ---
Also crash with version 4.4.7.2 (Windows)
Lock file remains after 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-commits] core.git: compilerplugins/clang include/vcl include/xmloff vcl/inc vcl/source vcl/unx xmloff/inc xmloff/source

2016-03-03 Thread Noel Grandin
 compilerplugins/clang/unuseddefaultparams.cxx |   15 
 include/vcl/button.hxx|2 -
 include/vcl/combobox.hxx  |4 +-
 include/vcl/menu.hxx  |3 -
 include/vcl/outdev.hxx|5 +-
 include/vcl/texteng.hxx   |4 +-
 include/vcl/toolbox.hxx   |2 -
 include/xmloff/shapeexport.hxx|2 -
 include/xmloff/xmlexp.hxx |3 -
 vcl/inc/listbox.hxx   |2 -
 vcl/inc/salgdi.hxx|2 -
 vcl/inc/unx/i18n_im.hxx   |2 -
 vcl/source/control/button.cxx |8 +---
 vcl/source/control/combobox.cxx   |8 ++--
 vcl/source/control/imp_listbox.cxx|   35 +---
 vcl/source/edit/texteng.cxx   |8 +---
 vcl/source/gdi/pdfwriter_impl.cxx |   16 +
 vcl/source/gdi/pdfwriter_impl.hxx |4 +-
 vcl/source/gdi/salgdilayout.cxx   |4 +-
 vcl/source/outdev/text.cxx|   17 ++---
 vcl/source/window/menu.cxx|4 +-
 vcl/source/window/toolbox.cxx |4 --
 vcl/unx/generic/app/i18n_im.cxx   |4 +-
 xmloff/inc/txtflde.hxx|3 -
 xmloff/source/core/xmlexp.cxx |   45 +-
 xmloff/source/draw/shapeexport.cxx|2 -
 xmloff/source/text/txtflde.cxx|5 +-
 27 files changed, 84 insertions(+), 129 deletions(-)

New commits:
commit f5e131b2bcd2c88a47e5988d5f319bffd767c4dc
Author: Noel Grandin 
Date:   Thu Mar 3 14:52:45 2016 +0200

loplugin:unuseddefaultparams in vcl and xmloff

and teach the plugin about code that takes the address of a function

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

diff --git a/compilerplugins/clang/unuseddefaultparams.cxx 
b/compilerplugins/clang/unuseddefaultparams.cxx
index 6906a93..a194be2 100644
--- a/compilerplugins/clang/unuseddefaultparams.cxx
+++ b/compilerplugins/clang/unuseddefaultparams.cxx
@@ -68,8 +68,11 @@ public:
 myfile.close();
 }
 
+bool shouldVisitTemplateInstantiations () const { return true; }
+
 bool VisitCallExpr(CallExpr * callExpr);
 bool VisitFunctionDecl( const FunctionDecl* functionDecl );
+bool VisitDeclRefExpr( const DeclRefExpr* declRefExpr );
 private:
 MyFuncInfo niceName(const FunctionDecl* functionDecl);
 };
@@ -208,6 +211,18 @@ bool UnusedDefaultParams::VisitFunctionDecl( const 
FunctionDecl* functionDecl )
 return true;
 }
 
+// this catches places that take the address of a method
+bool UnusedDefaultParams::VisitDeclRefExpr( const DeclRefExpr* declRefExpr )
+{
+const Decl* functionDecl = declRefExpr->getDecl();
+if (!isa(functionDecl)) {
+return true;
+}
+MyFuncInfo funcInfo = niceName(dyn_cast(functionDecl));
+callSet.insert(funcInfo);
+return true;
+}
+
 loplugin::Plugin::Registration< UnusedDefaultParams > X("unuseddefaultparams", 
false);
 
 }
diff --git a/include/vcl/button.hxx b/include/vcl/button.hxx
index 91ba1e3..bf19a6a 100644
--- a/include/vcl/button.hxx
+++ b/include/vcl/button.hxx
@@ -297,7 +297,7 @@ private:
 SAL_DLLPRIVATE void ImplDraw( OutputDevice* pDev, DrawFlags nDrawFlags,
   const Point& rPos, const Size& rSize,
   const Size& rImageSize, Rectangle& rStateRect,
-  Rectangle& rMouseRect, bool bLayout = false );
+  Rectangle& rMouseRect );
 SAL_DLLPRIVATE void ImplDrawRadioButton(vcl::RenderContext& 
rRenderContext );
 SAL_DLLPRIVATE void ImplUncheckAllOther();
 SAL_DLLPRIVATE Size ImplGetRadioImageSize() const;
diff --git a/include/vcl/combobox.hxx b/include/vcl/combobox.hxx
index 8396156..77754b7 100644
--- a/include/vcl/combobox.hxx
+++ b/include/vcl/combobox.hxx
@@ -137,8 +137,8 @@ public:
 SizeCalcBlockSize( sal_uInt16 nColumns, sal_uInt16 nLines ) 
const;
 voidGetMaxVisColumnsAndLines( sal_uInt16& rnCols, sal_uInt16& 
rnLines ) const;
 
-voidSetMRUEntries( const OUString& rEntries, sal_Unicode cSep 
= ';' );
-OUStringGetMRUEntries( sal_Unicode cSep = ';' ) const;
+voidSetMRUEntries( const OUString& rEntries );
+OUStringGetMRUEntries() const;
 voidSetMaxMRUCount( sal_Int32  n );
 sal_Int32   GetMaxMRUCount() const;
 voidSetEntryData( sal_Int32  nPos, void* pNewData );
diff --git a/include/vcl/menu.hxx b/include/vcl/menu.hxx
index f8d44e0..4b1682f 100644
--- 

[Libreoffice-bugs] [Bug 98378] Crash without error message when trying to open unsupported document type

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

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jbfa...@libreoffice.org

--- Comment #1 from Jean-Baptiste Faure  ---
I guess the problem is on your distribution side because it is not intended to
do not install a module like Calc with the vanilla version. This functionality
has been removed from the Windows installer.

I suggest to close this bug report as NotOurBug.

Best regards. JBF

-- 
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 98401] New: WIKIHELP: Didnt correctly convert ordered list

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

Bug ID: 98401
   Summary: WIKIHELP: Didnt correctly convert ordered list
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com

text/shared/guide/chart_insert.xhp has the following code and is incorrectly
rendering it in wikihelp.

In a Writer document, you can insert a chart based on the values in
a Writer table. 


Click
inside the Writer table. 


Choose Insert - Object - Chart.
You
see a chart preview and the Chart Wizard.no live preview - is this a
bug?


Follow the instructions in the Chart Wizard to create the
chart. 



https://help.libreoffice.org/Common/Inserting_Charts#Chart_in_a_Writer_text_document

-- 
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 92067] GtkSalMenu: menu File>Templates>Manage executes action from the wrong submenu

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

--- Comment #7 from Jean-Baptiste Faure  ---
It seems that the workaround consisting in using the GTK3 plugin does not work
for the current master and LO 5.1

Best regards. JBF

-- 
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 98346] When reedit chart data labels "number format" cleared

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

--- Comment #9 from Alex  ---
Step by Step:
1)Create new spreadsheet document
2)Input data and create chart
3) Select “Edit” Chart.
4) Insert Data Labels
5) In Data Labels parameters check “Show values as number” and change “Number
format” to Scientific
6) Save document and close it
7) Open saved document. Data labels show in scientific format
8) Select “Edit” Chart.
9) Select properties any elements, such as “Data Series”
10) If click  “Ok”, “Cancel” or press Esc “Number Format” set as default

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


[Libreoffice-bugs] [Bug 98346] When reedit chart data labels "number format" cleared

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

--- Comment #8 from Alex  ---
Created attachment 123219
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123219=edit
Step by step bug reproduce

-- 
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 98400] New: Editing track changes needs to be reset by user after every save document

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

Bug ID: 98400
   Summary: Editing track changes needs to be reset by user after
every save document
   Product: LibreOffice
   Version: 5.0.5.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: crazyb...@volny.cz

Everytime I save the document the track changes setting changes and has to be
reset manually. Also, on my computer using both Ubuntu 12.04 and 14.04 one can
not see what the setting is/are in track changes - only way to know is to test
by making a change and seeing if you can see it or not.

-- 
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 96896] Writer crashes when frame title is changed via API and user closes print preview

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||haveBacktrace, needAdvice
 Status|UNCONFIRMED |NEW
 CC||michael.me...@collabora.com
   ||, momonas...@gmail.com
 Ever confirmed|0   |1

--- Comment #7 from Yousuf (Jay) Philips  ---
Hi castanheira,

Thanks for the backtrace. Hopefully one of devs will be able to look at it and
track down the cause.

-- 
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 98399] Changes Occur When Canceled

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

--- Comment #1 from gat  ---
I have confirmed this issue on LibreOffice 4.3.0.4 with Windows Vista Service
Pack 2. Also, the following still produces the bug.

Right-click an image. Click "Format Image". Click "Crop" Change the image's
size. Click another tab, e.g. "Image". Click "Crop" to return. Click "Reset".
Click "Cancel". The values will still be reset, but the changes will still
occur.

-- 
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 98399] New: Changes Occur When Canceled

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

Bug ID: 98399
   Summary: Changes Occur When Canceled
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gatlinsulli...@yahoo.com

Description of problem:
Changes to images still occur when canceled in at least one scenario.

Version-Release number of selected component (if applicable):
Build ID 5.0.5.2-2.fc23 in LibreOffice Writer

How reproducible:
Consistent

Steps to Reproduce:
Right-click on an image. Select "Format Image...". Select "Crop". Change the
image by adding to the width or clicking "Original Size". Click any other tab,
e.g. "Borders". Click "Cancel". Watch for the changes to happen that were
supposed to have been canceled.

Actual results:
The image changes according to the retained edits of cropping.

Expected results:
The canceled edits would not be applied.

Additional info:
I will report upstream once someone confirms that this is an upstream bug.

I have confirmed the same functionality on OS X (El Capitan 10.11.3) with
LibreOffice 5.1.0.3 (Build ID: 5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737).

Since I have confirmed this on the latest version and on two different
operating systems, then I believe that it is a bug in LibreOffice.

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


[Libreoffice-bugs] [Bug 96896] Writer crashes when frame title is changed via API and user closes print preview

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

castanhe...@uol.com.br changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #6 from castanhe...@uol.com.br ---
Hi Yousuf, backtrace submitted, hope it helps. 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-bugs] [Bug 70998] Termchange: Graphic/Picture -> Image

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

--- Comment #38 from gat  ---
I was able to confirm the presence of all of those from my last comment in OS X
El Capitan with LibreOffice 5.1.0.3 except File → Printer settings… → Options…
→ Pictures and objects.

Of course LibreOffice -> Preferences -> would be used in the stead of Tools ->
Options... ->. I'm sure that some of these will stay with graphic.

-- 
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 96896] Writer crashes when frame title is changed via API and user closes print preview

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

--- Comment #5 from castanhe...@uol.com.br ---
Created attachment 123218
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123218=edit
Backtrace generated with WinDbg(X64) - LO 5.1.0.3 (x86), Win10 64 bit

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


[Libreoffice-commits] core.git: download.lst

2016-03-03 Thread David Tardon
 download.lst |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fee4fe8e589e101140d9b318ac757825bf836506
Author: David Tardon 
Date:   Thu Mar 3 14:23:31 2016 +0100

upload libpagemaker 0.0.3

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

diff --git a/download.lst b/download.lst
index 3bd1316..cee632e 100644
--- a/download.lst
+++ b/download.lst
@@ -120,8 +120,8 @@ export ORCUS_MD5SUM := e6efcbe50a5fd4d50d513c9a7a4139b0
 export ORCUS_TARBALL := liborcus-0.9.2.tar.gz
 export OWNCLOUD_ANDROID_LIB_MD5SUM := 593f0aa47bf2efc0efda2d28fae063b2
 export OWNCLOUD_ANDROID_LIB_TARBALL := 
owncloud-android-library-0.9.4-no-binary-deps.tar.gz
-export PAGEMAKER_MD5SUM := 795cc7a59ace4db2b12586971d668671
-export PAGEMAKER_TARBALL := libpagemaker-0.0.2.tar.bz2
+export PAGEMAKER_MD5SUM := 5c4985a68be0b79d3f809da5e12b143c
+export PAGEMAKER_TARBALL := libpagemaker-0.0.3.tar.bz2
 export PIXMAN_TARBALL := c63f411b3ad147db2bcce1bf262a0e02-pixman-0.24.4.tar.bz2
 export PNG_MD5SUM := 3121bdc77c365a87e054b9f859f421fe
 export PNG_TARBALL := libpng-1.6.19.tar.gz
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98374] Correct the list of disabled shortcut keys per OS

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

--- Comment #6 from Yousuf (Jay) Philips  ---
(In reply to V Stuart Foote from comment #5)
> Right, but the function of those core vcl assignments including handling the
> reserved keys are what has become unreliable. It seems they are being
> overridden by conflicting XCU assignments (l18n and "widget-du-jour") and as
> a result we now have incorrectly functioning menus, dialogs, and actions in
> modules throughout the UI.  

That maybe true but thats not within the scope of this enhancement, which is
about freeing up reserved keys, that all work fine presently.

-- 
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 98125] fileopen: Seem to work flawlessly. At some point it will freeze when opening a non recent file

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #10 from Yousuf (Jay) Philips  ---
Hi ronvarburg,

It is hard for us to assist you when you arent providing an real clues on why
or when it is happening. If we cant accurately reproduce the problem then
unfortunately it wont get fixed.

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


[Libreoffice-commits] online.git: loolwsd/LOOLWSD.hpp loolwsd/Storage.hpp

2016-03-03 Thread Ashod Nakashian
 loolwsd/LOOLWSD.hpp |4 ++-
 loolwsd/Storage.hpp |   63 +---
 2 files changed, 63 insertions(+), 4 deletions(-)

New commits:
commit 743311af2137089e16bae3168a6e5413e3aee751
Author: Ashod Nakashian 
Date:   Thu Mar 3 21:05:30 2016 -0500

loolwsd: added wopi storage manager

Change-Id: Ia28fb3d42c43387432e0b183a1bcf6b0924da820
Reviewed-on: https://gerrit.libreoffice.org/22885
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/loolwsd/LOOLWSD.hpp b/loolwsd/LOOLWSD.hpp
index ba11e68..a41cceb 100644
--- a/loolwsd/LOOLWSD.hpp
+++ b/loolwsd/LOOLWSD.hpp
@@ -100,7 +100,9 @@ public:
 else
 {
 Log::info("Public URI [" + uriPublic.toString() +
-  "] is not a file.");
+  "] assuming cloud storage.");
+//TODO: Configure the storage to use. For now, assume it's WOPI.
+std::unique_ptr storage(new 
WopiStorage(docPath.toString()));
 }
 
 auto document = std::shared_ptr(new 
DocumentURI(uriPublic, uriJailed, childId));
diff --git a/loolwsd/Storage.hpp b/loolwsd/Storage.hpp
index 1cf2991..f38c593 100644
--- a/loolwsd/Storage.hpp
+++ b/loolwsd/Storage.hpp
@@ -13,6 +13,8 @@
 
 #include 
 
+#include 
+
 #include "Auth.hpp"
 #include "Util.hpp"
 
@@ -21,13 +23,20 @@ class StorageBase
 {
 public:
 
-/// Returns a local file path given a URI.
+StorageBase(const std::string& localStorePath) :
+_localStorePath(localStorePath)
+{
+}
+
+/// Returns a local file path given a URI or ID.
 /// If necessary copies the file locally first.
 virtual std::string getFilePathFromURI(const std::string& uri) = 0;
 
-/// Writes the contents of the file back to the URI.
+/// Writes the contents of the file back to the source.
 virtual bool restoreFileToURI(const std::string& path, const std::string& 
uri) = 0;
 
+protected:
+const std::string _localStorePath;
 };
 
 /// Trivial implementation of local storage that does not need do anything.
@@ -51,11 +60,59 @@ public:
 }
 };
 
+class WopiStorage : public StorageBase
+{
+public:
+WopiStorage(const std::string& localStorePath) :
+StorageBase(localStorePath)
+{
+}
+
+/// uri format: http://server/<...>/wopi*/files//content
+std::string getFilePathFromURI(const std::string& uri) override
+{
+Poco::URI uriObject(uri);
+Poco::Net::HTTPClientSession session(uriObject.getHost(), 
uriObject.getPort());
+Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_GET, uri, 
Poco::Net::HTTPMessage::HTTP_1_1);
+Poco::Net::HTTPResponse response;
+session.sendRequest(request);
+std::istream& rs = session.receiveResponse(response);
+Log::info() << "WOPI::GetFile Status: " <<  response.getStatus() << " 
" << response.getReason() << Log::end;
+
+//TODO: Get proper filename.
+const std::string local_filename = _localStorePath + "/filename";
+std::ofstream ofs(local_filename);
+std::copy(std::istreambuf_iterator(rs),
+  std::istreambuf_iterator(),
+  std::ostreambuf_iterator(ofs));
+return local_filename;
+}
+
+bool restoreFileToURI(const std::string& path, const std::string& uri) 
override
+{
+Poco::URI uriObject(uri);
+Poco::Net::HTTPClientSession session(uriObject.getHost(), 
uriObject.getPort());
+Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_POST, uri, 
Poco::Net::HTTPMessage::HTTP_1_1);
+
+std::ifstream ifs(path);
+request.read(ifs);
+
+Poco::Net::HTTPResponse response;
+session.sendRequest(request);
+Log::info() << "WOPI::PutFile Status: " <<  response.getStatus() << " 
" << response.getReason() << Log::end;
+
+return (response.getStatus() == Poco::Net::HTTPResponse::HTTP_OK);
+}
+};
+
 class WebDAVStorage : public StorageBase
 {
 public:
 
-WebDAVStorage(const std::string& url, std::unique_ptr authAgent) 
:
+WebDAVStorage(const std::string& localStorePath,
+  const std::string& url,
+  std::unique_ptr authAgent) :
+StorageBase(localStorePath),
 _url(url),
 _authAgent(std::move(authAgent))
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loolwsd/LOOLWSD.cpp loolwsd/LOOLWSD.hpp loolwsd/MasterProcessSession.cpp

2016-03-03 Thread Ashod Nakashian
 loolwsd/LOOLWSD.cpp  |1 -
 loolwsd/LOOLWSD.hpp  |   24 +---
 loolwsd/MasterProcessSession.cpp |5 +++--
 3 files changed, 16 insertions(+), 14 deletions(-)

New commits:
commit c980ece8bcca0bf8c6c569a9db37b085022952e5
Author: Ashod Nakashian 
Date:   Thu Mar 3 21:00:57 2016 -0500

loolwsd: preparing for wopi storage

Change-Id: Iae1bd042d84603cf81115789df40f50e8dc20d16
Reviewed-on: https://gerrit.libreoffice.org/22884
Reviewed-by: Ashod Nakashian 
Tested-by: Ashod Nakashian 

diff --git a/loolwsd/LOOLWSD.cpp b/loolwsd/LOOLWSD.cpp
index 8ad52d7..ad5726b 100644
--- a/loolwsd/LOOLWSD.cpp
+++ b/loolwsd/LOOLWSD.cpp
@@ -103,7 +103,6 @@ DEALINGS IN THE SOFTWARE.
 #include "LOOLWSD.hpp"
 #include "MasterProcessSession.hpp"
 #include "QueueHandler.hpp"
-#include "Storage.hpp"
 #include "Util.hpp"
 
 using namespace LOOLProtocol;
diff --git a/loolwsd/LOOLWSD.hpp b/loolwsd/LOOLWSD.hpp
index 696ca3a..ba11e68 100644
--- a/loolwsd/LOOLWSD.hpp
+++ b/loolwsd/LOOLWSD.hpp
@@ -23,6 +23,7 @@
 #include 
 
 #include "Auth.hpp"
+#include "Storage.hpp"
 #include "Common.hpp"
 #include "Util.hpp"
 
@@ -34,8 +35,8 @@ public:
 
 static
 std::shared_ptr create(const std::string& url,
- const std::string& jailRoot,
- const std::string& childId)
+const std::string& jailRoot,
+const std::string& childId)
 {
 // TODO: Sanitize the url and limit access!
 auto uriPublic = Poco::URI(url);
@@ -52,16 +53,17 @@ public:
 
 // The URL is the publicly visible one, not visible in the chroot jail.
 // We need to map it to a jailed path and copy the file there.
+
+// chroot/jailId/user/doc
+const auto jailedDocRoot = Poco::Path(jailRoot, JailedDocumentRoot);
+
+// chroot/jailId/user/doc/childId
+const auto docPath = Poco::Path(jailedDocRoot, childId);
+Poco::File(docPath).createDirectories();
+
 auto uriJailed = uriPublic;
 if (uriPublic.isRelative() || uriPublic.getScheme() == "file")
 {
-// chroot/jailId/user/doc
-const auto jailedDocRoot = Poco::Path(jailRoot, 
JailedDocumentRoot);
-
-// chroot/jailId/user/doc/childId
-const auto docPath = Poco::Path(jailedDocRoot, childId);
-Poco::File(docPath).createDirectories();
-
 const auto filename = 
Poco::Path(uriPublic.getPath()).getFileName();
 
 // chroot/jailId/user/doc/childId/file.ext
@@ -113,8 +115,8 @@ public:
 
 private:
 DocumentURI(const Poco::URI& uriPublic,
- const Poco::URI& uriJailed,
- const std::string& jailId) :
+const Poco::URI& uriJailed,
+const std::string& jailId) :
_uriPublic(uriPublic),
_uriJailed(uriJailed),
_jailId(jailId)
diff --git a/loolwsd/MasterProcessSession.cpp b/loolwsd/MasterProcessSession.cpp
index 126a12b..55ccdaf 100644
--- a/loolwsd/MasterProcessSession.cpp
+++ b/loolwsd/MasterProcessSession.cpp
@@ -451,10 +451,11 @@ bool MasterProcessSession::loadDocument(const char* 
/*buffer*/, int /*length*/,
 
 try
 {
-Poco::URI aUri(_docURL);
+// Strip query params because we need unique URI (need a better 
solution!).
+StringTokenizer tokens(_docURL, "?", StringTokenizer::TOK_IGNORE_EMPTY 
| StringTokenizer::TOK_TRIM);
 
 // request new URL session
-const std::string aMessage = "request " + getId() + " " + _docURL + 
"\r\n";
+const std::string aMessage = "request " + getId() + " " + tokens[0] + 
"\r\n";
 Log::trace("MasterToBroker: " + aMessage.substr(0, 
aMessage.length()-2));
 Util::writeFIFO(LOOLWSD::BrokerWritePipe, aMessage);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98398] New: Online help missing Mac menu items

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

Bug ID: 98398
   Summary: Online help missing Mac menu items
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: limpingandr...@gmail.com

On articles such as : https://help.libreoffice.org/Common/Grid the description
refers to the menu system on a Windows OS, not a Mac (not sure how the Linux
system compares).

There is a note here: https://help.libreoffice.org/Common/Options, but that
does little good unless a person happens to stumble across that article.

As a long-time Wikipedian, I would be willing to make some updates but there's
no clear path on how one would go about doing that.

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


Re: [Libreoffice-qa] Contact from LibreOffice-Box website

2016-03-03 Thread Yousuf 'Jay' Philips

Hi all,

Yes many users on the Mac Appstore have mentioned that in their reviews.

Here is one example: As per the other review on printing-I am having the 
same challenge. landscape mode is stuck?? On the print preview page I 
clicked on ‘more’ then ‘brochure’—[I am a messer when computers don’t do 
what I think they should do] & it flipped the page. I still don’t know 
why the PDF button is on? I’ll play with it some more and re-review.


https://itunes.apple.com/us/app/libreoffice-vanilla/id921923693?mt=12

On 03/03/2016 08:04 PM, Joel Madero wrote:

To me it just sounds like a bugShould ask on the user list to see if
anyone knows tricks or workarounds but if it's a bug, they'll just have
to report it and wait (and it could be a long time before it's fixed).

On 03/03/2016 01:00 AM, klaus-jürgen weghorn ol wrote:

Hi all,
maybe someone can take care of this and aswer to her.


Am 02.03.2016 um 19:34 schrieb katiem...@aol.com:


   Salutation - Ms.
Name - margaret
Surname - hardy
Email - katiem...@aol.com
Your Text - in a desperate attempt to convert appleworks and
microsoft word excel files to my new mac i tried your product - it
works for some but not all.  the problem is that the print page shows
horizontal and vertical layouts but it only prints the horizontal
even though i check the vertical box.






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


___
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 70998] Termchange: Graphic/Picture -> Image

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

--- Comment #37 from gat  ---
I realize that some of these may not apply since they have been changed, but
Fedora doesn't have the latest version and at least one patch hasn't landed
outside of master from reading the comments. Also, some may not want to be
changed. I am pretty sure that some will want to be changed, though.

View → Toolbars → Image → Hover the mouse over the second item which is a
drop-down menu → Graphics mode
http://opengrok.libreoffice.org/xref/core/sw/source/uibase/utlui/attrdesc.src
line 308


File → Print... Ctrl+P → LibreOffice Writer → Pictures and other graphic
objects
http://opengrok.libreoffice.org/xref/core/sw/uiconfig/swriter/ui/printeroptions.ui
line 46


File → Printer settings… → Options… → Pictures and objects


Tools -> Customize... -> Keyboard -> Functions -> Category -> Graphic


Tools -> Customize... -> Keyboard -> Functions -> Category -> Format ->
Graphics mode


Tools -> Customize... -> Toolbars -> Toolbar -> Graphic Filter


Tools → Options… → LibreOffice →  Accessibility → Allow animated graphics


Tools → Options… → Load/Save → HTML Compatibility → Copy local graphics to
Internet


Tools → Options… → LibreOffice Writer → View → Graphics and objects


Tools → Options… → LibreOffice Writer → Print →  Pictures and objects


Tools → Options… → LibreOffice Writer/Web → View → Graphics and objects


Tools → Options… → LibreOffice Writer/Web → Print →  Pictures and objects

This is with Build ID 5.0.5.2-2.fc23 in LibreOffice Writer. Clearly, I became
lazy about tracking the code.

-- 
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 98308] #VALUE! error if I use only one $ character to fix cell.

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

--- Comment #2 from Andras  ---
Thank you for the prompt response. Actually I forgot that I use given files on
a Linux computer too. In addition, I created this files on Debian 8.3 and
currently the version of LibreOffice is 4.3.3.2 on it. I did a reinstall on
Windows and I erased registrymodifications.xcu on both computers as you advised
but it didn't work.
There is a different between the two LibreOffice what I can't change. That's
the "Detailed calculation settings" in Options/LibreOffice Calc/Formula. That's
Custom in the new Windows version and Default in Linux version. When I change
it and close than reopen LibreOffice that's returned to its original position.

-- 
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 35361] Support Apple Quick Look plugin (OS X feature)

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

--- Comment #65 from Marc Grober  ---
In sum, under LO5.1 under OSX 10.11 ods files appear properly in quicklook,
while odts do not.  Nor have I yet to see any image suggesting that odts work
properly under quicklook.

I would think that the uploaded image might serve as "independent
corroboration"?

-- 
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 35361] Support Apple Quick Look plugin (OS X feature)

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

--- Comment #64 from Marc Grober  ---
Created attachment 123217
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123217=edit
image of odt in quicklook (LO5.1 OSX 10.11)

Demonstration that the bug is still there

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


[Libreoffice-bugs] [Bug 98125] fileopen: Seem to work flawlessly. At some point it will freeze when opening a non recent file

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

--- Comment #9 from ronvarb...@yahoo.com ---
A non related issue is that after I killed it and started LinreOffice again, it
suggested to recover the file that was opened before the freeze. I refused ,
and it suggested to keep the version it had, or something to that effect. The
point is that it suggested to keep the file at D:\Documents. Which is only part
of the directory name. The directory name is Documents and Settings. I think
you should have enclose Documents and Settings within quotation marks:
"Documents and Settings".
It could be that it works under the cover. What I saw about the directory name
seem to me wrong.

-- 
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 98125] fileopen: Seem to work flawlessly. At some point it will freeze when opening a non recent file

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

--- Comment #8 from ronvarb...@yahoo.com ---
Few hours ago I reported I am a bit surprised it still didn't happen. Now it
did. And after the hang clicking the close window, red X at the right corner of
the window to choose the file produced the end program, not responding, End now
or Cancel, window.

-- 
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 98318] when I open 2 files in calc and 1 has a password , moving from files I see the box with password

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

--- Comment #5 from Piero  ---
Hi,

I have 3 spreadsheets protected by passwords and I see the password box of 2:

I move the cursor from spreadsheet A to B , I see the password box of A .

I move the cursor from spreadsheet B to c , I see the password box of B .


Piero

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


Re: Windows / font / text futures ...

2016-03-03 Thread Thorsten Behrens
Hi Michael,

you write:
>   Having looked at this heap; and worse - the two different heaps for
> Windows text rendering, and also the big pile of strange cross-platform
> issues with stacking diacritics, emojis etc. I'm pretty convinced that
> we cannot do a good job of consistent text shaping and/or rendering
> cross-platform while using the Windows font rendering infrastructure.
> 
Yeah, I suppose. But that alone won't fix the kind of issues you show
in your ascii art - as long as so much low-level layouting is still
happening in Writer (dx arrays, kashida filling etc).

>   While we could switch to DirectWrite on windows, which may solve some
> of our problems; this will be in itself disruptive.
> 
Incidentally - why that?

>   So - I believe that we should switch to using harfbuzz and freetype
> consistently everywhere. This would have the huge benefit of precise
> cross-platform font rendering and metric fidelity, give us a font and
> shaping stack that is fully introspectable, drop some legacy Windows API
> usage, and allow all development work and fixing on all platforms to
> share the same underlying code.
> 
I think that promise cannot be kept. Let's evaluate the merit of
switching to some truly great floss libraries based on other aspects -
you're not even getting consistent floating point math between
different CPUs, let alone different operating systems...

>   There will of course also be some corner-cases where we may simply not
> be able to replicate the tangled old layout behaviour - which is
> (anyway) inconsistent across platforms - but - I think this is a one-off
> risk that is well worth taking to get us to a fully consistent, Free
> Software rendering stack. It is interesting that Microsoft also used freetype
> for their Office / Mac rendering in the recent past =)
> 
Oh - got some reference for that? Since I guess for most complaints
about layouting problems I hear about, it's the different between MSO
and LibreOffice, rather than between LibreOffice on different
platforms. ;)

Cheers,

-- Thorsten


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: svgio/qa test/source

2016-03-03 Thread Xisco Fauli
 svgio/qa/cppunit/SvgImportTest.cxx |   12 
 test/source/primitive2dxmldump.cxx |5 -
 2 files changed, 16 insertions(+), 1 deletion(-)

New commits:
commit 31e037c348ef0e04393926891617fde1b0051a35
Author: Xisco Fauli 
Date:   Thu Mar 3 23:19:01 2016 +0100

SVGIO: Check height and width of polypolygoncolor

Change-Id: Ibc5844d4e4a89fae7bbc8d2b854384d0c433500f
Reviewed-on: https://gerrit.libreoffice.org/22883
Tested-by: Jenkins 
Reviewed-by: Xisco Faulí 

diff --git a/svgio/qa/cppunit/SvgImportTest.cxx 
b/svgio/qa/cppunit/SvgImportTest.cxx
index 365fb01..3ac20dd 100644
--- a/svgio/qa/cppunit/SvgImportTest.cxx
+++ b/svgio/qa/cppunit/SvgImportTest.cxx
@@ -116,6 +116,8 @@ void Test::checkRectPrimitive(Primitive2DSequence& 
rPrimitive)
 CPPUNIT_ASSERT (pDocument);
 
 assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "color", 
"#00cc00"); // rect background color
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", 
"height", "100"); // rect background height
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "width", 
"100"); // rect background width
 assertXPath(pDocument, "/primitive2D/transform/polypolygonstroke/line", 
"color", "#ff"); // rect stroke color
 assertXPath(pDocument, "/primitive2D/transform/polypolygonstroke/line", 
"width", "3"); // rect stroke width
 
@@ -174,6 +176,8 @@ void Test::testTdf87309()
 CPPUNIT_ASSERT (pDocument);
 
 assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "color", 
"#00");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", 
"height", "100");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "width", 
"100");
 }
 
 void Test::testFontsizeKeywords()
@@ -324,6 +328,8 @@ void Test::testTdf97543()
 CPPUNIT_ASSERT (pDocument);
 
 assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "color", 
"#00cc00");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", 
"height", "100");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "width", 
"100");
 }
 
 void Test::testRGBColor()
@@ -337,6 +343,8 @@ void Test::testRGBColor()
 CPPUNIT_ASSERT (pDocument);
 
 assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "color", 
"#646464");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", 
"height", "100");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "width", 
"100");
 }
 
 void Test::testRGBAColor()
@@ -364,7 +372,11 @@ void Test::testTdf97936()
 CPPUNIT_ASSERT (pDocument);
 
 assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[1]");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[1]", 
"height", "50");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[1]", 
"width", "50");
 assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[2]");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[2]", 
"height", "50");
+assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[2]", 
"width", "50");
 }
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
 
diff --git a/test/source/primitive2dxmldump.cxx 
b/test/source/primitive2dxmldump.cxx
index d1b2fcb..fbd0b99 100644
--- a/test/source/primitive2dxmldump.cxx
+++ b/test/source/primitive2dxmldump.cxx
@@ -113,7 +113,6 @@ void Primitive2dXmlDump::decomposeAndWrite(
 {
 const TransformPrimitive2D& rTransformPrimitive2D = 
dynamic_cast(*pBasePrimitive);
 rWriter.startElement("transform");
-//pTransformPrimitive2D->getTransformation()
 decomposeAndWrite(rTransformPrimitive2D.getChildren(), 
rWriter);
 rWriter.endElement();
 }
@@ -125,6 +124,10 @@ void Primitive2dXmlDump::decomposeAndWrite(
 
 rWriter.startElement("polypolygoncolor");
 rWriter.attribute("color", 
convertColorToString(rPolyPolygonColorPrimitive2D.getBColor()));
+const basegfx::B2DPolyPolygon 
aB2DPolyPolygon(rPolyPolygonColorPrimitive2D.getB2DPolyPolygon());
+const basegfx::B2DRange 
aB2DRange(aB2DPolyPolygon.getB2DRange());
+rWriter.attribute("height", aB2DRange.getHeight());
+rWriter.attribute("width", aB2DRange.getWidth());
 rWriter.startElement("polypolygon");
 
rWriter.content(basegfx::tools::exportToSvgD(rPolyPolygonColorPrimitive2D.getB2DPolyPolygon(),
 true, true, false));
 rWriter.endElement();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98318] when I open 2 files in calc and 1 has a password , moving from files I see the box with password

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

--- Comment #4 from Piero  ---
hi,
No I opened a spreadsheet with password and one without password.

When I move the cursor from the spreadsheet without password to that of
password I see the password box.

I opened 2 protected spreadsheets with passwords .

When I move the cursor from the first open spreadsheet to the second I see the
password box.

If I open 3 spreasheets  protected by password, I see the password box only of
the last opened spreadsheet .

I scanned 3 times with Windows Defender antivirus , but I could not find
anything.


Have nice day

Piero

-- 
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 98390] Crash when modifying minor grid

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

--- Comment #2 from Jacques Guilleron  ---
I forgot to precise my OS : Windows 7 Home

-- 
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 98390] Crash when modifying minor grid

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

Jacques Guilleron  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||guillero...@aol.com
 Ever confirmed|0   |1

--- Comment #1 from Jacques Guilleron  ---
Hi Laurent,

I reproduce with 
LO 5.1.0.3 (x64) Build ID: 5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737
CPU Threads: 2; OS Version: Windows 6.1; UI Render: default; 
Locale : fr-FR (fr_FR)
LO 5.1.0.0.beta1-buildfix1
Build ID: 13010a13177025f633c9b85adcb3edf6920e44e3
Threads 2; Ver: Windows 6.1; Render: default; 
but not with
LO 5.0.5.2 Build ID: 55b006a02d247b5f7215fc6ea0fde844b30035b3 Locale:fr-FR
(fr_FR)

-- 
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 98383] Listbox in a table of a form is no longer repositionable as in the old stable

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

--- Comment #5 from Stéphane Aulery  ---
Created attachment 123216
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123216=edit
Columns to drag and drop

-- 
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 98383] Listbox in a table of a form is no longer repositionable as in the old stable

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

--- Comment #4 from Stéphane Aulery  ---
Created attachment 123215
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123215=edit
Open and edit Formulaire1

-- 
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 98383] Listbox in a table of a form is no longer repositionable as in the old stable

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

--- Comment #3 from Stéphane Aulery  ---
1) Open the file
2) Edit form "Formulaire1"
3) Try to drag and drop the first column to right.

Nothing append

-- 
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 35361] Support Apple Quick Look plugin (OS X feature)

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

Joel Madero  changed:

   What|Removed |Added

 Status|REOPENED|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #63 from Joel Madero  ---
REOPENED is not the right status. Moving back to UNCONFIRMED for independent
confirmation that it's still an issue.

-- 
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: external/coinmp

2016-03-03 Thread David Ostrovsky
 external/coinmp/UnpackedTarball_coinmp.mk |1 +
 external/coinmp/osi_cuts_iterator.patch.0 |   12 
 2 files changed, 13 insertions(+)

New commits:
commit 7df498c828b36259397e2dd2769d99e7f30f7470
Author: David Ostrovsky 
Date:   Thu Mar 3 22:42:41 2016 +0100

Fix coinmp on MSVC 14.0

Iterator category tags carry information that can be used
to select the most efficient algorithms for the specific
requirement set that is implied by the category. OsiCuts
defines bidirectional category tag, but doesn't implement
operator--(). This is illegal: [1].

* [1] http://paste.openstack.org/show/489235

Change-Id: I68a6d297d5c33848c4b8a324e081c5118fd936a4
Reviewed-on: https://gerrit.libreoffice.org/22882
Reviewed-by: Michael Stahl 
Tested-by: Jenkins 

diff --git a/external/coinmp/UnpackedTarball_coinmp.mk 
b/external/coinmp/UnpackedTarball_coinmp.mk
index 468589b..98d54403 100644
--- a/external/coinmp/UnpackedTarball_coinmp.mk
+++ b/external/coinmp/UnpackedTarball_coinmp.mk
@@ -18,6 +18,7 @@ $(eval $(call gb_UnpackedTarball_fix_end_of_line,coinmp,\
 $(eval $(call gb_UnpackedTarball_set_patchlevel,coinmp,0))
 
 $(eval $(call gb_UnpackedTarball_add_patches,coinmp,\
+   external/coinmp/osi_cuts_iterator.patch.0 \
external/coinmp/android.build.patch.1 \
external/coinmp/no-binaries.patch.1 \
external/coinmp/werror-format-security.patch.0 \
diff --git a/external/coinmp/osi_cuts_iterator.patch.0 
b/external/coinmp/osi_cuts_iterator.patch.0
new file mode 100755
index 000..42ed5af
--- /dev/null
+++ b/external/coinmp/osi_cuts_iterator.patch.0
@@ -0,0 +1,12 @@
+diff -ru coinmp.orig/Osi/src/Osi/OsiCuts.hpp coinmp/Osi/src/Osi/OsiCuts.hpp
+--- Osi/src/Osi/OsiCuts.hpp2011-06-13 17:08:11.0 +0200
 Osi/src/Osi/OsiCuts.hpp2016-03-03 22:21:04.669838200 +0100
+@@ -74,7 +74,7 @@
+ class const_iterator {
+   friend class OsiCuts;
+   public:
+-typedef std::bidirectional_iterator_tag iterator_category;
++typedef std::forward_iterator_tag iterator_category;
+ typedef OsiCut* value_type;
+ typedef size_t difference_type;
+ typedef OsiCut ** pointer;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96754] OSX: CALC and IMPRESS preview icons not working in Finder quicklook function

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

--- Comment #10 from b...@mail.pf ---
Hi,

I reopened bug #35361

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

Regards

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


[Libreoffice-bugs] [Bug 35361] Support Apple Quick Look plugin (OS X feature)

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

--- Comment #62 from b...@mail.pf ---
QuickLook is still unsupported in LibreOffice, even on Mac OS X 10.11.3.

-- 
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 42082] [META] Make LibreOffice shine and glow on OS X

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

Bug 35361 Summary: Support Apple Quick Look plugin (OS X feature)
https://bugs.documentfoundation.org/show_bug.cgi?id=35361

   What|Removed |Added

 Status|RESOLVED|REOPENED
 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 35361] Support Apple Quick Look plugin (OS X feature)

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

b...@mail.pf changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---

--- Comment #61 from b...@mail.pf ---
QuickLook is still unsupported in LibreOffice, even on Mac OS X 10.11.

-- 
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 98391] word and character count dont work in the version 5.0 and 5.1 except .odt

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

Cor Nouws  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||c...@nouenoff.nl
 Resolution|--- |DUPLICATE

--- Comment #3 from Cor Nouws  ---
(In reply to MM from comment #1)
> Dup of bug 94570 ?

I think so yes.

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

-- 
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 98329] Bad Printing Graphics - this version only

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

--- Comment #5 from pmb  ---
I seem to have lost some comments so this may be a duplicate.

Thank You for the explanation. I found it.

On opening, both boxes were unchecked and the GL status was disabled. Trying
different things to force a change came in negative. Nothing I did changed
anything on my Kubuntu 14.04.4 up to date.

It is not a printer driver issue because the exported .pdf files show the
corrupted graphic.

The attached graphic shows the boxes checked, The GL status was always
disabled.

Hope this 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-bugs] [Bug 98397] Fira sans “semibold” works but isn’t saved.

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

synthview  changed:

   What|Removed |Added

 OS|All |Mac OS X (All)

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


[Libreoffice-bugs] [Bug 98397] New: Fira sans “semibold” works but isn’t saved.

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

Bug ID: 98397
   Summary: Fira sans “semibold” works but isn’t saved.
   Product: LibreOffice
   Version: 5.1.1.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: i...@synthview.com

When setting a paragraph style: font > typeface
If I set “SemiBold” for the font family “Fira sans”, after saving, closing and
reopening my file, the style passed to “Regular”.

-- 
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 98374] Correct the list of disabled shortcut keys per OS

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

--- Comment #5 from V Stuart Foote  ---
(In reply to Yousuf (Jay) Philips from comment #4)
> (In reply to V Stuart Foote from comment #3)
> > Nope they are not. Some mix of the vcl defined (keycod.cxx) and reserved
> > (svapp.cxx) short-cuts do not function correctly inside the modules, nor the
> > StartCenter and especially troublesome not from the main menu. 
> > 
> > For example:
> > 
> > bug 92516 - Q_MOD1, (and the X_MOD2 accelerator)
> > bug 92866 - Q_MOD1
> > bug 97511 - Q_MOD1
> > bug 95410 - S_MOD1
> 
> None of those are reserved keys in LibreOffice, those are assigned keys. I
> can go into the keyboard customization dialog and change Ctrl + Q or Ctrl +
> S.

Right, but the function of those core vcl assignments including handling the
reserved keys are what has become unreliable. It seems they are being
overridden by conflicting XCU assignments (l18n and "widget-du-jour") and as a
result we now have incorrectly functioning menus, dialogs, and actions in
modules throughout the UI.  

Believe that pretty much anywhere a short-cut key is not functioning correctly
it is either because the assignment in vcl has been ignored or that assignment
is no longer instrumented correctly to perform the intended action.

What I'm asking for is to get a better handle on why. And then as the OS
reserved actions are reworked and included to vcl, to make sure they get
handled correctly elsewhere.

-- 
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 98396] table properties > disabling allow table to split not saved in .doc and .docx format

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

synthview  changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All

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


[Libreoffice-bugs] [Bug 98329] Bad Printing Graphics - this version only

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

--- Comment #4 from pmb  ---
Created attachment 123214
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123214=edit
LO Options View with opengl boxes checked

-- 
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 98396] table properties > disabling allow table to split not saved in .doc and .docx format

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

synthview  changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
 OS|All |Mac OS X (All)

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


[Libreoffice-bugs] [Bug 98396] New: table properties > disabling allow table to split not saved in .doc and .docx format

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

Bug ID: 98396
   Summary: table properties > disabling allow table to split not
saved in .doc and .docx format
   Product: LibreOffice
   Version: 5.1.1.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: i...@synthview.com

Disabling “Allow Table to split across pages and columns” works, but the
parameter isn’t saved. Each time I reopen my file this option is enabled 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


Tamás Bunth license statement

2016-03-03 Thread Bunth Tamás
 All of my past & future contributions to LibreOffice may be
   licensed under the MPLv2/LGPLv3+ dual license.

Tamás Bunth
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 98125] fileopen: Seem to work flawlessly. At some point it will freeze when opening a non recent file

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

--- Comment #7 from ronvarb...@yahoo.com ---
I had 5.1.1. Unfortunately, I also have http://portableapps.com/ installed,
which I prefer. I used it for for a long time. I update the
http://portableapps.com/ version when it has new ones. The problem began with
some portableapps version. Following the suggestion at
http://portableapps.com/node/53825, I installed upstream == yours 5.1.1. After
some time, when the problem occurs 2 or 3 times, I removed your version, and
returned to the portableapps.com one. I returned to Version: 5.1.0.3 Build ID:
5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737
CPU Threads: 1; OS Version: Windows 5.1; UI Render: default; Locale: en-US
(en_US). I had it before installing yours version. When I run your version, it
was installed in parallel, and I had not use it. Note that portableapps apps
are meant to be install on a portable device like a USB disk on key, so it
doesn't keep information in the registry, or similar intrusive methods.
strangely, before installing your version, I had Build ID:
5e3e00a007d9b3b6efb6797a8b8e57b51ab1f737 hangs in the same manner that is
described in the report. Though I think I am again running it more time then I
expected the freeze to occur, it still hasn't hang.

-- 
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-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98360

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Depends on||97898

-- 
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 98125] fileopen: Seem to work flawlessly. At some point it will freeze when opening a non recent file

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

ronvarb...@yahoo.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 98125] fileopen: Seem to work flawlessly. At some point it will freeze when opening a non recent file

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

--- Comment #6 from ronvarb...@yahoo.com ---
I mean after LibreOffice runs for a few days, not shutting down neither the
computer of LibreOffice, nor LibreOffice. I manage to run XP SP3 for weeks,
perhahs more, without shutting it down. And the shutdown are intended, not a
crash of XP. And LibreOffice runs for days flawlessly. Most of the time
LibreOffice sits idle and _minimized. From time to time I maximize it, edit a
file, or 3, for a few minutes, and _minimizes it again. My edits of each file
are usually short, and the files themselves are short too. I would say that 65%
of the files I edit within a few days are at the recent files list. From time
to time I have to use open, and browse the file system.

-- 
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 97898] CMIS: "generic input / output error" when attempting to access Google Drive

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

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC||philip...@hotmail.com
 Blocks||98360
Summary|Unable to enter credentials |CMIS: "generic input /
   |for Google Drive, Onedrive  |output error" when
   |and Alfresco|attempting to access Google
   ||Drive

--- Comment #10 from Yousuf (Jay) Philips  ---
So i guess i should have been clearer with my comment :D. For those who have
2-factor authentication enabled, our Google Drive implementation wont be able
to work. The One Drive implementation isnt functional, as mentioned by the
developer who implemented it (bug 62437 Comment 15). I dont have any ideas
regarding Alfresco Cloud, but its disabled due to missing credentials.

http://opengrok.libreoffice.org/xref/core/config_host/config_oauth2.h.in#27

So i just tested Google Drive on Windows and it worked fine, so you'll need to
provide more details on how the error showed up.

Version: 5.1.1.1 (x64)
Build ID: c43cb650e9c145b181321ea547d38296db70f36e
CPU Threads: 2; OS Version: Windows 6.1; UI Render: default; 
Locale: en-US (en_US)

-- 
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-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98360

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Depends on||98395

-- 
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 98395] New: Remote File dialog showing wrong details in columns

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

Bug ID: 98395
   Summary: Remote File dialog showing wrong details in columns
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 98360

Created attachment 123213
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123213=edit
screenshot

Steps:
1) Open Remote File dialog
2) Log into Google Drive
3) Notice that the Size column is showing Type details and the Date Modified
column is showing size details.

Regression as release notes show this image
-https://wiki.documentfoundation.org/File:RemoteFilesDialog.png

Version: 5.1.1.1 (x64)
Build ID: c43cb650e9c145b181321ea547d38296db70f36e
CPU Threads: 2; OS Version: Windows 6.1; UI Render: default; 
Locale: en-US (en_US)

-- 
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 98318] when I open 2 files in calc and 1 has a password , moving from files I see the box with password

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

--- Comment #3 from m.a.riosv  ---
Could be possible that in some way you are open twice encrypted file, and the
box password is for open the second.

-- 
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' - vcl/qa

2016-03-03 Thread Michael Stahl
 vcl/qa/cppunit/blocklistparsertest.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bba00901f55bfd4fa476667baaf2b2e7e1f58762
Author: Michael Stahl 
Date:   Thu Mar 3 22:29:43 2016 +0100

vcl: fix the MSVC build

Change-Id: I3607e90eb819a2afc4bc58072cdac74fb559bacb

diff --git a/vcl/qa/cppunit/blocklistparsertest.cxx 
b/vcl/qa/cppunit/blocklistparsertest.cxx
index 66a4f70..d5357e7 100644
--- a/vcl/qa/cppunit/blocklistparsertest.cxx
+++ b/vcl/qa/cppunit/blocklistparsertest.cxx
@@ -39,7 +39,7 @@ void BlocklistParserTest::testParse()
 WinBlocklistParser aBlocklistParser(getURLFromSrc("vcl/qa/cppunit/") + 
"test_blocklist_parse.xml", aDriveInfos);
 aBlocklistParser.parse();
 
-CPPUNIT_ASSERT_EQUAL(20U, aDriveInfos.size());
+CPPUNIT_ASSERT_EQUAL(static_cast(20), aDriveInfos.size());
 
 size_t i = 0;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97597] FILEOPEN: XLSX file on server opens with some blank tab pages

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

--- Comment #6 from m.a.riosv  ---
(In reply to Cor Nouws from comment #4)
> Hi Raal, Miguel
> 
> (In reply to m.a.riosv from comment #1)
.
> > view options for LO/calc doesn't change?
> 
> What options are you thinking about?
> 
I think I was thinking about OpenGL, lately it's another option to verify.
Better I don't ask about a clean profile. :)

-- 
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 98374] Correct the list of disabled shortcut keys per OS

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

--- Comment #4 from Yousuf (Jay) Philips  ---
(In reply to V Stuart Foote from comment #3)
> Nope they are not. Some mix of the vcl defined (keycod.cxx) and reserved
> (svapp.cxx) short-cuts do not function correctly inside the modules, nor the
> StartCenter and especially troublesome not from the main menu. 
> 
> For example:
> 
> bug 92516 - Q_MOD1, (and the X_MOD2 accelerator)
> bug 92866 - Q_MOD1
> bug 97511 - Q_MOD1
> bug 95410 - S_MOD1

None of those are reserved keys in LibreOffice, those are assigned keys. I can
go into the keyboard customization dialog and change Ctrl + Q or Ctrl + S.

-- 
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 36446] EDITING allow permanent per document "Ignore All" word list

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

--- Comment #13 from Dave Yost  ---
Aaron, right on!

-- 
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 98387] WRITER: switching cursor from a comment to text focus on Fields window

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

Orwel  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from Orwel  ---
Alright:) I just tought it was easier to make this 3 simple steps on a blank
document rather than download a new one:) In other cases I always attach the
file.

-- 
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 98270] Add 'Search in all sheets' option to Find toolbar

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

--- Comment #7 from Yousuf (Jay) Philips  ---
(In reply to GerardF from comment #6)
> See this discussion (about OpenOffice) in the forum :
> https://forum.openoffice.org/en/forum/viewtopic.php?f=106=80312
> 
> I'm not the only one.

Then the correct approach would be that the dialog should remember the state of
all options and whether the 'More Options' was open or not.

-- 
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 98387] WRITER: switching cursor from a comment to text focus on Fields window

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

--- Comment #3 from Orwel  ---
Created attachment 123212
  --> https://bugs.documentfoundation.org/attachment.cgi?id=123212=edit
test file

-- 
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 97696] FILEOPEN: MATE login session crashes when opening document in Calc

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

Jeenu Viswambharan  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Jeenu Viswambharan  ---
Just tested the release candidate, and it still makes the session crash.

My post on MATE forums has't received any answers yet:
http://forums.mate-desktop.org/viewtopic.php?f=7=3680=11436

I launched soffice from a tmux session, to which I attached after logging in
again after the crash. The last message I could see there was 'X IO Error'.

-- 
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: vcl/qa

2016-03-03 Thread Michael Stahl
 vcl/qa/cppunit/blocklistparsertest.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 70fd98f16fea0afa7b7943764b0934064dbd2c43
Author: Michael Stahl 
Date:   Thu Mar 3 21:53:59 2016 +0100

vcl: type inference is beyond MSVC's limited abilities

Change-Id: I3e6c84c1f49e9523e881ce12dbb2f7e0d1df956e

diff --git a/vcl/qa/cppunit/blocklistparsertest.cxx 
b/vcl/qa/cppunit/blocklistparsertest.cxx
index b47b518..3de95f0 100644
--- a/vcl/qa/cppunit/blocklistparsertest.cxx
+++ b/vcl/qa/cppunit/blocklistparsertest.cxx
@@ -39,8 +39,8 @@ void BlocklistParserTest::testParse()
 WinBlocklistParser aBlocklistParser(getURLFromSrc("vcl/qa/cppunit/") + 
"test_blocklist_parse.xml", aDriveInfos);
 aBlocklistParser.parse();
 
-auto const n = aDriveInfos.size();
-CPPUNIT_ASSERT_EQUAL(static_cast(20), n);
+size_t const n = aDriveInfos.size();
+CPPUNIT_ASSERT_EQUAL(static_cast(20), n);
 
 size_t i = 0;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/cp-4.4-11'

2016-03-03 Thread Andras Timar
Tag 'cp-4.4-11' created by Andras Timar  at 
2016-03-03 21:08 -0800

cp-4.4-11

Changes since cp-4.4-10-70:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/cp-4.4-11'

2016-03-03 Thread Andras Timar
Tag 'cp-4.4-11' created by Andras Timar  at 
2016-03-03 21:08 -0800

cp-4.4-11

Changes since cp-4.4-branch-point:
Andras Timar (1):
  tdf#86301 fix hids of startcenter

---
 source/text/shared/guide/startcenter.xhp |   27 +--
 1 file changed, 13 insertions(+), 14 deletions(-)
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Changes to 'refs/tags/cp-4.4-11'

2016-03-03 Thread Christian Lohmaier
Tag 'cp-4.4-11' created by Andras Timar  at 
2016-03-03 21:08 -0800

cp-4.4-11

Changes since cp-4.4-10-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/cp-4.4-11'

2016-03-03 Thread Olivier R
Tag 'cp-4.4-11' created by Andras Timar  at 
2016-03-03 21:08 -0800

cp-4.4-11

Changes since cp-4.4-branch-point-6:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98394] New: Cannot open odt or any other files except in word pad in Windows 7 since downloading LibreOffice update 5

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

Bug ID: 98394
   Summary: Cannot open odt or any other files except in word pad
in Windows 7 since downloading LibreOffice update 5
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: doreen.abarn...@gmail.com

Since downloading the update LibreOffice five to my Windows 7 system I now
cannot open any write files in any folders except by using Word PAD. A message
comes up saying that the file needs elevation.  Up till now very happy with
Libre now its driving me nuts. I even tried taking update off and
re-downloading.  Help!!!

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


[Libreoffice-bugs] [Bug 98046] OpenGL transitions mostly broken on intel (Sandybridge) graphics

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

Roland Taylor  changed:

   What|Removed |Added

Version|5.1.0.3 release |5.1.1.1 rc

--- Comment #10 from Roland Taylor  ---
OpenGL is enabled again - turns out that was simply an issue with a driver
mismatch. I'm still having this issue however.

I tried purging all libreoffice packages and reinstalling, but the problem
persists. All of the old OpenGL animations fail to work, along with one or two
of the new animations.

Also, the .cache folder is empty, so no opengl log :/.

I don't know what more information I can provide at this point.

-- 
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 98391] word and character count dont work in the version 5.0 and 5.1 except .odt

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

Pedro  changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 CC||pedl...@gmail.com
 Ever confirmed|0   |1

--- Comment #2 from Pedro  ---
Confirmed under Windows 10 x64 running LibreOffice Version: 5.1.1.3 (x64)
Build ID: 89f508ef3ecebd2cfb8e1def0f0ba9a803b88a6d
CPU Threads: 4; OS Version: Windows 6.19; UI Render: default; 
Locale: pt-PT (pt_PT)

This bug affects text files such as DOCX, DOC, RTF and even plain txt. The only
format where word and character count works is ODT.

This feature worked perfectly in branch 4.4 and previous, so it is a
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-commits] core.git: 2 commits - vcl/source

2016-03-03 Thread Caolán McNamara
 vcl/source/gdi/pdfwriter_impl.cxx |   21 ++---
 1 file changed, 6 insertions(+), 15 deletions(-)

New commits:
commit 5f6065f980756fdb81c7018bedbb7f54e2b8214a
Author: Caolán McNamara 
Date:   Thu Mar 3 20:44:47 2016 +

coverity#1355126 Logically dead code

maybe we should be using more precision, but we haven't
been in the past

Change-Id: Icf1e1e95099c783435e04f60d8ade755a8d2d4d5

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index 746636a..0a4d595 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -845,17 +845,14 @@ static void appendFixedInt( sal_Int32 nValue, 
OStringBuffer& rBuffer )
 rBuffer.append( '-' );
 nValue = -nValue;
 }
-sal_Int32 nFactor = 10;
-sal_Int32 nInt = nValue / nFactor;
+const sal_Int32 nFactor = 10;
+const sal_Int32 nInt = nValue / nFactor;
 rBuffer.append( nInt );
 sal_Int32 nDecimal  = nValue % nFactor;
-if( nDecimal )
+if (nDecimal)
 {
-rBuffer.append( '.' );
-// omit trailing zeros
-while( (nDecimal % 10) == 0 )
-nDecimal /= 10;
-rBuffer.append( nDecimal );
+rBuffer.append('.');
+rBuffer.append(nDecimal);
 }
 }
 
commit cd5cc12d4330d68d0a233a82eda30e983ce202a4
Author: Caolán McNamara 
Date:   Thu Mar 3 20:42:52 2016 +

nLog10Divisor is 1

Change-Id: I8820d435e2f26d04ac3eccb710383399d050e020

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index 6911134..746636a 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -845,23 +845,17 @@ static void appendFixedInt( sal_Int32 nValue, 
OStringBuffer& rBuffer )
 rBuffer.append( '-' );
 nValue = -nValue;
 }
-sal_Int32 nFactor = 1, nDiv = nLog10Divisor;
-while( nDiv-- )
-nFactor *= 10;
-
-sal_Int32 nInt  = nValue / nFactor;
+sal_Int32 nFactor = 10;
+sal_Int32 nInt = nValue / nFactor;
 rBuffer.append( nInt );
-if( nFactor > 1 )
+sal_Int32 nDecimal  = nValue % nFactor;
+if( nDecimal )
 {
-sal_Int32 nDecimal  = nValue % nFactor;
-if( nDecimal )
-{
-rBuffer.append( '.' );
-// omit trailing zeros
-while( (nDecimal % 10) == 0 )
-nDecimal /= 10;
-rBuffer.append( nDecimal );
-}
+rBuffer.append( '.' );
+// omit trailing zeros
+while( (nDecimal % 10) == 0 )
+nDecimal /= 10;
+rBuffer.append( nDecimal );
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98391] word and character count dont work in the version 5.0 and 5.1 except .odt

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

--- Comment #1 from MM  ---
Dup of bug 94570 ?

-- 
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 36446] EDITING allow permanent per document "Ignore All" word list

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

--- Comment #12 from Aaron Digulla  ---
Another use case: As an author of short SciFi stories, I use a lot of words
which are in no dictionary and which I use only once or twice, so adding them
to a real dictionary would be a pain.

My workaround is to create a section at the top where I collect all these
words. When I open the document, I can quickly ignore them all again. But that
doesn't work for the "ignore once" times (like when I want to express that
someone slurs as in "shatishfacshion").

Extra UI goodies: A dialog which lists all "ignore all" words (so I can
un-ignore them again) plus a search option which finds the "ignore once" words.

-- 
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 80414] SPELL: Save ignored words within the document

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

--- Comment #2 from Aaron Digulla  ---
This is a duplicate of Bug 36446 - EDITING allow permanent per document "Ignore
All" word list (edit)

-- 
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 92538] EDITING: PostgreSQL direct connection - Default for Text isn't CharacterType of PostgreSQL

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

--- Comment #8 from Lionel Elie Mamane  ---
Actually, not that I look at it more closely, it looks like the alphabetical
sort is done by the driver, and LibreOffice just takes the first (of the right
general type category: integer, text, ...) in the order returned by the driver.

So by manipulating the sort order in the driver, it looks like we can choose
the defaults. It looks like the driver already forces "int4" to be the default
for Integer by forcing it to be the first Integer in the list.

I'm testing that and coming back. See you tomorrow :)

-- 
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 98374] Correct the list of disabled shortcut keys per OS

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

--- Comment #3 from V Stuart Foote  ---
(In reply to Yousuf (Jay) Philips from comment #2)

> The reserved shortcut keys are being honored on Windows, Linux, and Mac,
> though on Mac, their HIG has suggested alternative shortcut keys for some of
> them.
> 

Nope they are not. Some mix of the vcl defined (keycod.cxx) and reserved
(svapp.cxx) short-cuts do not function correctly inside the modules, nor the
StartCenter and especially troublesome not from the main menu. 

For example:

bug 92516 - Q_MOD1, (and the X_MOD2 accelerator)
bug 92866 - Q_MOD1
bug 97511 - Q_MOD1
bug 95410 - S_MOD1

IMHO it would be ill advised to go changing things until it can be determined
where and why vcl and the key handling mechanisms have diverged, and get that
all back under control. Once that is stable--adjusting to the OS HIG would make
sense, but not before.

-- 
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 98270] Add 'Search in all sheets' option to Find toolbar

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

--- Comment #6 from GerardF  ---
See this discussion (about OpenOffice) in the forum :
https://forum.openoffice.org/en/forum/viewtopic.php?f=106=80312

I'm not the only one.

"Eliminate More Options in this dialog. I always have to expand the dialog
since it is easy to forget which options might have been preserved from a
previous Find & Replace"

-- 
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 98338] EDITING cut/paste of relative reference to cell in other document changes referenced cell

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

--- Comment #5 from Joel Madero  ---
(In reply to Tilman Vogel from comment #4)
> Ok, don't want to go too far OT but strictly speaking if I do what I always
> do to move a formula without changing its result and all over sudden,
> because of a very special detail of the formula, that workflow breaks, it
> quite profoundly prevents high quality work in my opinion.

Yeah breaking workflow isn't enough to make it "preventing high quality work" -
so long as there is a way to get it done (i.e., there is a workaround/different
workflow) then it's minor ("can slow down . . . not prevent...")  then it's
minor :)


> Anyway, you know better how to classify issues in this project - just to
> clarify why I wondered.

:) Always happy to see users interested in how things are done!
> 
> And now, I hope this is interesting enough to get fixed!

Indeed, just don't hold your breath :) There are several thousand bug reports,
just a few dozen really active developersthe job they do is truly
incredible

-- 
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 98270] Add 'Search in all sheets' option to Find toolbar

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

--- Comment #5 from GerardF  ---
(In reply to Yousuf (Jay) Philips from comment #4)

> The more advanced features (e.g. regular expression) and features not
> commonly changed (e.g. search direction) should be hidden by default from
> the novice user.

Most of these options (may be all) are remembered, so I need to click on "more
options" each time I hit Ctrl+H to check what options were use last time and
still in use.

It is near impossible to use Find & Replace without opening the option dialog.

-- 
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 98338] EDITING cut/paste of relative reference to cell in other document changes referenced cell

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

--- Comment #4 from Tilman Vogel  ---
Ok, don't want to go too far OT but strictly speaking if I do what I always do
to move a formula without changing its result and all over sudden, because of a
very special detail of the formula, that workflow breaks, it quite profoundly
prevents high quality work in my opinion.

Anyway, you know better how to classify issues in this project - just to
clarify why I wondered.

And now, I hope this is interesting enough to get 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 98046] OpenGL transitions mostly broken on intel (Sandybridge) graphics

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

Beluga  changed:

   What|Removed |Added

Version|5.1.1.1 rc  |5.1.0.3 release

--- Comment #9 from Beluga  ---
No need to change version.

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