Re: Interested in Contributing to LibreOffice

2015-03-06 Thread Łukasz Hryniuk

Hi Tanmay!

Did you look at Easy Hacks page? It's a good place to start:
https://wiki.documentfoundation.org/Development/Easy_Hacks

I think you will find something for yourself among Interesting tasks, 
requiring C++ skills.


Regards,
Łukasz Hryniuk

On 06/03/15 14:40, Tanmay Sahay wrote:

Hello, everyone!

I am Tanmay Sahay, a Sophomore from IIIT Hyderabad. I've been 
programming in C++ for around 3 years, and I'm proficient in 
algorithmic programming. LibreOffice interests me. I've looked up the 
basic development workflow; this enabled me to successfully build my 
own development version of LibreOffice from the repository I cloned. 
It would be great if someone could direct me to the areas of 
development where my algorithmic programming can be put to use, as I'm 
keen on contributing!

With regards,
*Tanmay Sahay*
*CSE, 2013-17*
*IIIT Hyderabad*




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


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


[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - 6 commits - sc/inc sc/source

2015-03-06 Thread Jan Holesovsky
 sc/inc/docuno.hxx  |   15 +--
 sc/source/ui/inc/gridwin.hxx   |   12 ++
 sc/source/ui/inc/output.hxx|1 
 sc/source/ui/unoobj/docuno.cxx |   30 ++
 sc/source/ui/view/gridwin.cxx  |   20 
 sc/source/ui/view/gridwin4.cxx |  197 +
 sc/source/ui/view/output3.cxx  |3 
 7 files changed, 156 insertions(+), 122 deletions(-)

New commits:
commit b256187042fbcba5d4a1047fc8dccf6693d4b823
Author: Jan Holesovsky ke...@collabora.com
Date:   Sat Mar 7 00:48:03 2015 +0100

sc tiled mouse events: Proof-of-concept.

One has to click  press enter to be able to type into the cell.  The typing
is visible only in the top left tile, but even in the other tiles, the text
gets there - when you manage to invalidate everything, the text appears.

Change-Id: I7c9c0a52949a514eb3de7a7fe64f11597377d39f

diff --git a/sc/inc/docuno.hxx b/sc/inc/docuno.hxx
index f277efc..ab7b6e9 100644
--- a/sc/inc/docuno.hxx
+++ b/sc/inc/docuno.hxx
@@ -368,7 +368,7 @@ public:
 virtual sal_Int32 SAL_CALL getFormulaCellNumberLimit()
 throw 
(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
 
-// @see vcl::ITiledRenderable::paintTile().
+/// @see vcl::ITiledRenderable::paintTile().
 virtual void paintTile( VirtualDevice rDevice,
 int nOutputWidth,
 int nOutputHeight,
@@ -377,21 +377,24 @@ public:
 long nTileWidth,
 long nTileHeight ) SAL_OVERRIDE;
 
-// @see vcl::ITiledRenderable::getDocumentSize().
+/// @see vcl::ITiledRenderable::getDocumentSize().
 virtual Size getDocumentSize() SAL_OVERRIDE;
 
-// @see vcl::ITiledRenderable::setPart().
+/// @see vcl::ITiledRenderable::setPart().
 virtual void setPart(int nPart) SAL_OVERRIDE;
 
-// @see vcl::ITiledRenderable::getPart().
+/// @see vcl::ITiledRenderable::getPart().
 virtual int getPart() SAL_OVERRIDE;
 
-// @see vcl::ITiledRenderable::getParts().
+/// @see vcl::ITiledRenderable::getParts().
 virtual int getParts() SAL_OVERRIDE;
 
-// @see vcl::ITiledRenderable::registerCallback().
+/// @see vcl::ITiledRenderable::registerCallback().
 virtual void registerCallback(LibreOfficeKitCallback pCallback, void* 
pData) SAL_OVERRIDE;
 
+/// @see vcl::ITiledRenderable::postMouseEvent().
+virtual void postMouseEvent(int nType, int nX, int nY, int nCount) 
SAL_OVERRIDE;
+
 /// @see vcl::ITiledRenderable::initializeForTiledRendering().
 virtual void initializeForTiledRendering() SAL_OVERRIDE;
 };
diff --git a/sc/source/ui/inc/gridwin.hxx b/sc/source/ui/inc/gridwin.hxx
index 7bc053d..56498ab 100644
--- a/sc/source/ui/inc/gridwin.hxx
+++ b/sc/source/ui/inc/gridwin.hxx
@@ -325,6 +325,12 @@ public:
 /// @see OutputDevice::LogicInvalidate().
 void LogicInvalidate(const ::vcl::Region* pRegion) SAL_OVERRIDE;
 
+/// Same as MouseButtonDown(), but coordinates are in logic unit.
+void LogicMouseButtonDown(const MouseEvent rMouseEvent);
+
+/// Same as MouseButtonUp(), but coordinates are in logic unit.
+void LogicMouseButtonUp(const MouseEvent rMouseEvent);
+
 virtual ::com::sun::star::uno::Reference 
::com::sun::star::accessibility::XAccessible  CreateAccessible() SAL_OVERRIDE;
 
 voidFakeButtonUp();
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx
index d8697d4..eb22350 100644
--- a/sc/source/ui/unoobj/docuno.cxx
+++ b/sc/source/ui/unoobj/docuno.cxx
@@ -27,6 +27,7 @@
 #include svx/svxids.hrc
 #include svx/unoshape.hxx
 
+#include LibreOfficeKit/LibreOfficeKitEnums.h
 #include officecfg/Office/Common.hxx
 #include officecfg/Office/Calc.hxx
 #include svl/numuno.hxx
@@ -518,6 +519,35 @@ void ScModelObj::registerCallback(LibreOfficeKitCallback 
pCallback, void* pData)
 
pDocShell-GetDocument().GetDrawLayer()-registerLibreOfficeKitCallback(pCallback,
 pData);
 }
 
+void ScModelObj::postMouseEvent(int nType, int nX, int nY, int nCount)
+{
+SolarMutexGuard aGuard;
+
+// There seems to be no clear way of getting the grid window for this
+// particular document, hence we need to hope we get the right window.
+ScViewData* pViewData = ScDocShell::GetViewData();
+ScGridWindow* pGridWindow = pViewData-GetActiveWin();
+
+if (!pGridWindow)
+return;
+
+// Calc operates in pixels...
+MouseEvent aEvent(Point(nX / TWIPS_PER_PIXEL, nY / TWIPS_PER_PIXEL), 
nCount, MouseEventModifiers::SIMPLECLICK, MOUSE_LEFT);
+
+switch (nType)
+{
+case LOK_MOUSEEVENT_MOUSEBUTTONDOWN:
+pGridWindow-LogicMouseButtonDown(aEvent);
+break;
+case LOK_MOUSEEVENT_MOUSEBUTTONUP:
+pGridWindow-LogicMouseButtonUp(aEvent);
+break;
+default:
+assert(false);
+break;
+}
+}
+
 void ScModelObj::initializeForTiledRendering()
 {
 SolarMutexGuard 

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

2015-03-06 Thread Eike Rathke
 formula/source/core/api/token.cxx |   18 ++
 include/formula/tokenarray.hxx|4 
 sc/source/core/tool/compiler.cxx  |   28 
 3 files changed, 46 insertions(+), 4 deletions(-)

New commits:
commit 333f8a76341f5b4921e89012d133007503e49612
Author: Eike Rathke er...@redhat.com
Date:   Fri Mar 6 23:22:45 2015 +0100

first stab at handling table[] all range

Change-Id: I608cf04cf4b0b991f4a45a868566faeae5be77c9

diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx
index 0ab8f9b..dce9171 100644
--- a/sc/source/core/tool/compiler.cxx
+++ b/sc/source/core/tool/compiler.cxx
@@ -3931,6 +3931,17 @@ ScTokenArray* ScCompiler::CompileString( const OUString 
rFormula )
 {
 static_castScTokenArray*(pArr)-MergeRangeReference( aPos);
 }
+else if (eLastOp == ocDBArea  pNewToken-GetOpCode() == 
ocTableRefOpen)
+{
+sal_uInt16 nIdx = pArr-GetLen() - 1;
+const FormulaToken* pPrev = pArr-PeekPrev( nIdx);
+if (pPrev  pPrev-GetOpCode() == ocDBArea)
+{
+// pPrev may be dead hereafter.
+static_castScTokenArray*(pArr)-ReplaceToken( 1,
+new ScTableRefToken( pPrev-GetIndex(), 
ScTableRefToken::ALL));
+}
+}
 eLastOp = maRawToken.GetOpCode();
 if ( bAutoCorrect )
 aCorrectedFormula += aCorrectedSymbol;
@@ -4664,12 +4675,19 @@ bool ScCompiler::HandleTableRef()
 aRange.aEnd.SetTab(aRange.aStart.Tab());
 ScTokenArray* pNew = new ScTokenArray();
 ScTableRefToken::Item eItem = pTR-GetItem();
+bool bGotToken = false;
 if (eItem == ScTableRefToken::ALL)
 {
 ScComplexRefData aRefData;
 aRefData.InitFlags();
 aRefData.SetRange(aRange, aPos);
 pNew-AddDoubleReference( aRefData );
+// Optional [] (or [#All]) may follow.
+if ((bGotToken = GetToken())  mpToken-GetOpCode() == 
ocTableRefOpen)
+{
+if ((bGotToken = GetToken())  mpToken-GetOpCode() == 
ocTableRefClose)
+bGotToken = false;  // get next token below
+}
 }
 else
 {
@@ -4678,7 +4696,7 @@ bool ScCompiler::HandleTableRef()
 }
 PushTokenArray( pNew, true );
 pNew-Reset();
-return GetToken();
+return bGotToken ? true : GetToken();
 }
 return true;
 }
commit 40c9a46b78b8919aae82dd9b94774d63bb9cb4e6
Author: Eike Rathke er...@redhat.com
Date:   Fri Mar 6 22:39:53 2015 +0100

add FormulaTokenArray::ReplaceToken()

Change-Id: I42c893677c1b8a35ee502a9ae438d4c0f19867d3

diff --git a/formula/source/core/api/token.cxx 
b/formula/source/core/api/token.cxx
index 567c12c..117f276 100644
--- a/formula/source/core/api/token.cxx
+++ b/formula/source/core/api/token.cxx
@@ -849,6 +849,24 @@ FormulaToken* FormulaTokenArray::MergeArray( )
 return NULL;
 }
 
+FormulaToken* FormulaTokenArray::ReplaceToken( sal_uInt16 nOffset, 
FormulaToken* t )
+{
+if (nOffset  nLen)
+{
+CheckToken(*t);
+sal_uInt16 nPos = nLen - nOffset - 1;
+t-IncRef();
+pCode[nPos]-DecRef();
+pCode[nPos] = t;
+return t;
+}
+else
+{
+t-Delete();
+return NULL;
+}
+}
+
 FormulaToken* FormulaTokenArray::Add( FormulaToken* t )
 {
 if( !pCode )
diff --git a/include/formula/tokenarray.hxx b/include/formula/tokenarray.hxx
index 244a7b9..c70e6c1d 100644
--- a/include/formula/tokenarray.hxx
+++ b/include/formula/tokenarray.hxx
@@ -115,6 +115,10 @@ protected:
 
 /// Also used by the compiler. The token MUST had been allocated with new!
 FormulaToken*   Add( FormulaToken* );
+/** Also used by the compiler. The token MUST had been allocated with new!
+@param nOffset negative offset of token, 0==last, 1==previous, ...
+ */
+FormulaToken*   ReplaceToken( sal_uInt16 nOffset, FormulaToken* );
 inline  voidSetCombinedBitsRecalcMode( ScRecalcMode nBits )
 { nMode |= (nBits  ~RECALCMODE_EMASK); }
 inline  ScRecalcModeGetCombinedBitsRecalcMode() const
commit bc4293bde13001a5e959ff90c189111932c05b3b
Author: Eike Rathke er...@redhat.com
Date:   Fri Mar 6 21:56:22 2015 +0100

clarify this visually

Change-Id: I04c1a00903cc0c057fc436e391f93b1e05eed8a1

diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx
index 6469918..0ab8f9b 100644
--- a/sc/source/core/tool/compiler.cxx
+++ b/sc/source/core/tool/compiler.cxx
@@ -3924,11 +3924,13 @@ ScTokenArray* ScCompiler::CompileString( const 
OUString rFormula )
 FormulaToken* pNewToken = static_castScTokenArray*(pArr)-Add( 
maRawToken.CreateToken());
 if (!pNewToken)
 {
-SetError(errCodeOverflow); break;
+

[Libreoffice-bugs] [Bug 89780] Any text placed on a slide is NOT shown when starting the slideshow from that slide

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89780

--- Comment #7 from Andy silva...@katamail.com ---
Yes, that is what I meant: even if not disruptive, bugs that show up patently
in Impress during presentation mode are critical since you are actually showing
them to a vast public. As anybody can easily understand, this can cause huge
damage to the perception of LO as a quality product.

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


Interest in contributing to Libreoffice (GSOC 2015)

2015-03-06 Thread Amate Yolande
Hello

   My name is Amate Yolande and I am interested in contributing to the
Libreoffice community for google summer of code 2015. I am proficient in
c/c++ programming. I have successful compiled and built the Libreoffice
source code and I am presently trying to find an Easy Hack to work on. I
would like to work on the Implement Xara X import filter project since I
have some experience with working on CAD geometry converters. I would like
get some directives on how to get started with respect to this project.

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


[Libreoffice-bugs] [Bug 89869] New: Very ugly icons in toolbars

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89869

Bug ID: 89869
   Summary: Very ugly icons in toolbars
   Product: LibreOffice
   Version: 4.4.1.2 rc
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jkuf...@gmail.com

Created attachment 113939
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113939action=edit
Ugly toolbar icons

Icons are terrible. That upscaling is really ugly. Small icons are large and
ugly, large icons are huge and even uglier.

I have 176PPI display (1920x1080, 12inch) and DPI everywhere is configured
correctly -- when page in LOWriter is displayed 1:1 and I put sheet of paper on
my display, their size matches exactly.

Can't LibreOffice use large icons with no upscaling by default on such display?

-- 
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 87540] Installer deletes previous installation's files even when installed to different directory

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87540

--- Comment #2 from pb blic...@comcast.net ---
Thanks for the pointer.

However, I see this shows as fixed.  It is NOT fixed, because while there is
a workaround, LO still should not clobber files in a random other directory
without warning and confirmation.

-- 
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 89858] New: Filesave as DOCX looses text, 3 of 7 pages saved

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89858

Bug ID: 89858
   Summary: Filesave as DOCX looses text, 3 of 7 pages saved
   Product: LibreOffice
   Version: 4.3.0.0.beta1
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

While reviewing attachment 97273 in bug 77374, I noticed another problem, at
least in Windows. 

Filesave as DOCX looses text, so 7 pages is saved as 3 pages, but not easy to
determine from which LO version, because: 
- up to LO 4.1 text was NOT lost
- LO 4.2 didn't open DOCX properly at all up to 4.2.2, there were not 7 pages,
but it was fixed and text is NOT lost after that up to now with LO 4.2.8
- text IS lost in LO 4.3 up to LO 4.3.6 and LO 4.4 up to LO 4.4.1

- text was NOT lost again in some previous LO 4.5.0 master, I think I tested
with libo-master~2015-01-19_06.12.03_LibreOfficeDev_4.5.0.0.alpha0_Win_x86
- document cannot be open and tested with LO 4.5.0 master now, which is another
 Bug 89100 - FILEOPEN: DOCX - File no longer opens.

I will set as regression because filesave worked fine, and mark version as
4.3.0. because current behavior started there. I mark as Critical because of
data loss.
Further testing desired and possible backport of fix to 4.4 and 4.3.

-- 
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 89858] Filesave as DOCX looses text, 3 of 7 pages saved

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89858

Timur gti...@gmail.com changed:

   What|Removed |Added

   Keywords||regression
   Priority|medium  |high
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||100,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||088

-- 
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 89100] FILEOPEN: DOCX - File no longer opens

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89100

Timur gti...@gmail.com changed:

   What|Removed |Added

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

-- 
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-03-06 Thread Miklos Vajna
 vcl/source/window/decoview.cxx |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

New commits:
commit 9a93277b869caca4db054385db59fc7b7d541570
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Fri Mar 6 10:13:20 2015 +0100

vcl: fix Android build

Change-Id: Ib71d74d4b66b02a6a680b5ab0c905b987d59cf7f

diff --git a/vcl/source/window/decoview.cxx b/vcl/source/window/decoview.cxx
index 8545e87..c04c430 100644
--- a/vcl/source/window/decoview.cxx
+++ b/vcl/source/window/decoview.cxx
@@ -28,6 +28,8 @@
  BUTTON_DRAW_CHECKED |  \
  BUTTON_DRAW_HIGHLIGHT)
 
+using namespace std;
+
 namespace {
 
 long AdjustRectToSquare( Rectangle rRect )
@@ -,15 +1113,15 @@ void DecorationView::DrawHandle(const Rectangle rRect, 
bool bVertical)
 if (bVertical)
 {
 aLocation = Rectangle(nHalfWidth - nRadius,
-  std::round(fDistance * i) - nRadius,
+  round(fDistance * i) - nRadius,
   nHalfWidth + nRadius,
-  std::round(fDistance * i) + nRadius);
+  round(fDistance * i) + nRadius);
 }
 else
 {
-aLocation = Rectangle(std::round(fDistance * i) - nRadius,
+aLocation = Rectangle(round(fDistance * i) - nRadius,
   nHalfHeight - nRadius,
-  std::round(fDistance * i) + nRadius,
+  round(fDistance * i) + nRadius,
   nHalfHeight + nRadius);
 }
 mpOutDev-DrawEllipse(aLocation);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89088] FILEOPEN: Last section in specific DOCX lost

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89088

Timur gti...@gmail.com changed:

   What|Removed |Added

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

-- 
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 89840] After a while, can't create accented letters anymore

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89840

--- Comment #4 from maaartin ge...@crans.org ---
Thanks Joel!

http://ask.libreoffice.org/en/question/47245/how-to-fix-this-accented-letter-issue

-- 
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 86584] Chart is hidden, if data separated by split/freeze limit of the window

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86584

--- Comment #2 from Laurent BP jumbo4...@yahoo.fr ---
Tests were made on Win 7

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


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

2015-03-06 Thread Bjoern Michaelsen
 desktop/source/deployment/manager/dp_manager.cxx |3 +--
 filter/source/msfilter/svdfppt.cxx   |   13 -
 2 files changed, 5 insertions(+), 11 deletions(-)

New commits:
commit ca3700c42238e71684ec1d5f5eacaea4b1ca3b30
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Fri Mar 6 14:48:24 2015 +0100

v612: obfuscated if/goto

Change-Id: Ia12b325e41238b9e12e2f388273bd01b96d61c08

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index d7d9cf1..6f0fb86 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -3178,11 +3178,10 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 DffRecordHeader aContentDataHd;
 
 const DffRecordHeader* pListHd = rMan.aDocRecManager.GetRecordHeader( 
PPT_PST_List, SEEK_FROM_BEGINNING );
-while( pListHd )
-{
+if( pListHd )
 pListHd-SeekToContent( rSt );
-if ( !rMan.SeekToContentOfProgTag( 9, rSt, *pListHd, aContentDataHd ) )
-break;
+if ( pListHd  rMan.SeekToContentOfProgTag( 9, rSt, *pListHd, 
aContentDataHd ) )
+{
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  
aContentDataHd.GetRecEndFilePos() ) )
 {
 ReadDffRecordHeader( rSt, aHd );
@@ -3257,13 +3256,10 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 }
 aHd.SeekToEndOfRecord( rSt );
 }
-break;
 }
 
-while( pHd )
+if ( pHd  rMan.SeekToContentOfProgTag( 9, rSt, *pHd, aContentDataHd ) )
 {   // get the extended paragraph styles on mainmaster ( graphical 
bullets, num ruling ... )
-if ( !rMan.SeekToContentOfProgTag( 9, rSt, *pHd, aContentDataHd ) )
-break;
 while ( ( rSt.GetError() == 0 )  ( rSt.Tell()  
aContentDataHd.GetRecEndFilePos() ) )
 {
 ReadDffRecordHeader( rSt, aHd );
@@ -3308,7 +3304,6 @@ PPTExtParaProv::PPTExtParaProv( SdrPowerPointImport 
rMan, SvStream rSt, const
 }
 aHd.SeekToEndOfRecord( rSt );
 }
-break;
 }
 rSt.Seek( nOldPos );
 }
commit 8da61f23384c7f3f2850a6362765506e4e078862
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Fri Mar 6 14:35:24 2015 +0100

v612: obfuscated if

Change-Id: Idbcb1f7461ac5a1d5e07d7d65f6a7d86f2e3cc57

diff --git a/desktop/source/deployment/manager/dp_manager.cxx 
b/desktop/source/deployment/manager/dp_manager.cxx
index 8d90501..92f32c5 100644
--- a/desktop/source/deployment/manager/dp_manager.cxx
+++ b/desktop/source/deployment/manager/dp_manager.cxx
@@ -93,11 +93,10 @@ OUString getExtensionFolder(OUString const   parentFolder,
 StrTitle::createCursor (tempFolder, 
::ucbhelper::INCLUDE_FOLDERS_ONLY ) );
 
 OUString title;
-while (xResultSet-next())
+if (xResultSet-next())
 {
 title = Referencesdbc::XRow(
 xResultSet, UNO_QUERY_THROW )-getString(1 /* Title */ ) ;
-break;
 }
 return title;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 54126] EDITING: RFE: Add ability to set properties for multiple custom animations

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54126

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
   Severity|normal  |enhancement

--- Comment #3 from Beluga todven...@suomi24.fi ---
Confirmed the feature is not yet implemented. Setting to enhancement.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

-- 
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-qa] Could Anyone Put a Netbook to Use

2015-03-06 Thread Joel Madero
Hi All,

We have two netbooks (Windows 8 but you could probably dual boot with
Linux) that were bought for QA that are currently not being used. Just
curious if anyone could put these to use. Preferably they would stick
with QA but if someone outside of QA could use them, I'll talk to
Florian to see what we can do.

Note that one of them has a German keyboard layout.

Email me directly if you could put it to use - let me know what you
would use it for, and how much use you would put it to :) I just hate to
see machines sitting around not being put to use.


Best,
Joel
___
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 'feature/slideshow_onlySprites' - slideshow/source

2015-03-06 Thread Michael Jaumann
 slideshow/source/engine/slide/shapemanagerimpl.cxx |   35 ++---
 slideshow/source/engine/slide/shapemanagerimpl.hxx |2 +
 2 files changed, 33 insertions(+), 4 deletions(-)

New commits:
commit 21009ded43206124264a17992cb554f89aac6b75
Author: Michael Jaumann meta_...@yahoo.com
Date:   Fri Mar 6 14:01:53 2015 +

added updateSprites in shapemangerimpl

Change-Id: I72e768be6bfaae1d6eccc25cebc12f995efdf55e

diff --git a/slideshow/source/engine/slide/shapemanagerimpl.cxx 
b/slideshow/source/engine/slide/shapemanagerimpl.cxx
index 47d12bf..0db4f80 100644
--- a/slideshow/source/engine/slide/shapemanagerimpl.cxx
+++ b/slideshow/source/engine/slide/shapemanagerimpl.cxx
@@ -343,8 +343,7 @@ void ShapeManagerImpl::viewsChanged()
 
 bool ShapeManagerImpl::update()
 {
-//if( mbEnabled)
-   // return mpLayerManager-update();
+updateSprites();
 return false;
 }
 
@@ -381,8 +380,36 @@ void ShapeManagerImpl::leaveAnimationMode( const 
AnimatableShapeSharedPtr rShap
 
 void ShapeManagerImpl::notifyShapeUpdate( const ShapeSharedPtr rShape )
 {
-   // if( mbEnabled )
-   // mpLayerManager-notifyShapeUpdate(rShape);
+if( rShape-isVisible() || rShape-isBackgroundDetached() )
+  maUpdateShapes.insert( rShape );
+}
+
+bool ShapeManagerImpl::updateSprites()
+{
+bool bRet(true);
+
+// send update() calls to every shape in the
+// maUpdateShapes set, which is _animated_ (i.e. a
+// sprite).
+const ShapeUpdateSet::const_iterator aEnd=maUpdateShapes.end();
+ShapeUpdateSet::const_iterator   aCurrShape=maUpdateShapes.begin();
+while( aCurrShape != aEnd )
+{
+if( (*aCurrShape)-isBackgroundDetached() )
+{
+// can update shape directly, without
+// affecting layer content (shape is
+// currently displayed in a sprite)
+if( !(*aCurrShape)-update() )
+bRet = false; // delay error exit
+}
+
+++aCurrShape;
+}
+
+maUpdateShapes.clear();
+
+return bRet;
 }
 
 ShapeSharedPtr ShapeManagerImpl::lookupShape( uno::Reference drawing::XShape 
 const  xShape ) const
diff --git a/slideshow/source/engine/slide/shapemanagerimpl.hxx 
b/slideshow/source/engine/slide/shapemanagerimpl.hxx
index ab98c6a..c1b9916 100644
--- a/slideshow/source/engine/slide/shapemanagerimpl.hxx
+++ b/slideshow/source/engine/slide/shapemanagerimpl.hxx
@@ -198,6 +198,8 @@ private:
::com::sun::star::drawing::XShape   
xShape,
 sal_Int16
nCursor );
 
+bool updateSprites();
+
 /** Common stuff when adding a shape
  */
 void  implAddShape( const ShapeSharedPtr rShape );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 59832] DDE Jittter

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59832

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||todven...@suomi24.fi

--- Comment #3 from Beluga todven...@suomi24.fi ---
Never confirmed.

To original reporter: please test with 4.4.1.

Set to NEEDINFO.
Change back to UNCONFIRMED, if the problem persists. Change to RESOLVED
WORKSFORME, if the problem went away.

-- 
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 36549] ACCESSIBILITY: Tracking bug for issues affecting a11y ATK and GNOME Orca screen reader support

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=36549

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

   What|Removed |Added

 Depends on||88760

-- 
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 60315] UI: RTL UI right-click on slide pane the context menu go outside

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60315

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #6 from Jay Philips philip...@hotmail.com ---
I can confirm the issue still stands with 4.4.

Version: 4.4.2.0.0+
Build ID: 4bc49565331c931f0efb3590db76267a5c911053
TinderBox: Linux-rpm_deb-x86@45-TDF, Branch:libreoffice-4-4, Time:
2015-02-21_01:37:02

-- 
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 89862] Calc crashes using cell layout and using special characters

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89862

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Hi Nelly,

We need you to test a currently supported version of LibreOffice. 3.5 has been
EOL for a very very long time. Please test with at least 4.3, if not 4.4

Moving to NEEDINFO - if you can reproduce with 4.3 or 4.4 set to UNCONFIRMED
and please give clear enumerated steps to reproduce. Thanks

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


Crash test update

2015-03-06 Thread Crashtest VM
New crashtest update available at 
http://dev-builds.libreoffice.org/crashtest/b8ca219893a6e14bfea3cec5522532c144ad2fa6/


exportCrashes.csv
Description: Binary data


importCrash.csv
Description: Binary data


validationErrors.csv
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 89856] [Search Bar] ESC key causes Search Bar close

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89856

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

   What|Removed |Added

 Resolution|WONTFIX |NOTABUG

-- 
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 89856] [Search Bar] ESC key causes Search Bar close

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89856

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #2 from Adolfo Jayme f...@libreoffice.org ---
 After searching some values in Calc when clicking ESC key causes search bar
 disappear/close from toolbar and one have to press Ctrl+F to make it again.

That is intended. It was, in fact, a user-requested change, made in 2011 around
the time LibreOffice was founded, and since then nobody else has complained
about it. Of course, it’s impossible to have everybody happy.

-- 
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 86744] Images on header and footer appear with pink background

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86744

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #1 from Beluga todven...@suomi24.fi ---
It seems the bug is fixed in the most recent version, because I don't see pink.

Please test with 4.4.1 and change this to RESOLVED WORKSFORME, if the problem
went away.

Also: what web browser and operating system did you use to upload the .doc?
Bugzilla detected it as text/plain and the detection is apparently tied to the
web browser. We're trying to find out, when the detection fails.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Ubuntu 14.10 64-bit 
Version: 4.4.1.2
Build ID: 40m0(Build:2)
Locale: en_US

-- 
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 33692] Drag and drop copying not working

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33692

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||fabien.dan...@gmail.com

--- Comment #13 from Beluga todven...@suomi24.fi ---
*** Bug 58245 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 86876] EDITING: copy figure with dragging does not work properly

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86876

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |DUPLICATE

--- Comment #1 from Beluga todven...@suomi24.fi ---


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

-- 
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 58245] drawing display problem with ctrl key when copying drawing in writer

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58245

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |DUPLICATE

--- Comment #4 from Beluga todven...@suomi24.fi ---


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

-- 
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 33692] Drag and drop copying not working

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33692

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||polm...@gmail.com

--- Comment #14 from Beluga todven...@suomi24.fi ---
*** Bug 86876 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 87056] Increase scrolling speed on larger spreadsheets

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87056

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #1 from Beluga todven...@suomi24.fi ---
Sounds reasonable.
Yet, for now you can simply use shift-click target cell, Ctrl-D (fill down),
right?

-- 
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] dev-tools.git: scripts/tpconv.py

2015-03-06 Thread Miklos Vajna
 scripts/tpconv.py |4 
 1 file changed, 4 insertions(+)

New commits:
commit f7f1a8847326bfa5d12feaa9bc6c82ff3d2acd98
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Fri Mar 6 15:00:36 2015 +0100

tpconv: allow pixel to logic conversion

Change-Id: I0e0448fc9efa4dc53e1dfd8e1b65ba68c56f36f3

diff --git a/scripts/tpconv.py b/scripts/tpconv.py
index a9e7bd1..8215349 100755
--- a/scripts/tpconv.py
+++ b/scripts/tpconv.py
@@ -28,6 +28,10 @@ conv = {
 'emu': 1, # EMU / EMU
 }
 
+# We know that VirtualDevices use a DPI of 96.
+# Could use 'gtk.gdk.screen_get_default().get_resolution()' from pygtk.
+conv['pixel'] = conv['inch'] / 96;
+
 def convert(amount, fro, to):
 # convert to EMU
 emu = amount * conv[re.sub(s$, , fro)]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88812] FILEOPEN: Performance regression in speed of RTF import

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88812

--- Comment #5 from Miklos Vajna vmik...@collabora.co.uk ---
Do you have some concrete numbers on how much time it took to import the
document in 3.3 and how much time is required currently?

-- 
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 82744] WebDAV LOCK is released when document is saved

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82744

--- Comment #1 from i...@medizinische-genetik.de ---
This problem still exists in 4.4.1.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 89849] Allow Modification of default subscript/superscript size and position

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89849

--- Comment #3 from Joel Madero jmadero@gmail.com ---
Hey Jonathan -

Ah I think I may have misunderstood the issue then. Is there any way that you
can jump into the QA channel and explain it to one of our QA members - kind of
walk them through it and make sure they can reproduce. 

http://webchat.freenode.net/?channels=libreoffice-qa

I don't see the value change from 33% to 66% in writer. It sticks with 33% in
both Writer and Presentation.

-- 
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 88760] Accessibility: Calc crashes when Orca speaks some cells

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88760

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

   What|Removed |Added

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

-- 
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] Bugs with Backtrace but Not Reproduced

2015-03-06 Thread Joel Madero
https://wiki.documentfoundation.org/QA/BugTriage#Suggested_Triage_Order

Click on the CrasherAll link (we should be monitoring these closely -
one is 7+ weeks old)


Best,
Joel

On 03/06/2015 06:58 AM, V Stuart Foote wrote:
 @Joel,  

 Think you need to share that query list for us to be able to run
 it--currently return invalid.

 Stuart




 --
 View this message in context: 
 http://nabble.documentfoundation.org/Libreoffice-qa-Bugs-with-Backtrace-but-Not-Reproduced-tp4142359p4142406.html
 Sent from the QA mailing list archive at Nabble.com.
 ___
 List Name: Libreoffice-qa mailing list
 Mail address: Libreoffice-qa@lists.freedesktop.org
 Change settings: 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/

___
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 58203] : Bug in lists-the number ten object will go far from the line.

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58203

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #5 from Beluga todven...@suomi24.fi ---
Reproduced.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

-- 
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 88812] FILEOPEN: Performance regression in speed of RTF import

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88812

--- Comment #6 from Miklos Vajna vmik...@collabora.co.uk ---
Ah sorry, forgot to read all comments. ;-) I'll try to run the document in
callgrind and see if anything pops out.

-- 
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] Bugs with Backtrace but Not Reproduced

2015-03-06 Thread Joel Madero


On 03/06/2015 12:11 AM, Alex Thurgood wrote:
 Le 06/03/2015 05:52, Joel Madero a écrit :

 Hi Joel,

 I'm curious if anyone has any thoughts about bugs that have backtraces
 but QA has been unable to repro. Should these just be pushed to NEW ?

 Currently there are 8 UNCONFIRMED crashers  - at least one or two of
 those have backtraces but have had other members of QA say they cannot
 reproduce.

 Got a link for those issues handy ?
https://bugs.documentfoundation.org/buglist.cgi?list_id=525899regetlastlist=525899

There are the 8 crashers currently reported and unconfirmed. At least 2
of them have backtraces - one of the other ones has some kind of a
system dump or something...

If we can just mark as NEW then I suggest we start automatically asking
users to do a backtrace (at least suggest and link to the wiki). Might
save a few rounds of NEEDINFO - UNCONFIRMED - NEEDINFO - WFM -
UNCONFIRMED ;)

Best,
Joel



 Alex

 ___
 List Name: Libreoffice-qa mailing list
 Mail address: libreoffice...@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 mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 59756] : No error when launching a headless server and it cannot bind to the port

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59756

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #3 from Beluga todven...@suomi24.fi ---
Stephan Bergmann confirmed that this is still not 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


Re: [Libreoffice-qa] Bugs with Backtrace but Not Reproduced

2015-03-06 Thread V Stuart Foote
@Joel,  

Think you need to share that query list for us to be able to run
it--currently return invalid.

Stuart




--
View this message in context: 
http://nabble.documentfoundation.org/Libreoffice-qa-Bugs-with-Backtrace-but-Not-Reproduced-tp4142359p4142406.html
Sent from the QA mailing list archive at Nabble.com.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: 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 47791] EDITING: Find Replace by format doesn't match round doubles or find italic

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47791

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |WORKSFORME

--- Comment #18 from Beluga todven...@suomi24.fi ---
Works for me with Including styles checked.

If someone can't get it to work even with Including styles checked, switch
back to NEW.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Ubuntu 14.10 64-bit 
Version: 4.4.1.2
Build ID: 40m0(Build:2)
Locale: en_US

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


Calc: LO 4.4.1.2 print and sort problems

2015-03-06 Thread Anthonys Lists
I probably ought to file a bug/enhancement report, but if anyone's 
interested they can investigate.


First the weirdo/bug. I've got an old spreadsheet from 3.5/3.4 days. It 
has six sheets in it. On three sheets, clicking print preview or print 
gave you a blank sheet, despite data on the sheet. On the other three, 
things worked fine. Copying the data to a new sheet fixed the problem, 
but it was weird hitting it ...


And the enhancement - sort seems to always guess wrong about a header 
row. That makes sorting a real pain, because the dialog comes up on the 
sort criteria tab. You then have to switch to the options tab, set/reset 
the range contains column labels, and go back to sort criteria. NOT 
user friendly. Shouldn't we move this option at least on to the sort 
criteria tab? I can understand why it's on the options tab, but seeing 
as it directly affects the options available on the sort criteria tab, 
there is a very strong argument that this particular option does belong 
on the sort criteria tab.


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


[Libreoffice-commits] core.git: 2 commits - sw/uiconfig vcl/unx

2015-03-06 Thread Caolán McNamara
 sw/uiconfig/swriter/ui/wordcount.ui   |   37 --
 vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx |7 
 2 files changed, 41 insertions(+), 3 deletions(-)

New commits:
commit 2a0b6705724c4ea65b56eb0f45bccfa253d9fdc2
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Mar 6 15:24:08 2015 +

clip nwf rendering

Change-Id: Ib42304e9ceb6b49e2dd8ed92f2a86409921e9ef6

diff --git a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx 
b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx
index 8e518d6..f294b80 100644
--- a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx
+++ b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx
@@ -910,6 +910,7 @@ bool GtkSalGraphics::drawNativeControl( ControlType nType, 
ControlPart nPart, co
 }
 
 cairo_t *cr = getCairoContext();
+clipRegion(cr);
 cairo_translate(cr, rControlRegion.Left(), rControlRegion.Top());
 
 gtk_style_context_save(context);
@@ -956,6 +957,7 @@ bool GtkSalGraphics::drawNativeControl( ControlType nType, 
ControlPart nPart, co
 break;
 }
 
+cairo_surface_flush(cairo_get_target(cr));
 cairo_destroy(cr); // unref
 mpFrame-damaged(basegfx::B2IBox(rControlRegion.Left(), 
rControlRegion.Top(), rControlRegion.Right(), rControlRegion.Bottom()));
 
commit 59619dbe971852d5cd35dcc3f78eda9bebeb99aa
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Mar 6 09:08:18 2015 +

gdk_window_move_region is not helpful

looking into gtk it doesn't move anything, it just
exposes the moved from and moved to areas to force them
to be redrawn, its not in practice an optimization

Change-Id: I38ea91d2463094bab50c436302022849986a3b0c

diff --git a/sw/uiconfig/swriter/ui/wordcount.ui 
b/sw/uiconfig/swriter/ui/wordcount.ui
index 588ba0b..9d9e8dc 100644
--- a/sw/uiconfig/swriter/ui/wordcount.ui
+++ b/sw/uiconfig/swriter/ui/wordcount.ui
@@ -1,12 +1,11 @@
 ?xml version=1.0 encoding=UTF-8?
-!-- Generated with glade 3.18.3 --
+!-- Generated with glade 3.16.1 --
 interface
   requires lib=gtk+ version=3.0/
   object class=GtkDialog id=WordCountDialog
 property name=can_focusFalse/property
 property name=border_width6/property
 property name=title translatable=yesWord Count/property
-property name=resizableFalse/property
 property name=destroy_with_parentTrue/property
 property name=type_hintdialog/property
 child internal-child=vbox
@@ -75,6 +74,8 @@
   packing
 property name=left_attach0/property
 property name=top_attach1/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
@@ -87,6 +88,8 @@
   packing
 property name=left_attach0/property
 property name=top_attach2/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
@@ -99,6 +102,8 @@
   packing
 property name=left_attach0/property
 property name=top_attach3/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
@@ -114,6 +119,8 @@
   packing
 property name=left_attach1/property
 property name=top_attach1/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
@@ -129,6 +136,8 @@
   packing
 property name=left_attach1/property
 property name=top_attach2/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
@@ -144,6 +153,8 @@
   packing
 property name=left_attach1/property
 property name=top_attach3/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
@@ -159,6 +170,8 @@
   packing
 property name=left_attach1/property
 property name=top_attach0/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
@@ -174,6 +187,8 @@
   packing
 property name=left_attach2/property
 property name=top_attach0/property
+property name=width1/property
+property name=height1/property
   /packing
 /child
 child
@@ -189,6 +204,8 @@
   packing
 property name=left_attach2/property
 property 

[Libreoffice-bugs] [Bug 89849] Allow Modification of default subscript/superscript size and position

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89849

--- Comment #4 from Joel Madero jmadero@gmail.com ---
Jonathan - 

Multiple people cannot confirm this issue but as a workaround you could easily
create a style that does the job.

1. F11
2. Click on character style icon;
3. Create a new one (right click in empty space)
4. Set your character style however you want.

Now whenever you want to create a new subscript - just highlight the text and
click on that style, it'll put it where you want it :)

-- 
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 89849] Allow Modification of default subscript/superscript size and position

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89849

Joel Madero jmadero@gmail.com 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 89608] TOC: Redesign of the Entries tab of the Index/Table dialog

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89608

--- Comment #6 from Jay Philips philip...@hotmail.com ---
We had design session about this dialog and the details can be found at this
google doc -
https://docs.google.com/document/d/1dhaaV2Q5XFXK0-m-y2wYq5tKjIX_YRTMEKDXPslskUw/edit?usp=sharing

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


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

2015-03-06 Thread Tor Lillqvist
 sc/source/core/opencl/op_statistical.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6f4dc6af39ecf2f90155205ad097601a8b2f602c
Author: Tor Lillqvist t...@collabora.com
Date:   Fri Mar 6 16:40:59 2015 +0200

One more #VALUE! instead of 'nan'

Change-Id: Ib7fe0d9ed2f5b5aae95b73a01f1eb059a01dc2b4

diff --git a/sc/source/core/opencl/op_statistical.cxx 
b/sc/source/core/opencl/op_statistical.cxx
index fa5027f..f6f346f 100644
--- a/sc/source/core/opencl/op_statistical.cxx
+++ b/sc/source/core/opencl/op_statistical.cxx
@@ -2659,7 +2659,7 @@ void OpSlope::GenSlidingWindowFunction(std::stringstream 
ss,
 ss  }\n;
 
 ss  if (fCount  1.0)\n;
-ss  return NAN;\n;
+ss  return CreateDoubleError(errNoValue);\n;
 ss  else\n;
 ss  {\n;
 ss  fMeanX = fSumX * pow(fCount,-1.0);\n;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-03-06 Thread Tobias Madl
 include/vcl/timer.hxx |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit e7c2b4b981b9b43c31fa442d5596b7a765dbe699
Author: Tobias Madl tobias.madl@gmail.com
Date:   Fri Mar 6 15:45:03 2015 +0100

Timer: added virtual before definition

Change-Id: Ief4da1f1241fc4175f5ad132fd103e6d29470b58

diff --git a/include/vcl/timer.hxx b/include/vcl/timer.hxx
index 004e78c..e2fd4a7 100644
--- a/include/vcl/timer.hxx
+++ b/include/vcl/timer.hxx
@@ -30,9 +30,9 @@ protected:
 sal_uLong   mnTimeout;
 boolmbAuto;
 
-void SetDeletionFlags() SAL_OVERRIDE;
-bool ReadyForSchedule( bool bTimer ) SAL_OVERRIDE;
-sal_uLong UpdateMinPeriod( sal_uLong nMinPeriod, sal_uLong nTime ) 
SAL_OVERRIDE;
+virtual void SetDeletionFlags() SAL_OVERRIDE;
+virtual bool ReadyForSchedule( bool bTimer ) SAL_OVERRIDE;
+virtual sal_uLong UpdateMinPeriod( sal_uLong nMinPeriod, sal_uLong nTime ) 
SAL_OVERRIDE;
 
 public:
 Timer();
@@ -47,7 +47,7 @@ public:
 virtual voidInvoke() SAL_OVERRIDE;
 voidTimeout() { Invoke(); }
 Timer  operator=( const Timer rTimer );
-voidStart() SAL_OVERRIDE;
+virtual voidStart() SAL_OVERRIDE;
 static void ImplStartTimer( ImplSVData* pSVData, sal_uLong nMS );
 };
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89861] New: Data labels in Calc graphs go wrong when displayed in % format

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89861

Bug ID: 89861
   Summary: Data labels in Calc graphs go wrong when displayed in
% format
   Product: LibreOffice
   Version: 4.4.1.2 rc
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: silva...@katamail.com

Created attachment 113932
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113932action=edit
wrong data labels when expressed in percentages

Create a new calc file, input any numeric data in a column. Then select the
data you have entered and create a graph from them, the default type (bar chart
is the name I think).
Before closing the chart edit mode, with the context menu choose to show data
labels, i.e. so that the numbers translated into the bars height are also
written above each bar. 
As expected, the specific number associated to each bar is shown.

Now use the context menu to format the labels, and choose to show these numbers
as percentages: this is when things go wrong, as you will get a 100% above
all and each bar, instead of the relative quote that each numbers represents
compared to their total sum.
This is a regression: it did not happen with previous releases.

Check attached file for an example.

-- 
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 89861] Data labels in Calc graphs go wrong when displayed in % format

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89861

--- Comment #1 from Andy silva...@katamail.com ---
I just wanted to stress that this is not another way to look at the data, since
seeing 100% above each and all the bars, no matter their size, is completely
uninformative.

-- 
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] Bugs with Backtrace but Not Reproduced

2015-03-06 Thread Alexander Thurgood
Le 06/03/2015 15:26, Joel Madero a écrit :

 Got a link for those issues handy ?
 https://bugs.documentfoundation.org/buglist.cgi?list_id=525899regetlastlist=525899
 

Thanks but I only get this in return from Bugzilla :

Sorry, I seem to have lost the cookie that recorded the results of your
last search. I'm afraid you will have to start again from the search page.


Alex


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


[Libreoffice-bugs] [Bug 38261] Better FindReplace with regular expressions

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38261
Bug 38261 depends on bug 47791, which changed state.

Bug 47791 Summary: EDITING: Find  Replace by format doesn't match round 
doubles or find italic
https://bugs.documentfoundation.org/show_bug.cgi?id=47791

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 89862] New: Calc crashes using cell layout and using special characters

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89862

Bug ID: 89862
   Summary: Calc crashes using cell layout and using special
characters
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: b...@ecostat.nl

Since today (6 mar 2015) calc crashes, that is closes abruptly, if I click on
layout followed by cells (that is Opmaak followed by Cellen in my Dutch
version). 
Calc freezes for some time if I want to add a special character clicking on
Insert, Special Characters (Invoegen and Speciale Tekens) and scroll
down through the list of special characters. After a short freeze, calc closes
abrubtly, just as when trying to use layout, cells.

This bug can be reproduced in an new, empty, spreadsheet.

I am using LibreOffice 3.5.7.2, Build ID: 3501(Build:2) on Ubuntu 12.04, and
update daily. The problem was first observed today (6 mar 2015).

-- 
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 89849] Allow Modification of default subscript/superscript size and position

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89849

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-ux-advise] [Bug 89608] TOC: Redesign of the Entries tab of the Index/Table dialog

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89608

--- Comment #6 from Jay Philips philip...@hotmail.com ---
We had design session about this dialog and the details can be found at this
google doc -
https://docs.google.com/document/d/1dhaaV2Q5XFXK0-m-y2wYq5tKjIX_YRTMEKDXPslskUw/edit?usp=sharing

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


[Libreoffice-bugs] [Bug 89857] New: Can't select entire table if there are merged cells in the last row and last column

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89857

Bug ID: 89857
   Summary: Can't select entire table if there are merged cells in
the last row and last column
   Product: LibreOffice
   Version: 4.2.8.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: informat...@csap.cat

Created attachment 113929
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113929action=edit
ODT file with simple table and merged cells

Environment: 
LibreOffice 4.4.0.3, also reproducible in LO 4.2.8.2 and 4.3.5.2.
OS: Windows 7 Professional 64-bit Spanish + SP1

Steps to reproduce:
- Create a blank document in LO Writer.
- Create a 4x4 table.
- Merge these cells: (row 3, col 4) and (row 4, col 4).
- Try to select the entire table with mouse.

In my case, the first 3 cells on the last row can not be selected.

The table can be entirely selected with Table  Select  Table, with the
diagonal arrow on the upper left corner of the table, or pressing Ctrl-A twice
when cursor is inside the table.

Example ODT document attached.

-- 
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 'feature/slideshow_onlySprites' - 2 commits - slideshow/source

2015-03-06 Thread Michael Jaumann
 slideshow/source/engine/slide/shapemanagerimpl.cxx |  136 -
 slideshow/source/engine/slide/shapemanagerimpl.hxx |   56 +++-
 slideshow/source/engine/slide/slideimpl.cxx|   40 +-
 3 files changed, 167 insertions(+), 65 deletions(-)

New commits:
commit c4f5e1e9d1984fc3d3ca689a5615d9ead92a7bd6
Author: Michael Jaumann meta_...@yahoo.com
Date:   Fri Mar 6 10:40:23 2015 +

shape maps from LayerManager

moved maps/ functionality to ShapeManager

Change-Id: Iadb2c6f1b090b7ac384cb66c03fd5667e6c6971c

diff --git a/slideshow/source/engine/slide/shapemanagerimpl.cxx 
b/slideshow/source/engine/slide/shapemanagerimpl.cxx
index 71fc7f1..f364b2d 100644
--- a/slideshow/source/engine/slide/shapemanagerimpl.cxx
+++ b/slideshow/source/engine/slide/shapemanagerimpl.cxx
@@ -40,6 +40,9 @@ ShapeManagerImpl::ShapeManagerImpl( EventMultiplexer 
   rMultiplexer,
 CursorManager   
rCursorManager,
 const ShapeEventListenerMap 
rGlobalListenersMap,
 const ShapeCursorMap
rGlobalCursorMap ):
+maXShapeHash( 101 ),
+maAllShapes(),
+maUpdateShapes(),
 mrMultiplexer(rMultiplexer),
 mrCursorManager(rCursorManager),
 mrGlobalListenersMap(rGlobalListenersMap),
@@ -288,10 +291,14 @@ void ShapeManagerImpl::notifyShapeUpdate( const 
ShapeSharedPtr rShape )
 
 ShapeSharedPtr ShapeManagerImpl::lookupShape( uno::Reference drawing::XShape 
 const  xShape ) const
 {
-   /* if( mpLayerManager )
-return mpLayerManager-lookupShape(xShape);*/
+ENSURE_OR_THROW( xShape.is(), LayerManager::lookupShape(): invalid Shape 
);
 
-return ShapeSharedPtr();
+const XShapeHash::const_iterator aIter( maXShapeHash.find( xShape ));
+if( aIter == maXShapeHash.end() )
+   return ShapeSharedPtr(); // not found
+
+// found, return data part of entry pair.
+return aIter-second;
 }
 
 void ShapeManagerImpl::addHyperlinkArea( const HyperlinkAreaSharedPtr rArea )
@@ -375,6 +382,54 @@ bool ShapeManagerImpl::listenerAdded(
 return true;
 }
 
+void ShapeManagerImpl::implAddShape( const ShapeSharedPtr rShape )
+{
+ENSURE_OR_THROW( rShape, ShapeManagerImpl::implAddShape(): invalid Shape 
);
+
+LayerShapeMap::value_type aValue (rShape, LayerWeakPtr());
+
+OSL_ASSERT( maAllShapes.find(rShape) == maAllShapes.end() ); // shape must 
not be added already
+
+maAllShapes.insert(aValue);
+
+// update shape, it's just added and not yet painted
+if( rShape-isVisible() )
+notifyShapeUpdate( rShape );
+}
+
+void ShapeManagerImpl::implRemoveShape( const ShapeSharedPtr rShape )
+{
+ENSURE_OR_THROW( rShape, ShapeManagerImpl::implRemoveShape(): invalid 
Shape );
+
+const LayerShapeMap::iterator aShapeEntry( maAllShapes.find(rShape) );
+
+if( aShapeEntry == maAllShapes.end() )
+return;
+
+const bool bShapeUpdateNotified = maUpdateShapes.erase( rShape ) != 0;
+
+// Enter shape area to the update area, but only if shape
+// is visible and not in sprite mode (otherwise, updating
+// the area doesn't do actual harm, but costs time)
+// Actually, also add it if it was listed in
+// maUpdateShapes (might have just gone invisible).
+if( bShapeUpdateNotified ||
+(rShape-isVisible() 
+ !rShape-isBackgroundDetached()) )
+{
+LayerSharedPtr pLayer = aShapeEntry-second.lock();
+if( pLayer )
+{
+// store area early, once the shape is removed from
+// the layers, it no longer has any view references
+pLayer-addUpdateRange( rShape-getUpdateArea() );
+}
+}
+
+rShape-clearAllViewLayers();
+maAllShapes.erase( aShapeEntry );
+}
+
 bool ShapeManagerImpl::listenerRemoved(
 const uno::Referencepresentation::XShapeEventListener /*xListener*/,
 const uno::Referencedrawing::XShape   xShape )
diff --git a/slideshow/source/engine/slide/shapemanagerimpl.hxx 
b/slideshow/source/engine/slide/shapemanagerimpl.hxx
index 4f5f2f1..05d94e2 100644
--- a/slideshow/source/engine/slide/shapemanagerimpl.hxx
+++ b/slideshow/source/engine/slide/shapemanagerimpl.hxx
@@ -88,8 +88,20 @@ public:
 
 virtual void dispose() SAL_OVERRIDE;
 
+virtual ShapeSharedPtr lookupShape(
+::com::sun::star::uno::Reference
+   ::com::sun::star::drawing::XShape  const  xShape ) const 
SAL_OVERRIDE;
+
 private:
 
+class ShapeComparator
+{
+public:
+bool operator() (const ShapeSharedPtr rpS1, const ShapeSharedPtr 
rpS2 ) const
+{
+return Shape::lessThanShape::compare(rpS1.get(), rpS2.get());
+}
+};
 // MouseEventHandler interface
 
 
@@ -121,9 +133,7 @@ private:
 virtual void enterAnimationMode( const AnimatableShapeSharedPtr rShape ) 
SAL_OVERRIDE;
 virtual void leaveAnimationMode( const AnimatableShapeSharedPtr rShape ) 

[Libreoffice-bugs] [Bug 89797] Copy Paste from Inkscape: 1st time: Bitmap, 2nd time: vector with errors

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89797

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #2 from Beluga todven...@suomi24.fi ---
Reproduced.

Lowering severity as importing works.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Inkscape 0.91.

-- 
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 89807] Footnote dialog pops up unfocused - Enter key does not instert footnote or close the dialog

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89807

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #1 from Beluga todven...@suomi24.fi ---
Could not reproduce. I guess I'll have to try in KDE next week.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Ubuntu 14.10 64-bit
Version: 4.4.1.2
Build ID: 40m0(Build:2)
Locale: en_US

-- 
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 89856] [Search Bar] ESC key causes Search Bar close

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89856

--- Comment #4 from wabik wa...@wp.pl ---
(In reply to Adolfo Jayme from comment #2)
  After searching some values in Calc when clicking ESC key causes search bar
  disappear/close from toolbar and one have to press Ctrl+F to make it again.
 
 That is intended. It was, in fact, a user-requested change, made in 2011
 around the time LibreOffice was founded, and since then nobody else has
 complained about it. Of course, it’s impossible to have everybody happy.

Don't you think that when you want things to be pinned in to a toolbar you
really think that they will be pinned permanently?!

I agree with a window but toolbar is another thing!

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


minutes of ESC call ...

2015-03-06 Thread Michael Meeks
* Present:
+ Bjoern, Caolan, Miklos, Michael M, Norbert, Robinson, Cedric, Sophie,
  Lionel, Cloph, Stephan, Eike, Jan-Marek, Moggi, Michael S, Kendy,
  Andras, Thorsten
 
* Completed Action Items:
+ write blog post to promote hack-fests (Bjoern)
[ awesome, cf. twitter, G+ etc. ]
+ add finishing the Firebird driver to GSOC wiki page (Lionel)
 
* Pending Action Items:
+ please file an Easy-Hack this week: just a bug with whiteboard: (All)
EasyHack DifficultyBeginner SkillCpp TopicCleanup
+ thanks to:
+ http://bit.ly/1Dd4y8b
+ make sure to create a new openid if you are using the Google openID (all)
[ Good to move; 665 accounts not yet moved; vs. 20 have moved.
  deadline is mid April.
  + no rescue / recovery path as/when/if it goes wrong.
you need an OpenID account to login to replace it.
  How many peple didn't use Google to start ? (Bjoern)
  + around 700 google only (Norbert)
  Can we add a banner to Gerrit ? (Jan-Marek)
  + not so easily on the Login page.
  + could make a DOS - to switch off Google now (Bjoern)
  + with some annoying click-through etc. ?
  + will install an up-grade that removes the Google
icon (Norbert)
  + lots of people don't know what to type in there.
  Can we get an OpenID provider at TDF ? (Kendy)
  + in theory; but people still have to move.
  People using Fedora, LaunchPad, Verisign,
  + setup our own OpenId ? still have to migrate.
  + infra. perspective - better to move to TDF LDAP
for SSO across the board.
]
 
* Release Engineering update (Cloph)
+ 4.4.2 RC1
+ schedule RC1 - on Tuesday ?
+ currently only 2x patches waiting for review.
+ 4.3.7 due end of April
+ RC1  branch-off - end of April / start of May
+ 4.5.0 / 5.0.0 - 1st Alpha release - start of May.
+ Android  iOS Remote
+ patches in gerrit status ?
+ need to get in contact with the submitter; will take care of them
 
* 5.0 for the next release ? (Michael)
+ fine just marketing (Norbert)
+ no objections from tech. side, but likes 2015-1 (Bjoern)
+ profile migration from 3 to 4 a bit painful (Stephan)
+ does it make sense technically to require a profile migration
+ if not; just stick with a '4' in the user-profile.
+ on the other hand, if nothing needed ...
+ not unusual to have an API  user visible version (Miklos)
+ in the support group: reset your profile (Norbert)
+ seen blogs / forms - reset your profile.
+ mostly extensions busting things (Bjoern)
+ could just copy 4/ - 5/ and move on in the migration (Michael)
+ create unnecessary cruft (Lionel)
+ UX guys a bit annoyed, preserving toolbar settings between vers (Kendy)
+ people didn't see new improvements if they tweaked stuff.
+ some sort of migration would be welcome from a UX perspective.
+ perhaps worth investing some time in this.
+ prolly better to make people aware of this in a better way than
  a lossy migration (Stephan)
+ a bug to drop settings users set explicitly (Markus)
+ really hard to see programaticaly what was changed (Kendy/Michael)
+ still do-able with an info-bar question; - use them ? (Kendy)
+ can a user reset the profile ? (Norbert)
+ no (Kendy)
+ usually do a ver. # bump to do more disruptive changes in UNO API (Bjoern)
+ could we use the opportunity to do more disruptive changes ?
+ eg. PropertyValue  NamedValue - same thing.
+ code for both; could we kill one or make 1 an ext'n of the other ?
+ do whatever ABI breakage we want to (Norbert)
+ no big ABI changes on the roadmap (Stephan)
+ previous plan - was constant small changes (Michael)
+ seemed to do well with this plan. 
+ as long as the API doesn't break so much (jmux)
+ last time lots broke  we had to fix a lot.
+ not expecting a big change at this boundary (Norbert)
+ could raise the Linux base-line to RHEL6 ... (mst)
+ could drop some of the KDE3 stuff ? and/or compile KDE4 bits.
   + I guess many people would prefer a KDE4 based backend to KDE3 
(Jan-Marek)
+ Munich is just looking for the Ubuntu 12.04 baseline / gcc 4.6, so I 
guess this would be ok (Jan-Marek)
+ Munich is just compiling the KDE4 backend for LO 5.0 and 4.1 
(Jan-Marek)
= more a marketing decision, no compelling reasons not to.
 
* GSoC (Cedric/Thorsten)
+ we're accepted!
+ student application period: March 16 to March 27th
+ under 2x weeks from now
+ quite a few mentors missing in Melange.
   + otherwise getting 

[Libreoffice-qa] minutes of ESC call ...

2015-03-06 Thread Michael Meeks
* Present:
+ Bjoern, Caolan, Miklos, Michael M, Norbert, Robinson, Cedric, Sophie,
  Lionel, Cloph, Stephan, Eike, Jan-Marek, Moggi, Michael S, Kendy,
  Andras, Thorsten
 
* Completed Action Items:
+ write blog post to promote hack-fests (Bjoern)
[ awesome, cf. twitter, G+ etc. ]
+ add finishing the Firebird driver to GSOC wiki page (Lionel)
 
* Pending Action Items:
+ please file an Easy-Hack this week: just a bug with whiteboard: (All)
EasyHack DifficultyBeginner SkillCpp TopicCleanup
+ thanks to:
+ http://bit.ly/1Dd4y8b
+ make sure to create a new openid if you are using the Google openID (all)
[ Good to move; 665 accounts not yet moved; vs. 20 have moved.
  deadline is mid April.
  + no rescue / recovery path as/when/if it goes wrong.
you need an OpenID account to login to replace it.
  How many peple didn't use Google to start ? (Bjoern)
  + around 700 google only (Norbert)
  Can we add a banner to Gerrit ? (Jan-Marek)
  + not so easily on the Login page.
  + could make a DOS - to switch off Google now (Bjoern)
  + with some annoying click-through etc. ?
  + will install an up-grade that removes the Google
icon (Norbert)
  + lots of people don't know what to type in there.
  Can we get an OpenID provider at TDF ? (Kendy)
  + in theory; but people still have to move.
  People using Fedora, LaunchPad, Verisign,
  + setup our own OpenId ? still have to migrate.
  + infra. perspective - better to move to TDF LDAP
for SSO across the board.
]
 
* Release Engineering update (Cloph)
+ 4.4.2 RC1
+ schedule RC1 - on Tuesday ?
+ currently only 2x patches waiting for review.
+ 4.3.7 due end of April
+ RC1  branch-off - end of April / start of May
+ 4.5.0 / 5.0.0 - 1st Alpha release - start of May.
+ Android  iOS Remote
+ patches in gerrit status ?
+ need to get in contact with the submitter; will take care of them
 
* 5.0 for the next release ? (Michael)
+ fine just marketing (Norbert)
+ no objections from tech. side, but likes 2015-1 (Bjoern)
+ profile migration from 3 to 4 a bit painful (Stephan)
+ does it make sense technically to require a profile migration
+ if not; just stick with a '4' in the user-profile.
+ on the other hand, if nothing needed ...
+ not unusual to have an API  user visible version (Miklos)
+ in the support group: reset your profile (Norbert)
+ seen blogs / forms - reset your profile.
+ mostly extensions busting things (Bjoern)
+ could just copy 4/ - 5/ and move on in the migration (Michael)
+ create unnecessary cruft (Lionel)
+ UX guys a bit annoyed, preserving toolbar settings between vers (Kendy)
+ people didn't see new improvements if they tweaked stuff.
+ some sort of migration would be welcome from a UX perspective.
+ perhaps worth investing some time in this.
+ prolly better to make people aware of this in a better way than
  a lossy migration (Stephan)
+ a bug to drop settings users set explicitly (Markus)
+ really hard to see programaticaly what was changed (Kendy/Michael)
+ still do-able with an info-bar question; - use them ? (Kendy)
+ can a user reset the profile ? (Norbert)
+ no (Kendy)
+ usually do a ver. # bump to do more disruptive changes in UNO API (Bjoern)
+ could we use the opportunity to do more disruptive changes ?
+ eg. PropertyValue  NamedValue - same thing.
+ code for both; could we kill one or make 1 an ext'n of the other ?
+ do whatever ABI breakage we want to (Norbert)
+ no big ABI changes on the roadmap (Stephan)
+ previous plan - was constant small changes (Michael)
+ seemed to do well with this plan. 
+ as long as the API doesn't break so much (jmux)
+ last time lots broke  we had to fix a lot.
+ not expecting a big change at this boundary (Norbert)
+ could raise the Linux base-line to RHEL6 ... (mst)
+ could drop some of the KDE3 stuff ? and/or compile KDE4 bits.
   + I guess many people would prefer a KDE4 based backend to KDE3 
(Jan-Marek)
+ Munich is just looking for the Ubuntu 12.04 baseline / gcc 4.6, so I 
guess this would be ok (Jan-Marek)
+ Munich is just compiling the KDE4 backend for LO 5.0 and 4.1 
(Jan-Marek)
= more a marketing decision, no compelling reasons not to.
 
* GSoC (Cedric/Thorsten)
+ we're accepted!
+ student application period: March 16 to March 27th
+ under 2x weeks from now
+ quite a few mentors missing in Melange.
   + otherwise getting 

[Libreoffice-bugs] [Bug 89860] Ability to print from Android ...

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89860

Michael Meeks michael.me...@collabora.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 Whiteboard||EasyHack
   ||DifficultyInteresting
   ||SkillCpp SkillJava
   ||TopicCleanup

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


[Libreoffice-ux-advise] [Bug 89608] TOC: Redesign of the Entries tab of the Index/Table dialog

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89608

--- Comment #5 from Jay Philips philip...@hotmail.com ---
Created attachment 113931
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113931action=edit
mockup 2

Here is the second mockup that i've been working on. Sophie mentioned that it
was possible to add regular text as an entry, so it was also added to the
mockup.

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


[Libreoffice-bugs] [Bug 89608] TOC: Redesign of the Entries tab of the Index/Table dialog

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89608

--- Comment #5 from Jay Philips philip...@hotmail.com ---
Created attachment 113931
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113931action=edit
mockup 2

Here is the second mockup that i've been working on. Sophie mentioned that it
was possible to add regular text as an entry, so it was also added to the
mockup.

-- 
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 88701] FILEOPEN: Problem with import of HTML files with extension XLS on Windows

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88701

--- Comment #1 from Beluga todven...@suomi24.fi ---
Tries to import as CSV both in Linux  Windows.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Ubuntu 14.10 64-bit 
Version: 4.4.1.2
Build ID: 40m0(Build:2)
Locale: en_US

-- 
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 'feature/slideshow_onlySprites' - slideshow/source

2015-03-06 Thread Michael Jaumann
 slideshow/source/engine/slide/shapemanagerimpl.cxx |   98 -
 slideshow/source/engine/slide/shapemanagerimpl.hxx |   22 
 slideshow/source/engine/slide/slideimpl.cxx|7 +
 3 files changed, 122 insertions(+), 5 deletions(-)

New commits:
commit 42322e7f428a96eb1b2b10c81221e088613e8d1b
Author: Michael Jaumann meta_...@yahoo.com
Date:   Fri Mar 6 12:36:44 2015 +

views for shapeManager

Change-Id: I9ff223f03d7edb76092e1c38f56946e35c94f229

diff --git a/slideshow/source/engine/slide/shapemanagerimpl.cxx 
b/slideshow/source/engine/slide/shapemanagerimpl.cxx
index a2e68b0..47d12bf 100644
--- a/slideshow/source/engine/slide/shapemanagerimpl.cxx
+++ b/slideshow/source/engine/slide/shapemanagerimpl.cxx
@@ -36,13 +36,15 @@ using namespace com::sun::star;
 namespace slideshow {
 namespace internal {
 
-ShapeManagerImpl::ShapeManagerImpl( EventMultiplexerrMultiplexer,
+ShapeManagerImpl::ShapeManagerImpl( const UnoViewContainer  rViews,
+EventMultiplexerrMultiplexer,
 CursorManager   
rCursorManager,
 const ShapeEventListenerMap 
rGlobalListenersMap,
 const ShapeCursorMap
rGlobalCursorMap ):
 maXShapeHash( 101 ),
 maAllShapes(),
 maUpdateShapes(),
+mrViews(rViews),
 mrMultiplexer(rMultiplexer),
 mrCursorManager(rCursorManager),
 mrGlobalListenersMap(rGlobalListenersMap),
@@ -54,6 +56,31 @@ ShapeManagerImpl::ShapeManagerImpl( EventMultiplexer
rMultiplexer,
 {
 }
 
+templatetypename LayerFunc,
+ typename ShapeFunc void ShapeManagerImpl::manageViews(
+ LayerFunc layerFunc,
+ ShapeFunc shapeFunc )
+{
+LayerSharedPtr  pCurrLayer;
+ViewLayerSharedPtr  pCurrViewLayer;
+LayerShapeMap::const_iterator   aIter( maAllShapes.begin() );
+const LayerShapeMap::const_iterator aEnd ( maAllShapes.end() );
+while( aIter != aEnd )
+{
+LayerSharedPtr pLayer = aIter-second.lock();
+if( pLayer  pLayer != pCurrLayer )
+{
+pCurrLayer = pLayer;
+pCurrViewLayer = layerFunc(pCurrLayer);
+}
+
+if( pCurrViewLayer )
+shapeFunc(aIter-first,pCurrViewLayer);
+
+++aIter;
+}
+}
+
 void ShapeManagerImpl::activate( bool bSlideBackgoundPainted )
 {
 if( !mbEnabled )
@@ -245,6 +272,75 @@ bool ShapeManagerImpl::handleMouseMoved( const 
awt::MouseEvent e )
   // handler should see it, too.
 }
 
+void ShapeManagerImpl::viewAdded( const UnoViewSharedPtr rView )
+{
+// view must be member of mrViews container
+OSL_ASSERT( std::find(mrViews.begin(),
+  mrViews.end(),
+  rView) != mrViews.end() );
+
+// init view content
+rView-clearAll();
+
+// add View to all registered shapes
+manageViews(
+boost::bind(Layer::addView,
+_1,
+boost::cref(rView)),
+// repaint on view add
+boost::bind(Shape::addViewLayer,
+_1,
+_2,
+true) );
+}
+
+void ShapeManagerImpl::viewRemoved( const UnoViewSharedPtr rView )
+{
+// view must not be member of mrViews container anymore
+OSL_ASSERT( std::find(mrViews.begin(),
+  mrViews.end(),
+  rView) == mrViews.end() );
+
+// remove View from all registered shapes
+manageViews(
+boost::bind(Layer::removeView,
+_1,
+boost::cref(rView)),
+boost::bind(Shape::removeViewLayer,
+_1,
+_2) );
+}
+
+void ShapeManagerImpl::viewChanged( const UnoViewSharedPtr rView )
+{
+(void)rView;
+
+// view must be member of mrViews container
+OSL_ASSERT( std::find(mrViews.begin(),
+  mrViews.end(),
+  rView) != mrViews.end() );
+
+// TODO(P2): selectively update only changed view
+viewsChanged();
+}
+
+void ShapeManagerImpl::viewsChanged()
+{
+
+// clear view area
+::std::for_each( mrViews.begin(),
+ mrViews.end(),
+ ::boost::mem_fn(View::clearAll) );
+
+// TODO(F3): resize and repaint all layers
+
+// render all shapes
+std::for_each( maAllShapes.begin(),
+   maAllShapes.end(),
+   boost::bind(Shape::render,
+   boost::bind( 
::o3tl::select1stLayerShapeMap::value_type(), _1)) );
+}
+
 bool ShapeManagerImpl::update()
 {
 //if( mbEnabled)
diff --git a/slideshow/source/engine/slide/shapemanagerimpl.hxx 
b/slideshow/source/engine/slide/shapemanagerimpl.hxx
index 108e58a..ab98c6a 100644
--- a/slideshow/source/engine/slide/shapemanagerimpl.hxx
+++ 

[Libreoffice-bugs] [Bug 85648] FILEOPEN HTML inside .xls saved using AOpenOffice 4.1.1 opens in Libre Writer 4.3.2

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85648

Julio Gázquez juliogazq...@yahoo.com.ar changed:

   What|Removed |Added

Version|4.3.2.2 release |4.2.7.2 release

--- Comment #3 from Julio Gázquez juliogazq...@yahoo.com.ar ---
@Maxim those patches fix the issue?

I can provide some aditional details:

It's a regression, it worked in LO in versions up to 3.6.x at least, in 4.2.x
the bug is already there. I'm not sure if, as Mateo said, the bug was
introduced while fixing other issues.

It's interesting that LO is being being able to detect and open properly this
kind of files, just it's not detecting *some* of those files.

The bug is fired if the file contains certain special characters (or bytes), in
8 bit encodings.

In Mateo's sample file, it's Windows-1252 trademark character (byte of value
0x99). Removing the ofending character the file opens fine.

In my particular case (also a 3rd party app mimicking Excel generated HTML
files), the file is encoded as as iso8859-1, failing with masculine ordinal
character (byte of value 0xba)

I also found that opening the file in a text editor, changing declared encoding
to UTF-8 and saving as UTF-8 makes LibreOffice open the file properly, as a
Calc spreadsheet.

-- 
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 62924] FORMATTING: enhancement: please add additional lines into a log scale of charts

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62924

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
   Severity|normal  |enhancement

--- Comment #3 from Beluga todven...@suomi24.fi ---
Setting severity to enhancement.

-- 
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: minutes of ESC call ...

2015-03-06 Thread Noel Grandin
On Fri, Mar 6, 2015 at 1:59 PM, Michael Meeks
michael.me...@collabora.com wrote:



 * Jenkins update (Norbert)
 + mostly green
+ queue 64 patches long, Chris pushed a 20x deep series 3x in a row.


Is it possible to
(a) have a way of cancelling stuff in the queue if we need to re-push
patches to gerrit?
and/or
(b) teach Jenkins/gerrit that if someone pushes an update to Gerrit
and the job is already in the queue, then cancel the job already in
the queue, and queue the new job?
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - android/Bootstrap android/experimental include/LibreOfficeKit

2015-03-06 Thread Siqi Liu
 android/Bootstrap/src/org/libreoffice/kit/Document.java
 |2 +
 
android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitTileProvider.java 
|   18 +-
 include/LibreOfficeKit/LibreOfficeKitEnums.h   
 |8 +++-
 3 files changed, 26 insertions(+), 2 deletions(-)

New commits:
commit ab934a73748a6f8b393f386968b6ce94e4f6a884
Author: Siqi Liu m...@siqi.fr
Date:   Fri Mar 6 13:35:34 2015 +0100

tdf#89705: provides callback for url handling on android.

Change-Id: Ie28cd768519fbdc305f98e1d764d05bd209951ca

diff --git a/android/Bootstrap/src/org/libreoffice/kit/Document.java 
b/android/Bootstrap/src/org/libreoffice/kit/Document.java
index 8c20f70..56d92b0 100644
--- a/android/Bootstrap/src/org/libreoffice/kit/Document.java
+++ b/android/Bootstrap/src/org/libreoffice/kit/Document.java
@@ -40,6 +40,8 @@ public class Document {
 public static final int CALLBACK_TEXT_SELECTION_START = 3;
 public static final int CALLBACK_TEXT_SELECTION_END = 4;
 public static final int CALLBACK_CURSOR_VISIBLE = 5;
+// LOK_CALLBACK_GRAPHIC_SELECTION = 6
+public static final int CALLBACK_HYPERLINK_CLICKED = 7;
 
 /**
  * Text selection types
diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitTileProvider.java
 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitTileProvider.java
index 0ef12c6..179c6ff 100644
--- 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitTileProvider.java
+++ 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitTileProvider.java
@@ -5,6 +5,8 @@ import android.graphics.PointF;
 import android.graphics.RectF;
 import android.util.Log;
 import android.view.KeyEvent;
+import android.net.Uri;
+import android.content.Intent;
 
 import org.libreoffice.kit.DirectBufferAllocator;
 import org.libreoffice.kit.Document;
@@ -411,10 +413,24 @@ public class LOKitTileProvider implements TileProvider, 
Document.MessageCallback
  */
 @Override
 public void messageRetrieved(int messageID, String payload) {
+/**
+ * Handles messages that do not require entering editing mode.
+ */
+switch (messageID) {
+case Document.CALLBACK_HYPERLINK_CLICKED:
+if (!payload.startsWith(http://;) 
+!payload.startsWith(https://;))
+payload = http://; + payload;
+
+Intent url_intent = new Intent(Intent.ACTION_VIEW);
+url_intent.setData(Uri.parse(payload));
+LibreOfficeMainActivity.mAppContext.startActivity(url_intent);
+return;
+}
+
 if (!LOKitShell.isEditingEnabled()) {
 return;
 }
-
 mInvalidationHandler.processMessage(messageID, payload);
 }
 }
diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h 
b/include/LibreOfficeKit/LibreOfficeKitEnums.h
index cc5a32b..b8ab5f6 100644
--- a/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -94,7 +94,13 @@ typedef enum
  *
  * Rectangle format is the same as LOK_CALLBACK_INVALIDATE_TILES.
  */
-LOK_CALLBACK_GRAPHIC_SELECTION
+LOK_CALLBACK_GRAPHIC_SELECTION,
+
+/**
+ * User clicked on an hyperlink that should be handled by other
+ * applications accordingly.
+ */
+LOK_CALLBACK_HYPERLINK_CLICKED
 }
 LibreOfficeKitCallbackType;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88701] FILEOPEN: Problem with import of HTML files with extension XLS on Windows

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88701

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 CC||philip...@hotmail.com
   Hardware|x86-64 (AMD64)  |All
Version|4.4.0.1 rc  |Inherited From OOo
 OS|Windows (All)   |All

--- Comment #2 from Jay Philips philip...@hotmail.com ---
Hello Ajay,

As excel 2003 and 2013 are able to import it correctly by stripping away the
mime information, it would be good for calc to do the same.

-- 
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] dev-tools.git: test-bugzilla-files/analyze-logs.py

2015-03-06 Thread Christian Lohmaier
 test-bugzilla-files/analyze-logs.py |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit bc0aabc6e6fc8880a1e2d7979411b0ebd9d2ee91
Author: Christian Lohmaier lohmaier+libreoff...@googlemail.com
Date:   Fri Mar 6 13:53:19 2015 +0100

don't overwrite a file we're still reading from

slurp in the inputfile to avoid this
also use sorted output to allow for easier comparison and use the
writer's default value instead of assigning 0 manually

diff --git a/test-bugzilla-files/analyze-logs.py 
b/test-bugzilla-files/analyze-logs.py
index 8cae85b..b52dcb1 100644
--- a/test-bugzilla-files/analyze-logs.py
+++ b/test-bugzilla-files/analyze-logs.py
@@ -65,17 +65,17 @@ def get_directories():
 def import_csv(filename):
 if not os.path.exists(filename):
 return None
-reader = csv.DictReader(open(filename))
+infile = open(filename,'r')
+reader = csv.DictReader(infile.readlines())
+infile.close()
 return reader
 
 def export_csv(filename, data, reader):
 fieldnames = set(data.keys())
-for entry in set(reader.fieldnames).difference(data.iterkeys()):
-data[entry] = 0
 
 if not reader is None:
-fieldnames |= set(reader.fieldnames)
-writer = csv.DictWriter(open(filename, w), fieldnames)
+fieldnames.update(reader.fieldnames)
+writer = csv.DictWriter(open(filename, w), sorted(fieldnames), restval=0)
 writer.writeheader()
 if not reader is None:
 for row in reader:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 87056] Increase scrolling speed on larger spreadsheets

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87056

--- Comment #2 from Mikeyy - L10n HR miho...@miho.im ---
Yes you can. You can also copy cell, SHIFT + click last one, paste.
But that's not dragging cell down.

Anyway, it's an enhancement to think about if some dev think it's worth it.
Most people don't know about CTRL + D. I use excel and calc for 10 years and
still didn't develop habbit of using CTRL+D (and I know it exists).

-- 
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 89268] missing lines during printing

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89268

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||todven...@suomi24.fi

--- Comment #1 from Beluga todven...@suomi24.fi ---
Thanks for the report.
We need some more information.

Can you attach your problematic document here?
What is the model of your printer?

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

-- 
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: desktop/source drawinglayer/source include/sfx2 include/svx include/vcl sc/inc sc/source sd/source sfx2/source svx/inc svx/source sw/source vcl/osx vcl/source vcl/win

2015-03-06 Thread Tobias Madl
 desktop/source/app/app.cxx|2 +-
 drawinglayer/source/primitive2d/textlayoutdevice.cxx  |4 ++--
 drawinglayer/source/processor2d/vclhelperbufferdevice.cxx |4 ++--
 include/sfx2/objsh.hxx|2 +-
 include/svx/sdr/animation/scheduler.hxx   |2 +-
 include/vcl/debugevent.hxx|2 +-
 sc/inc/refreshtimer.hxx   |2 +-
 sc/source/core/tool/refreshtimer.cxx  |2 +-
 sc/source/filter/oox/workbookfragment.cxx |2 +-
 sd/source/ui/remotecontrol/ImagePreparer.cxx  |2 +-
 sd/source/ui/remotecontrol/ImagePreparer.hxx  |2 +-
 sd/source/ui/remotecontrol/Receiver.cxx   |2 +-
 sd/source/ui/remotecontrol/Receiver.hxx   |2 +-
 sfx2/source/appl/linksrc.cxx  |4 ++--
 sfx2/source/doc/objmisc.cxx   |2 +-
 svx/inc/sdr/contact/objectcontactofpageview.hxx   |2 +-
 svx/source/inc/eventhandler.hxx   |2 +-
 svx/source/sdr/animation/scheduler.cxx|2 +-
 svx/source/sdr/contact/objectcontactofpageview.cxx|6 +++---
 svx/source/sdr/contact/viewobjectcontactofpageobj.cxx |6 +++---
 svx/source/sdr/event/eventhandler.cxx |2 +-
 sw/source/uibase/inc/gloslst.hxx  |2 +-
 sw/source/uibase/utlui/gloslst.cxx|2 +-
 vcl/osx/salinst.cxx   |6 +++---
 vcl/osx/salnativewidgets.cxx  |2 +-
 vcl/source/window/debugevent.cxx  |2 +-
 vcl/win/source/gdi/salbmp.cxx |2 +-
 27 files changed, 36 insertions(+), 36 deletions(-)

New commits:
commit d05a64df34fd143670cb939b72abfb32d6b714c7
Author: Tobias Madl tobias.madl@gmail.com
Date:   Fri Mar 6 14:48:18 2015 +0100

Timer/Idle: adapted inherited funktions

Change-Id: I7714a4638b03d020820b276028c0819ef054fa26

diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 145c0c1..01b20d5 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -1910,7 +1910,7 @@ class ExitTimer : public Timer
 SetTimeout(500);
 Start();
 }
-virtual void Timeout() SAL_OVERRIDE
+virtual void Invoke() SAL_OVERRIDE
 {
 exit(42);
 }
diff --git a/drawinglayer/source/primitive2d/textlayoutdevice.cxx 
b/drawinglayer/source/primitive2d/textlayoutdevice.cxx
index b1e1ad0..9196259 100644
--- a/drawinglayer/source/primitive2d/textlayoutdevice.cxx
+++ b/drawinglayer/source/primitive2d/textlayoutdevice.cxx
@@ -65,7 +65,7 @@ namespace
 public:
 explicit ImpTimedRefDev(scoped_timed_RefDev rOwnerofMe);
 virtual ~ImpTimedRefDev();
-virtual void Timeout() SAL_OVERRIDE;
+virtual void Invoke() SAL_OVERRIDE;
 
 VirtualDevice acquireVirtualDevice();
 void releaseVirtualDevice();
@@ -87,7 +87,7 @@ namespace
 delete mpVirDev;
 }
 
-void ImpTimedRefDev::Timeout()
+void ImpTimedRefDev::Invoke()
 {
 // for obvious reasons, do not call anything after this
 mrOwnerOfMe.reset();
diff --git a/drawinglayer/source/processor2d/vclhelperbufferdevice.cxx 
b/drawinglayer/source/processor2d/vclhelperbufferdevice.cxx
index feb2df0..efa41c8 100644
--- a/drawinglayer/source/processor2d/vclhelperbufferdevice.cxx
+++ b/drawinglayer/source/processor2d/vclhelperbufferdevice.cxx
@@ -51,7 +51,7 @@ namespace
 void free(VirtualDevice rDevice);
 
 // Timer virtuals
-virtual void Timeout() SAL_OVERRIDE;
+virtual void Invoke() SAL_OVERRIDE;
 };
 
 VDevBuffer::VDevBuffer()
@@ -191,7 +191,7 @@ namespace
 Start();
 }
 
-void VDevBuffer::Timeout()
+void VDevBuffer::Invoke()
 {
 ::osl::MutexGuard aGuard(m_aMutex);
 
diff --git a/include/sfx2/objsh.hxx b/include/sfx2/objsh.hxx
index d08baa9..289a2da 100644
--- a/include/sfx2/objsh.hxx
+++ b/include/sfx2/objsh.hxx
@@ -776,7 +776,7 @@ class AutoReloadTimer_Impl : public Timer
 public:
 AutoReloadTimer_Impl( const OUString rURL, sal_uInt32 nTime,
   SfxObjectShell* pSh );
-virtual void Timeout() SAL_OVERRIDE;
+virtual void Invoke() SAL_OVERRIDE;
 };
 
 class SFX2_DLLPUBLIC SfxObjectShellItem: public SfxPoolItem
diff --git a/include/svx/sdr/animation/scheduler.hxx 
b/include/svx/sdr/animation/scheduler.hxx
index 5a5ca9e..1feda3a 100644
--- a/include/svx/sdr/animation/scheduler.hxx
+++ b/include/svx/sdr/animation/scheduler.hxx
@@ -116,7 +116,7 @@ namespace sdr
 virtual ~Scheduler();
 
 // From baseclass Timer, the timeout call
-virtual void Timeout() SAL_OVERRIDE;
+virtual void 

[Libreoffice-bugs] [Bug 59367] EXTENSIONSWEBSITE: a warning about outdated is showed for mature extensions

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59367

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---

--- Comment #6 from Cor Nouws c...@nouenoff.nl ---
(In reply to Andreas Mantke from comment #2)
 It is a reminder for the project owner that he should look at his extension
 or template and think about adding a new version of LibreOffice to the

It is good to remind project owners for that, but currently it gives
potentially wrong information to users mostly.
So reminding should be done by mail or whatever..
I think this is a bug and it would be good if it can be improved with the
rework :)

-- 
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 43219] FILEOPEN: Captions numbers in MSWord *.doc converted to zero at openning

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43219

--- Comment #4 from Viktor Mileikovskyi v_...@ukr.net ---
I test in on LibreOffice on Ubuntu:

Version: 4.4.1.2
Build code: 40m0(Build:2)
Locale: uk_UA.

No changes. All equation numbers are zeros

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


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

2015-03-06 Thread Tor Lillqvist
 sc/source/core/opencl/op_statistical.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1028643bc7d294e4c32b4ccea288d90088abae53
Author: Tor Lillqvist t...@collabora.com
Date:   Fri Mar 6 14:21:24 2015 +0200

Return a #DIV/0! error in one case in the OpenCL SLOPE() implementation

Instead of a bare NAN.

There are still many places in this function where the code bluntly returns 
a
bare NAN. That is always the wrong thing to do. However, it is not certain
that the #DIV/0! is the right error in all cases. One would need to check in
each case how to get there, and what the reference C++ implementation and
other spreadsheet products do in such a case.

Change-Id: I5454609082a92144b1afc3c1745586bfe8ef87f8

diff --git a/sc/source/core/opencl/op_statistical.cxx 
b/sc/source/core/opencl/op_statistical.cxx
index c9e74f9..fa5027f 100644
--- a/sc/source/core/opencl/op_statistical.cxx
+++ b/sc/source/core/opencl/op_statistical.cxx
@@ -2703,7 +2703,7 @@ void OpSlope::GenSlidingWindowFunction(std::stringstream 
ss,
 ss  fSumSqrDeltaX += (argX-fMeanX) * (argX-fMeanX);\n;
 ss  }\n;
 ss  if(fSumSqrDeltaX == 0.0)\n;
-ss  return NAN;\n;
+ss  return CreateDoubleError(errDivisionByZero);\n;
 ss  else\n;
 ss  {\n;
 ss  return fSumDeltaXDeltaY*pow(fSumSqrDeltaX,-1.0);\n;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 88701] FILEOPEN: Problem with import of HTML files with extension XLS on Windows

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88701

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
 Attachment #112661|text/plain  |application/vnd.ms-excel
  mime type||

-- 
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 89274] A subdocument doesn't get inserted after the currently selected item in the navigator

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89274

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
Version|4.4.0.0.alpha0+ Master  |Inherited From OOo
 OS|Windows (All)   |All
   Severity|normal  |minor

--- Comment #1 from Beluga todven...@suomi24.fi ---
Reproduced.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Ubuntu 14.10 64-bit
LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

-- 
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 89858] Filesave as DOCX looses text, 3 of 7 pages saved

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89858

MM plokk...@fastmail.fm changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from MM plokk...@fastmail.fm ---
Confirmed with V4.3.6.2 under window 7 x64.
Confirmed with V4.4.1.2 under mint 17.1 x64.

But this one is odd. If you save the docx file as another docx file, you'll
lose data.
If you save it first as odt, reopen the odt and *then* save it as docx file, no
data loss.

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


Interested in Contributing to LibreOffice

2015-03-06 Thread Tanmay Sahay
Hello, everyone!

I am Tanmay Sahay, a Sophomore from IIIT Hyderabad. I've been programming
in C++ for around 3 years, and I'm proficient in algorithmic programming.
LibreOffice interests me. I've looked up the basic development workflow;
this enabled me to successfully build my own development version of
LibreOffice from the repository I cloned. It would be great if someone
could direct me to the areas of development where my algorithmic
programming can be put to use, as I'm keen on contributing!
With regards,
*Tanmay Sahay*
*CSE, 2013-17*
*IIIT Hyderabad*
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 59367] EXTENSIONSWEBSITE: a warning about outdated is showed for mature extensions

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=59367

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |NOTABUG

--- Comment #5 from Beluga todven...@suomi24.fi ---
NOTABUG per comment 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 88185] Enhancement Request: Cursor size and text antialising

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88185

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |INVALID

--- Comment #1 from Beluga todven...@suomi24.fi ---
Thank you for your concern.
However, the cursor style configuration is the job of the operating system or
desktop environment.
Here are instructions for Windows:
http://www.sevenforums.com/tutorials/208087-cursor-set-thickness-width.html
Typing sounds: https://www.grc.com/freeware/clickey.htm

Text antialiasing comes from the operating system level as well.

I will close this report.

-- 
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 'feature/priorities' - 3 commits - include/vcl vcl/inc vcl/source

2015-03-06 Thread Tobias Madl
 include/vcl/scheduler.hxx|   22 --
 include/vcl/timer.hxx|4 +--
 vcl/inc/svdata.hxx   |3 --
 vcl/source/app/scheduler.cxx |   52 ---
 vcl/source/app/svapp.cxx |4 ---
 vcl/source/app/svmain.cxx|1 
 vcl/source/app/timer.cxx |6 +---
 7 files changed, 40 insertions(+), 52 deletions(-)

New commits:
commit 950d093f21a1ce42020386052aaff8c0812d57a0
Author: Tobias Madl tobias.madl@gmail.com
Date:   Fri Mar 6 10:39:49 2015 +

adapted comments and variable names

Change-Id: I4f2c1d743ce2f30e8c24180b73f0716fc13b459e

diff --git a/include/vcl/timer.hxx b/include/vcl/timer.hxx
index a999559..004e78c 100644
--- a/include/vcl/timer.hxx
+++ b/include/vcl/timer.hxx
@@ -40,10 +40,10 @@ public:
 
 /// Make it possible to associate a callback with this timer handler
 /// of course, you can also sub-class and override 'Invoke'
-voidSetTimeout( sal_uLong nTimeoutMs );
-sal_uLong   GetTimeout() const { return mnTimeout; }
 voidSetTimeoutHdl( const Link rLink ) { maTimeoutHdl = rLink; 
}
 const Link GetTimeoutHdl() const { return maTimeoutHdl; }
+voidSetTimeout( sal_uLong nTimeoutMs );
+sal_uLong   GetTimeout() const { return mnTimeout; }
 virtual voidInvoke() SAL_OVERRIDE;
 voidTimeout() { Invoke(); }
 Timer  operator=( const Timer rTimer );
diff --git a/vcl/inc/svdata.hxx b/vcl/inc/svdata.hxx
index 132c272..967f3df 100644
--- a/vcl/inc/svdata.hxx
+++ b/vcl/inc/svdata.hxx
@@ -317,8 +317,7 @@ struct ImplSVData
 SalSystem*  mpSalSystem;// SalSystem 
interface
 ResMgr* mpResMgr;   // 
SV-Resource-Manager
 sal_uLong   mnTimerPeriod;  // current timer 
period
-sal_uLong   mnTimerUpdate;  // 
TimerCallbackProcs on stack
-boolmbNotAllTimerCalled;// true: Timer 
must still be processed
+sal_uLong   mnUpdateStack;  // Scheduler on 
stack
 ImplSVAppData   maAppData;  // indepen data 
for class Application
 ImplSVGDIData   maGDIData;  // indepen data 
for Output classes
 ImplSVWinData   maWinData;  // indepen data 
for Windows classes
diff --git a/vcl/source/app/scheduler.cxx b/vcl/source/app/scheduler.cxx
index fc52b90..5a0061f 100644
--- a/vcl/source/app/scheduler.cxx
+++ b/vcl/source/app/scheduler.cxx
@@ -23,11 +23,14 @@
 #include vcl/timer.hxx
 #include saltimer.hxx
 
+#define MAX_TIMER_PERIOD((sal_uLong)0x)
+
 void ImplSchedulerData::Invoke()
 {
 if (mbDelete || mbInScheduler )
 return;
 
+// prepare Scheduler Object for deletion after handling
 mpScheduler-SetDeletionFlags();
 
 // invoke it
@@ -41,20 +44,20 @@ ImplSchedulerData *ImplSchedulerData::GetMostImportantTask( 
bool bTimer )
 ImplSVData* pSVData = ImplGetSVData();
 ImplSchedulerData *pMostUrgent = NULL;
 
-for ( ImplSchedulerData *p = pSVData-mpFirstSchedulerData; p; p = 
p-mpNext )
+for ( ImplSchedulerData *pSchedulerData = pSVData-mpFirstSchedulerData; 
pSchedulerData; pSchedulerData = pSchedulerData-mpNext )
 {
-if ( !p-mpScheduler || p-mbDelete || p-mnUpdateStack = 
pSVData-mnTimerUpdate || !p-mpScheduler-ReadyForSchedule( bTimer ) )
+if ( !pSchedulerData-mpScheduler || pSchedulerData-mbDelete || 
pSchedulerData-mnUpdateStack = pSVData-mnUpdateStack
+|| !pSchedulerData-mpScheduler-ReadyForSchedule( bTimer ) )
 continue;
 if (!pMostUrgent)
-pMostUrgent = p;
+pMostUrgent = pSchedulerData;
 else
 {
 // Find the highest priority.
-// If the priority of the current idle is higher (numerical value 
is lower) than
-// the priority of the most urgent, the priority of most urgent is 
increased and
-// the current is the new most urgent. So starving is impossible.
-if ( p-mpScheduler-GetPriority()  
pMostUrgent-mpScheduler-GetPriority() )
-pMostUrgent = p;
+// If the priority of the current task is higher (numerical value 
is lower) than
+// the priority of the most urgent, the current task gets the new 
most urgent.
+if ( pSchedulerData-mpScheduler-GetPriority()  
pMostUrgent-mpScheduler-GetPriority() )
+pMostUrgent = pSchedulerData;
 }
 }
 
@@ -101,6 +104,7 @@ void Scheduler::ImplDeInitScheduler()
 
 void Scheduler::CallbackTaskScheduling(bool ignore)
 {
+// this function is for the saltimer callback
 (void)ignore;
 Scheduler::ProcessTaskScheduling( true );
 }
@@ -108,12 +112,13 @@ void Scheduler::CallbackTaskScheduling(bool ignore)
 void 

[Libreoffice-bugs] [Bug 85927] bubble chart wizard is not working as expected

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85927

Jan Wustrow jan.wust...@zimory.com changed:

   What|Removed |Added

Version|unspecified |4.2.7.2 release

--- Comment #14 from Jan Wustrow jan.wust...@zimory.com ---
Hi all,

is there any additional information that I can deliver?
Could anybody reproduce the issue?

Thank you in advance.

regards,

Jan

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

2015-03-06 Thread Michael Meeks
 vcl/workben/vcldemo.cxx |   30 ++
 1 file changed, 26 insertions(+), 4 deletions(-)

New commits:
commit ef6f2490a697e7c23fea40c567f751db05f1bbbf
Author: Michael Meeks michael.me...@collabora.com
Date:   Fri Mar 6 16:50:09 2015 +

vcldemo: add a tooltip to debug rendering issue.

Change-Id: Ic7c02736505969c3d74acc59b80794b3be62bf6b

diff --git a/vcl/workben/vcldemo.cxx b/vcl/workben/vcldemo.cxx
index 70e4ac8..435e4e8 100644
--- a/vcl/workben/vcldemo.cxx
+++ b/vcl/workben/vcldemo.cxx
@@ -28,10 +28,12 @@
 #include vcl/virdev.hxx
 #include vcl/graphicfilter.hxx
 #include vcl/button.hxx
+#include vcl/toolbox.hxx
 #include vcl/pngwrite.hxx
 #include vcl/floatwin.hxx
 #include vcl/salbtype.hxx
 #include vcl/bmpacc.hxx
+#include vcl/help.hxx
 #include basegfx/numeric/ftools.hxx
 #include basegfx/matrix/b2dhommatrix.hxx
 #include vcldemo-debug.hxx
@@ -1434,15 +1436,18 @@ public:
 
 class DemoWidgets : public WorkWindow
 {
-VclBox *mpBox;
+VclBox *mpBox;
+ToolBox*mpToolbox;
+PushButton *mpButton;
 public:
 DemoWidgets() :
-WorkWindow(NULL, WB_STDWORK)
+WorkWindow(NULL, WB_STDWORK),
+mpBox(new VclVBox(this, false, 3)),
+mpToolbox(new ToolBox(mpBox)),
+mpButton(new PushButton(mpBox))
 {
 SetText(VCL widget demo);
 
-mpBox = new VclVBox(this, false, 3);
-
 Wallpaper aWallpaper(BitmapEx(sfx2/res/startcenter-logo.png));
 aWallpaper.SetStyle(WALLPAPER_BOTTOMRIGHT);
 aWallpaper.SetColor(COL_RED);
@@ -1450,10 +1455,27 @@ public:
 mpBox-SetBackground(aWallpaper);
 mpBox-Show();
 
+Help::EnableQuickHelp();
+Help::EnableBalloonHelp();
+Help::EnableExtHelp();
+mpToolbox-SetHelpText(Help text);
+mpToolbox-InsertItem(0, Toolbar item);
+mpToolbox-SetQuickHelpText(0, This is a tooltip popup);
+mpToolbox-SetHelpText(0, This is a longer help text popup);
+mpToolbox-InsertSeparator();
+mpToolbox-Show();
+
+mpButton-SetText(Click me; go on);
+mpToolbox-SetQuickHelpText(button help text);
+mpButton-Show();
+
 Show();
 }
 virtual ~DemoWidgets()
 {
+delete mpButton;
+delete mpToolbox;
+delete mpBox;
 }
 virtual void Paint(const Rectangle) SAL_OVERRIDE
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice-qa] Bugs with Backtrace but Not Reproduced

2015-03-06 Thread Alexander Thurgood
Le 06/03/2015 16:00, Joel Madero a écrit :


There doesn't seem to be a backtrace with bug 89628, or did I miss
something ?

Alex

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

Re: [Libreoffice-qa] Bugs with Backtrace but Not Reproduced

2015-03-06 Thread Alexander Thurgood
Le 06/03/2015 16:00, Joel Madero a écrit :


No backtrace on bug 89844 either ?

Alex


___
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: sc/inc

2015-03-06 Thread Tobias Madl
 sc/inc/refreshtimer.hxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 2c0189a8a3aeb3668bf6de1ea1958ba475b80a38
Author: Tobias Madl tobias.madl@gmail.com
Date:   Fri Mar 6 16:55:17 2015 +0100

Autotimer: added function to public

Change-Id: I6522e7a2bb895973d9d8cf1b7cfbad2f2abc62a2

diff --git a/sc/inc/refreshtimer.hxx b/sc/inc/refreshtimer.hxx
index 29a0028e..20c57db 100644
--- a/sc/inc/refreshtimer.hxx
+++ b/sc/inc/refreshtimer.hxx
@@ -57,9 +57,7 @@ public:
 
 SC_DLLPUBLIC virtual void SetRefreshDelay( sal_uLong nSeconds );
 SC_DLLPUBLIC virtual void Invoke() SAL_OVERRIDE;
-
-private:
-void Start();
+virtual void Start() SAL_OVERRIDE;
 };
 
 #endif // INCLUDED_SC_INC_REFRESHTIMER_HXX
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89851] insert image fails to render vector-effect=non-scaling-stroke proprty of svg files

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89851

Ian Thompson-Bell ianb...@ukfsn.org changed:

   What|Removed |Added

 Attachment #113920|0   |1
is obsolete||

--- Comment #2 from Ian Thompson-Bell ianb...@ukfsn.org ---
Created attachment 113935
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113935action=edit
simple svg file of a rectangle containing the word ERROR

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


[Libreoffice-bugs] [Bug 89863] New: Wrong display of chart with long captions

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89863

Bug ID: 89863
   Summary: Wrong display of chart with long captions
   Product: LibreOffice
   Version: 4.4.1.2 rc
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: silva...@katamail.com

Created attachment 113933
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113933action=edit
Example of Wrong display of chart with long captions

Create a new calc file, type in the first column some text, with somewhat long
strings (about 90 characters are enough).
In the second column type some data (e.g. frequencies) associated with text
strings (e.g. possible responses).
Now select both columns with data and create an horizontal bar chart.
The default graph you obtain has a size wide enough as to accomodate the full
captions coming from the data, but the chart background is narrower and there
is no way to get it to extend to the full chart size.
Check the attached file to see this. In the chart there, I colored the
background in cyan to make the problem more apparent.

-- 
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 89110] LibreOffice Calc crashes when soffice.bin reaches 1.600.000 K RAM in Taskmanager (out of memory)

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89110

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

   What|Removed |Added

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

--- Comment #18 from V Stuart Foote vstuart.fo...@utsa.edu ---
Created attachment 113934
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113934action=edit
Stack trace of crash and recover

(In reply to Jonas Müller from comment #16)
 
 It would be great if multiple people with LibreOffice x86 could verify this
 as an earlier example file used far less memory on Beluga' setup than on
 mine.

On Windows 7 sp1, 64-bit en-US with
Version: 4.3.6.2
Build ID: d50a87b2e514536ed401c18000dad4660b6a169e

Does not abort the soffice.bin process. Rather on document crash it cycles into
document recovery. Stack trace attached seems to show that while scrolling it
was happily generating bitmaps (salbmp.cxx) and then experiences a kernel
exception.  This is 4.3.6.2, so memory management of bug 84729 had already been
patched.

I didn't catch the exact value when crash/recovery kicked in but looked to be
about the 1.7GB point--process falls back to idle at 1.14GB memory use.

-- 
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 88941] LO 4.4 Writer loses PDF formatting just on OS X builds

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88941

--- Comment #18 from b...@mail.pf ---

This bug is very annoying. Could some devemopers try to resolve it ASAP ?

Regards

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


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

2015-03-06 Thread Tor Lillqvist
 sc/source/core/opencl/op_statistical.cxx |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 3da65dc8982167517f19e80a288b049118bc3d23
Author: Tor Lillqvist t...@collabora.com
Date:   Fri Mar 6 17:35:09 2015 +0200

Return #VALUE! instead of NaN in the OpenCL NORMSINV()

Change-Id: I5bf4d5bb84cc85e631b27741a6fc171ec99eead4

diff --git a/sc/source/core/opencl/op_statistical.cxx 
b/sc/source/core/opencl/op_statistical.cxx
index f6f346f..6e38f84 100644
--- a/sc/source/core/opencl/op_statistical.cxx
+++ b/sc/source/core/opencl/op_statistical.cxx
@@ -4765,8 +4765,9 @@ void OpNormsinv:: GenSlidingWindowFunction
 ss }\n;
 ss  z = q  0.0 ? (-1)*z : z;\n;
 ss }\n;
-ss double tmp = z;\n;
-ss return tmp;\n;
+ss if (isnan(z))\n;
+ss return CreateDoubleError(errNoValue);\n;
+ss return z;\n;
 ss }\n;
 }
 void OpMedian::GenSlidingWindowFunction(
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 89608] TOC: Redesign of the Entries tab of the Index/Table dialog

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89608

Regina Henschel rb.hensc...@t-online.de changed:

   What|Removed |Added

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

--- Comment #7 from Regina Henschel rb.hensc...@t-online.de ---
It is confusing to have both Entry Text and Text Entry.

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


[Libreoffice-bugs] [Bug 89608] TOC: Redesign of the Entries tab of the Index/Table dialog

2015-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89608

Regina Henschel rb.hensc...@t-online.de changed:

   What|Removed |Added

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

--- Comment #7 from Regina Henschel rb.hensc...@t-online.de ---
It is confusing to have both Entry Text and Text Entry.

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


  1   2   3   >