[Libreoffice-bugs] [Bug 91183] Sidebar icons are too big!

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91183

--- Comment #2 from Jeehyun jeeh...@mailbox.org ---
OK. I mean 4 big icons on far right side.
Properties, Styles, Image, and Navigator icon.
They have too much room in narrow laptop display and cannot be deleted.
I remember there was styles formatting pane but it is gone in new version.
So I cannot use that instead of sidebar.

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


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

2015-05-10 Thread Tomaž Vajngerl
 cui/source/tabpages/tabstpge.cxx |   12 
 include/svtools/ruler.hxx|   31 +-
 svtools/source/control/ruler.cxx |  590 +++
 svx/source/dialog/svxruler.cxx   |2 
 4 files changed, 318 insertions(+), 317 deletions(-)

New commits:
commit 0617f87cddb2154b8d03380f0b20ecd09687fb1c
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Mon May 11 13:55:59 2015 +0900

refactor Ruler to use RenderContext

Change-Id: Ic4c57e161419a9b185b2c5ee8e8b79d3da9e4a7e

diff --git a/cui/source/tabpages/tabstpge.cxx b/cui/source/tabpages/tabstpge.cxx
index 5aee6ef..f16ca09 100644
--- a/cui/source/tabpages/tabstpge.cxx
+++ b/cui/source/tabpages/tabstpge.cxx
@@ -85,14 +85,14 @@ void FillUpWithDefTabs_Impl( long nDefDist, SvxTabStopItem 
rTabs )
 
 // class TabWin_Impl -
 
-void TabWin_Impl::Paint( vcl::RenderContext /*rRenderContext*/, const 
Rectangle )
+void TabWin_Impl::Paint(vcl::RenderContext rRenderContext, const Rectangle)
 {
 // Paint tabulators
-Point aPnt;
-Size aSize = GetOutputSizePixel();
-aPnt.X() = aSize.Width() / 2;
-aPnt.Y() = aSize.Height() / 2;
-Ruler::DrawTab( this, GetSettings().GetStyleSettings().GetFontColor(), 
aPnt, nTabStyle );
+Point aPoint;
+Size aSize = rRenderContext.GetOutputSizePixel();
+aPoint.X() = aSize.Width() / 2;
+aPoint.Y() = aSize.Height() / 2;
+Ruler::DrawTab(rRenderContext, 
rRenderContext.GetSettings().GetStyleSettings().GetFontColor(), aPoint, 
nTabStyle);
 }
 
 // class SvxTabulatorTabPage -
diff --git a/include/svtools/ruler.hxx b/include/svtools/ruler.hxx
index f9fa6a3..537aa3b 100644
--- a/include/svtools/ruler.hxx
+++ b/include/svtools/ruler.hxx
@@ -667,22 +667,27 @@ private:
 SVT_DLLPRIVATE void ImplVDrawRect( long nX1, long nY1, long nX2, long nY2 
);
 SVT_DLLPRIVATE void ImplVDrawText( long nX, long nY, const OUString 
rText, long nMin = LONG_MIN, long nMax = LONG_MAX );
 
-SVT_DLLPRIVATE void ImplDrawTicks( long nMin, long nMax, long nStart, long 
nVirTop, long nVirBottom );
-SVT_DLLPRIVATE void ImplDrawBorders( long nMin, long nMax, long nVirTop, 
long nVirBottom );
-SVT_DLLPRIVATE void ImplDrawIndent( const Polygon rPoly, sal_uInt16 
nStyle, bool bIsHit = false );
-SVT_DLLPRIVATE void ImplDrawIndents( long nMin, long nMax, long nVirTop, 
long nVirBottom );
-SVT_DLLPRIVATE void ImplDrawTab( OutputDevice* pDevice, const Point rPos, 
sal_uInt16 nStyle );
-SVT_DLLPRIVATE void ImplDrawTabs( long nMin, long nMax, long nVirTop, long 
nVirBottom );
+SVT_DLLPRIVATE void ImplDrawTicks(vcl::RenderContext rRenderContext,
+  long nMin, long nMax, long nStart, long 
nVirTop, long nVirBottom);
+SVT_DLLPRIVATE void ImplDrawBorders(vcl::RenderContext rRenderContext,
+long nMin, long nMax, long nVirTop, 
long nVirBottom);
+SVT_DLLPRIVATE void ImplDrawIndent(vcl::RenderContext rRenderContext,
+   const Polygon rPoly, sal_uInt16 
nStyle, bool bIsHit = false);
+SVT_DLLPRIVATE void ImplDrawIndents(vcl::RenderContext rRenderContext,
+long nMin, long nMax, long nVirTop, 
long nVirBottom);
+SVT_DLLPRIVATE void ImplDrawTab(vcl::RenderContext rRenderContext, const 
Point rPos, sal_uInt16 nStyle);
+SVT_DLLPRIVATE void ImplDrawTabs(vcl::RenderContext rRenderContext,
+ long nMin, long nMax, long nVirTop, long 
nVirBottom);
 
 using Window::ImplInit;
 SVT_DLLPRIVATE void ImplInit( WinBits nWinBits );
 SVT_DLLPRIVATE void ImplInitSettings( bool bFont, bool bForeground, bool 
bBackground );
 SVT_DLLPRIVATE void ImplCalc();
-SVT_DLLPRIVATE void ImplFormat();
+SVT_DLLPRIVATE void ImplFormat(vcl::RenderContext rRenderContext);
 SVT_DLLPRIVATE void ImplInitExtraField( bool bUpdate );
-SVT_DLLPRIVATE void ImplInvertLines( bool bErase = false );
-SVT_DLLPRIVATE void ImplDraw();
-SVT_DLLPRIVATE void ImplDrawExtra( bool bPaint = false );
+SVT_DLLPRIVATE void ImplInvertLines(vcl::RenderContext rRenderContext, 
bool bErase = false);
+SVT_DLLPRIVATE void ImplDraw(vcl::RenderContext rRenderContext);
+SVT_DLLPRIVATE void ImplDrawExtra(vcl::RenderContext rRenderContext, bool 
bPaint = false);
 SVT_DLLPRIVATE void ImplUpdate( bool bMustCalc = false );
 
 using Window::ImplHitTest;
@@ -713,7 +718,7 @@ public:
 virtual voidMouseButtonDown( const MouseEvent rMEvt ) SAL_OVERRIDE;
 virtual voidMouseMove( const MouseEvent rMEvt ) SAL_OVERRIDE;
 virtual voidTracking( const TrackingEvent rTEvt ) SAL_OVERRIDE;
-virtual voidPaint( vcl::RenderContext rRenderContext, const 
Rectangle rRect ) SAL_OVERRIDE;
+virtual voidPaint(vcl::RenderContext rRenderContext, const Rectangle 
rRect) 

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

2015-05-10 Thread Tomaž Vajngerl
 svtools/inc/roadmap.hxx|  126 +--
 svtools/source/control/roadmap.cxx | 1245 ++---
 2 files changed, 667 insertions(+), 704 deletions(-)

New commits:
commit 71c561740d3a11081c7737376948212fb0937fe4
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Mon May 11 12:25:55 2015 +0900

refactor Roadmap to use RenderContext, some cleanup

Change-Id: I4750c17ae7110b0102ebdd141a31ab2a52c4e774

diff --git a/svtools/inc/roadmap.hxx b/svtools/inc/roadmap.hxx
index 412bc4a..a4e9431 100644
--- a/svtools/inc/roadmap.hxx
+++ b/svtools/inc/roadmap.hxx
@@ -25,100 +25,90 @@
 
 #include svtools/hyperlabel.hxx
 
-
-
-
 class Bitmap;
 
 namespace svt
 {
 
+struct RoadmapTypes
+{
+public:
+typedef sal_Int16 ItemId;
+typedef sal_Int32 ItemIndex;
+};
 
-struct RoadmapTypes
-{
-public:
-typedef sal_Int16 ItemId;
-typedef sal_Int32 ItemIndex;
-};
-
-class RoadmapImpl;
-class RoadmapItem;
-
-
-//= Roadmap
-
-class SVT_DLLPUBLIC ORoadmap : public Control, public RoadmapTypes
-{
-protected:
-RoadmapImpl*m_pImpl;
-// Window overridables
-voidPaint( vcl::RenderContext rRenderContext, const 
Rectangle _rRect ) SAL_OVERRIDE;
-voidimplInit();
-
-public:
-ORoadmap( vcl::Window* _pParent, WinBits _nWinStyle = 0 );
-virtual ~ORoadmap( );
-virtual void dispose() SAL_OVERRIDE;
+class RoadmapImpl;
+class RoadmapItem;
 
-voidSetRoadmapBitmap( const BitmapEx maBitmap, bool 
_bInvalidate = true );
+class SVT_DLLPUBLIC ORoadmap : public Control, public RoadmapTypes
+{
+protected:
+RoadmapImpl*m_pImpl;
+// Window overridables
+voidPaint(vcl::RenderContext rRenderContext, const Rectangle 
_rRect) SAL_OVERRIDE;
+voidimplInit(vcl::RenderContext rRenderContext);
 
-voidEnableRoadmapItem( ItemId _nItemId, bool _bEnable, 
ItemIndex _nStartIndex = 0  );
+public:
+ORoadmap( vcl::Window* _pParent, WinBits _nWinStyle = 0 );
+virtual ~ORoadmap( );
+virtual void dispose() SAL_OVERRIDE;
 
-voidChangeRoadmapItemLabel( ItemId _nID, const OUString 
sLabel, ItemIndex _nStartIndex = 0 );
-voidChangeRoadmapItemID( ItemId _nID, ItemId _NewID, 
ItemIndex _nStartIndex = 0  );
+voidSetRoadmapBitmap( const BitmapEx maBitmap, bool 
_bInvalidate = true );
 
-voidSetRoadmapInteractive( bool _bInteractive );
-boolIsRoadmapInteractive();
+voidEnableRoadmapItem( ItemId _nItemId, bool _bEnable, 
ItemIndex _nStartIndex = 0  );
 
-voidSetRoadmapComplete( bool _bComplete );
-boolIsRoadmapComplete() const;
+voidChangeRoadmapItemLabel( ItemId _nID, const OUString 
sLabel, ItemIndex _nStartIndex = 0 );
+voidChangeRoadmapItemID( ItemId _nID, ItemId _NewID, ItemIndex 
_nStartIndex = 0  );
 
-ItemIndex   GetItemCount() const;
-ItemId  GetItemID( ItemIndex _nIndex ) const;
+voidSetRoadmapInteractive( bool _bInteractive );
+boolIsRoadmapInteractive();
 
-voidInsertRoadmapItem( ItemIndex _Index, const OUString 
_RoadmapItem, ItemId _nUniqueId, bool _bEnabled = true );
-voidReplaceRoadmapItem( ItemIndex _Index, const OUString 
_RoadmapItem, ItemId _nUniqueId, bool _bEnabled );
-voidDeleteRoadmapItem( ItemIndex _nIndex );
+voidSetRoadmapComplete( bool _bComplete );
+boolIsRoadmapComplete() const;
 
-ItemId  GetCurrentRoadmapItemID() const;
-boolSelectRoadmapItemByID( ItemId _nItemID );
+ItemIndex   GetItemCount() const;
+ItemId  GetItemID( ItemIndex _nIndex ) const;
 
-voidSetItemSelectHdl( const Link _rHdl );
-Link  GetItemSelectHdl( ) const;
-virtual voidDataChanged( const DataChangedEvent rDCEvt ) 
SAL_OVERRIDE;
-virtual voidGetFocus() SAL_OVERRIDE;
+voidInsertRoadmapItem( ItemIndex _Index, const OUString 
_RoadmapItem, ItemId _nUniqueId, bool _bEnabled = true );
+voidReplaceRoadmapItem( ItemIndex _Index, const OUString 
_RoadmapItem, ItemId _nUniqueId, bool _bEnabled );
+voidDeleteRoadmapItem( ItemIndex _nIndex );
 
+ItemId  GetCurrentRoadmapItemID() const;
+boolSelectRoadmapItemByID( ItemId _nItemID );
 
-protected:
-boolPreNotify( NotifyEvent rNEvt ) SAL_OVERRIDE;
+voidSetItemSelectHdl( const Link _rHdl );
+Link  GetItemSelectHdl( ) const;
+virtual voidDataChanged( const DataChangedEvent rDCEvt ) SAL_OVERRIDE;
+virtual voidGetFocus() SAL_OVERRIDE;
 
-protected:
-/// called when an 

[Libreoffice-bugs] [Bug 91212] New: Please give back fake bold font feature!

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91212

Bug ID: 91212
   Summary: Please give back fake bold font feature!
   Product: LibreOffice
   Version: 4.4.2.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jeeh...@mailbox.org

Does mac version 4.4 give up fake bold feature to fix thickness issue?
I don't think this is not good way to fix problem.
My all odt documents have problem now. I must change every fonts on my
documents!
More over these fonts are essential. Nothing can replace.

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


Re: [Libreoffice-qa] Bibisect Requests

2015-05-10 Thread Andras Timar
On Mon, May 11, 2015 at 1:37 AM, Norbert Thiebaud nthieb...@gmail.com wrote:
 On Sun, May 10, 2015 at 5:52 PM,  dk...@torfree.net wrote:
 Quoting Norbert Thiebaud nthieb...@gmail.com:

 I've also put together a 'sample of a bibisect for Windows
 git://gerrit.libreoffice.org/bibisect-win32-5.0
 about 400MB


 I have cloned the repo onto Windows Vista.  However, with both
 oldest and the latest versions, I observe:

 (*) instdir/program/soffice.exe reports The program cannot find the
 file specified..

 it of course works locally here.. and I cloned it on a windows 2012 r2
 and it worked there...

It works for me, too, on Windows 7. I cloned the repo from cygwin with
git version 2.1.1, and I can start soffice.exe either from the
console, or from Explorer. Thanks for this Windows repo, it will be
very useful.

Regards,
Andras
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://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-commits] core.git: Branch 'distro/collabora/cp-4.4' - 5 commits - editeng/source external/python3 solenv/bin sw/source xmloff/source

2015-05-10 Thread Markus Mohrhard
 editeng/source/editeng/impedit3.cxx   |3 
 external/python3/python-3.3.3-py17797.patch.1 |   87 ++
 solenv/bin/modules/installer/simplepackage.pm |   12 ++-
 sw/source/core/doc/doclay.cxx |3 
 xmloff/source/chart/SchXMLLegendContext.cxx   |6 -
 5 files changed, 49 insertions(+), 62 deletions(-)

New commits:
commit e3d0ca440cfe5573efbdb658f659e1a7bef19e0a
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sat May 2 20:36:30 2015 +0200

it works if we first set the size and then the position, tdf#86624

Change-Id: I8ed98981ef3041839ab73b749a04febe369f66fe
Reviewed-on: https://gerrit.libreoffice.org/15600
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/xmloff/source/chart/SchXMLLegendContext.cxx 
b/xmloff/source/chart/SchXMLLegendContext.cxx
index 7bb30bf..80e829d 100644
--- a/xmloff/source/chart/SchXMLLegendContext.cxx
+++ b/xmloff/source/chart/SchXMLLegendContext.cxx
@@ -188,14 +188,14 @@ void SchXMLLegendContext::StartElement( const 
uno::Reference xml::sax::XAttribu
 }
 }
 
-if( bHasXPosition  bHasYPosition )
-xLegendShape-setPosition( aLegendPos );
-
 if( bHasExpansion  nLegendExpansion!= chart::ChartLegendExpansion_CUSTOM 
)
 xLegendProps-setPropertyValue(Expansion, 
uno::makeAny(nLegendExpansion) );
 else if( bHasHeight  bHasWidth )
 xLegendShape-setSize( aLegendSize );
 
+if( bHasXPosition  bHasYPosition )
+xLegendShape-setPosition( aLegendPos );
+
 // the fill style has the default none in XML, but solid in the model.
 xLegendProps-setPropertyValue(FillStyle, uno::makeAny( 
drawing::FillStyle_NONE ));
 
commit f523f77c97e77b32ce689e394b925fe5845893c4
Author: Michael Stahl mst...@redhat.com
Date:   Wed May 6 22:28:05 2015 +0200

tdf#82968: python3: fix stdio detection on WNT harder

Upgrade to the latest patch from http://bugs.python.org/issue17797
which appears to work even if you invoke from cmd.exe

Change-Id: I85f1cc5ad7d8c059d972ae2a6fd2be1bb5604c2c
(cherry picked from commit be3e1d65f50fe8b4ce5e4a87a82ff231c00aae79)
Reviewed-on: https://gerrit.libreoffice.org/15688
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/external/python3/python-3.3.3-py17797.patch.1 
b/external/python3/python-3.3.3-py17797.patch.1
index d4f7ab8..8fcb703 100644
--- a/external/python3/python-3.3.3-py17797.patch.1
+++ b/external/python3/python-3.3.3-py17797.patch.1
@@ -4,59 +4,42 @@ 
http://connect.microsoft.com/VisualStudio/feedback/details/785119/
 Visual Studio 2012 changed return value for fileno function that breaks
 when python tries to check/setup stdin/out/err
 GetStdHandle on Windows XP behaves contrary to the documentation...
-diff -ur python3.org/Python/pythonrun.c python3/Python/pythonrun.c
 python3.org/Python/pythonrun.c 2014-05-24 16:36:20.361672900 +0200
-+++ python3/Python/pythonrun.c 2014-05-24 16:37:38.424159100 +0200
-@@ -1036,7 +1036,15 @@
- int status = 0, fd;
- PyObject * encoding_attr;
- char *encoding = NULL, *errors;
--
-+#ifdef MS_WINDOWS
-+OSVERSIONINFOEX osvi;
-+BOOL bIsWindowsXP;
+
+diff --git a/Python/pythonrun.c b/Python/pythonrun.c
+index 91d56b7..d28ffc7 100644
+--- a/Python/pythonrun.c
 b/Python/pythonrun.c
+@@ -1015,13 +1015,28 @@ error:
+ static int
+ is_valid_fd(int fd)
+ {
+-int dummy_fd;
+ if (fd  0 || !_PyVerify_fd(fd))
+ return 0;
+-dummy_fd = dup(fd);
+-if (dummy_fd  0)
+-return 0;
+-close(dummy_fd);
 +
-+ZeroMemory(osvi, sizeof(osvi));
-+osvi.dwOSVersionInfoSize = sizeof(osvi);
-+GetVersionEx(osvi);
-+bIsWindowsXP = (osvi.dwMajorVersion  6);
-+#endif
- /* Hack to avoid a nasty recursion issue when Python is invoked
-in verbose mode: pre-import the Latin-1 and UTF-8 codecs */
- if ((m = PyImport_ImportModule(encodings.utf_8)) == NULL) {
-@@ -1084,7 +1092,11 @@
-  * and fileno() may point to an invalid file descriptor. For example
-  * GUI apps don't have valid standard streams by default.
-  */
-+#ifdef MS_WINDOWS
-+if (!is_valid_fd(fd) || GetStdHandle(STD_INPUT_HANDLE) == NULL || 
bIsWindowsXP) {
++#if defined(MS_WINDOWS)  defined(HAVE_FSTAT)
++/* dup (DuplicateHandle) doesn't say fd is a valid *file* handle.
++ * It could be a current thread pseudo-handle.
++ */
++{
++struct stat buf;
++if (fstat(fd, buf)  0  (errno == EBADF || errno == ENOENT))
++return 0;
++}
 +#else
- if (!is_valid_fd(fd)) {
++{
++int dummy_fd;
++dummy_fd = dup(fd);
++if (dummy_fd  0)
++return 0;
++close(dummy_fd);
++}
 +#endif
- std = Py_None;
- Py_INCREF(std);
- }
-@@ -1099,7 +,11 @@
++
+ return 1;
+ }
  
- /* Set sys.stdout */
- fd 

[Libreoffice-bugs] [Bug 51613] FILESAVE: Saving Mean Value Lines in XLS/X format not possible

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51613

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

   Priority|high|medium
   Severity|major   |normal

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


[Libreoffice-bugs] [Bug 69183] EDITING: insert a table with ctrl-v changes the formating of the table and the following Paragraph

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69183

--- Comment #5 from Mike Kaganski mikekagan...@hotmail.com ---
Code pointer:
sw/source/core/frmedt/fecopy.cxx
bool SwFEShell::Paste( SwDoc* pClpDoc, bool bIncludingPageFrames )
line~1043
 bool bStartWithTable = 0 != aCpyPam.Start()-nNode.GetNode().FindTableNode();

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


[Libreoffice-bugs] [Bug 91183] Sidebar icons are too big!

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91183

Jeehyun jeeh...@mailbox.org changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

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


Re: [Libreoffice-qa] bugzilla: See Also doesn't like bugs.python.org?

2015-05-10 Thread Robinson Tryon
On Sat, May 9, 2015 at 3:14 PM, Michael Stahl mst...@redhat.com wrote:

 http://bugs.python.org/issue17797 is not a valid URL to a bug. See Also
 URLs should point to one of:

 show_bug.cgi in a Bugzilla installation.
 A bug on launchpad.net
 An issue on code.google.com.
 A bug on bugs.debian.org.
 An issue in a JIRA installation.
 A ticket in a Trac installation.
 A bug in a MantisBT installation.
 A bug on sourceforge.net.
 An issue on github.com.


 ^ is that a standard bugzilla error or some configuration on our side?

I think that's just a standard Bugzilla error -- I don't recall us
ever playing around with that configuration. I'll take a look in more
detail this week and try to get this resolved :-)

Best
--R

-- 
Robinson Tryon
QA Engineer - The Document Foundation
LibreOffice Community Outreach Herald
qu...@libreoffice.org
802-379-9482 | IRC: colonelqubit on Freenode
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://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 86652] links to cells in different sheet of the same calc file break when copying the sheet with links inside the same calc file

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86652

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 CC||hans.preine...@aon.at

--- Comment #8 from m.a.riosv mari...@miguelangel.mobi ---
*** Bug 91211 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 91211] EDITING: Copy of a spreadsheet containing references to cells in an other sheet doesn't work properly

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91211

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||mari...@miguelangel.mobi
 Resolution|--- |DUPLICATE

--- Comment #2 from m.a.riosv mari...@miguelangel.mobi ---
I think this is a duplicate, please if you are not agree reopen it.

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

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


[Libreoffice-bugs] [Bug 75317] automatic label placement results in strange placement of some labels

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75317

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

Summary|FILEOPEN: .xlsx Fails to|automatic label placement
   |import chart properly - |results in strange
   |First data label of 2nd |placement of some labels
   |column is displayed on the  |
   |bottom  |

--- Comment #3 from Markus Mohrhard markus.mohrh...@googlemail.com ---
This has nothing to do with OOXML at all.

This is part of our manual label placement. So this requires reworking the
automatic label placement code. You can get the same problem with a freshly
generated document.

I'm not going to look into this any deeper as these placement codes are just a
huge pain.

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


Re: Build dependency on external cppunit

2015-05-10 Thread Andras Timar
On Fri, May 8, 2015 at 5:09 PM, Richard Cochran
richardcoch...@gmail.com wrote:

 I specifically did 'make build' in order to avoid the tests, but the
 build system compiles the tests anyhow.

The 'build' target includes tests. Try the 'build-nocheck' target.

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


[Libreoffice-bugs] [Bug 91201] Sidebar hogs too much space

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91201

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 CC||mari...@miguelangel.mobi

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---
Hi @Tony,

have you tried Menu/View/Sidebar?

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


Re: [Libreoffice-qa] Bibisect Requests

2015-05-10 Thread Norbert Thiebaud
On Sun, May 10, 2015 at 5:52 PM,  dk...@torfree.net wrote:
 Quoting Norbert Thiebaud nthieb...@gmail.com:

 I've also put together a 'sample of a bibisect for Windows
 git://gerrit.libreoffice.org/bibisect-win32-5.0
 about 400MB


 I have cloned the repo onto Windows Vista.  However, with both
 oldest and the latest versions, I observe:

 (*) instdir/program/soffice.exe reports The program cannot find the
 file specified..

it of course works locally here.. and I cloned it on a windows 2012 r2
and it worked there...
humm... the usual message is The _system_ cannot find the file specified
is it that that you are seeing:
http://www.drivethelife.com/windows-drivers/how-to-fix-the-system-cannot-find-the-file-specified.html
?
if so check for permission... and possibly:
start a console, cd to where soffice.exe is and run soffice.exe there


 (*) instdir/program/soffice.bin reports The application failed to
 start because sal3.dll was not found  However,
 instdir/URE/bin/sal3.dll does exist.

that does not work here either (same error). I do not think that is
expected to work.


 (*) There is no file instdir/program/bootstrap.rc, which I expected to
 edit w.r.t. UserInstallation.  Or, is this expectation good only
 for Linux?

Absolutely no ideas... but there is a bootstrap.ini, maybe that serve
the same purpose on Windows ?
but surely one would hope that one does not have to tweak it to run,
that would make using bibisect quite cumbersome

---


Thanks for the feedback.
I was concerned about something like that, hence the test run...
I am not a windows user.. I have no ideas about what things should
look like, and very little idea how to debug that things, beyond what
google says.
I just worked based on the hypothesis that instdir was runnable and
transportable...

Norbert
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://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-commits] core.git: 3 commits - dbaccess/source include/svtools svtools/source

2015-05-10 Thread Tomaž Vajngerl
 dbaccess/source/ui/misc/WNameMatch.cxx |4 
 include/svtools/headbar.hxx|   14 
 svtools/source/control/headbar.cxx |  484 -
 3 files changed, 185 insertions(+), 317 deletions(-)

New commits:
commit 020a52d855233164a4a1346eeacd3f07592ef36e
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Mon May 11 11:21:26 2015 +0900

unused parameter

Change-Id: Ied856c05594a0ee5bd43ec61e65d12dd18e746d8

diff --git a/dbaccess/source/ui/misc/WNameMatch.cxx 
b/dbaccess/source/ui/misc/WNameMatch.cxx
index cf2c49f..0b35a87 100644
--- a/dbaccess/source/ui/misc/WNameMatch.cxx
+++ b/dbaccess/source/ui/misc/WNameMatch.cxx
@@ -349,11 +349,11 @@ public:
 {
 }
 
-virtual void Paint(const Point rPos, SvTreeListBox /*rDev*/, 
vcl::RenderContext rRenderContext,
+virtual void Paint(const Point rPos, SvTreeListBox rDev, 
vcl::RenderContext rRenderContext,
const SvViewDataEntry* pView, const SvTreeListEntry* 
pEntry) SAL_OVERRIDE;
 };
 
-void OColumnString::Paint(const Point rPos, SvTreeListBox rDev, 
vcl::RenderContext rRenderContext,
+void OColumnString::Paint(const Point rPos, SvTreeListBox /*rDev*/, 
vcl::RenderContext rRenderContext,
   const SvViewDataEntry* /*pView*/, const 
SvTreeListEntry* /*pEntry*/)
 {
 rRenderContext.Push(PushFlags::TEXTCOLOR | PushFlags::TEXTFILLCOLOR);
commit ec55cab06c67cff558a6245cd993c7d6187f58ef
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Mon May 11 11:18:54 2015 +0900

remove whitespace

Change-Id: I34995118b06319a8ff5b5c51b22cbe1898cb2756

diff --git a/svtools/source/control/headbar.cxx 
b/svtools/source/control/headbar.cxx
index bc05547..90f0781 100644
--- a/svtools/source/control/headbar.cxx
+++ b/svtools/source/control/headbar.cxx
@@ -42,8 +42,6 @@ public:
 OUStringmaHelpText;
 };
 
-
-
 #define HEAD_ARROWSIZE1 4
 #define HEAD_ARROWSIZE2 7
 
@@ -56,8 +54,6 @@ public:
 #define HEAD_HITTEST_ITEM   ((sal_uInt16)0x0001)
 #define HEAD_HITTEST_DIVIDER((sal_uInt16)0x0002)
 
-
-
 void HeaderBar::ImplInit( WinBits nWinStyle )
 {
 mpItemList  = new ImplHeadItemList;
@@ -101,8 +97,6 @@ void HeaderBar::ImplInit( WinBits nWinStyle )
 ImplInitSettings( true, true, true );
 }
 
-
-
 HeaderBar::HeaderBar( vcl::Window* pParent, WinBits nWinStyle ) :
 Window( pParent, nWinStyle  WB_3DLOOK )
 {
@@ -110,8 +104,6 @@ HeaderBar::HeaderBar( vcl::Window* pParent, WinBits 
nWinStyle ) :
 SetSizePixel( CalcWindowSizePixel() );
 }
 
-
-
 HeaderBar::~HeaderBar()
 {
 disposeOnce();
@@ -165,8 +157,6 @@ void HeaderBar::ImplInitSettings( bool bFont,
 }
 }
 
-
-
 long HeaderBar::ImplGetItemPos( sal_uInt16 nPos ) const
 {
 long nX = -mnOffset;
@@ -175,8 +165,6 @@ long HeaderBar::ImplGetItemPos( sal_uInt16 nPos ) const
 return nX;
 }
 
-
-
 Rectangle HeaderBar::ImplGetItemRect( sal_uInt16 nPos ) const
 {
 Rectangle aRect( ImplGetItemPos( nPos ), 0, 0, mnDY-1 );
@@ -187,8 +175,6 @@ Rectangle HeaderBar::ImplGetItemRect( sal_uInt16 nPos ) 
const
 return aRect;
 }
 
-
-
 sal_uInt16 HeaderBar::ImplHitTest( const Point rPos,
long nMouseOff, sal_uInt16 nPos ) const
 {
@@ -252,8 +238,6 @@ sal_uInt16 HeaderBar::ImplHitTest( const Point rPos,
 return 0;
 }
 
-
-
 void HeaderBar::ImplInvertDrag( sal_uInt16 nStartPos, sal_uInt16 nEndPos )
 {
 Rectangle aRect1 = ImplGetItemRect( nStartPos );
@@ -300,8 +284,6 @@ void HeaderBar::ImplInvertDrag( sal_uInt16 nStartPos, 
sal_uInt16 nEndPos )
 SetRasterOp( ROP_OVERPAINT );
 }
 
-
-
 void HeaderBar::ImplDrawItem(vcl::RenderContext rRenderContext, sal_uInt16 
nPos, bool bHigh, bool bDrag,
  const Rectangle rItemRect, const Rectangle* 
pRect, sal_uLong )
 {
@@ -640,8 +622,6 @@ void HeaderBar::ImplDrawItem(vcl::RenderContext 
rRenderContext, sal_uInt16 nPos
 }
 }
 
-
-
 void HeaderBar::ImplDrawItem(vcl::RenderContext rRenderContext, sal_uInt16 
nPos,
  bool bHigh, bool bDrag, const Rectangle* pRect )
 {
@@ -649,8 +629,6 @@ void HeaderBar::ImplDrawItem(vcl::RenderContext 
rRenderContext, sal_uInt16 nPos
 ImplDrawItem(rRenderContext, nPos, bHigh, bDrag, aRect, pRect, 0 );
 }
 
-
-
 void HeaderBar::ImplUpdate(sal_uInt16 nPos, bool bEnd, bool /*bDirect*/)
 {
 if (IsVisible()  IsUpdateMode())
@@ -673,8 +651,6 @@ void HeaderBar::ImplUpdate(sal_uInt16 nPos, bool bEnd, bool 
/*bDirect*/)
 }
 }
 
-
-
 void HeaderBar::ImplStartDrag( const Point rMousePos, bool bCommand )
 {
 sal_uInt16  nPos;
@@ -736,8 +712,6 @@ void HeaderBar::ImplStartDrag( const Point rMousePos, bool 
bCommand )
 }
 }
 
-
-
 void HeaderBar::ImplDrag( const Point rMousePos )
 {
 sal_uInt16  nPos = GetItemPos( mnCurItemId );
@@ -844,8 +818,6 @@ void HeaderBar::ImplDrag( const Point rMousePos )
 Drag();
 }
 
-
-
 void HeaderBar::ImplEndDrag( bool 

[Libreoffice-commits] core.git: 4 commits - chart2/qa chart2/source include/oox oox/source

2015-05-10 Thread Markus Mohrhard
 chart2/qa/extras/chart2export.cxx|   14 +
 chart2/qa/extras/data/ods/multiple_axis.ods  |binary
 chart2/source/controller/dialogs/tp_SeriesToAxis.hxx |2 
 include/oox/export/chartexport.hxx   |4 
 oox/source/export/chartexport.cxx|  220 ---
 5 files changed, 159 insertions(+), 81 deletions(-)

New commits:
commit 285d5c52f8dc07f15c62ca9698209f6132b91467
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon May 11 05:10:16 2015 +0200

add test for tdf#84347

Change-Id: I437801a752e2ae2fa762f46f566b761fdc02acb8

diff --git a/chart2/qa/extras/chart2export.cxx 
b/chart2/qa/extras/chart2export.cxx
index 0dbc470..7e4491c 100644
--- a/chart2/qa/extras/chart2export.cxx
+++ b/chart2/qa/extras/chart2export.cxx
@@ -97,6 +97,7 @@ public:
 void testTitleCharacterPropertiesXLSX();
 void testPlotVisOnlyXLSX();
 void testBarChartVaryColorsXLSX();
+void testMultipleAxisXLSX();
 
 CPPUNIT_TEST_SUITE(Chart2ExportTest);
 CPPUNIT_TEST(testErrorBarXLSX);
@@ -158,6 +159,7 @@ public:
 CPPUNIT_TEST(testTitleCharacterPropertiesXLSX);
 CPPUNIT_TEST(testPlotVisOnlyXLSX);
 CPPUNIT_TEST(testBarChartVaryColorsXLSX);
+CPPUNIT_TEST(testMultipleAxisXLSX);
 CPPUNIT_TEST_SUITE_END();
 
 protected:
@@ -1445,6 +1447,18 @@ void Chart2ExportTest::testBarChartVaryColorsXLSX()
 assertXPath(pXmlDoc, 
/c:chartSpace/c:chart/c:plotArea/c:barChart/c:varyColors, val, 0);
 }
 
+void Chart2ExportTest::testMultipleAxisXLSX()
+{
+load(/chart2/qa/extras/data/ods/, multiple_axis.ods);
+xmlDocPtr pXmlDoc = parseExport(xl/charts/chart, Calc Office Open XML);
+CPPUNIT_ASSERT(pXmlDoc);
+
+assertXPath(pXmlDoc, /c:chartSpace/c:chart/c:plotArea/c:scatterChart, 2);
+assertXPath(pXmlDoc, 
/c:chartSpace/c:chart/c:plotArea/c:scatterChart[1]/c:ser, 1);
+assertXPath(pXmlDoc, 
/c:chartSpace/c:chart/c:plotArea/c:scatterChart[2]/c:ser, 1);
+assertXPath(pXmlDoc, /c:chartSpace/c:chart/c:plotArea/c:valAx, 4);
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Chart2ExportTest);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/chart2/qa/extras/data/ods/multiple_axis.ods 
b/chart2/qa/extras/data/ods/multiple_axis.ods
new file mode 100644
index 000..7e2a505
Binary files /dev/null and b/chart2/qa/extras/data/ods/multiple_axis.ods differ
commit ffaa8e48b5a98bb7dd1891da09bf796467cf849f
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon May 11 04:32:16 2015 +0200

fix regression from 1c4025babd7037a3292aa530c7d45ab8d6ef6dcb

Change-Id: I28543128b75315be1eda1a82f6e856778c38a33e

diff --git a/chart2/source/controller/dialogs/tp_SeriesToAxis.hxx 
b/chart2/source/controller/dialogs/tp_SeriesToAxis.hxx
index 1d0b2e3..a6e7eda 100644
--- a/chart2/source/controller/dialogs/tp_SeriesToAxis.hxx
+++ b/chart2/source/controller/dialogs/tp_SeriesToAxis.hxx
@@ -54,7 +54,7 @@ private: //member
 VclPtrCheckBoxm_pCBConnect;
 VclPtrCheckBoxm_pCBAxisSideBySide;
 
-VclPtrVclGrid m_pGrpPlotOptions;
+VclPtrVclFramem_pGrpPlotOptions;
 VclPtrVclGrid m_pGridPlotOptions;
 VclPtrRadioButton m_pRB_DontPaint;
 VclPtrRadioButton m_pRB_AssumeZero;
commit cffa77304daf2379a056bb2d86fe041e7c98bc52
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon May 11 02:53:05 2015 +0200

only export series for same axis into same chart type element, tdf#84347

Change-Id: I2b8b962054b0e1ca98db3929c6692e7c354e6a93

diff --git a/oox/source/export/chartexport.cxx 
b/oox/source/export/chartexport.cxx
index 36939af..c7d5d64 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1662,39 +1662,90 @@ void ChartExport::exportDoughnutChart( Reference 
chart2::XChartType  xChartTyp
 pFS-endElement( FSNS( XML_c, XML_doughnutChart ) );
 }
 
-void ChartExport::exportLineChart( Reference chart2::XChartType  xChartType )
+namespace {
+
+std::vectorSequenceReferencechart2::XDataSeries   
splitDataSeriesByAxis(Reference chart2::XChartType  xChartType)
 {
-FSHelperPtr pFS = GetFS();
-sal_Int32 nTypeId = XML_lineChart;
-if( mbIs3DChart )
-nTypeId = XML_line3DChart;
-pFS-startElement( FSNS( XML_c, nTypeId ),
-FSEND );
+std::vectorSequenceReferencechart2::XDataSeries   aSplitSeries;
+std::mapsal_Int32, size_t aMapAxisToIndex;
 
-exportGrouping( );
-// TODO: show marker symbol in series?
-sal_Int32 nAttachedAxis = AXIS_PRIMARY_Y;
-exportAllSeries( xChartType, nAttachedAxis );
+Reference chart2::XDataSeriesContainer  xDSCnt( xChartType, 
uno::UNO_QUERY );
+if(xDSCnt.is())
+{
+Sequence Reference chart2::XDataSeries   aSeriesSeq( 
xDSCnt-getDataSeries());
+for (sal_Int32 nIndex = 0, nEnd = aSeriesSeq.getLength(); nIndex  
nEnd; ++nIndex)
+{
+uno::Referencechart2::XDataSeries xSeries = aSeriesSeq[nIndex];
+

[Libreoffice-bugs] [Bug 91208] FILEOPEN Arial (Body) in pptx import causes text to wrap

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91208

Stephan van den Akker stephanv...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Version|4.4.3.2 rc  |Inherited From OOo
Summary|Arial (Body) in pptx import |FILEOPEN Arial (Body) in
   |causes text to wrap |pptx import causes text to
   ||wrap
 Ever confirmed|0   |1

--- Comment #3 from Stephan van den Akker stephanv...@gmail.com ---
In the test pptx the problem shows up in OOo 3.3.0 (32-bit), even with Arial
and Calibri installed on the system (tested with windows version on openSuSE
13.2 64-bit under wine). 

Erroneous Wrapping and using Calibri on Ubuntu 14.04.2 LTS with stock LO 4.2

No wrapping, but still using Calibri instead of Arial on openSuSE 13.2 with

- OOo 3.3.0 (OOO330m20, Build:9567)
- stock LO Version 4.3.6.2 (64-bit)
- LOdev Version: 5.0.0.0.alpha1+ (Build ID:
d2724d4e07c9bfc58f1c9a008d538d6459c392fb
Locale: en-US (en_US.UTF-8)) 64-bit

Arial ttf's are installed on both systems

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


[Libreoffice-bugs] [Bug 91202] [EDITING] Dialog Edit-Fill-Random numbers is broken

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91202

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 CC||mari...@miguelangel.mobi

--- Comment #2 from m.a.riosv mari...@miguelangel.mobi ---
The same result as @Andy.

About 1), if the issue is about they are not sorted, maybe this set up the
max-min for the range not to be the first the minimum and the last the maximum.

About 2), there is an option in Distribution for uniform integer, that gives
all integers. Maybe the reason for doesn't allow 0 decimal places.

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


[Libreoffice-bugs] [Bug 91211] EDITING: Copy of a spreadsheet containing references to cells in an other sheet doesn't work properly

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91211

--- Comment #1 from Hans Preineder hans.preine...@aon.at ---
active versions:
Linux Suse 13.2:   libreOfice 4.3.6.2
Windows7:  libreOfice 4.4.2.2

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


[Libreoffice-bugs] [Bug 75025] LibreOffice 4.3 most annoying bugs

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75025
Bug 75025 depends on bug 44621, which changed state.

Bug 44621 Summary: EDITING: Drag and drop images into Writer opens Draw (OS X 
= 10.7)
https://bugs.documentfoundation.org/show_bug.cgi?id=44621

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 42082] [META] Make LibreOffice shine and glow on OS X

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42082
Bug 42082 depends on bug 44621, which changed state.

Bug 44621 Summary: EDITING: Drag and drop images into Writer opens Draw (OS X 
= 10.7)
https://bugs.documentfoundation.org/show_bug.cgi?id=44621

   What|Removed |Added

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

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


[Bug 75025] LibreOffice 4.3 most annoying bugs

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75025
Bug 75025 depends on bug 44621, which changed state.

Bug 44621 Summary: EDITING: Drag and drop images into Writer opens Draw (OS X 
= 10.7)
https://bugs.documentfoundation.org/show_bug.cgi?id=44621

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: 8 commits - basctl/source cui/source dbaccess/source include/svtools include/svx include/vcl reportdesign/source sc/source sd/source sfx2/source svtools/source svx/sour

2015-05-10 Thread Tomaž Vajngerl
 basctl/source/basicide/moduldl2.cxx |   27 -
 cui/source/customize/acccfg.cxx |   12 
 cui/source/customize/cfg.cxx|   24 
 cui/source/customize/macropg.cxx|   35 -
 cui/source/dialogs/thesdlg.cxx  |   21 
 cui/source/dialogs/thesdlg_impl.hxx |4 
 cui/source/options/optHeaderTabListbox.cxx  |   22 
 cui/source/options/optlingu.cxx |   54 +-
 cui/source/tabpages/autocdlg.cxx|   42 -
 dbaccess/source/ui/app/AppDetailView.cxx|2 
 dbaccess/source/ui/control/listviewitems.cxx|   19 
 dbaccess/source/ui/inc/listviewitems.hxx|4 
 dbaccess/source/ui/misc/WNameMatch.cxx  |   16 
 include/svtools/brwbox.hxx  |5 
 include/svtools/svlbitm.hxx |   20 
 include/svtools/treelistbox.hxx |   15 
 include/svx/ctredlin.hxx|4 
 include/svx/fontlb.hxx  |6 
 include/vcl/splitwin.hxx|   22 
 reportdesign/source/ui/dlg/Navigator.cxx|5 
 sc/source/ui/miscdlgs/solveroptions.cxx |   32 -
 sc/source/ui/xmlsource/xmlsourcedlg.cxx |6 
 sd/source/ui/animations/CustomAnimationList.cxx |  109 ++--
 sfx2/source/dialog/templdlg.cxx |5 
 svtools/source/brwbox/brwbox2.cxx   |   91 +--
 svtools/source/brwbox/datwin.cxx|   14 
 svtools/source/brwbox/datwin.hxx|2 
 svtools/source/contnr/imivctl.hxx   |   47 -
 svtools/source/contnr/imivctl1.cxx  |  463 +++---
 svtools/source/contnr/ivctrl.cxx|   26 -
 svtools/source/contnr/svimpbox.cxx  |  168 +++---
 svtools/source/contnr/svlbitm.cxx   |   81 +--
 svtools/source/contnr/treelistbox.cxx   |  255 +-
 svtools/source/inc/svimpbox.hxx |   12 
 svtools/source/uno/treecontrolpeer.cxx  |   22 
 svx/source/dialog/ctredlin.cxx  |   14 
 svx/source/dialog/docrecovery.cxx   |   28 -
 svx/source/dialog/fontlb.cxx|   27 -
 svx/source/form/filtnav.cxx |   52 +-
 svx/source/inc/docrecovery.hxx  |4 
 sw/source/uibase/inc/conttree.hxx   |5 
 sw/source/uibase/utlui/content.cxx  |   29 -
 sw/source/uibase/utlui/glbltree.cxx |   26 -
 vcl/source/window/printdlg.cxx  |  101 ++--
 vcl/source/window/scrwnd.cxx|   42 +
 vcl/source/window/scrwnd.hxx|2 
 vcl/source/window/splitwin.cxx  |  588 
 vcl/source/window/status.cxx|  171 +++---
 vcl/workben/outdevgrind.cxx |8 
 vcl/workben/svptest.cxx |  187 +++
 vcl/workben/vcldemo.cxx |   23 
 51 files changed, 1443 insertions(+), 1556 deletions(-)

New commits:
commit 25a0bd7b909fb8c87387d1413060f6c4ba5a51bd
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Mon May 11 09:41:13 2015 +0900

refactor TreeListBox to use RenderContext

Change-Id: I901a1f1f9732fb66718dca34c698a851e5b0d87f

diff --git a/basctl/source/basicide/moduldl2.cxx 
b/basctl/source/basicide/moduldl2.cxx
index eeca6aa..32c9280d 100644
--- a/basctl/source/basicide/moduldl2.cxx
+++ b/basctl/source/basicide/moduldl2.cxx
@@ -107,34 +107,29 @@ public:
 LibLBoxString( SvTreeListEntry* pEntry, sal_uInt16 nFlags, const OUString 
rTxt ) :
 SvLBoxString( pEntry, nFlags, rTxt ) {}
 
-virtual void Paint(const Point rPos, SvTreeListBox rDev, const 
SvViewDataEntry* pView, const SvTreeListEntry* pEntry) SAL_OVERRIDE;
+virtual void Paint(const Point rPos, SvTreeListBox rDev, 
vcl::RenderContext rRenderContext,
+   const SvViewDataEntry* pView, const SvTreeListEntry* 
pEntry) SAL_OVERRIDE;
 };
 
-void LibLBoxString::Paint(const Point rPos, SvTreeListBox rDev, const 
SvViewDataEntry* /*pView*/, const SvTreeListEntry* pEntry)
+void LibLBoxString::Paint(const Point rPos, SvTreeListBox /*rDev*/, 
vcl::RenderContext rRenderContext,
+  const SvViewDataEntry* /*pView*/, const 
SvTreeListEntry* pEntry)
 {
 // Change text color if library is read only:
 bool bReadOnly = false;
 if (pEntry  pEntry-GetUserData())
 {
-ScriptDocument aDocument(
-static_castLibUserData*(pEntry-GetUserData())-
-GetDocument() );
+ScriptDocument 
aDocument(static_castLibUserData*(pEntry-GetUserData())-GetDocument());
 
 OUString aLibName = static_castconst 
SvLBoxString*(pEntry-GetItem(1))-GetText();
-Reference script::XLibraryContainer2  xModLibContainer(
-aDocument.getLibraryContainer( E_SCRIPTS ), UNO_QUERY);
-Reference script::XLibraryContainer2  

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

2015-05-10 Thread Tomaž Vajngerl
 include/svtools/calendar.hxx|   13 
 svtools/source/control/calendar.cxx |  600 +---
 2 files changed, 232 insertions(+), 381 deletions(-)

New commits:
commit 7d890d0482abb8e051144d8177917c21844638c3
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Mon May 11 10:49:31 2015 +0900

refactor Calendar control to use RenderContext

Change-Id: I41aea2e62bb8c034d07825bd4b8776e718cd0920

diff --git a/include/svtools/calendar.hxx b/include/svtools/calendar.hxx
index c7f503e..7e57510 100644
--- a/include/svtools/calendar.hxx
+++ b/include/svtools/calendar.hxx
@@ -232,13 +232,12 @@ private:
 SVT_DLLPRIVATE void ImplFormat();
 using Window::ImplHitTest;
 SVT_DLLPRIVATE sal_uInt16   ImplHitTest( const Point rPos, Date 
rDate ) const;
-SVT_DLLPRIVATE void ImplDrawSpin( bool bDrawPrev = true, bool 
bDrawNext = true );
-SVT_DLLPRIVATE void ImplDrawDate( long nX, long nY,
-  sal_uInt16 nDay, sal_uInt16 nMonth, 
sal_uInt16 nYear,
-  DayOfWeek eDayOfWeek,
-  bool bBack = true, bool bOther = false,
-  sal_uLong nToday = 0 );
-SVT_DLLPRIVATE void ImplDraw( bool bPaint = false );
+SVT_DLLPRIVATE void ImplDrawSpin(vcl::RenderContext 
rRenderContext, bool bDrawPrev = true, bool bDrawNext = true);
+SVT_DLLPRIVATE void ImplDrawDate(vcl::RenderContext 
rRenderContext, long nX, long nY,
+ sal_uInt16 nDay, sal_uInt16 
nMonth, sal_uInt16 nYear,
+ DayOfWeek eDayOfWeek, bool bBack 
= true,
+ bool bOther = false, sal_uLong 
nToday = 0);
+SVT_DLLPRIVATE void ImplDraw(vcl::RenderContext rRenderContext, 
bool bPaint = false);
 SVT_DLLPRIVATE void ImplUpdateDate( const Date rDate );
 SVT_DLLPRIVATE void ImplUpdateSelection( IntDateSet* pOld );
 SVT_DLLPRIVATE void ImplMouseSelect( const Date rDate, sal_uInt16 
nHitTest,
diff --git a/svtools/source/control/calendar.cxx 
b/svtools/source/control/calendar.cxx
index 02d2617..647bd11 100644
--- a/svtools/source/control/calendar.cxx
+++ b/svtools/source/control/calendar.cxx
@@ -603,35 +603,37 @@ sal_uInt16 Calendar::ImplHitTest( const Point rPos, 
Date rDate ) const
 return 0;
 }
 
-static void ImplDrawSpinArrow( OutputDevice* pDev, const Rectangle rRect,
-   bool bPrev )
-{
-longi;
-longn;
-longnLines;
-longnHeight = rRect.GetHeight();
-longnWidth = rRect.GetWidth();
-if ( nWidth  nHeight )
+namespace
+{
+
+static void ImplDrawSpinArrow(vcl::RenderContext rRenderContext, const 
Rectangle rRect, bool bPrev)
+{
+long i;
+long n;
+long nLines;
+long nHeight = rRect.GetHeight();
+long nWidth = rRect.GetWidth();
+if (nWidth  nHeight)
 n = nWidth;
 else
 n = nHeight;
-if ( !(n  0x01) )
+if (!(n  0x01))
 n--;
 nLines = n/2;
 
-Rectangle aRect( Point( rRect.Left()+(nWidth/2)-(nLines/2),
-rRect.Top()+(nHeight/2) ),
- Size( 1, 1 ) );
-if ( !bPrev )
+Rectangle aRect(Point( rRect.Left() + (nWidth / 2) - (nLines / 2),
+rRect.Top() + (nHeight / 2) ),
+ Size(1, 1));
+if (!bPrev)
 {
 aRect.Left()  += nLines;
 aRect.Right() += nLines;
 }
 
-pDev-DrawRect( aRect );
-for ( i = 0; i  nLines; i++ )
+rRenderContext.DrawRect(aRect);
+for (i = 0; i  nLines; i++)
 {
-if ( bPrev )
+if (bPrev)
 {
 aRect.Left()++;
 aRect.Right()++;
@@ -643,324 +645,332 @@ static void ImplDrawSpinArrow( OutputDevice* pDev, 
const Rectangle rRect,
 }
 aRect.Top()--;
 aRect.Bottom()++;
-pDev-DrawRect( aRect );
+rRenderContext.DrawRect(aRect);
 }
 }
 
-void Calendar::ImplDrawSpin( bool bDrawPrev, bool bDrawNext )
+} //end anonymous namespace
+
+void Calendar::ImplDrawSpin(vcl::RenderContext rRenderContext, bool 
bDrawPrev, bool bDrawNext )
 {
-if ( !bDrawPrev  !bDrawNext )
+if (!bDrawPrev  !bDrawNext)
 return;
 
-SetLineColor();
-SetFillColor( GetSettings().GetStyleSettings().GetButtonTextColor() );
-if ( bDrawPrev )
+rRenderContext.SetLineColor();
+
rRenderContext.SetFillColor(rRenderContext.GetSettings().GetStyleSettings().GetButtonTextColor());
+if (bDrawPrev)
 {
 Rectangle aOutRect = maPrevRect;
 aOutRect.Left()   += 3;
 aOutRect.Top()+= 3;
 aOutRect.Right()  -= 3;
 aOutRect.Bottom() -= 3;
-ImplDrawSpinArrow( this, aOutRect, true );
+ImplDrawSpinArrow(rRenderContext, aOutRect, true);
 }
-if ( 

[Libreoffice-bugs] [Bug 69183] EDITING: insert a table with ctrl-v changes the formating of the table and the following Paragraph

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=69183

Mike Kaganski mikekagan...@hotmail.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 91211] New: EDITING: Copy of a spreadsheet containing references to cells in an other sheet doesn't work properly

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91211

Bug ID: 91211
   Summary: EDITING: Copy of a spreadsheet containing references
to cells in an other sheet doesn't work properly
   Product: LibreOffice
   Version: 4.3.6.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hans.preine...@aon.at

Involved spreadsheets:
-data, contains measured data
-data1, contains references to data
-data2, copy of data1

data2 is produced by function move/copy table
Each cell of data2 which contains a reference has the correct cell address of
data, but the sheet address data1 which results in a confusion of data.
example:
datadata1   data2
1  2  3 =data.B1 =data.A1   =data1.B1  =data1.A1
  which results into
1  2  3 2  11  2

This behaviour is identical on Linux and Windows7.
MS Excel produce the correct result
The goal of this complex operation is to select and reorder data to a set of
plots

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


[Libreoffice-bugs] [Bug 91098] SCM friendly file format

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91098

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Status|REOPENED|NEW

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


[Libreoffice-bugs] [Bug 80303] UI: Property mapping - the legend should reflect this possibility

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80303

--- Comment #11 from gaz...@gmail.com ---
Just been playing with pie charts and stacked bar charts in 4.4.2.2

Stacked bar charts can use the 'range for color' feature, however all variants
of pie chart completely ignore any custom colors.

Only way to change color is to edit a data point, you cannot even edit a whole
range.

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


[Libreoffice-bugs] [Bug 91210] New: please mathcad unit for notification

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91210

Bug ID: 91210
   Summary: please mathcad unit for notification
   Product: LibreOffice
   Version: 4.4.3.2 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mgrinz.woj...@gmail.com

Poland (po polsku)
10 cm3 (non only $)
10*m * 20*cm = 2*m2

proszę o możliwość pisania algorytmów jak w Mathcadzie.
i dokładność obliczeń jak w Mathcadzie (potrzbne do obliczeń
inżynierskich).

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


[Libreoffice-commits] core.git: 6 commits - connectivity/source sal/qa sax/source sc/source sw/source vcl/workben

2015-05-10 Thread Caolán McNamara
 connectivity/source/drivers/mork/mork_helper.cxx |5 +
 sal/qa/osl/process/osl_Thread.cxx|8 
 sax/source/expatwrap/sax_expat.cxx   |4 ++--
 sax/source/expatwrap/saxwriter.cxx   |   14 +++---
 sc/source/filter/starcalc/collect.cxx|1 -
 sw/source/core/text/itrpaint.cxx |2 +-
 sw/source/core/text/porlay.hxx   |6 +-
 vcl/workben/vcldemo.cxx  |2 +-
 8 files changed, 21 insertions(+), 21 deletions(-)

New commits:
commit ddb3c4531c657cda6ae20dd950020cea1d12ba2e
Author: Caolán McNamara caol...@redhat.com
Date:   Sun May 10 21:25:41 2015 +0100

cppcheck: unnecessaryQualification

Change-Id: Ief6abf58b36a9f00b63e3ca71900b026628c996c

diff --git a/vcl/workben/vcldemo.cxx b/vcl/workben/vcldemo.cxx
index 8ddfca0..a270718 100644
--- a/vcl/workben/vcldemo.cxx
+++ b/vcl/workben/vcldemo.cxx
@@ -167,7 +167,7 @@ public:
 
 static std::vectorRectangle partition(const RenderContext rCtx, int nX, 
int nY)
 {
-return DemoRenderer::partition(rCtx.maSize, nX, nY);
+return partition(rCtx.maSize, nX, nY);
 }
 
 static std::vectorRectangle partition(Size aSize, int nX, int nY)
commit 6ac930d25f368bfbd984e79c758747318aa34b3c
Author: Caolán McNamara caol...@redhat.com
Date:   Sun May 10 21:20:33 2015 +0100

cppcheck: cstyleCast

Change-Id: I0cc54e443793dda9bd11a907cc79b54dab3810ad

diff --git a/sw/source/core/text/itrpaint.cxx b/sw/source/core/text/itrpaint.cxx
index 2e93cdd..2583b4e 100644
--- a/sw/source/core/text/itrpaint.cxx
+++ b/sw/source/core/text/itrpaint.cxx
@@ -550,7 +550,7 @@ void SwTxtPainter::CheckSpecialUnderline( const 
SwLinePortion* pPor,
 {
 // here starts the algorithm for calculating the underline font
 SwScriptInfo rScriptInfo = 
GetInfo().GetParaPortion()-GetScriptInfo();
-SwAttrIter aIter( *(SwTxtNode*)GetInfo().GetTxtFrm()-GetTxtNode(),
+SwAttrIter aIter( *GetInfo().GetTxtFrm()-GetTxtNode(),
   rScriptInfo );
 
 sal_Int32 nTmpIdx = nIndx;
diff --git a/sw/source/core/text/porlay.hxx b/sw/source/core/text/porlay.hxx
index 3784cda..a19be48 100644
--- a/sw/source/core/text/porlay.hxx
+++ b/sw/source/core/text/porlay.hxx
@@ -378,7 +378,11 @@ inline void SwParaPortion::FormatReset()
 }
 
 inline SwLinePortion *SwLineLayout::GetFirstPortion() const
-{ return( pPortion ? pPortion : (SwLinePortion*)this ); }
+{
+const SwLinePortion *pRet = pPortion ? pPortion : this;
+return const_castSwLinePortion*(pRet);
+}
+
 
 #endif
 
commit 399fa0ee267a1927c14ce7ca7c19881761034154
Author: Caolán McNamara caol...@redhat.com
Date:   Sun May 10 21:18:34 2015 +0100

cppcheck: uselessAssignmentPtrArg

Change-Id: Ie7844af5ab7ead6383e60933588f66c5871f3282

diff --git a/connectivity/source/drivers/mork/mork_helper.cxx 
b/connectivity/source/drivers/mork/mork_helper.cxx
index 103cc47..9674f5a 100644
--- a/connectivity/source/drivers/mork/mork_helper.cxx
+++ b/connectivity/source/drivers/mork/mork_helper.cxx
@@ -35,11 +35,8 @@ bool openAddressBook(const std::string path)
 return true;
 }
 
-int main( int argc, const char* argv[] )
+int main(void)
 {
-  int x = argc;
-  x++;
-  argv++;
   ProfileAccess* access = new ProfileAccess();
   OUString defaultProfile = 
access-getDefaultProfile(::com::sun::star::mozilla::MozillaProductType_Thunderbird);
   SAL_INFO(connectivity.mork, DefaultProfile:   defaultProfile);
commit 4bfa6831908855ba6b8f741f730ebf28526e83f7
Author: Caolán McNamara caol...@redhat.com
Date:   Sun May 10 21:15:45 2015 +0100

cppcheck: uselessAssignmentPtrArg

Change-Id: I19d0903c09c63198f20260f67cddd14a7552fc19

diff --git a/sc/source/filter/starcalc/collect.cxx 
b/sc/source/filter/starcalc/collect.cxx
index 54b9f15..dcc2085 100644
--- a/sc/source/filter/starcalc/collect.cxx
+++ b/sc/source/filter/starcalc/collect.cxx
@@ -36,7 +36,6 @@ static void lcl_DeleteScDataObjects( ScDataObject** p, 
sal_uInt16 nCount )
 {
 for (sal_uInt16 i = 0; i  nCount; i++) delete p[i];
 delete[] p;
-p = NULL;
 }
 }
 
commit b6b4816d51e99d8843ade4cc6a64774683796119
Author: Caolán McNamara caol...@redhat.com
Date:   Sun May 10 21:13:40 2015 +0100

cppcheck: help out unusedScopedObject false positive

Change-Id: I0df7a930ff970c26fbbb03d9333108ee3cae7ad4

diff --git a/sal/qa/osl/process/osl_Thread.cxx 
b/sal/qa/osl/process/osl_Thread.cxx
index 5ab8836..403490d 100644
--- a/sal/qa/osl/process/osl_Thread.cxx
+++ b/sal/qa/osl/process/osl_Thread.cxx
@@ -1523,7 +1523,7 @@ namespace osl_Thread
 
 /** Test of the osl::Thread::wait method
 */
-class wait : public CppUnit::TestFixture
+class waittest : public CppUnit::TestFixture
 {
 public:
 void setUp() SAL_OVERRIDE {}
@@ -1576,10 +1576,10 @@ namespace osl_Thread
 
 }
 
-

[Libreoffice-bugs] [Bug 60937] CONFIGURATION: Quickstarter opens Template Manager

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60937

--- Comment #9 from Richard richard.els...@tesco.net ---
Bug still present.

LO 4.4.3.2

Win 7 Ultimate

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


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

2015-05-10 Thread Stephan Bergmann
 sfx2/source/appl/fileobj.cxx |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 5e62f81c757beeb23ecd4b3b37b108601e01fea6
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun May 10 13:41:17 2015 +0200

Fix 3ae4264a0db7f725abc33779ec9b11a45e17e279's removal of pThis-

Change-Id: Ie856e04aa85bd3ff065548bd0a9efd5e5cd22b70

diff --git a/sfx2/source/appl/fileobj.cxx b/sfx2/source/appl/fileobj.cxx
index 5068ccc..7616661 100644
--- a/sfx2/source/appl/fileobj.cxx
+++ b/sfx2/source/appl/fileobj.cxx
@@ -497,12 +497,12 @@ IMPL_LINK_NOARG( SvFileObject, LoadGrfReady_Impl )
 return 0;
 }
 
-IMPL_LINK( SvFileObject, DelMedium_Impl, SfxMediumRef*, pDelMed )
+IMPL_LINK( SvFileObject, DelMedium_Impl, SfxMediumRef*, deleteMedium )
 {
 nPostUserEventId = 0;
-assert(pDelMed == pDelMed);
+assert(pDelMed == deleteMedium);
 pDelMed = NULL;
-delete pDelMed;
+delete deleteMedium;
 return 0;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Stephan Bergmann
 fpicker/source/office/iodlg.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 2796bc31e90c87cee10d832a67b1fd9dcab6e51f
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun May 10 13:44:05 2015 +0200

-Werror=shadow

Change-Id: I27493171620e93c8ca35345c3320fb8f6da5d2ab

diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index 90432ad..451d5ba 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -1246,8 +1246,8 @@ IMPL_LINK_NOARG( SvtFileDialog, FileNameModifiedHdl_Impl )
 
 IMPL_LINK_NOARG( SvtFileDialog, URLBoxModifiedHdl_Impl )
 {
-OUString _aPath = _pImp-_pEdCurrentPath-GetURL();
-OpenURL_Impl(_aPath);
+OUString aPath = _pImp-_pEdCurrentPath-GetURL();
+OpenURL_Impl(aPath);
 return 0;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91201] New: Sidebar hogs too much space

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91201

Bug ID: 91201
   Summary: Sidebar hogs too much space
   Product: LibreOffice
   Version: 4.4.2.1 rc
  Hardware: x86 (IA32)
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tony.en...@care4free.net

Created attachment 115481
  -- https://bugs.documentfoundation.org/attachment.cgi?id=115481action=edit
Previous version

Sidbar is just plain annoying. hogs too much space on my laptop screen. I would
like to be able to get back to the view shown in the attached JPG without
having the sidebar icons visible. Version 4.4.2 is starting to suffer from the
interface bloat that made me ditch MS office!

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


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

2015-05-10 Thread Stephan Bergmann
 svtools/source/control/inettbc.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 6d4ee1d2ca10fad541e5d5bae8d29fda2693ef7b
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun May 10 13:18:36 2015 +0200

SvtMatchContext_Impl::pBox is never assigned to...

...so this must be a redundant alias

Change-Id: I3c864716161f01a0724af1b3e655ad13273bdacb

diff --git a/svtools/source/control/inettbc.cxx 
b/svtools/source/control/inettbc.cxx
index 4977d06..38dd2ba 100644
--- a/svtools/source/control/inettbc.cxx
+++ b/svtools/source/control/inettbc.cxx
@@ -218,7 +218,6 @@ IMPL_LINK_NOARG( SvtMatchContext_Impl, Select_Impl )
 }
 }
 
-SvtURLBox* pBox = this-pBox;
 pBox-bAutoCompleteMode = true;
 
 // did we filter completions which otherwise would have been valid?
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Stephan Bergmann
 sc/qa/unit/subsequent_export-test.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 336bc33a5a46e89ea35cefa75997edde2363c8fc
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun May 10 13:38:41 2015 +0200

loplugin:stringconstant

Change-Id: Ic20debae78db9bae77986954dd5838e3ae360825

diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index 4256253..42d8b42 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -2608,7 +2608,7 @@ void ScExportTest::testTextUnderlineColor()
 OUString color = getXPath(pDoc,
 
/xdr:wsDr/xdr:twoCellAnchor/xdr:sp[1]/xdr:txBody/a:p[1]/a:r[1]/a:rPr/a:uFill/a:solidFill/a:srgbClr,
 val);
 // make sure that the underline color is RED
-CPPUNIT_ASSERT(color.equals(ff));
+CPPUNIT_ASSERT_EQUAL(OUString(ff), color);
 }
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91197] Integrate gbuild-to-ide and xcodeproj gem for Xcode project generation

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91197

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

 Whiteboard|EasyHack DifficultyBeginner |EasyHack DifficultyBeginner
   |SkillRuby target:5.0.0  |SkillRuby

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


[Libreoffice-bugs] [Bug 91200] New: Continued crashes

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91200

Bug ID: 91200
   Summary: Continued crashes
   Product: LibreOffice
   Version: 4.4.2.1 rc
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tony.en...@care4free.net

LibreOffice v4.4.2 crashes repeatedly, 2-3 times per session without warning.
Usually when copying / pasting text or tables. Not always able to recover file.
Win7 / Intel Core i3 / Acer Revo / AVG free

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


[Libreoffice-bugs] [Bug 91202] New: [EDITING] Dialog Edit-Fill-Random numbers is broken

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91202

Bug ID: 91202
   Summary: [EDITING] Dialog Edit-Fill-Random numbers is broken
   Product: LibreOffice
   Version: 4.4.3.2 rc
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: olivier.hal...@documentfoundation.org

In release 4.4.3, the random number dialog for filling data is broken

Edit - Fill - Random Numbers

1) Setting Min and Max spin buttons are intermizxed

2) Cannot set a decimal place equals to ZERO. minimum value accepted is 1
(Rounding numbers)

These bugs restricts usage of the feature.

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


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

2015-05-10 Thread Tor Lillqvist
 bridges/source/cpp_uno/gcc3_macosx_x86-64/share.hxx |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit d7d919b82f13a257e7faa4b7ac6b3e2f0a9685a4
Author: Tor Lillqvist t...@collabora.com
Date:   Wed Apr 30 14:11:19 2014 +0300

Fix compilation error against OS X SDK 10.9

Despite what the comment says, it seems that the declarations *must*
match the ones in the SDK's cxxabi.h. (Why do we need our own
declarations at all then? I am not entirely sure.)

Change-Id: I32c2bed69816dc5fd0a20afe04c5a9045ee70dc1
(cherry picked from commit 77cfb8478c8e8058bb43e92fa18c47411e11b2cf)

diff --git a/bridges/source/cpp_uno/gcc3_macosx_x86-64/share.hxx 
b/bridges/source/cpp_uno/gcc3_macosx_x86-64/share.hxx
index aaf83a2..49c7db5 100644
--- a/bridges/source/cpp_uno/gcc3_macosx_x86-64/share.hxx
+++ b/bridges/source/cpp_uno/gcc3_macosx_x86-64/share.hxx
@@ -139,10 +139,17 @@ namespace CPPU_CURRENT_NAMESPACE
 // complain about redeclarations of these somewhat implicitly declared
 // functions):
 #if __GNUC__ == 4  __GNUC_MINOR__ = 6
+
+#if defined __clang__  MACOSX_SDK_VERSION = 1090
+#define CXA_THROW_TINFO_TYPE std::type_info *
+#else
+#define CXA_THROW_TINFO_TYPE void *
+#endif
+
 extern C void *__cxa_allocate_exception(
 std::size_t thrown_size ) throw();
 extern C void __cxa_throw (
-void *thrown_exception, void *tinfo, void (*dest) (void *) ) 
__attribute__((noreturn));
+void *thrown_exception, CXA_THROW_TINFO_TYPE tinfo, void (*dest) (void *) 
) __attribute__((noreturn));
 #endif
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Stephan Bergmann
 cui/source/customize/macropg.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 15f931f845c8289f470ba8d29308ee7592dcd826
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun May 10 15:19:40 2015 +0200

_SvxMacroTabPage::mpImpl is never assigned to...

...so this must be a redundant alias

Change-Id: I6a4d74f89e65521010cbe1cacaa0ef4206d9c58c

diff --git a/cui/source/customize/macropg.cxx b/cui/source/customize/macropg.cxx
index df1b15f..c675ef1 100644
--- a/cui/source/customize/macropg.cxx
+++ b/cui/source/customize/macropg.cxx
@@ -576,8 +576,7 @@ void _SvxMacroTabPage::DisplayAppEvents( bool appEvents)
 // select event handler on the listbox
 IMPL_LINK( _SvxMacroTabPage, SelectEvent_Impl, SvTabListBox*, )
 {
-_SvxMacroTabPage_Impl*pImpl = mpImpl;
-SvHeaderTabListBoxrListBox = pImpl-pEventLB-GetListBox();
+SvHeaderTabListBoxrListBox = mpImpl-pEventLB-GetListBox();
 SvTreeListEntry*pE = rListBox.FirstSelected();
 sal_uLongnPos;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 73423] INSERT: FILEOPEN: FILESAVE: BIN/OCT/DEC/HEX 2 BIN/OCT/DEC/HEX functions not inserted correctly

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=73423

Kü ku...@libreoffice.org changed:

   What|Removed |Added

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

--- Comment #10 from Kü ku...@libreoffice.org ---
The bug is not present any longer when using LO 4.4.2 for saving and LO 4.1.8
for opening.

So I closed the bug.

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


[Libreoffice-bugs] [Bug 91186] Chart labels with more than one word gets stretched

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91186

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 OS|All |Mac OS X (All)

--- Comment #4 from A (Andy) stgohi-lob...@yahoo.de ---
(In reply to Tiago Ferreira from comment #3)
 (In reply to A (Andy) from comment #2)
  For me not reproducible with the attached document with LO 4.4.2.2, Win 8.1
  
  On which operating system have you reproduced it?
 
 I forgot that: OSX 10.10.3 on a Macbook Pro Retina with Intel Iris.

Thanks for your fast reply.

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


[Libreoffice-bugs] [Bug 91197] Integrate gbuild-to-ide and xcodeproj gem for Xcode project generation

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91197

Yurii Kolesnykov yu...@kolesnykov.com changed:

   What|Removed |Added

 CC||yu...@kolesnykov.com
   Hardware|Other   |x86-64 (AMD64)
 Whiteboard||EasyHack DifficultyBeginner
   ||SkillRuby target:5.0.0

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


[Libreoffice-bugs] [Bug 91197] New: Integrate gbuild-to-ide and xcodeproj gem for Xcode project generation

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91197

Bug ID: 91197
   Summary: Integrate gbuild-to-ide and xcodeproj gem for Xcode
project generation
   Product: LibreOffice
   Version: 5.0.0.0.alpha0+ Master
  Hardware: Other
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: yu...@kolesnykov.com

There is a Ruby gem for manipulating Xcode projects from CocoaPods project[1]
A developer with Ruby skill may be able to use it with conjunction of
'gbuil-to-ide' python script to generate proper Xcode projects and a workspace
that may combine all of them.


[1]https://github.com/cocoapods/xcodeproj

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


Yurii Kolesnykov license statement

2015-05-10 Thread Yurii Kolesnykov
 All of my past  future contributions to LibreOffice may be
   licensed under the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


LibreOffice Gerrit News for core on 2015-05-10

2015-05-10 Thread gerrit
Moin!

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

 First time contributors doing great things! 
+ Unit test for tdf#83366
  in https://gerrit.libreoffice.org/15670 from Henry Castro
  about module sc
+ Breeze: update file permissions
  in https://gerrit.libreoffice.org/15691 from andreas_kainz
  about module icon-themes
+ Breeze: Jays commits
  in https://gerrit.libreoffice.org/15690 from andreas_kainz
  about module icon-themes
+ Fixed drag and drop in OSX 10.7+ fix for bug #44621
  in https://gerrit.libreoffice.org/15683 from Manik Malhotra
  about module vcl
 End of freshness 

+ remove a use of OUString::intern()
  in https://gerrit.libreoffice.org/15692 from Norbert Thiebaud
  about module vcl
+ invoke sal_detail_deinitialized() on MacOSX too
  in https://gerrit.libreoffice.org/15684 from Norbert Thiebaud
  about module vcl
+ tdf#68871: Remove the old Elements panel from Math
  in https://gerrit.libreoffice.org/15599 from Julien Nabet
  about module icon-themes, starmath


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

+ tdf#90672: PPTX table cell border color is not exported.
  in https://gerrit.libreoffice.org/15364 from Yogesh Bharate
+ Don't write empty value when exporting grab-bagged w:docPartUnique
  in https://gerrit.libreoffice.org/15686 from Joren De Cuyper
+ tdf#88608: clear SearchLabel when altering the search string
  in https://gerrit.libreoffice.org/15598 from Joren De Cuyper
+ Do not write v:fill properties on export of imagedata
  in https://gerrit.libreoffice.org/15668 from Joren De Cuyper
+ tdf#90828 FILESAVE:XLSX export of underline color for text inside textbox
  in https://gerrit.libreoffice.org/15514 from Priyanka Gaikwad
+ tdf#90190 PPTX table cell border width is not exported.
  in https://gerrit.libreoffice.org/15350 from Yogesh Bharate
+ Update HarfBuzz to 0.9.40
  in https://gerrit.libreoffice.org/15643 from Khaled Hosny
+ Breeze: fix tdf#90387 in writer and calc
  in https://gerrit.libreoffice.org/15682 from andreas_kainz
+ Breeze: update icon theme, and fix tdf#90387
  in https://gerrit.libreoffice.org/15681 from andreas_kainz


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

+ Fix *** CID 1297232:  Incorrect expression  (DIVIDE_BY_ZERO) in sw
  in https://gerrit.libreoffice.org/15685 from Philippe Jung


* Open changes needing tweaks, but being untouched for more than a week:

+ tdf#69701 use Calc's GCD() function instead of add-in GCD and
  in https://gerrit.libreoffice.org/15185 from Winfried Donkers
+ Fixed two strings in the context menu for consistency with other entries
  in https://gerrit.libreoffice.org/15537 from Yousuf Philips
+ tdf#90494-Add new Attribute for exporting gradient angle diagonally
  in https://gerrit.libreoffice.org/15323 from Heena Gupta
+ preserve whitespaces here, tdf#88137, tdf#89254
  in https://gerrit.libreoffice.org/15375 from Markus Mohrhard
+ add kde5 build of vcl
  in https://gerrit.libreoffice.org/15327 from Jonathan Riddell
+ added currency dropdown menu may have some erors
  in https://gerrit.libreoffice.org/15274 from rajat vijay
+ Remove compiler Warnings
  in https://gerrit.libreoffice.org/15260 from Delveri Chick
+ Init
  in https://gerrit.libreoffice.org/15259 from Delveri Chick
+ tdf#90222: replace ScaList in scaddins with a std container
  in https://gerrit.libreoffice.org/15012 from Pieter Adriaensen
+ replace ScaList in scaddins with a std container tdf#90222
  in https://gerrit.libreoffice.org/15177 from Pieter Adriaensen
+ fdo#82335.
  in https://gerrit.libreoffice.org/11555 from Sudarshan Rao
+ tdf#64575 Photo Album: Better Image Layout
  in https://gerrit.libreoffice.org/14912 from Enes Ateş
+ WIP fdo#72987 Use firebird backup format for .odb no need for rebuild ind
  in https://gerrit.libreoffice.org/14968 from Popa Adrian Marius
+ Upgrade firebird to 2.5.3 , a few patches are already applied upstream
  in https://gerrit.libreoffice.org/15026 from Popa Adrian Marius
+ Fixed all  postfix operator++ and operator--
  in https://gerrit.libreoffice.org/14975 from Ahmad Samir
+ tdf#39468 Translate German Comments - sc/source/core/data/
  in https://gerrit.libreoffice.org/14866 from Christian M. Heller
+ tdf#49893: final fix for blank rectangle problem
  in https://gerrit.libreoffice.org/14584 from Vasily Melenchuk
+ xmloff: convert xof.component to use constructor syntax
  in https://gerrit.libreoffice.org/14820 from Chris Sherlock
+ xmloff: use constructor syntax in xo.component
  in https://gerrit.libreoffice.org/14803 from Chris Sherlock
+ sd: use constructor syntax for rest of sd.component
  in https://gerrit.libreoffice.org/14689 from Chris Sherlock
+ embeddedobj: convert emboleobj.*.component to constructor syntax
  in https://gerrit.libreoffice.org/14687 from Chris Sherlock
+ sc: use constructor syntax in sc.component
  in https://gerrit.libreoffice.org/14750 from Chris Sherlock
+ Convert ScDocument to constructor 

[Libreoffice-bugs] [Bug 44621] EDITING: Drag and drop images into Writer opens Draw (OS X = 10.7)

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44621

Manik Malhotra manikmalhotr...@gmail.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |manikmalhotr...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 91189] Impossible to import Access 2007/2010 Databases

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91189

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de

--- Comment #3 from rob...@familiegrosskopf.de ---
How did you try to import the tables? Is Base connected to the access-database?
If you try to import data from one database to another both databases have to
be *.odb-files. One is the *.odb-file for the connection to an external
database and the other is the *.odb-file for the tables, which should be
imported into the internal HSQLDB (or any other database ...).

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


[Libreoffice-bugs] [Bug 89613] Artifacts for icons and other UI elements

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89613

--- Comment #15 from Stuart Rogers stu...@stella-maris.org.uk ---
I have today tried LO 4.4.3.3 in case it made any difference. It does not using
Fedora 21 KDE I still have the problems with screen corruption. So I am still
using 4.3 on all my machines.

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


[Libreoffice-bugs] [Bug 91198] New: templates in template path not shown

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91198

Bug ID: 91198
   Summary: templates in template path not shown
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: Other
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: g_winkelm...@web.de

I set the template path to the dir where all of them lay. I guess they should
sbe shown in My Templates. But there is - nothing

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


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

2015-05-10 Thread Stephan Bergmann
 sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit aed24614017419517d63cb021ae397ff9d93982e
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun May 10 13:15:07 2015 +0200

Leftover (void)pUnused

Change-Id: I5dfb00740691bcbc2c5f4c161349385032ab1013

diff --git 
a/sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.cxx 
b/sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.cxx
index af18023..0a0014a 100644
--- a/sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.cxx
+++ b/sd/source/ui/framework/configuration/ChangeRequestQueueProcessor.cxx
@@ -113,8 +113,6 @@ void ChangeRequestQueueProcessor::StartProcessing()
 
 IMPL_LINK_NOARG(ChangeRequestQueueProcessor, ProcessEvent)
 {
-(void)pUnused;
-
 ::osl::MutexGuard aGuard (maMutex);
 
 mnUserEventId = 0;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89695] DICTIONARIES: Updating the english dictionaries

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89695

--- Comment #4 from Kevin Atkinson k...@kevina.org ---
 Was searching through the OOo bugzilla and found the bug where i believe the
 dictionary files were last updated from -
 https://bz.apache.org/ooo/show_bug.cgi?id=92383

I don't believe the dictionary refereed to in that bug report was ever used. 
For one thing he only released it under the GPLv3.

Per an agreement with Nemeth several years ago, I am the official maintainer of
the American Hunspell dictionary, at least for the contents of the dictionary. 
I do not believe the American dictionary from Nemeth has been updated in a long
time.

I wrote some scripts to help Mozilla upgrade to the latest upstream version,
see https://bugzilla.mozilla.org/show_bug.cgi?id=1137544.  I am not sure I have
the time to do the same for LibreOffice, but perhaps someone can use those
scripts as a starting point.

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


[Libreoffice-bugs] [Bug 91208] New: Arial (Body) in pptx import causes text to wrap

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91208

Bug ID: 91208
   Summary: Arial (Body) in pptx import causes text to wrap
   Product: LibreOffice
   Version: 4.4.3.2 rc
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ofirr@gmail.com

Created attachment 115484
  -- https://bugs.documentfoundation.org/attachment.cgi?id=115484action=edit
pptx showing the issue

In the attached pptx there are two text boxes.

In PowerPoint 2013 the text in both boxes is in a single line and not wrapped.
In PowerPoint the font in the left box is Arial (Body) and the text in the
right box is Arial.

In LO the font in the left box is Calibri and the text is wrapped in two lines.

The attached PDF exported from PowerPoint show the expected result. The text is
not wrapped in the left box.

Tested on Ubuntu 14.04 32 bit, LO 4.4.3.2.

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


[Libreoffice-bugs] [Bug 53034] Document properties: Editing-time adding up incomplete

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=53034

Harald Koester harald.koes...@mail.de changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #17 from Harald Koester harald.koes...@mail.de ---
Checked the Total editing time with severals release versions. It seemed this
problem has been fixed in version 4.3.0. In version 4.2.4 it still exists. 

Furthermore I created a new bug report for problems mentioned in step (5) (bug
91204).

Hence I closed this bug.

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


[Libreoffice-bugs] [Bug 90176] Undocked sidebar won't dock on either side by dragging and dropping

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90176

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Blocks||65138
   Severity|minor   |enhancement

--- Comment #6 from V Stuart Foote vstuart.fo...@utsa.edu ---
Not a bug, changing this to enhancement.

As noted Sidebar is not a toolbar and has different behavior regards drag to a
re-dock position.

Rather, Sidebar has two states docked or undocked--and two docking positions,
either aligned right (default) or aligned left (set default for RTL).

Once in docked state, the widget will respond to drag and attach left or right. 

But while undocked, mouse action can only move the dialog window. A Dock menu
button action is provided to return the dialog to its docked state. As noted,
it can then be dragged to opposite edge.

Enhancement would be to provide an additional accelerator/mouse action (to
overide the undocked Sidebar's simple movement) to be able to dock the dialog
window to the opposite alignment and change its docked state.  Or possibly to
more completely replicate the Toolbar widget movements.

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


[Libreoffice-bugs] [Bug 91180] Cannot find Philippine Peso in Special Characters

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91180

--- Comment #11 from Bamm bammgabri...@gmail.com ---
Adolfo, I just downloaded Debian 8 Jessie and tested it from the Live DVD. As
expected, I got the same result as Ubuntu and Mint. Therefore this issue is at
least Debian-wide. I am downloading Fedora now to test if it is the same for
non-Debian distros.

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


[Libreoffice-bugs] [Bug 91203] New: Decreasing bullet point indentation if cursor is placed at the end

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91203

Bug ID: 91203
   Summary: Decreasing bullet point indentation if cursor is
placed at the end
   Product: LibreOffice
   Version: 4.4.2.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: orsch...@gmail.com

Created attachment 115482
  -- https://bugs.documentfoundation.org/attachment.cgi?id=115482action=edit
Screencast showing that indentation only works if cursor is placed at the
beginning.

Dear all, 

Would it be possible to add the feature that decreasing indentation of a bullet
point also works if the cursor is placed at the end of the bullet point?

Currently decreasing indentation only works if the cursor is placed at the
beginning of the bullet point. 

Please see my attached screencast. 

Thankfully,

Robert

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


[Libreoffice-bugs] [Bug 91205] New: Content pasted automatically when recovering focus

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91205

Bug ID: 91205
   Summary: Content pasted automatically when recovering focus
   Product: LibreOffice
   Version: 4.4.2.2 release
  Hardware: x86 (IA32)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sant...@gmail.com

It has happened to me in Impress and in Writer so far.

Have a document opened, with some text selected in Writer, or a slide selected
in Impress.

Go to another application, say Finder. 

Then go back to Impress or Writer clicking in another slide in Impress, or in
the middle of some text in Writer.

Most of the times a CUT  PASTE operation takes place by itself.

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


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

2015-05-10 Thread Noel Grandin
 sc/qa/unit/opencl-test.cxx |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

New commits:
commit cf9e5d1cb9adaf8861d09a6c610d2ddf9fd9520d
Author: Noel Grandin n...@peralex.com
Date:   Tue Oct 14 09:32:45 2014 +0200

don't execute ScOpenCLTest::testFinacialIRRFormula on OSX

it has intermittent failures which causes the tinderboxes
to unnecessarily spam my inbox

(cherry picked from commit c60eac8db02fa6bd9097dfd387251bf85d9a7616)

Conflicts:
sc/qa/unit/opencl-test.cxx

Change-Id: I689b9d8c5da169dc6572250afe686b79039fba34

diff --git a/sc/qa/unit/opencl-test.cxx b/sc/qa/unit/opencl-test.cxx
index 9ac41a2..2806747 100644
--- a/sc/qa/unit/opencl-test.cxx
+++ b/sc/qa/unit/opencl-test.cxx
@@ -76,7 +76,10 @@ public:
 void testStatisticalFormulaFisherInv();
 void testStatisticalFormulaGamma();
 void testFinacialFvscheduleFormula();
+// this test has intermittent failures on OSX
+#if !defined MACOSX
 void testFinacialIRRFormula();
+#endif
 void testFinacialMIRRFormula();
 void testFinacialRateFormula();
 void testFinancialAccrintmFormula();
@@ -301,7 +304,10 @@ public:
 CPPUNIT_TEST(testStatisticalFormulaFisherInv);
 CPPUNIT_TEST(testStatisticalFormulaGamma);
 CPPUNIT_TEST(testFinacialFvscheduleFormula);
+// this test has intermittent failures on OSX
+#if !defined MACOSX
 CPPUNIT_TEST(testFinacialIRRFormula);
+#endif
 CPPUNIT_TEST(testFinacialMIRRFormula);
 CPPUNIT_TEST(testFinacialRateFormula);
 CPPUNIT_TEST(testCompilerHorizontal);
@@ -1248,7 +1254,8 @@ void ScOpenclTest::testFinacialSYDFormula()
 xDocShRes-DoClose();
 }
 
-
+// this test has intermittent failures on OSX
+#if !defined MACOSX
 void ScOpenclTest::testFinacialIRRFormula()
 {
 if (!detectOpenCLDevice())
@@ -1271,6 +1278,7 @@ void ScOpenclTest::testFinacialIRRFormula()
 xDocSh-DoClose();
 xDocShRes-DoClose();
 }
+#endif
 //[AMLOEXT-49]
 void ScOpenclTest::testStatisticalFormulaGammaLn()
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Stephan Bergmann
 cui/source/tabpages/macroass.cxx |   21 +
 1 file changed, 9 insertions(+), 12 deletions(-)

New commits:
commit 1f43eab48a0397d9f7c272116aeb150694b1721d
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun May 10 15:59:31 2015 +0200

SfxMacroTabPage::mpImpl is never assigned to...

...so these must be redundant aliases

Change-Id: I6c48f24f7808f336e206d8cba257f9bc063bdfc7

diff --git a/cui/source/tabpages/macroass.cxx b/cui/source/tabpages/macroass.cxx
index b882722..2e90ed8 100644
--- a/cui/source/tabpages/macroass.cxx
+++ b/cui/source/tabpages/macroass.cxx
@@ -263,8 +263,7 @@ bool _SfxMacroTabPage::IsReadOnly() const
 
 IMPL_LINK( _SfxMacroTabPage, SelectEvent_Impl, SvTabListBox*, )
 {
-_SfxMacroTabPage_Impl*  pImpl = mpImpl;
-SvHeaderTabListBox rListBox = pImpl-pEventLB-GetListBox();
+SvHeaderTabListBox rListBox = mpImpl-pEventLB-GetListBox();
 SvTreeListEntry*pE = rListBox.FirstSelected();
 sal_uLong   nPos;
 if( !pE || LISTBOX_ENTRY_NOTFOUND ==
@@ -281,13 +280,12 @@ IMPL_LINK( _SfxMacroTabPage, SelectEvent_Impl, 
SvTabListBox*, )
 
 IMPL_LINK( _SfxMacroTabPage, SelectGroup_Impl, ListBox*, )
 {
-_SfxMacroTabPage_Impl*  pImpl = mpImpl;
-pImpl-pGroupLB-GroupSelected();
-const OUString sScriptURI = pImpl-pMacroLB-GetSelectedScriptURI();
+mpImpl-pGroupLB-GroupSelected();
+const OUString sScriptURI = mpImpl-pMacroLB-GetSelectedScriptURI();
 OUString   aLabelText;
 if( !sScriptURI.isEmpty() )
-aLabelText = pImpl-maStaticMacroLBLabel;
-pImpl-pMacroFrame-set_label( aLabelText );
+aLabelText = mpImpl-maStaticMacroLBLabel;
+mpImpl-pMacroFrame-set_label( aLabelText );
 
 EnableButtons();
 return 0;
@@ -301,8 +299,7 @@ IMPL_LINK( _SfxMacroTabPage, SelectMacro_Impl, ListBox*, )
 
 IMPL_LINK( _SfxMacroTabPage, AssignDeleteHdl_Impl, PushButton*, pBtn )
 {
-_SfxMacroTabPage_Impl*  pImpl = mpImpl;
-SvHeaderTabListBox rListBox = pImpl-pEventLB-GetListBox();
+SvHeaderTabListBox rListBox = mpImpl-pEventLB-GetListBox();
 SvTreeListEntry* pE = rListBox.FirstSelected();
 sal_uLong nPos;
 if( !pE || LISTBOX_ENTRY_NOTFOUND ==
@@ -312,7 +309,7 @@ IMPL_LINK( _SfxMacroTabPage, AssignDeleteHdl_Impl, 
PushButton*, pBtn )
 return 0;
 }
 
-const bool bAssEnabled = pBtn != pImpl-pDeletePB  
pImpl-pAssignPB-IsEnabled();
+const bool bAssEnabled = pBtn != mpImpl-pDeletePB  
mpImpl-pAssignPB-IsEnabled();
 
 // remove from the table
 sal_uInt16 nEvent = 
(sal_uInt16)reinterpret_castsal_uLong(pE-GetUserData());
@@ -321,7 +318,7 @@ IMPL_LINK( _SfxMacroTabPage, AssignDeleteHdl_Impl, 
PushButton*, pBtn )
 OUString sScriptURI;
 if( bAssEnabled )
 {
-sScriptURI = pImpl-pMacroLB-GetSelectedScriptURI();
+sScriptURI = mpImpl-pMacroLB-GetSelectedScriptURI();
 if( sScriptURI.startsWith( vnd.sun.star.script: ) )
 {
 aTbl.Insert(
@@ -335,7 +332,7 @@ IMPL_LINK( _SfxMacroTabPage, AssignDeleteHdl_Impl, 
PushButton*, pBtn )
 }
 }
 
-pImpl-pEventLB-SetUpdateMode( false );
+mpImpl-pEventLB-SetUpdateMode( false );
 pE-ReplaceItem( new SvLBoxString( pE, 0, sScriptURI ), LB_MACROS_ITEMPOS 
);
 rListBox.GetModel()-InvalidateEntry( pE );
 rListBox.Select( pE );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91204] New: Some Items of Properties Dialogue are not Current if Option “Edit document properties before saving” is Chosen

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91204

Bug ID: 91204
   Summary: Some Items of Properties Dialogue are not Current if
Option “Edit document properties before saving” is
Chosen
   Product: LibreOffice
   Version: 4.4.3.2 rc
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: harald.koes...@mail.de

Steps to reproduce:

(1) Open new text document. 
(2) Set Option „Load/Save  General  Save  Edit document properties before
saving”
(3) Insert some text.
(4) Save document: File  Save. The “Save as ...” dialogue is displayed. Type
in file name, choose file type and choose folder, then ”Save“. The dialogue
“Properties of Untitled1” is displayed. Expected: “Properties of [just chosen
file name] should be displayed.
(5) Click tab “General” 
Displayed file name: “Untitled”. Expected: File name typed in at step (4).
Type: Text document. Expected: File type chosen in step (4).
Location: A folder is not displayed. Expected: Folder chosen in step (4)

This bug also appears if you like to save an existing document under a
different name, type and/or folder with “Save as...”. In this case the previous
name, folder and type are displayed.

This bug also appears with Calc, hence I suppose all LibreOffice components
(Draw, Impress,..) are effected.

Comment: You can argue, that the displayed information of file name, file type
and location are correct, hence the document has not been saved yet. But from
my point of view it's quite irritating, when I have just determined name, type
and folder and one second later these data are not displayed. Possibly for a
better understanding a message could be displayed in the properties dialogue,
e.g. “Document has not been saved yet. It will be saved with OK.”

There is also another solution for this bug: Change the order of both
dialogues, first display the “Properties...” dialogue and then the “Save as...”
dialogue. To my opinion this solution is also more logical, hence the option
says “...before...”. For this possibility I would also replace some words of
the “Properties…” dialogue: 
(a) Content of field File Name: Not: “Untitled”, better “(untitled)” or “(File
name not determined yet)”, with brackets in order to avoid a mix-up with a file
name.
(b) Not “Type”, better “File type”.
(c) In field “Type” or File type”: Not “Text document”, better “Undetermined
text document format”
(d) Not “Location”, better “Folder”.
(e) In field “Location” or “Folder”: “(Folder not determined yet)”

Hint: I already described this bug in Bug 53034 together with another problem
which has been solved meanwhile.

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


[Libreoffice-bugs] [Bug 91206] New: [1] - Mathematical function - interpre.hxx - Extend enum ScIterFuncIf by ifMAXIF and ifMINIF similar to SUMIF

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91206

Bug ID: 91206
   Summary: [1] - Mathematical function - interpre.hxx - Extend
enum ScIterFuncIf  by  ifMAXIF  and  ifMINIF  similar
to  SUMIF
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: c.liebc...@gmail.com
QA Contact: c.liebc...@gmail.com

Dear developers,

in my business environment using Excel, there was an application in which the
functionality of

MINIF(Range; Criteria; MinRange)
MAXIF(Range; Criteria; MaxRange)

function would have been right on target. Since they are lacking the set of
functions that is implemented in Excel, I had to make the experience with the
so-called matrix functions, which was a really, really strange experience!

In order to prevent less involved users from that strange experience, but
providing them with that additional and _very_ useful functionality, it would
be most comfortable, to add the MINIF and MAXIF functionality to the set of
standard functions being available in any cells' formula.

If I got the source code correctly, then the generic design of the ScIterFuncIf
might limit the algorithmic part of the code extension to the method

double ScInterpreter::IterateParametersIf( ScIterFuncIf eFunc )

With all the other constants that are required to embed such new functions in a
proper way, I do not feel to make any guess on the volume of the necessary
changes - still hoping these to be limited, too.

It would really be nice to go that step forward (in front of Excel!) in the
open source spreadsheet software, hence it'd be great if you let me know what
you are thinking on that potential improvement!

Best regards,
Christian

P.S.: I hope that import/export requirements from/to Excel are not a limiting
factor for adding such new functions - because then, LibreOffice would always
just have to be designated to be (at least) one step behind Excel.

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


[Libreoffice-bugs] [Bug 91208] Arial (Body) in pptx import causes text to wrap

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91208

--- Comment #1 from Ofir ofirr@gmail.com ---
Created attachment 115485
  -- https://bugs.documentfoundation.org/attachment.cgi?id=115485action=edit
PDF exported from PowerPoint

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


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

2015-05-10 Thread Joren De Cuyper
 sw/qa/extras/ooxmlexport/ooxmlexport5.cxx|2 ++
 sw/source/filter/ww8/docxattributeoutput.cxx |8 
 2 files changed, 6 insertions(+), 4 deletions(-)

New commits:
commit c2cc63338f3c2f38d0a4f6be822c6cdeedb8213c
Author: Joren De Cuyper jore...@libreoffice.org
Date:   Sun May 10 11:24:20 2015 +0200

Don't write empty vertAnchor, HorzAnchor, tblpYSpec and tblpXSpec attributes

This attributes needs a value from the enumeration.
See 
http://dev-builds.libreoffice.org/crashtest/6183a945de03dcd5fe0b967d5814a0add954a8c8/validation/docx/fdo43632-1.docx.log
 :

(word/document.xml:2 col:70,187) cvc-enumeration-valid: Value '' is not 
facet-valid with respect to enumeration
'[inline, top, center, bottom, inside, outside]'. It must be a value from 
the enumeration.
(word/document.xml:2 col:70,187) cvc-attribute.3: The value '' of attribute 
'w:tblpYSpec' on element 'w:tblpPr'
is not valid with respect to its type, 'ST_YAlign'.

Change-Id: Ibe4ccdf1c273e2ede22dc8865ec91af4de162e10
Reviewed-on: https://gerrit.libreoffice.org/15693
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Joren De Cuyper jore...@libreoffice.org

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
index 89a1502..07ba2ae 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport5.cxx
@@ -234,6 +234,8 @@ DECLARE_OOXMLEXPORT_TEST(testFloatingTable, fdo77887.docx)
 assertXPath(pXmlDoc, 
/w:document[1]/w:body[1]/w:tbl[1]/w:tblPr[1]/w:tblpPr[1], tblpY, 2266);
 assertXPath(pXmlDoc, 
/w:document[1]/w:body[1]/w:tbl[1]/w:tblPr[1]/w:tblpPr[1], vertAnchor, 
page);
 
+//make sure not to write empty attributes which requires enumeration
+assertXPathNoAttribute(pXmlDoc, 
/w:document[1]/w:body[1]/w:tbl[1]/w:tblPr[1]/w:tblpPr[1], tblpYSpec);
 }
 
 DECLARE_OOXMLEXPORT_TEST(testOldComplexMergeRight, tdf90681-1.odt)
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index abd7557..9147bfe 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -3224,22 +3224,22 @@ void DocxAttributeOutput::TableDefinition( 
ww8::WW8TableNodeInfoInner::Pointer_t
 uno::Sequencebeans::PropertyValue aTablePosition = 
aGrabBagElement-second.getuno::Sequencebeans::PropertyValue ();
 for (sal_Int32 i = 0; i  aTablePosition.getLength(); ++i)
 {
-if (aTablePosition[i].Name == vertAnchor)
+if (aTablePosition[i].Name == vertAnchor  
aTablePosition[i].Value.getOUString() != )
 {
 OString strTemp = 
OUStringToOString(aTablePosition[i].Value.getOUString(), 
RTL_TEXTENCODING_UTF8);
 attrListTablePos-add( FSNS( XML_w, XML_vertAnchor ), 
strTemp.getStr() );
 }
-else if (aTablePosition[i].Name == tblpYSpec)
+else if (aTablePosition[i].Name == tblpYSpec  
aTablePosition[i].Value.getOUString() != )
 {
 OString strTemp = 
OUStringToOString(aTablePosition[i].Value.getOUString(), 
RTL_TEXTENCODING_UTF8);
 attrListTablePos-add( FSNS( XML_w, XML_tblpYSpec ), 
strTemp.getStr() );
 }
-else if (aTablePosition[i].Name == horzAnchor)
+else if (aTablePosition[i].Name == horzAnchor  
aTablePosition[i].Value.getOUString() != )
 {
 OString strTemp = 
OUStringToOString(aTablePosition[i].Value.getOUString(), 
RTL_TEXTENCODING_UTF8);
 attrListTablePos-add( FSNS( XML_w, XML_horzAnchor ), 
strTemp.getStr() );
 }
-else if (aTablePosition[i].Name == tblpXSpec)
+else if (aTablePosition[i].Name == tblpXSpec  
aTablePosition[i].Value.getOUString() != )
 {
 OString strTemp = 
OUStringToOString(aTablePosition[i].Value.getOUString(), 
RTL_TEXTENCODING_UTF8);
 attrListTablePos-add( FSNS( XML_w, XML_tblpXSpec ), 
strTemp.getStr() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Miklos Vajna
 oox/source/export/drawingml.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 6a71fc9e48654d80f9545f43066ca56103d0cf65
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun May 10 20:52:38 2015 +0200

CppunitTest_sd_export_tests: fix validation errors

Regression from 3e4d2043e99201ec542186039e3be34d3c226111 (tdf#90190 PPTX
table cell border width is not exported., 2015-04-16).

Change-Id: I9ccbfe32a068ea787f1bb5c62034a54f2a5996aa

diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index d2691cc..1b0d64f 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -156,7 +156,8 @@ bool DrawingML::GetPropertyAndState( Reference 
XPropertySet  rXPropertySet, Re
 
 void DrawingML::WriteColor( sal_uInt32 nColor, sal_Int32 nAlpha )
 {
-OString sColor = OString::number(  nColor, 16 );
+// Transparency is a separate element.
+OString sColor = OString::number(  nColor  0x00FF, 16 );
 if( sColor.getLength()  6 )
 {
 OStringBuffer sBuf( 0 );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Miklos Vajna
 sw/source/filter/ww8/docxattributeoutput.cxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit dc6dc631e25b6ad3de5018b9be03b129d40d7375
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun May 10 21:01:00 2015 +0200

loplugin:stringconstant

Change-Id: I651af9aef0fe9b5eacbbd7acb7b1fc1ff4185698

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 9147bfe..701ebc7 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -3224,22 +3224,22 @@ void DocxAttributeOutput::TableDefinition( 
ww8::WW8TableNodeInfoInner::Pointer_t
 uno::Sequencebeans::PropertyValue aTablePosition = 
aGrabBagElement-second.getuno::Sequencebeans::PropertyValue ();
 for (sal_Int32 i = 0; i  aTablePosition.getLength(); ++i)
 {
-if (aTablePosition[i].Name == vertAnchor  
aTablePosition[i].Value.getOUString() != )
+if (aTablePosition[i].Name == vertAnchor  
!aTablePosition[i].Value.getOUString().isEmpty())
 {
 OString strTemp = 
OUStringToOString(aTablePosition[i].Value.getOUString(), 
RTL_TEXTENCODING_UTF8);
 attrListTablePos-add( FSNS( XML_w, XML_vertAnchor ), 
strTemp.getStr() );
 }
-else if (aTablePosition[i].Name == tblpYSpec  
aTablePosition[i].Value.getOUString() != )
+else if (aTablePosition[i].Name == tblpYSpec  
!aTablePosition[i].Value.getOUString().isEmpty())
 {
 OString strTemp = 
OUStringToOString(aTablePosition[i].Value.getOUString(), 
RTL_TEXTENCODING_UTF8);
 attrListTablePos-add( FSNS( XML_w, XML_tblpYSpec ), 
strTemp.getStr() );
 }
-else if (aTablePosition[i].Name == horzAnchor  
aTablePosition[i].Value.getOUString() != )
+else if (aTablePosition[i].Name == horzAnchor  
!aTablePosition[i].Value.getOUString().isEmpty())
 {
 OString strTemp = 
OUStringToOString(aTablePosition[i].Value.getOUString(), 
RTL_TEXTENCODING_UTF8);
 attrListTablePos-add( FSNS( XML_w, XML_horzAnchor ), 
strTemp.getStr() );
 }
-else if (aTablePosition[i].Name == tblpXSpec  
aTablePosition[i].Value.getOUString() != )
+else if (aTablePosition[i].Name == tblpXSpec  
!aTablePosition[i].Value.getOUString().isEmpty())
 {
 OString strTemp = 
OUStringToOString(aTablePosition[i].Value.getOUString(), 
RTL_TEXTENCODING_UTF8);
 attrListTablePos-add( FSNS( XML_w, XML_tblpXSpec ), 
strTemp.getStr() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Joren De Cuyper
 sw/qa/extras/ooxmlexport/ooxmlexport2.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c342295aa8269537494c603429abbec9259f997d
Author: Joren De Cuyper jore...@libreoffice.org
Date:   Sun May 10 19:06:32 2015 +0200

Imagedata test: test fill-attributes are not written at all

Change-Id: Iac7e3a14753ee0e0c6d64bda270043462fa3f20a
Reviewed-on: https://gerrit.libreoffice.org/15698
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Joren De Cuyper jore...@libreoffice.org

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport2.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport2.cxx
index a14388d..224e546 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport2.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport2.cxx
@@ -1115,8 +1115,8 @@ DECLARE_OOXMLEXPORT_TEST(NoFillAttrInImagedata, 
NoFillAttrInImagedata.docx)
 if (!pXmlDoc)
 return;
 
-assertXPath(pXmlDoc, 
/w:document/w:body/w:p/w:r/mc:AlternateContent[2]/mc:Fallback/w:pict/v:rect/v:imagedata,
 type, );
-assertXPath(pXmlDoc, 
/w:document/w:body/w:p/w:r/mc:AlternateContent[2]/mc:Fallback/w:pict/v:rect/v:imagedata,
 color2, );
+assertXPathNoAttribute(pXmlDoc, 
/w:document/w:body/w:p/w:r/mc:AlternateContent[2]/mc:Fallback/w:pict/v:rect/v:imagedata,
 type);
+assertXPathNoAttribute(pXmlDoc, 
/w:document/w:body/w:p/w:r/mc:AlternateContent[2]/mc:Fallback/w:pict/v:rect/v:imagedata,
 color2);
 }
 
 DECLARE_OOXMLEXPORT_TEST(testBnc837302, bnc837302.docx)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91191] Italian Translation Fix

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91191

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 91202] [EDITING] Dialog Edit-Fill-Random numbers is broken

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91202

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||stgohi-lob...@yahoo.de
 Ever confirmed|0   |1
 OS|Linux (All) |All

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
(In reply to Olivier Hallot from comment #0)
 In release 4.4.3, the random number dialog for filling data is broken
 
 Edit - Fill - Random Numbers

 1) Setting Min and Max spin buttons are intermizxed

For me not reproducible with LO 4.4.3.2, Win 8.1

 2) Cannot set a decimal place equals to ZERO. minimum value accepted is 1
 (Rounding numbers)

For me reproducible with LO 4.4.3.2, Win 8.1

 These bugs restricts usage of the feature.

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


[Libreoffice-bugs] [Bug 91176] Shadowed Drop cap truncates character

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91176

--- Comment #6 from Eliezer Segal eliezer.se...@gmail.com ---
After playing around a bit, it appears that the problem does not exist in
earlier versions of LO, but is new to 4.4 (I realize that these are not
necessarily for release yet, so consider it beta testing).

Interestingly, the Drop Caps seem to show up correctly in the thumbnail
previews on the Startcenter page. Go figure.

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


[Libreoffice-bugs] [Bug 89949] replace home-grown affine transformation code by glm

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89949

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

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

--- Comment #1 from Adolfo Jayme f...@libreoffice.org ---
https://gerrit.libreoffice.org/gitweb?p=libetonyek.git;a=commitdiff;h=c721170ffd4956a1da088bc8cfefdee33dfc4ed6

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


[Libreoffice-bugs] [Bug 85747] SIDEBAR: Above and below paragraph spacing not correct

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85747

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Blocks|65138   |

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


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

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65138

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Depends on|85747   |

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


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

2015-05-10 Thread Philippe Jung
 cui/source/options/optaboutconfig.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 0b4e3f5ebd2511c7ba39cbcc83d5faddb842404d
Author: Philippe Jung phil.j...@free.fr
Date:   Sun May 10 15:02:21 2015 +0200

Crash Options-Advanced-Advanced, missing disposeAndClear

Change-Id: Ibf0c2893f0ccd784430fbed3c9fdc5985f5bb708
Reviewed-on: https://gerrit.libreoffice.org/15696
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/cui/source/options/optaboutconfig.cxx 
b/cui/source/options/optaboutconfig.cxx
index b246966..8c3d633 100644
--- a/cui/source/options/optaboutconfig.cxx
+++ b/cui/source/options/optaboutconfig.cxx
@@ -168,6 +168,7 @@ CuiAboutConfigTabPage::~CuiAboutConfigTabPage()
 
 void CuiAboutConfigTabPage::dispose()
 {
+m_pPrefBox.disposeAndClear();
 m_pPrefCtrl.clear();
 m_pResetBtn.clear();
 m_pEditBtn.clear();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Joren De Cuyper
 oox/source/export/vmlexport.cxx |   22 +++---
 1 file changed, 7 insertions(+), 15 deletions(-)

New commits:
commit 8908f10fe3b6566db469a1f2bd2674d8d0425165
Author: Joren De Cuyper jore...@libreoffice.org
Date:   Sun May 10 12:47:01 2015 +0200

Code is executed in both cases so take it outside the statement

Change-Id: I8d4c3a62d4e63d2666bfce18d6af772a29e271d4
Reviewed-on: https://gerrit.libreoffice.org/15695
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx
index a7ed878..9e8e6d2 100644
--- a/oox/source/export/vmlexport.cxx
+++ b/oox/source/export/vmlexport.cxx
@@ -1109,24 +1109,16 @@ sal_Int32 VMLExport::StartShape()
 if (!sAnchorId.isEmpty())
 m_pShapeAttrList-addNS(XML_wp14, XML_anchorId, 
OUStringToOString(sAnchorId, RTL_TEXTENCODING_UTF8));
 
-if ( nShapeElement = 0  !m_pShapeAttrList-hasAttribute( XML_type ) )
+if ( nShapeElement = 0  !m_pShapeAttrList-hasAttribute( XML_type )  
bReferToShapeType )
 {
-if ( bReferToShapeType )
-{
-m_pShapeAttrList-add( XML_type, OStringBuffer( 20 )
-.append( shapetype_ ).append( sal_Int32( m_nShapeType ) )
-.makeStringAndClear() );
-}
-
-// start of the shape
-m_pSerializer-startElementNS( XML_v, nShapeElement, 
XFastAttributeListRef( m_pShapeAttrList ) );
-}
-else
-{
-// start of the shape
-m_pSerializer-startElementNS( XML_v, nShapeElement, 
XFastAttributeListRef( m_pShapeAttrList ) );
+m_pShapeAttrList-add( XML_type, OStringBuffer( 20 )
+.append( shapetype_ ).append( sal_Int32( m_nShapeType ) )
+.makeStringAndClear() );
 }
 
+// start of the shape
+m_pSerializer-startElementNS( XML_v, nShapeElement, 
XFastAttributeListRef( m_pShapeAttrList ) );
+
 // now check if we have some editeng text (not associated textbox) and we 
have a text exporter registered
 const SdrTextObj* pTxtObj = PTR_CAST(SdrTextObj, m_pSdrObject);
 if (pTxtObj  m_pTextExport  
msfilter::util::HasTextBoxContent(m_nShapeType)  
!IsWaterMarkShape(m_pSdrObject-GetName())  !lcl_isTextBox(m_pSdrObject))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/osx

2015-05-10 Thread mmeof2
 vcl/osx/DropTarget.cxx |   20 +++-
 vcl/osx/DropTarget.hxx |2 +-
 2 files changed, 16 insertions(+), 6 deletions(-)

New commits:
commit cfdd89f10fdc15b36bd0d1023e49ca3752feb51e
Author: mmeof2 manikmalhotr...@gmail.com
Date:   Sat May 9 18:05:11 2015 +0530

tdf#44621: Fixed drag and drop in OSX 10.7+

Change-Id: Iefcc529d8ffa608e26c75a445341e0b8ae11c613
Reviewed-on: https://gerrit.libreoffice.org/15683
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/vcl/osx/DropTarget.cxx b/vcl/osx/DropTarget.cxx
index b52e433..13190ff 100644
--- a/vcl/osx/DropTarget.cxx
+++ b/vcl/osx/DropTarget.cxx
@@ -105,7 +105,8 @@ namespace /* private */
 
 -(BOOL)performDragOperation:(id NSDraggingInfo)sender
 {
-return mDropTarget-performDragOperation(sender);
+(void) sender;
+return mDropTarget-performDragOperation();
 }
 
 -(void)concludeDragOperation:(id NSDraggingInfo)sender
@@ -201,7 +202,10 @@ NSDragOperation DropTarget::draggingEntered(id sender)
 sal_Int8 currentAction = 
determineDropAction(mDragSourceSupportedActions, sender);
 
 NSRect bounds = [mView bounds];
-NSPoint dragLocation = [sender draggedImageLocation];
+NSPoint mouseLoc = [NSEvent mouseLocation];
+
+id wnd = [mView window];
+NSPoint dragLocation = [mView convertPoint:[wnd 
convertScreenToBase:mouseLoc] fromView:nil];
 
 CocoaToVCL(dragLocation, bounds);
 
@@ -239,7 +243,10 @@ NSDragOperation DropTarget::draggingUpdated(id sender)
 {
 sal_Int8 currentAction = determineDropAction(currentDragSourceActions, 
sender);
 NSRect bounds = [mView bounds];
-NSPoint dragLocation = [sender draggedImageLocation];
+NSPoint mouseLoc = [NSEvent mouseLocation];
+
+id wnd = [mView window];
+NSPoint dragLocation = [mView convertPoint:[wnd 
convertScreenToBase:mouseLoc] fromView:nil];
 
 CocoaToVCL(dragLocation, bounds);
 
@@ -288,7 +295,7 @@ BOOL DropTarget::prepareForDragOperation()
 return 1;
 }
 
-BOOL DropTarget::performDragOperation(id sender)
+BOOL DropTarget::performDragOperation()
 {
 bool bSuccess = false;
 
@@ -302,7 +309,10 @@ BOOL DropTarget::performDragOperation(id sender)
 }
 
 NSRect bounds = [mView bounds];
-NSPoint dragLocation = [sender draggedImageLocation];
+NSPoint mouseLoc = [NSEvent mouseLocation];
+
+id wnd = [mView window];
+NSPoint dragLocation = [mView convertPoint:[wnd 
convertScreenToBase:mouseLoc] fromView:nil];
 
 CocoaToVCL(dragLocation, bounds);
 
diff --git a/vcl/osx/DropTarget.hxx b/vcl/osx/DropTarget.hxx
index 09f4ee8..d31f506 100644
--- a/vcl/osx/DropTarget.hxx
+++ b/vcl/osx/DropTarget.hxx
@@ -125,7 +125,7 @@ public:
   NSDragOperation draggingUpdated(id sender);
   void draggingExited(id sender);
   static BOOL prepareForDragOperation();
-  BOOL performDragOperation(id sender);
+  BOOL performDragOperation();
   void concludeDragOperation(id sender);
 
   /* If multiple actions are supported by the drag source and
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Norbert Thiebaud
 vcl/source/gdi/impimagetree.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2523972f6a066488c649ab97dcba4f458126f18b
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sat May 9 19:39:55 2015 -0500

remove a use of OUString::intern()

maIconCache is defined as a std::unordered_map
'interning' a OUString to give to it as a key seems completely
superfluous since no-one will ever use it by address, even less
compare the address.

Change-Id: Iab5d106d7d51fcdfbd0a0dfd50ae28d686b9b2b7
Reviewed-on: https://gerrit.libreoffice.org/15692
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/vcl/source/gdi/impimagetree.cxx b/vcl/source/gdi/impimagetree.cxx
index 576bb8c..e1a36df 100644
--- a/vcl/source/gdi/impimagetree.cxx
+++ b/vcl/source/gdi/impimagetree.cxx
@@ -181,7 +181,7 @@ bool ImplImageTree::doLoadImage(OUString const  name, 
OUString const  style, B
 }
 
 if (found)
-maIconSet[maCurrentStyle].maIconCache[name.intern()] = 
std::make_pair(localized, bitmap);
+maIconSet[maCurrentStyle].maIconCache[name] = 
std::make_pair(localized, bitmap);
 
 return found;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-10 Thread Joren De Cuyper
 include/svx/dialogs.hrc  |1 +
 include/svx/srchdlg.hxx  |1 +
 svx/source/dialog/srchdlg.cxx|2 ++
 svx/source/dialog/srchdlg.src|4 
 sw/source/uibase/uiview/viewsrch.cxx |7 ++-
 5 files changed, 14 insertions(+), 1 deletion(-)

New commits:
commit 69b35cb45375c324c1e28fd4547ce874e4894f30
Author: Joren De Cuyper jore...@libreoffice.org
Date:   Sat May 2 17:21:24 2015 +0200

related tdf#88608: find: add string for reaching start of document

If you searched backwards and reached the start of the document,
the text Reached the end of the document was shown.

Change-Id: Ic35884de2f1ada07e76c9c3e27cf6c81c4a83304
Reviewed-on: https://gerrit.libreoffice.org/15597
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/include/svx/dialogs.hrc b/include/svx/dialogs.hrc
index e6abab7..709bd3b 100644
--- a/include/svx/dialogs.hrc
+++ b/include/svx/dialogs.hrc
@@ -227,6 +227,7 @@
 #define RID_SVXSTR_CALC_STYLES  (RID_SVX_START +  85)
 #define RID_SVXSTR_SEARCH_NOT_FOUND (RID_SVX_START +  88)
 #define RID_SVXSTR_QUERY_EXIT_RECOVERY  (RID_SVX_START +  89)
+#define RID_SVXSTR_SEARCH_START (RID_SVX_START +  90)
 // ResIds for the PageDialog
 
 // Strings of the ToolBox-Controls from tbcontrl.cxx
diff --git a/include/svx/srchdlg.hxx b/include/svx/srchdlg.hxx
index 0ad7edb..81728a9 100644
--- a/include/svx/srchdlg.hxx
+++ b/include/svx/srchdlg.hxx
@@ -82,6 +82,7 @@ enum SearchLabel
 {
 SL_Empty,
 SL_End,
+SL_Start,
 SL_EndSheet,
 SL_NotFound
 };
diff --git a/svx/source/dialog/srchdlg.cxx b/svx/source/dialog/srchdlg.cxx
index 415c140..33dbbb8 100644
--- a/svx/source/dialog/srchdlg.cxx
+++ b/svx/source/dialog/srchdlg.cxx
@@ -2319,6 +2319,8 @@ void SvxSearchDialogWrapper::SetSearchLabel(const 
SearchLabel rSL)
 OUString sStr;
 if (rSL == SL_End)
 sStr = SVX_RESSTR(RID_SVXSTR_SEARCH_END);
+else if (rSL == SL_Start)
+sStr = SVX_RESSTR(RID_SVXSTR_SEARCH_START);
 else if (rSL == SL_EndSheet)
 sStr = SVX_RESSTR(RID_SVXSTR_SEARCH_END_SHEET);
 else if (rSL == SL_NotFound)
diff --git a/svx/source/dialog/srchdlg.src b/svx/source/dialog/srchdlg.src
index c0fd4e5..e50d3d7 100644
--- a/svx/source/dialog/srchdlg.src
+++ b/svx/source/dialog/srchdlg.src
@@ -54,5 +54,9 @@ String RID_SVXSTR_SEARCH_NOT_FOUND
 {
 Text [ en-US ] = Search key not found ;
 };
+String RID_SVXSTR_SEARCH_START
+{
+Text [ en-US ] = Reached the beginning of the document ;
+};
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/uibase/uiview/viewsrch.cxx 
b/sw/source/uibase/uiview/viewsrch.cxx
index e23c53c..e1deaba 100644
--- a/sw/source/uibase/uiview/viewsrch.cxx
+++ b/sw/source/uibase/uiview/viewsrch.cxx
@@ -544,7 +544,12 @@ bool SwView::SearchAndWrap(bool bApi)
 pWait.reset();
 #if HAVE_FEATURE_DESKTOP
 if (m_bFound)
-SvxSearchDialogWrapper::SetSearchLabel(SL_End);
+{
+if (!bSrchBkwrd)
+SvxSearchDialogWrapper::SetSearchLabel(SL_End);
+else
+SvxSearchDialogWrapper::SetSearchLabel(SL_Start);
+}
 else if(!bApi)
 SvxSearchDialogWrapper::SetSearchLabel(SL_NotFound);
 #endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 68508] Sidebar visibly switches units when loading

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68508

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Blocks|65138   |

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


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

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65138

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Depends on|68508   |

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


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

2015-05-10 Thread Charu Tyagi
 oox/source/export/drawingml.cxx |8 
 1 file changed, 8 insertions(+)

New commits:
commit 2ff13e13f5f1ec7436e99c6ff7c9a863bc1a1572
Author: Charu Tyagi charu.ty...@ericsson.com
Date:   Tue Apr 14 15:30:00 2015 +0530

tdf#90607:Issue in bullets not having  any text following.

Change-Id: If0571864684ec484e859c967aebb23c378c302ef
Reviewed-on: https://gerrit.libreoffice.org/15298
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 1b0d64f..e504113 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -1513,10 +1513,18 @@ void DrawingML::GetUUID( OStringBuffer rBuffer )
 
 void DrawingML::WriteRun( Reference XTextRange  rRun )
 {
+Reference XPropertySet  rXPropSet( rRun, UNO_QUERY );
+sal_Int16 nLevel = -1;
+GET( nLevel, NumberingLevel );
+
 const char* sFieldType;
 bool bIsField = false;
 OUString sText = rRun-getString();
 
+//if there is no text following the bullet, add a space after the bullet
+if (nLevel !=-1  sText.isEmpty() )
+ sText= ;
+
 if( sText.isEmpty())
 {
 Reference XPropertySet  xPropSet( rRun, UNO_QUERY );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90607] Bullets that do not have text following them are not getting exported to pptx correctly.

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90607

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

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

tdf#90607:Issue in bullets not having  any text following.

It will be available in 5.0.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 90607] Bullets that do not have text following them are not getting exported to pptx correctly.

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90607

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

   What|Removed |Added

 Whiteboard|| target:5.0.0

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


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

2015-05-10 Thread Mike Kaganski
 sw/source/core/fields/cellfml.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4f864949a9484bbf21911859398743bfe2b1430f
Author: Mike Kaganski mikekagan...@hotmail.com
Date:   Sat May 9 00:11:24 2015 +1000

tdf#66353: fix converting relative sw table formula back to box

The check was incorrect: it invariantly checked only first part
of formula, and thus gave wrong results when the relative represen-
tation of formula contained external reference in usual box form.

BTW, I don't know why there's hardcoded return of A1 on error
in SwTableFormula::RelNmsToBoxNms? Isn't that dangerous to provide
an arbitrary valid result that may give unnoticed wrong calculation?

Change-Id: If17c0f9459c64e65a6c2b8ed4482ffee78f115b2
Reviewed-on: https://gerrit.libreoffice.org/15678
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/sw/source/core/fields/cellfml.cxx 
b/sw/source/core/fields/cellfml.cxx
index 5185864..b163b6b 100644
--- a/sw/source/core/fields/cellfml.cxx
+++ b/sw/source/core/fields/cellfml.cxx
@@ -648,7 +648,7 @@ OUString SwTableFormula::ScanString( FnScanFormula 
fnFormula, const SwTable rTb
 // JP 22.02.99: Linux compiler needs cast
 // JP 28.06.99: rel. BoxName has no preceding tablename!
 if( fnFormula != (FnScanFormula)SwTableFormula::_SplitMergeBoxNm 

-m_sFormula.getLength()1  cRelIdentifier != m_sFormula[1] 
+m_sFormula.getLength()(nStt+1)  cRelIdentifier != 
m_sFormula[nStt+1] 
 (nSeparator = m_sFormula.indexOf( '.', nStt ))=0
  nSeparator  nEnd )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91209] New: Calc crashes after close if a formula uses dec2hex, dec2okt, dec2bin but nor on hex2dec... Windows complains about libvcllo.dll

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91209

Bug ID: 91209
   Summary: Calc crashes after close if a formula uses dec2hex,
dec2okt, dec2bin but nor on hex2dec... Windows
complains about libvcllo.dll
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: matti...@mailbox.org

This occurs only on one single machine with Windows 7 Professional 32 Bit:

If I create a new calc spreadsheet and type in cell A1 for example 987654 and
in the cell below the formula =DEC2HEX(A1,6) then after saving the spreadsheet
and closing LO, Windows complains about A problem is occurred and in details
it is caused by libvcllo.dll.

Everytime I load this file and close lo forces this windows problem report.
I also tried a clean new user profile, but it leads into the same problem. On
this machine is Microsoft office 2010 installed, also. Perhaps another software
installed on this machine force this bug - I'm little helpless by now.


On my home machine it worked well, no bug occurs. Can't reproduce it on another
machines.

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


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

2015-05-10 Thread Mike Kaganski
 vcl/source/filter/wmf/winmtf.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c6bc9b33d5cac1ea40a829754004fde6ae16d8b1
Author: Mike Kaganski mikekagan...@hotmail.com
Date:   Wed May 6 19:10:05 2015 +1000

tdf#74301: WMF: use LibreOffice locale on OEM_CHARSET/DEFAULT_CHARSET

[MS-WMF] 2.1.1.5 CharacterSet Enumeration defines DEFAULT_CHARSET
Specifies a character set based on the current system locale;
for example, when the system locale is United States English,
the default character set is ANSI_CHARSET

OEM_CHARSET is defined as follows: Specifies a mapping to one of
the OEM code pages, according to the current system locale setting

Currently, LO WMF import treats these values as synonim for
RTL_TEXTENCODING_MS_1252. This patch fixes this to use LibreOffice
locale setting instead.

Strictly speaking, this is not quite correct for OEM. E.g., for
Russian, DEFAULT_CHARSET is equal to codepage 1251, while OEM_CHARSET
is codepage 866. But I don't know how to distinguish these two.

Change-Id: Id5eaf070cde040bd6eb1db28f1a498d647ba227e
Reviewed-on: https://gerrit.libreoffice.org/15641
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/vcl/source/filter/wmf/winmtf.cxx b/vcl/source/filter/wmf/winmtf.cxx
index d6423ea..f14f934 100644
--- a/vcl/source/filter/wmf/winmtf.cxx
+++ b/vcl/source/filter/wmf/winmtf.cxx
@@ -145,7 +145,7 @@ WinMtfFontStyle::WinMtfFontStyle( LOGFONTW rFont )
 {
 rtl_TextEncoding eCharSet;
 if ( ( rFont.lfCharSet == OEM_CHARSET ) || ( rFont.lfCharSet == 
DEFAULT_CHARSET ) )
-eCharSet = RTL_TEXTENCODING_MS_1252;
+eCharSet = osl_getThreadTextEncoding();
 else
 eCharSet = rtl_getTextEncodingFromWindowsCharset( rFont.lfCharSet );
 if ( eCharSet == RTL_TEXTENCODING_DONTKNOW )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90607] Bullets that do not have text following them are not getting exported to pptx correctly.

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90607

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 90607] Bullets that do not have text following them are not getting exported to pptx correctly.

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90607

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |charu.tyag...@gmail.com
   |desktop.org |

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


[Libreoffice-bugs] [Bug 91208] Arial (Body) in pptx import causes text to wrap

2015-05-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91208

--- Comment #2 from Ofir ofirr@gmail.com ---
'Arial (Body)' is replaced with Calibri with and without the
ttf-mscorefonts-installer package.

Might be related:
https://bugs.documentfoundation.org/show_bug.cgi?id=62559
https://bugs.documentfoundation.org/show_bug.cgi?id=64232

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