[Libreoffice-commits] core.git: Branch 'feature/gsoc-tiled-rendering' - 32 commits - chart2/source comphelper/source connectivity/source cppuhelper/qa cppuhelper/source dbaccess/source desktop/source

2015-06-29 Thread Pranav Kant
Rebased ref, commits from common ancestor:
commit dbfde294265f184736306ac66d6de829b337277b
Author: Pranav Kant pran...@gnome.org
Date:   Mon Jun 29 13:34:24 2015 +0530

gtktiledviewer: Don't continue on widget init failure

Change-Id: I5916357903fad5878d29bc31f21af45816a45ec5

diff --git a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx 
b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
index db465cb..f7b065c 100644
--- a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
@@ -520,8 +520,8 @@ int main( int argc, char* argv[] )
 
 // Docview
 pDocView = lok_doc_view_new (argv[1], NULL, NULL);
-if (pDocView == NULL)
-g_error (Error while creating LOKDocView widget);
+g_assert_nonnull(pDocView);
+
 g_signal_connect(pDocView, edit-changed, G_CALLBACK(signalEdit), NULL);
 g_signal_connect(pDocView, command-changed, G_CALLBACK(signalCommand), 
NULL);
 g_signal_connect(pDocView, search-not-found, G_CALLBACK(signalSearch), 
NULL);
commit 6ae09501447c68c7374f3fb39f8b365c56c59b91
Author: Pranav Kant pran...@gnome.org
Date:   Wed Jun 24 02:02:39 2015 +0530

lokdocview: Handle DELETE key

Change-Id: I58d0c36decf81c812c108458b449402416ebcc2d

diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index ca7167b..62f1e61 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -245,6 +245,9 @@ signalKey (GtkWidget* pWidget, GdkEventKey* pEvent)
 case GDK_KEY_BackSpace:
 nKeyCode = com::sun::star::awt::Key::BACKSPACE;
 break;
+case GDK_KEY_Delete:
+nKeyCode = com::sun::star::awt::Key::DELETE;
+break;
 case GDK_KEY_Return:
 nKeyCode = com::sun::star::awt::Key::RETURN;
 break;
commit 734fd92db1bca28c26622cde1beca8bea25e0d22
Author: Pranav Kant pran...@gnome.org
Date:   Tue Jun 23 14:37:09 2015 +0530

tilebuffer: Add timer to measure paintTile() call

Change-Id: I2645863c7445e17d77e2c4e2dc24e22f8685034e

diff --git a/libreofficekit/source/gtk/tilebuffer.cxx 
b/libreofficekit/source/gtk/tilebuffer.cxx
index 3f22f98..60aa16f 100644
--- a/libreofficekit/source/gtk/tilebuffer.cxx
+++ b/libreofficekit/source/gtk/tilebuffer.cxx
@@ -91,7 +91,7 @@ Tile TileBuffer::getTile(int x, int y, float aZoom)
 aTileRectangle.x = pixelToTwip(nTileSizePixels, aZoom) * y;
 aTileRectangle.y = pixelToTwip(nTileSizePixels, aZoom) * x;
 
-g_info (Rendering (%d, %d), x, y);
+g_test_timer_start();
 m_pLOKDocument-pClass-paintTile(m_pLOKDocument,
   pBuffer,
   nTileSizePixels, nTileSizePixels,
@@ -99,6 +99,9 @@ Tile TileBuffer::getTile(int x, int y, float aZoom)
   pixelToTwip(nTileSizePixels, aZoom),
   pixelToTwip(nTileSizePixels, aZoom));
 
+double elapsedTime = g_test_timer_elapsed();
+g_info (Rendered (%d, %d) in %f seconds, x, y, elapsedTime);
+
 //create a mapping for it
 m_mTiles[index].setPixbuf(pPixBuf);
 m_mTiles[index].valid = true;
commit 0835695e94caa9e58f70fe6ec31bf1e9693a6619
Author: Pranav Kant pran...@gnome.org
Date:   Tue Jun 23 02:58:38 2015 +0530

lokdocview: Remove superfluous *_post_key()

Instead directly let LOKDocView handle the input.

Change-Id: I260a460df23c3e2e5c78d8b363bb864ae5c63dab

diff --git a/include/LibreOfficeKit/LibreOfficeKitGtk.h 
b/include/LibreOfficeKit/LibreOfficeKitGtk.h
index 3a1628b..962f9d9 100644
--- a/include/LibreOfficeKit/LibreOfficeKitGtk.h
+++ b/include/LibreOfficeKit/LibreOfficeKitGtk.h
@@ -74,10 +74,6 @@ void   lok_doc_view_post_command 
  (LOKDocView*
 const 
char* pCommand,
 const 
char* pArguments);
 
-/// Posts a keyboard event to LibreOfficeKit.
-void   lok_doc_view_post_key   
(LOKDocView* pDocView,
-GdkEvent* 
pEvent);
-
 float  lok_doc_view_pixel_to_twip  
(LOKDocView* pDocView,
 float 
fInput);
 
diff --git a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx 
b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
index 1ca9454..db465cb 100644
--- a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
@@ -191,19 +191,6 @@ static void getVisibleAreaTwips(GdkRectangle* pArea)
 #endif
 }
 
-
-/// Handles the key-press-event of the window.
-static gboolean signalKey(GtkWidget* /*pWidget*/, GdkEvent* pEvent, gpointer/* 
pData*/)
-{
-  

[Bug 39468] translate German comments, removing redundant ones

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

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

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

tdf#39468 Translate German Comments - scaddins/

It will be available in 5.1.0.

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

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


[Libreoffice-bugs] [Bug 39468] translate German comments, removing redundant ones

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

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

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

tdf#39468 Translate German Comments - scaddins/

It will be available in 5.1.0.

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

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


Re: [Libreoffice-qa] daily MAB summary and CCing of MABs (was: MAB/Priority and Severity)

2015-06-29 Thread Bjoern Michaelsen
On Mon, Jun 29, 2015 at 11:57:10AM +0200, Eike Rathke wrote:
 What exactly do you mean with review here? I don't think we should spend
 too much time on that during the ESC call, but I'd be ok with some does
 anyone see a bug on this list that shouldn't belong there topic.

Yes, the latter is actually pretty much what I had in mind for the ESC
'review'.

Best,

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


[Libreoffice-bugs] [Bug 92275] impress grinds to a total halt as images constantly swapped in

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

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

-- 
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 91485] UI:Cursors other than the default work but are not displayed

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #26 from Beluga todven...@suomi24.fi ---
Fix verified. For 5.0 RC2 verified in
https://bugs.documentfoundation.org/show_bug.cgi?id=91740#c11

Win 7 Pro 64-bit Version: 5.1.0.0.alpha1+
Build ID: 4fff776a08dd92121ab507a1ab506ac945abaedb
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-06-28_00:25:54
Locale: fi-FI (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 92422] New: LibreOffice 5.0.beta2 - RC2 crashes Windows Fioe Explorer

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

Bug ID: 92422
   Summary: LibreOffice 5.0.beta2 - RC2 crashes Windows Fioe
Explorer
   Product: LibreOffice
   Version: 5.0.0.0.beta2
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: leopoldo.sag...@libero.it

OS: Windows 7 64bit Professional
Computer: HP Compaq 8200 desktop i5 and i7 with 4 /8 GB of RAM
All drivers (graphics card included updated) at the time of the test
Libre Office tested version 5.0.0beta2 and 5.0.0rc2 (not rc1)
Please note: I'm not sure this is the correct section to point out this bug.
In case, please move to the correct one.

What happens.
Installation of one LibreOffice beta2 or rc2 (provbably it is the same with rc1
but I did not tested it).
Open a .ods (not sure this step is necessary).
Open Windows File Manager and go to a directory which constains at least one
.ods file (not tested this works also with other open documen kinds.
Select one .ods file and CTRL+C to copy it.
Stay in the same directory of the original .ods doc and use CTRL+V to paste a
second copy in the same directory.
Windows File Manager stops to work.
This does not happen if you repeat the experiment selectin/CTRL+C/CTRL+V a
non-open document file.
Please note that I do this operation every day and I did n have similar
problems with no other LibreOffce version (4.4.3 included).
No idea if this happens also by using LibreOffice 5.0.0 64bit

Best regards
Leopoldo Saggin aka Topoldo

-- 
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: 5 commits - include/LibreOfficeKit libreofficekit/qa libreofficekit/source

2015-06-29 Thread Pranav Kant
 include/LibreOfficeKit/LibreOfficeKitGtk.h  |4 -
 libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx |   38 +++---
 libreofficekit/source/gtk/lokdocview.cxx|   54 +---
 libreofficekit/source/gtk/tilebuffer.cxx|5 +
 4 files changed, 49 insertions(+), 52 deletions(-)

New commits:
commit a482d3289fa7e3789a306970ea76d074527c3579
Author: Pranav Kant pran...@gnome.org
Date:   Mon Jun 29 13:34:24 2015 +0530

gtktiledviewer: Don't continue on widget init failure

Change-Id: I5916357903fad5878d29bc31f21af45816a45ec5

diff --git a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx 
b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
index db465cb..f7b065c 100644
--- a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
@@ -520,8 +520,8 @@ int main( int argc, char* argv[] )
 
 // Docview
 pDocView = lok_doc_view_new (argv[1], NULL, NULL);
-if (pDocView == NULL)
-g_error (Error while creating LOKDocView widget);
+g_assert_nonnull(pDocView);
+
 g_signal_connect(pDocView, edit-changed, G_CALLBACK(signalEdit), NULL);
 g_signal_connect(pDocView, command-changed, G_CALLBACK(signalCommand), 
NULL);
 g_signal_connect(pDocView, search-not-found, G_CALLBACK(signalSearch), 
NULL);
commit e2c73bf76a35ee8ce18e4499587de849c92eef1c
Author: Pranav Kant pran...@gnome.org
Date:   Wed Jun 24 02:02:39 2015 +0530

lokdocview: Handle DELETE key

Change-Id: I58d0c36decf81c812c108458b449402416ebcc2d

diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index ca7167b..62f1e61 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -245,6 +245,9 @@ signalKey (GtkWidget* pWidget, GdkEventKey* pEvent)
 case GDK_KEY_BackSpace:
 nKeyCode = com::sun::star::awt::Key::BACKSPACE;
 break;
+case GDK_KEY_Delete:
+nKeyCode = com::sun::star::awt::Key::DELETE;
+break;
 case GDK_KEY_Return:
 nKeyCode = com::sun::star::awt::Key::RETURN;
 break;
commit 580c70883ca8c9bc73ea42cb05983b9df57f55ff
Author: Pranav Kant pran...@gnome.org
Date:   Tue Jun 23 14:37:09 2015 +0530

tilebuffer: Add timer to measure paintTile() call

Change-Id: I2645863c7445e17d77e2c4e2dc24e22f8685034e

diff --git a/libreofficekit/source/gtk/tilebuffer.cxx 
b/libreofficekit/source/gtk/tilebuffer.cxx
index 3f22f98..60aa16f 100644
--- a/libreofficekit/source/gtk/tilebuffer.cxx
+++ b/libreofficekit/source/gtk/tilebuffer.cxx
@@ -91,7 +91,7 @@ Tile TileBuffer::getTile(int x, int y, float aZoom)
 aTileRectangle.x = pixelToTwip(nTileSizePixels, aZoom) * y;
 aTileRectangle.y = pixelToTwip(nTileSizePixels, aZoom) * x;
 
-g_info (Rendering (%d, %d), x, y);
+g_test_timer_start();
 m_pLOKDocument-pClass-paintTile(m_pLOKDocument,
   pBuffer,
   nTileSizePixels, nTileSizePixels,
@@ -99,6 +99,9 @@ Tile TileBuffer::getTile(int x, int y, float aZoom)
   pixelToTwip(nTileSizePixels, aZoom),
   pixelToTwip(nTileSizePixels, aZoom));
 
+double elapsedTime = g_test_timer_elapsed();
+g_info (Rendered (%d, %d) in %f seconds, x, y, elapsedTime);
+
 //create a mapping for it
 m_mTiles[index].setPixbuf(pPixBuf);
 m_mTiles[index].valid = true;
commit da49b8339828c0ee27d999ac4201e0eb12a1a47f
Author: Pranav Kant pran...@gnome.org
Date:   Tue Jun 23 02:58:38 2015 +0530

lokdocview: Remove superfluous *_post_key()

Instead directly let LOKDocView handle the input.

Change-Id: I260a460df23c3e2e5c78d8b363bb864ae5c63dab

diff --git a/include/LibreOfficeKit/LibreOfficeKitGtk.h 
b/include/LibreOfficeKit/LibreOfficeKitGtk.h
index 3a1628b..962f9d9 100644
--- a/include/LibreOfficeKit/LibreOfficeKitGtk.h
+++ b/include/LibreOfficeKit/LibreOfficeKitGtk.h
@@ -74,10 +74,6 @@ void   lok_doc_view_post_command 
  (LOKDocView*
 const 
char* pCommand,
 const 
char* pArguments);
 
-/// Posts a keyboard event to LibreOfficeKit.
-void   lok_doc_view_post_key   
(LOKDocView* pDocView,
-GdkEvent* 
pEvent);
-
 float  lok_doc_view_pixel_to_twip  
(LOKDocView* pDocView,
 float 
fInput);
 
diff --git a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx 
b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
index 1ca9454..db465cb 100644
--- 

[Libreoffice-bugs] [Bug 92422] LibreOffice 5.0.beta2 - RC2 crashes Windows Fioe Explorer

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

--- Comment #1 from Marc Kaulisch m...@kaulisch.de ---
I cannot reproduce this with LO 5.0.0.2 (RC2) as Win_x64 version on Windows 8.1
(all newest patches applied)

I can do a CRTL-C/CRTL-V action inside the Windows File Explorer with ods and
odt files within the same directory and with/out an open document.

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


[Libreoffice-bugs] [Bug 92415] Numeration style can not be changed when new numeration point strats

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

Daniel D compl...@yandex.ru changed:

   What|Removed |Added

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

--- Comment #9 from Daniel D compl...@yandex.ru ---
For in text lists works fine, but not for chapters.

-- 
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 92415] Numeration style can not be changed when new numeration point strats

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

Marc Kaulisch m...@kaulisch.de changed:

   What|Removed |Added

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

--- Comment #10 from Marc Kaulisch m...@kaulisch.de ---
why? You can use Numbering 3 (style) and change it to Chapter again and start
numbering from where the first numbering ended
(see new file 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-bugs] [Bug 92424] [l10n] Untranslatable string Edit Comment: Calc - Context menu

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

Marc Kaulisch m...@kaulisch.de changed:

   What|Removed |Added

 CC||m...@kaulisch.de
 Whiteboard||regression

--- Comment #1 from Marc Kaulisch m...@kaulisch.de ---
No problem here with
Version: 4.4.5.0.0+
Build-ID: 7ea962bd8f2e5303b7719add1f47bb79047b0739
TinderBox: Win-x86@51-TDF, Branch:libreoffice-4-4, Time: 2015-06-28_23:43:12
Gebietsschema: de_DE

Problem with 5.0 RC2 64bit on Win 8.1 confirmed
With right click Edit Comment and not Kommentar bearbeiten is displayed

-- 
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: Callback deadlock

2015-06-29 Thread Matthew J. Francis

On 29/06/2015 20:18, Stephan Bergmann wrote:


ah, that's a poorly implemented Implementation::inspect
(stoc/source/inspect/introspection.cxx), which locks some m_aMutex first
thing and for the duration of the whole function call, and both
Pyhton-side threads 1 and 2 are in this function...


When it comes to thousand line functions which feel the need to be 
(heavily) commented in German, I have a very strong urge to 'nicht 
gefingerpoken'.


Unless you feel generous enough to debug further, I'll go with plan B 
and just poll for now rather than risk changing it. While not optimally 
pretty, the objective of the exercise is after all to produce more tests 
and fewer bugs!


(In due course I can commit a test for this bug too)

Regards
Matthew Francis

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


[Libreoffice-bugs] [Bug 92426] New: Box not showing for an entire row and entire column notation

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

Bug ID: 92426
   Summary: Box not showing for an entire row and entire column
notation
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ov...@hotmail.com

tdf#44419

Steps to reproduce bug for an entire column
---

1. In cell A1 enter: =sum(B:B)
2. In cell A2 enter: =sum(B1:B1048576)

3. Click on cell A1.
4. Press F2. Unfortunately there is no box showing (this is an bug).

5. Click on cell A2.
6. Press F2. Fortunately there is a box showing (this is the correct
behaviour).


Steps to reproduce bug for an entire row


7. In cell C1 enter: =sum(10:10)
8. In cell C2 enter: =sum(A10:AMJ10)

9. Click on cell C1.
10. Press F2. Unfortunately there is no box showing (this is an bug).

11. Click on cell C2.
12. Press F2. Fortunately there is a box showing (this is the correct
behaviour).

-- 
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 92398] s.office.bin goes to 50% kills opensuse13.1

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

audio audio_mobil...@yahoo.de changed:

   What|Removed |Added

Version|5.1.0.0.alpha0+ Master  |4.4.4.3 rc

--- Comment #2 from audio audio_mobil...@yahoo.de ---
same behaviour with 4.4.4.3 Version from 24.06.15 !!!
sometimes xorg goes up to 47% !! at the same time. So the Computer stops
working. After ca 120 sec it is possible to terminate libreoffice.

-- 
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 92347] unknown software exception 0xc0000005 at address 0x7d610dee

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

--- Comment #2 from s...@abma.de ---
sorry i don't have a reliable way to reproduce this error, but the crash
happens regulary on a windows 2003 terminal server with multiple users.

the users which get this crash opens several large documents in parallel. sadly
they haven't found a way to always reproduce it.

is there a way to debug / get more information a crash?

is there a libreoffice specific doc about how to debug this better?

-- 
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 92422] LibreOffice 5.0.beta2 - RC2 crashes Windows Fioe Explorer

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

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||r...@post.cz
 Resolution|--- |DUPLICATE

--- Comment #3 from raal r...@post.cz ---


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

-- 
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 92269] 5.0.0.1 Win 64 Explorer Crash after single click on any LO file in folder. (shlxthdl.dll / propertyhdl.dll property handler problem?)

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

raal r...@post.cz changed:

   What|Removed |Added

 CC||leopoldo.sag...@libero.it

--- Comment #15 from raal r...@post.cz ---
*** Bug 92422 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 92425] New: UI: Page view Sifr icons in status bar do not change

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

Bug ID: 92425
   Summary: UI:  Page view Sifr icons in status bar do not change
   Product: LibreOffice
   Version: 4.4.4.3 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gordon1dr...@yahoo.com

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

When selecting Single, Two page, or Book view the other two icons should be
grey or dimmed or something.  There is no way to know which view is active.

Windows Vista 64
Version: 4.4.4.3
Build ID: 2c39ebcf046445232b798108aa8a7e7d89552ea8

Version: 5.1.0.0.alpha1+
Build ID: 89b5967658392d27fb3147e85abb2b5c1c34b101
TinderBox: Win-x86@39, Branch:master, Time: 2015-06-24_04:10:17

-- 
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 92418] On Mac OS X, Cmd-H should Hide LibreOffice, not open LibreOffice Help

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=92
   ||382
 Ever confirmed|0   |1

--- Comment #1 from Adolfo Jayme f...@libreoffice.org ---
Thanks for submitting your bug report and helping to improve LibreOffice.

It may save time to solve bug 92382 at the same time as this one.

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


[Libreoffice-bugs] [Bug 92382] [OSINTEGRATION] Command? should open help

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

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

   What|Removed |Added

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

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

2015-06-29 Thread Stephan Bergmann

On 06/18/2015 07:04 PM, Michael Meeks wrote:

AI:  + dig out documentation on compiling SDK examples - odk/README 
(Stephan)


http://cgit.freedesktop.org/libreoffice/core/commit/?id=8c30d8bbb8a0b3682160252ee065befabf613a7b 
Explain how to test SDK examples


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

2015-06-29 Thread Stephan Bergmann

On 06/18/2015 07:04 PM, Michael Meeks wrote:

AI:  + dig out documentation on compiling SDK examples - odk/README 
(Stephan)


http://cgit.freedesktop.org/libreoffice/core/commit/?id=8c30d8bbb8a0b3682160252ee065befabf613a7b 
Explain how to test SDK examples


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


[Libreoffice-bugs] [Bug 44388] Printing/Exporting to PDF adds text to the side of form elements ('checkbox', ...)

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

Michael Weghorn m.wegh...@posteo.de changed:

   What|Removed |Added

 CC||m.wegh...@posteo.de

--- Comment #10 from Michael Weghorn m.wegh...@posteo.de ---
Created attachment 116921
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116921action=edit
sample document with checkboxes of different sizes

We also experience this problem.

I have tested with LibreOffice 5.0.0 RC2, Build ID:
a26d58f11b99b6aeddf7f7884effea188cc6e512 on Debian Jessie.

I noticed that it actually depends on the size of the checkbox whether the
label is printed or not.

I attach a sample file with 3 checkboxes where the checkbox sizes differ. All
checkboxes have the same label LABEL. The first checkbox has a width of 0.38
cm and the same height. For the other two checkboxes, either the width or the
height have been changed.

When printing the document, the label of the first checkbox is printed (and
overlaps the text next to the checkbox). The label of the other two checkboxes
is not printed. However, when I change the size of the other checkboxes to be
the same as that of the first one, their labels are also printed and overlap
the respective text next to them.

-- 
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 92275] impress grinds to a total halt as images constantly swapped in

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

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 92275] impress grinds to a total halt as images constantly swapped in

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

--- Comment #5 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to libreoffice-5-0:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=72da6ef835982e1927fd7405bb42f403c2fee5f9h=libreoffice-5-0

Resolves: tdf#92275 impress grinds to a halt constant swapping images

It will be available in 5.0.0.3.

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

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


[Libreoffice-bugs] [Bug 91971] StartCenter minimum size now too small with addition of Recent Files button

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

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

   What|Removed |Added

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

-- 
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-06-29 Thread Julien Nabet
 sc/source/core/data/dptabsrc.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 594ef250f824772c467c0f3cc8001568d1e553a9
Author: Julien Nabet serval2...@yahoo.fr
Date:   Thu Jun 25 23:21:19 2015 +0200

Related tdf#92262: PIVOTTABLE: crash when clicking on the autofilter arrow

Missing else in front of the if
Regression from 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=7b355da6853af6678c4ba22710d157cf8a6d43eb

Change-Id: I3c32e8f09acbea7094c4268384ec4b1c4e028fc5
Reviewed-on: https://gerrit.libreoffice.org/16497
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Deena Francis deena.fran...@gmail.com
Tested-by: Julien Nabet serval2...@yahoo.fr
Reviewed-by: Julien Nabet serval2...@yahoo.fr

diff --git a/sc/source/core/data/dptabsrc.cxx b/sc/source/core/data/dptabsrc.cxx
index f24c705..5a14a6f 100644
--- a/sc/source/core/data/dptabsrc.cxx
+++ b/sc/source/core/data/dptabsrc.cxx
@@ -2235,7 +2235,7 @@ uno::Any SAL_CALL ScDPLevel::getPropertyValue( const 
OUString aPropertyName )
 uno::Any aRet;
 if ( aPropertyName == SC_UNO_DP_SHOWEMPTY )
 lcl_SetBoolInAny(aRet, bShowEmpty);
-if ( aPropertyName == SC_UNO_DP_REPEATITEMLABELS )
+else if ( aPropertyName == SC_UNO_DP_REPEATITEMLABELS )
 lcl_SetBoolInAny(aRet, bRepeatItemLabels);
 else if ( aPropertyName == SC_UNO_DP_SUBTOTAL )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92242] UI - StartCenter can not be resized diagonally with mouse after initial window size increase and covers OSX Dock

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

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

   What|Removed |Added

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

-- 
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 92405] On OSX in Formula Editor symbols are misplaced and mishighlited

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

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

   What|Removed |Added

   Priority|medium  |low
 Status|UNCONFIRMED |NEW
 Blocks||68871
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #1 from Adolfo Jayme f...@libreoffice.org ---
Thank you for the 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


Re: [Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - download.lst external/libetonyek

2015-06-29 Thread David Tardon
Hi,

On Sat, Jun 27, 2015 at 12:27:59AM +0200, Thorsten Behrens wrote:
 David Tardon wrote:
  commit 60e38140db23ce714b172f8e60d71da4e4c495e5
  Author: David Tardon dtar...@redhat.com
  Date:   Tue Jun 2 17:49:48 2015 +0200
  
  upload libetonyek 0.1.3
  
  (cherry picked from commit ee3d40b30816a8fc6d4e8f984659c8dfac19ec3b)
  
  Change-Id: I451f02ee93a798c9c1712082d59a7ff96b0d4a4e
  Reviewed-on: https://gerrit.libreoffice.org/16508
  Reviewed-by: Michael Stahl mst...@redhat.com
  Tested-by: Michael Stahl mst...@redhat.com
  
 
 Hi David,
 
 sadly that breaks on gcc4.6:
 
 configure:17296: result: yes
 configure:17318: checking for MDDS
 configure:17403: result: yes
 configure:17407: checking checking if mdds::flat_segment_tree can store 
 values of any type
 configure:17419: /usr/bin/ccache /usr/bin/g++-4.6 -c -g -O2  
 -I/src/libo_tb-5-0/workdir/UnpackedTarball/mdds/include  
 -I/src/libo_tb-5-0/workdir/UnpackedTarball/boost conftest.cpp 5
 In file included from 
 /src/libo_tb-5-0/workdir/UnpackedTarball/mdds/include/mdds/flat_segment_tree.hpp:35:0,
  from conftest.cpp:45:
 /usr/include/c++/4.6/limits: In static member function 'static _Tp 
 std::numeric_limits_Tp::max() [with _Tp = Value]':
 /src/libo_tb-5-0/workdir/UnpackedTarball/mdds/include/mdds/flat_segment_tree_def.inl:49:5:
instantiated from 'mdds::flat_segment_tree_Key, 
 _Value::flat_segment_tree(mdds::flat_segment_tree_Key, _Value::key_type, 
 mdds::flat_segment_tree_Key, _Value::key_type, 
 mdds::flat_segment_tree_Key, _Value::value_type) [with _Key = int, _Value = 
 Value, mdds::flat_segment_tree_Key, _Value::key_type = int, 
 mdds::flat_segment_tree_Key, _Value::value_type = Value]'
 conftest.cpp:47:55:   instantiated from here
 /usr/include/c++/4.6/limits:313:48: error: no matching function for call to 
 'Value::Value(int)'
 /usr/include/c++/4.6/limits:313:48: note: candidates are:
 conftest.cpp:46:8: note: Value::Value()
 conftest.cpp:46:8: note:   candidate expects 0 arguments, 1 provided
 conftest.cpp:46:8: note: Value::Value(const Value)
 conftest.cpp:46:8: note:   no known conversion for argument 1 from 'int' to 
 'const Value'
 configure:17419: $? = 1
 configure: failed program was:
 | /* confdefs.h */
 
 Any easy workaround I should try?

So this turned out to be a problem in mdds itself. It is fixed now by
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=bead58cb4042ac42dee890e2f21ab7ea81136e54
fix build of libetonyek with older versions of gcc.

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


[Libreoffice-bugs] [Bug 92190] PRINTs landscape despite configured as portrait

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

--- Comment #6 from Mark Judman mjud...@alumni.brown.edu ---
I've had the same problem, using the new LO Vanilla ( v 4.4.4.2) Writer doc on
Mac OS X  10.10.3, but not the older (non-Vanilla v 4.3.7.2).  Moving the
.../Application Support/LibreOffice folder had no effect on the problem. 
Format  Page shows the orientation as Portrait.

-- 
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 91971] StartCenter minimum size now too small with addition of Recent Files button

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

--- Comment #12 from V Stuart Foote vstuart.fo...@utsa.edu ---
(In reply to Jan Holesovsky from comment #11)
 ... Can you please create a new OS X - specific bugreport for this? 

I think Alex already did so with bug 92242

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

2015-06-29 Thread David Tardon
 external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1 |   
55 ++
 external/mdds/UnpackedTarball_mdds.mk  |   
 1 
 2 files changed, 56 insertions(+)

New commits:
commit bead58cb4042ac42dee890e2f21ab7ea81136e54
Author: David Tardon dtar...@redhat.com
Date:   Mon Jun 29 14:31:57 2015 +0200

fix build of libetonyek with older versions of gcc

Change-Id: I19586eaae36fac7fa750614e6e31eff1a1e8440c

diff --git 
a/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1 
b/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
new file mode 100644
index 000..0c5b928
--- /dev/null
+++ b/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
@@ -0,0 +1,55 @@
+From 5fc9214fb94595e1a2c0b9e0285037f5a2fa59bf Mon Sep 17 00:00:00 2001
+From: David Tardon dtar...@redhat.com
+Date: Mon, 29 Jun 2015 14:28:42 +0200
+Subject: [PATCH] another step to allow fst to use any value type
+
+For some reason this is not a problem on modern compilers...
+---
+ include/mdds/flat_segment_tree.hpp | 1 -
+ include/mdds/flat_segment_tree_def.inl | 2 +-
+ src/flat_segment_tree_test.cpp | 4 
+ 3 files changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/include/mdds/flat_segment_tree.hpp 
b/include/mdds/flat_segment_tree.hpp
+index b656bc3..02cf87e 100644
+--- a/include/mdds/flat_segment_tree.hpp
 b/include/mdds/flat_segment_tree.hpp
+@@ -32,7 +32,6 @@
+ #include sstream
+ #include utility
+ #include cassert
+-#include limits
+ 
+ #include mdds/node.hpp
+ #include mdds/flat_segment_tree_itr.hpp
+diff --git a/include/mdds/flat_segment_tree_def.inl 
b/include/mdds/flat_segment_tree_def.inl
+index ebfee99..5fef1c3 100644
+--- a/include/mdds/flat_segment_tree_def.inl
 b/include/mdds/flat_segment_tree_def.inl
+@@ -46,7 +46,7 @@ flat_segment_tree_Key, _Value::flat_segment_tree(key_type 
min_val, key_type ma
+ // We don't ever use the value of the right leaf node, but we need the
+ // value to be always the same, to make it easier to check for
+ // equality.
+-m_right_leaf-value_leaf.value = ::std::numeric_limitsvalue_type::max();
++m_right_leaf-value_leaf.value = init_val;
+ }
+ 
+ templatetypename _Key, typename _Value
+diff --git a/src/flat_segment_tree_test.cpp b/src/flat_segment_tree_test.cpp
+index 81858f5..f7aead7 100644
+--- a/src/flat_segment_tree_test.cpp
 b/src/flat_segment_tree_test.cpp
+@@ -1943,6 +1943,10 @@ void fst_test_non_numeric_value()
+ db.search(1, result);
+ 
+ assert(result == hello world);
++
++db_type db2(db);
++
++assert(db == db2);
+ }
+ 
+ int main (int argc, char **argv)
+-- 
+2.4.2
+
diff --git a/external/mdds/UnpackedTarball_mdds.mk 
b/external/mdds/UnpackedTarball_mdds.mk
index 974a8e1..504406b 100644
--- a/external/mdds/UnpackedTarball_mdds.mk
+++ b/external/mdds/UnpackedTarball_mdds.mk
@@ -16,6 +16,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,mdds,3))
 $(eval $(call gb_UnpackedTarball_add_patches,mdds,\
external/mdds/mdds_0.6.0.patch \
external/mdds/mdds-c++98.patch.0 \
+   
external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1 \
 ))
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - 2 commits - external/mdds

2015-06-29 Thread Tor Lillqvist
 external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1 |   
55 ++
 external/mdds/UnpackedTarball_mdds.mk  |   
 1 
 2 files changed, 56 insertions(+)

New commits:
commit 20b779f6bee7ea0aa117c940d5b413d9a5ea057e
Author: Tor Lillqvist t...@collabora.com
Date:   Mon Jun 29 16:20:22 2015 +0300

Make the patch actually apply

Change-Id: I23537399cbf325a7049f67654439714c3dc1421e

diff --git 
a/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1 
b/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
index 0c5b928..bed9c9c 100644
--- a/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
+++ b/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
@@ -49,7 +49,7 @@ index 81858f5..f7aead7 100644
 +assert(db == db2);
  }
  
- int main (int argc, char **argv)
+ void fst_test_non_numeric_key()
 -- 
 2.4.2
 
commit 18ebffdb0e1c2fb40f15065f289172c2903a90ab
Author: David Tardon dtar...@redhat.com
Date:   Mon Jun 29 14:31:57 2015 +0200

fix build of libetonyek with older versions of gcc

Change-Id: I19586eaae36fac7fa750614e6e31eff1a1e8440c

diff --git 
a/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1 
b/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
new file mode 100644
index 000..0c5b928
--- /dev/null
+++ b/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
@@ -0,0 +1,55 @@
+From 5fc9214fb94595e1a2c0b9e0285037f5a2fa59bf Mon Sep 17 00:00:00 2001
+From: David Tardon dtar...@redhat.com
+Date: Mon, 29 Jun 2015 14:28:42 +0200
+Subject: [PATCH] another step to allow fst to use any value type
+
+For some reason this is not a problem on modern compilers...
+---
+ include/mdds/flat_segment_tree.hpp | 1 -
+ include/mdds/flat_segment_tree_def.inl | 2 +-
+ src/flat_segment_tree_test.cpp | 4 
+ 3 files changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/include/mdds/flat_segment_tree.hpp 
b/include/mdds/flat_segment_tree.hpp
+index b656bc3..02cf87e 100644
+--- a/include/mdds/flat_segment_tree.hpp
 b/include/mdds/flat_segment_tree.hpp
+@@ -32,7 +32,6 @@
+ #include sstream
+ #include utility
+ #include cassert
+-#include limits
+ 
+ #include mdds/node.hpp
+ #include mdds/flat_segment_tree_itr.hpp
+diff --git a/include/mdds/flat_segment_tree_def.inl 
b/include/mdds/flat_segment_tree_def.inl
+index ebfee99..5fef1c3 100644
+--- a/include/mdds/flat_segment_tree_def.inl
 b/include/mdds/flat_segment_tree_def.inl
+@@ -46,7 +46,7 @@ flat_segment_tree_Key, _Value::flat_segment_tree(key_type 
min_val, key_type ma
+ // We don't ever use the value of the right leaf node, but we need the
+ // value to be always the same, to make it easier to check for
+ // equality.
+-m_right_leaf-value_leaf.value = ::std::numeric_limitsvalue_type::max();
++m_right_leaf-value_leaf.value = init_val;
+ }
+ 
+ templatetypename _Key, typename _Value
+diff --git a/src/flat_segment_tree_test.cpp b/src/flat_segment_tree_test.cpp
+index 81858f5..f7aead7 100644
+--- a/src/flat_segment_tree_test.cpp
 b/src/flat_segment_tree_test.cpp
+@@ -1943,6 +1943,10 @@ void fst_test_non_numeric_value()
+ db.search(1, result);
+ 
+ assert(result == hello world);
++
++db_type db2(db);
++
++assert(db == db2);
+ }
+ 
+ int main (int argc, char **argv)
+-- 
+2.4.2
+
diff --git a/external/mdds/UnpackedTarball_mdds.mk 
b/external/mdds/UnpackedTarball_mdds.mk
index 974a8e1..504406b 100644
--- a/external/mdds/UnpackedTarball_mdds.mk
+++ b/external/mdds/UnpackedTarball_mdds.mk
@@ -16,6 +16,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,mdds,3))
 $(eval $(call gb_UnpackedTarball_add_patches,mdds,\
external/mdds/mdds_0.6.0.patch \
external/mdds/mdds-c++98.patch.0 \
+   
external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1 \
 ))
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-06-29 Thread Mihai Varga
 loleaflet/debug/document/document_simple_example.html |4 ++
 loleaflet/dist/leaflet.css|6 ++--
 loleaflet/src/control/Control.EditView.js |   25 ++
 loleaflet/src/layer/tile/TileLayer.js |   17 ++--
 4 files changed, 35 insertions(+), 17 deletions(-)

New commits:
commit 5ccda335ef4129e69f94bfc9c782f7cc71db55ac
Author: Mihai Varga mihai.va...@collabora.com
Date:   Mon Jun 29 16:43:47 2015 +0300

Start in edit mode by specifying it in the URL

http://.../host=host_addressfile_path=file_pathedit=true

diff --git a/loleaflet/debug/document/document_simple_example.html 
b/loleaflet/debug/document/document_simple_example.html
index 8e2fb3f..d6b4f26 100644
--- a/loleaflet/debug/document/document_simple_example.html
+++ b/loleaflet/debug/document/document_simple_example.html
@@ -51,6 +51,7 @@
 
 var filePath = getParameterByName('file_path');
 var host = getParameterByName('host');
+var editMode = getParameterByName('edit') === 'true';
 if (filePath === '') {
 alert('Wrong file_path, usage: file_path=/path/to/doc/');
 }
@@ -70,7 +71,8 @@
 // Document layer 
 var docLayer = new L.TileLayer('', {
 doc: filePath,
-useSocket : true
+useSocket : true,
+editMode: editMode
 });
 map.addLayer(docLayer);
 
diff --git a/loleaflet/src/control/Control.EditView.js 
b/loleaflet/src/control/Control.EditView.js
index 69874a8..c81787d 100644
--- a/loleaflet/src/control/Control.EditView.js
+++ b/loleaflet/src/control/Control.EditView.js
@@ -7,18 +7,19 @@ L.Control.EditViewSwitch = L.Control.extend({
position: 'topleft'
},
 
-   onAdd: function () {
+   onAdd: function (map) {
var partName = 'leaflet-control-editviewswitch',
container = L.DomUtil.create('label', partName + ' 
leaflet-bar');
 
this._checkBox = L.DomUtil.create('input', 'editview-cb', 
container);
this._checkBox.type = 'checkbox';
L.DomEvent.on(this._checkBox, 'change', this._onChange, this);
+map.on('updatemode:view updatemode:edit', this._onUpdateMode, this);
container.appendChild(document.createTextNode('Enable 
editing'));
return container;
},
 
-   _onChange: function() {
+   _onChange: function () {
var className = 'leaflet-editmode';
if (this._checkBox.checked) {
this._map.fire('editmode');
@@ -28,6 +29,20 @@ L.Control.EditViewSwitch = L.Control.extend({
this._map.fire('viewmode');
L.DomUtil.removeClass(this._map._container, className);
}
+   },
+
+   _onUpdateMode: function (e) {
+   var className = 'leaflet-editmode';
+   if (e.type === 'updatemode:edit') {
+   this._map.fire('editmode');
+   L.DomUtil.addClass(this._map._container, className);
+   this._checkBox.checked = true;
+   }
+   else if (e.type === 'updatemode:view') {
+   this._map.fire('viewmode');
+   L.DomUtil.removeClass(this._map._container, className);
+   this._checkBox.checked = false;
+   }
}
 });
 
diff --git a/loleaflet/src/layer/tile/TileLayer.js 
b/loleaflet/src/layer/tile/TileLayer.js
index cb58afd..0c31520 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -168,7 +168,6 @@ L.TileLayer = L.GridLayer.extend({
this._map.socket.send('load url=' + this.options.doc);
this._map.socket.send('status');
}
-   this._map.dragging.enable();
this._map._scrollContainer.onscroll = L.bind(this._onScroll, 
this);
this._map.on('zoomend resize', this._updateScrollOffset, this);
this._map.on('clearselection', this._clearSelections, this);
@@ -178,6 +177,9 @@ L.TileLayer = L.GridLayer.extend({
this._map.on('copy', this._onCopy, this);
this._startMarker.on('drag dragend', 
this._onSelectionHandleDrag, this);
this._endMarker.on('drag dragend', this._onSelectionHandleDrag, 
this);
+   if (this.options.editMode) {
+   this._map.fire('updatemode:edit');
+   }
},
 
getEvents: function () {
commit cfa891206357a3c902280ac46bfd954e1cc82c08
Author: Mihai Varga mihai.va...@collabora.com
Date:   Mon Jun 29 15:54:25 2015 +0300

Start loleaflet in viewing mode

diff --git a/loleaflet/dist/leaflet.css b/loleaflet/dist/leaflet.css
index 25038ee..c192339 100644
--- a/loleaflet/dist/leaflet.css
+++ b/loleaflet/dist/leaflet.css
@@ -180,7 +180,7 @@
cursor: pointer;

[Libreoffice-bugs] [Bug 92420] Use of a specific field after dispose: not working anymore (it used to work)

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

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

   What|Removed |Added

   Keywords||regression
 Whiteboard||bibisectRequest

-- 
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 91971] StartCenter minimum size now too small with addition of Recent Files button

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

--- Comment #11 from Jan Holesovsky ke...@collabora.com ---
Sierk: Can you please create a new OS X - specific bugreport for this?  Thank
you!

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


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

2015-06-29 Thread Caolán McNamara
 libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 48abc97220bd95841225cf4e18cd067ef470929a
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Jun 29 13:31:56 2015 +0100

g_assert_nonnull was not declared

Change-Id: Ie98c37d4bdaa365ac27e8620fb5bbecbb0faccdf

diff --git a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx 
b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
index f7b065c..ec70a88 100644
--- a/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
+++ b/libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx
@@ -520,7 +520,9 @@ int main( int argc, char* argv[] )
 
 // Docview
 pDocView = lok_doc_view_new (argv[1], NULL, NULL);
+#if GLIB_CHECK_VERSION(2,40,0)
 g_assert_nonnull(pDocView);
+#endif
 
 g_signal_connect(pDocView, edit-changed, G_CALLBACK(signalEdit), NULL);
 g_signal_connect(pDocView, command-changed, G_CALLBACK(signalCommand), 
NULL);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-06-29 Thread Caolán McNamara
 svx/source/sdr/contact/viewobjectcontactofgraphic.cxx |   21 +++---
 1 file changed, 13 insertions(+), 8 deletions(-)

New commits:
commit 72da6ef835982e1927fd7405bb42f403c2fee5f9
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Jun 29 11:26:41 2015 +0100

Resolves: tdf#92275 impress grinds to a halt constant swapping images

This reverts commit 6c84442f99de109b585d3ba8964deb8dcf261c0f.
tdf#87820 Images not displayed properly in Calc

and replaces it with an alternative solution

Change-Id: Iecb560d43767f0e41e442a307eefcdcecb7589ef
(cherry picked from commit 2d196d0ee26b3840e56ec6537066a3b4a2f08691)

diff --git a/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx 
b/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
index 4a8f469..df3e06e 100644
--- a/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
+++ b/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
@@ -134,22 +134,30 @@ namespace sdr
 rGrafObj.mbInsidePaint = false;
 }
 
-// Invalidate paint areas.
-GetViewContact().ActionChanged();
-
 bRetval = true;
 }
 }
 }
 else
 {
-// it is not swapped out, somehow it was loaded. In that case, 
forget
+// it is not swapped out, somehow[1] it was loaded. In that 
case, forget
 // about an existing triggered event
-if(mpAsynchLoadEvent)
+if (mpAsynchLoadEvent)
 {
 // just delete it, this will remove it from the 
EventHandler and
 // will trigger forgetAsynchGraphicLoadingEvent from the 
destructor
 delete mpAsynchLoadEvent;
+
+// Invalidate paint areas.
+// [1] If a calc document with graphics is loaded then 
OnLoad will
+// be emitted before the graphic are due to be swapped in 
asynchronously
+// In sfx2 we generate a preview on receiving onload, 
which forces
+// the graphics to be swapped in to generate the preview. 
When
+// the timer triggers it find the graphics already swapped 
in. So
+// we should still invalidate the paint area on finding 
the graphic
+// swapped in seeing as we're still waiting in calc to 
draw the
+// graphics on receipt of their contents.
+GetViewContact().ActionChanged();
 }
 }
 
@@ -189,9 +197,6 @@ namespace sdr
 rGrafObj.mbInsidePaint = false;
 }
 
-// Invalidate paint areas.
-GetViewContact().ActionChanged();
-
 bRetval = true;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92275] impress grinds to a total halt as images constantly swapped in

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

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

   What|Removed |Added

 Whiteboard| target:5.1.0   | target:5.1.0
   ||target:5.0.0.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 92389] Adding or Reading Comments with Orca Not Accessible

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

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

   What|Removed |Added

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

-- 
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 92270] non-standard values of QuickStyleFillColor not imported

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

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |tima...@gmail.com
   |desktop.org |
 Ever confirmed|0   |1

--- Comment #3 from Andras Timar tima...@gmail.com ---
https://gerrit.libreoffice.org/#/c/16577/
https://gerrit.libreoffice.org/#/c/16578/

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

2015-06-29 Thread Tor Lillqvist
 external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1 |   
 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e05fbf07bb8dd0094b9e7f20cebfb88678f1e676
Author: Tor Lillqvist t...@collabora.com
Date:   Mon Jun 29 16:20:22 2015 +0300

Make the patch actually apply

Change-Id: I23537399cbf325a7049f67654439714c3dc1421e

diff --git 
a/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1 
b/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
index 0c5b928..bed9c9c 100644
--- a/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
+++ b/external/mdds/0001-another-step-to-allow-fst-to-use-any-value-type.patch.1
@@ -49,7 +49,7 @@ index 81858f5..f7aead7 100644
 +assert(db == db2);
  }
  
- int main (int argc, char **argv)
+ void fst_test_non_numeric_key()
 -- 
 2.4.2
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92271] Wrong character background color (imported from Visio file)

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

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |tima...@gmail.com
   |desktop.org |

--- Comment #6 from Andras Timar tima...@gmail.com ---
More precisely:
1. When char background is not set, we should not export white.
2. When char background is set, we should export that color, not black (VSDX)

Note: unfortunately transparency is not supported in Draw.

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


[Libreoffice-bugs] [Bug 92256] INDIRECT function lost interoperabilty with calc documents migrated by OOo3.2.1

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

--- Comment #13 from Eike Rathke er...@redhat.com ---
I see only one proper way to solve this for existing documents that used both
syntax notations at the same time and can't be adapted that easily, add options
to that configuration, Try Calc A1 first, then Excel A1/R1C1 and Try Excel
A1/R1C1 first, then Calc A1, maybe with an addition (not recommended), and
evaluate accordingly in the INDIRECT function.

-- 
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 92422] LibreOffice 5.0.beta2 - RC2 crashes Windows Fioe Explorer

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

--- Comment #2 from Leopoldo Saggin leopoldo.sag...@libero.it ---
 I suppose that my bug is a duplication of bug n. 92269 that I discovered in
the list after my submission.
Like the on I cited, I was able to use a workaround by disable all 32bit LO
shell property handlers.
Best regards,
Leopoldo Saggin

-- 
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 84381] SIDEBAR: Properties deck (Area/Line content panels) should respond more accurately to selected objects

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

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

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

tdf#84381: Improved sidebar selection analyser for Calc and Draw/Impress

It will be available in 5.1.0.

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

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


[Libreoffice-bugs] [Bug 84381] SIDEBAR: Properties deck (Area/Line content panels) should respond more accurately to selected objects

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

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

   What|Removed |Added

 Whiteboard|needsDevEval topicUI|needsDevEval topicUI
   ||target:5.1.0

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


[Libreoffice-commits] core.git: include/sfx2 officecfg/registry sfx2/source svx/source

2015-06-29 Thread Rishabh Kumar
 include/sfx2/sidebar/EnumContext.hxx |1 
 officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu |3 +
 sfx2/source/sidebar/EnumContext.cxx  |1 
 svx/source/sidebar/SelectionAnalyzer.cxx |   24 ++-
 4 files changed, 19 insertions(+), 10 deletions(-)

New commits:
commit 7bb74f1a73b953ef2263f25b0df202e8a588307e
Author: Rishabh Kumar kris.kr...@gmail.com
Date:   Tue Jun 9 00:07:31 2015 +0530

tdf#84381: Improved sidebar selection analyser for Calc and Draw/Impress

Disables the area tab when a line is selected

Change-Id: Ib02a68fb548a7cc10f9af7e0d1b6191119f18915
Reviewed-on: https://gerrit.libreoffice.org/16165
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Katarina Behrens katarina.behr...@cib.de

diff --git a/include/sfx2/sidebar/EnumContext.hxx 
b/include/sfx2/sidebar/EnumContext.hxx
index 3fc5fda..3fd2670 100644
--- a/include/sfx2/sidebar/EnumContext.hxx
+++ b/include/sfx2/sidebar/EnumContext.hxx
@@ -68,6 +68,7 @@ public:
 Context_Cell,
 Context_Chart,
 Context_Draw,
+Context_DrawLine,
 Context_DrawPage,
 Context_DrawText,
 Context_EditCell,
diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
index 504bf3b..653d826 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
@@ -384,14 +384,17 @@
 prop oor:name=ContextList
   value oor:separator=;
 Calc,   Draw,   visible ;
+Calc,   DrawLine,   visible ;
 Calc,   Graphic,visible ;
 Calc,   OLE,hidden  ;
 DrawImpress,3DObject,   visible ;
 DrawImpress,Draw,   visible ;
+DrawImpress,DrawLine,   visible ;
 DrawImpress,Graphic,visible ;
 DrawImpress,TextObject, hidden  ;
 DrawImpress,OLE,hidden  ;
 WriterVariants, Draw,   visible ;
+WriterVariants, DrawLine,   visible ;
   /value
 /prop
 prop oor:name=ImplementationURL oor:type=xs:string
diff --git a/sfx2/source/sidebar/EnumContext.cxx 
b/sfx2/source/sidebar/EnumContext.cxx
index 9f8a630..4f9b75b 100644
--- a/sfx2/source/sidebar/EnumContext.cxx
+++ b/sfx2/source/sidebar/EnumContext.cxx
@@ -178,6 +178,7 @@ void EnumContext::ProvideContextContainers()
 AddContext(Chart);
 AddContext(Chart);
 AddContext(Draw);
+AddContext(DrawLine);
 AddContext(DrawPage);
 AddContext(DrawText);
 AddContext(EditCell);
diff --git a/svx/source/sidebar/SelectionAnalyzer.cxx 
b/svx/source/sidebar/SelectionAnalyzer.cxx
index 91611c2..e21eea0 100644
--- a/svx/source/sidebar/SelectionAnalyzer.cxx
+++ b/svx/source/sidebar/SelectionAnalyzer.cxx
@@ -209,11 +209,6 @@ EnumContext::Context 
SelectionAnalyzer::GetContextForObjectId_SC (const sal_uInt
 case OBJ_OUTLINETEXT:
 case OBJ_TEXT:
 case OBJ_TEXTEXT:
-case OBJ_PATHLINE:
-case OBJ_PLIN:
-case OBJ_FREELINE:
-case OBJ_EDGE:
-case OBJ_LINE:
 case OBJ_MEASURE:
 case OBJ_RECT:
 case OBJ_CIRC:
@@ -227,6 +222,13 @@ EnumContext::Context 
SelectionAnalyzer::GetContextForObjectId_SC (const sal_uInt
 case OBJ_GRUP:
 return EnumContext::Context_Draw;
 
+case OBJ_PLIN:
+case OBJ_PATHLINE:
+case OBJ_FREELINE:
+case OBJ_LINE:
+case OBJ_EDGE:
+return EnumContext::Context_DrawLine;
+
 case OBJ_GRAF:
 return EnumContext::Context_Graphic;
 
@@ -252,11 +254,6 @@ EnumContext::Context 
SelectionAnalyzer::GetContextForObjectId_SD (
 switch (nObjectId)
 {
 case OBJ_CAPTION:
-case OBJ_PATHLINE:
-case OBJ_PLIN:
-case OBJ_FREELINE:
-case OBJ_EDGE:
-case OBJ_LINE:
 case OBJ_MEASURE:
 case OBJ_RECT:
 case OBJ_CIRC:
@@ -270,6 +267,13 @@ EnumContext::Context 
SelectionAnalyzer::GetContextForObjectId_SD (
 case OBJ_GRUP:
 return EnumContext::Context_Draw;
 
+case OBJ_EDGE:
+case OBJ_PATHLINE:
+case OBJ_FREELINE:
+case OBJ_PLIN:
+case OBJ_LINE:
+return EnumContext::Context_DrawLine;
+
 case OBJ_TITLETEXT:
 case OBJ_OUTLINETEXT:
 case OBJ_TEXT:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 84381] SIDEBAR: Properties deck (Area/Line content panels) should respond more accurately to selected objects

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

Katarina Behrens (CIB) katarina.behr...@cib.de changed:

   What|Removed |Added

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

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


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

2015-06-29 Thread Miklos Vajna
 sw/source/core/crsr/crsrsh.cxx  |2 -
 sw/source/core/crsr/crstrvl.cxx |6 +--
 sw/source/core/crsr/swcrsr.cxx  |4 +-
 sw/source/core/crsr/trvlcol.cxx |2 -
 sw/source/core/doc/notxtfrm.cxx |2 -
 sw/source/core/edit/autofmt.cxx |3 +
 sw/source/core/frmedt/fews.cxx  |4 +-
 sw/source/core/frmedt/tblsel.cxx|4 +-
 sw/source/core/inc/flyfrm.hxx   |2 -
 sw/source/core/inc/frame.hxx|2 -
 sw/source/core/layout/anchoreddrawobject.cxx|4 +-
 sw/source/core/layout/calcmove.cxx  |   20 ++--
 sw/source/core/layout/flowfrm.cxx   |   16 -
 sw/source/core/layout/fly.cxx   |   17 ++
 sw/source/core/layout/flyincnt.cxx  |6 +--
 sw/source/core/layout/flylay.cxx|4 +-
 sw/source/core/layout/frmtool.cxx   |2 -
 sw/source/core/layout/ftnfrm.cxx|   40 
 sw/source/core/layout/hffrm.cxx |2 -
 sw/source/core/layout/layact.cxx|   25 ---
 sw/source/core/layout/objectformatter.cxx   |3 +
 sw/source/core/layout/objectformattertxtfrm.cxx |   11 +++---
 sw/source/core/layout/pagechg.cxx   |   13 ---
 sw/source/core/layout/paintfrm.cxx  |   10 +++---
 sw/source/core/layout/sectfrm.cxx   |   31 ++
 sw/source/core/layout/tabfrm.cxx|   24 --
 sw/source/core/layout/trvlfrm.cxx   |   32 +++
 sw/source/core/layout/wsfrm.cxx |7 ++--
 sw/source/core/text/frmform.cxx |   16 ++---
 sw/source/core/text/txtfrm.cxx  |3 +
 sw/source/core/text/txthyph.cxx |3 +
 sw/source/core/unocore/unotbl.cxx   |4 +-
 sw/source/core/view/pagepreviewlayout.cxx   |6 ++-
 sw/source/core/view/vprint.cxx  |2 -
 34 files changed, 185 insertions(+), 147 deletions(-)

New commits:
commit 8527dfbd4d3f79de8b02c561e5f0fef0d54d3eeb
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Jun 29 15:36:40 2015 +0200

SwFrm::Calc: use vcl::RenderContext

Change-Id: I98de3f5413756c494c677d592ea921155e4c08be

diff --git a/sw/source/core/crsr/crsrsh.cxx b/sw/source/core/crsr/crsrsh.cxx
index 6c09f61..f7406cb 100644
--- a/sw/source/core/crsr/crsrsh.cxx
+++ b/sw/source/core/crsr/crsrsh.cxx
@@ -1776,7 +1776,7 @@ void SwCrsrShell::UpdateCrsr( sal_uInt16 eFlags, bool 
bIdleEnd )
 
 if( !(eFlags  SwCrsrShell::UPDOWN ))   // delete old Pos. of Up/Down
 {
-pFrm-Calc();
+pFrm-Calc(GetOut());
 m_nUpDownX = pFrm-IsVertical() ?
m_aCharRect.Top() - pFrm-Frm().Top() :
m_aCharRect.Left() - pFrm-Frm().Left();
diff --git a/sw/source/core/crsr/crstrvl.cxx b/sw/source/core/crsr/crstrvl.cxx
index de64caf..721d755 100644
--- a/sw/source/core/crsr/crstrvl.cxx
+++ b/sw/source/core/crsr/crstrvl.cxx
@@ -83,7 +83,7 @@ void SwCrsrShell::MoveCrsrToNum()
 SwContentFrm * pFrm = m_pCurCrsr-GetContentNode()-getLayoutFrm( 
GetLayout(), aPt,
 m_pCurCrsr-GetPoint() );
 pFrm-GetCharRect( m_aCharRect, *m_pCurCrsr-GetPoint() );
-pFrm-Calc();
+pFrm-Calc(GetOut());
 if( pFrm-IsVertical() )
 {
 aPt.setX(m_aCharRect.Center().getX());
@@ -138,7 +138,7 @@ bool SwCrsrShell::GotoHeaderText()
 SwCallLink aLk( *this ); // watch Crsr-Moves
 SwCursor *pTmpCrsr = getShellCrsr( true );
 SwCrsrSaveState aSaveState( *pTmpCrsr );
-pFrm-Calc();
+pFrm-Calc(GetOut());
 Point aPt( pFrm-Frm().Pos() + pFrm-Prt().Pos() );
 pFrm-GetCrsrOfst( pTmpCrsr-GetPoint(), aPt );
 if( !pTmpCrsr-IsSelOvr() )
@@ -170,7 +170,7 @@ bool SwCrsrShell::GotoFooterText()
 // get position in footer
 SwCallLink aLk( *this ); // watch Crsr-Moves
 SwCrsrSaveState aSaveState( *pTmpCrsr );
-pLower-Calc();
+pLower-Calc(GetOut());
 Point aPt( pLower-Frm().Pos() + pLower-Prt().Pos() );
 pLower-GetCrsrOfst( pTmpCrsr-GetPoint(), aPt );
 if( !pTmpCrsr-IsSelOvr() )
diff --git a/sw/source/core/crsr/swcrsr.cxx b/sw/source/core/crsr/swcrsr.cxx
index 8b8358e..db22a27 100644
--- a/sw/source/core/crsr/swcrsr.cxx
+++ b/sw/source/core/crsr/swcrsr.cxx
@@ -1857,13 +1857,13 @@ bool SwCursor::UpDown( bool bUp, sal_uInt16 nCnt,
 if ( pFrm-IsVertical() )
 {
 aPt.setX(aTmpRect.Center().getX());
-pFrm-Calc();
+pFrm-Calc(pFrm-getRootFrm()-GetCurrShell()-GetOut());
 aPt.setY(pFrm-Frm().Top() + 

[Libreoffice-bugs] [Bug 91825] Libroffice Calc locks up with paste column

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

--- Comment #12 from raal r...@post.cz ---
(In reply to Carlos Mendes from comment #11)
 (In reply to raal from comment #9)
  cannot reproduce with Version: 5.1.0.0.alpha1+
  Build ID: 3ecef8cedb215e49237a11607197edc91639bfcd
  TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
  2015-06-20_01:01:56
 
 Can i have both LO 4.4.x and 5.1.0.x alpha1 installed without harming the
 stable version? Running on linux mint 17.1 x64. Is there a PPA or ddo i have
 to build it from scratch?
 
 Thanks,
 CJ

You can download dev version from here:
http://dev-builds.libreoffice.org/daily/master/
This you can install alongside standard version.

-- 
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 92427] New: Entire column A:A / row 1:1 notation should be display instead of A1:A1048576 / A1:AMJ1

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

Bug ID: 92427
   Summary: Entire column A:A / row 1:1 notation should be display
instead of A1:A1048576 / A1:AMJ1
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ov...@hotmail.com

Cf. tdf#44419

When an entire column is entered into a formula, it should be replaced by the
entire column notation.

1. In cell A10 enter: =SUM(B1:B1048576)
2. The cell A10 should show: =SUM(B:B)

3. In cell A11 enter: =SUM(B1:B1048575)
4. Click on cell A1
5. Click on cell A11 and change the last digit from a 5 to a 6:
=SUM(B1:B1048576)
6. the cell A11 should show: =sum(B:B)

Likewise, this behaviour should occur for entire rows too.

Thank you

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


[Libreoffice-bugs] [Bug 92402] FILESAVE: docx headings include unexpected number

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||vstuart.fo...@utsa.edu
Version|4.3.3.2 release |4.4.3.2 release
Summary|FILEOPEN: .docx FORMATTING: |FILESAVE: docx headings
   |headings include unexpected |include unexpected number
   |number  |
 Ever confirmed|0   |1
 Whiteboard||filter:docx noRepro:5.0rc2

--- Comment #4 from V Stuart Foote vstuart.fo...@utsa.edu ---
On Windows 7 sp1 with
Version: 4.4.3.2
Build ID: 88805f81e9fe61362df02b9941de8e38a9b5fd16
Locale: en_US

Confirming the numbering is set on, but this looks to be a WW8 import filter
for docx issue in heading styles on round trip.

With 5.0.0rc2
Version: 5.0.0.2 (x64)
Build ID: a26d58f11b99b6aeddf7f7884effea188cc6e512
Locale: en-US (en_US)

as well as with recent master
Version: 5.1.0.0.alpha1+ (x64)
Build ID: 253c0f073715b1d0f6ba063b1182016e45951bf4
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-06-24_21:31:12
Locale: en-US (en_US)

The 4.4 generated .docx opens with the numbering Headings styles off. A round
trip in 5.0/master, and then opening that .docx in 4.4.3 is also clear of
numbering in the Headings.

So, looks to have been corrected for 5.x, but is still an issue for 4.x builds
through 4.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-commits] core.git: odk/README

2015-06-29 Thread Stephan Bergmann
 odk/README |   22 ++
 1 file changed, 22 insertions(+)

New commits:
commit 8c30d8bbb8a0b3682160252ee065befabf613a7b
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Jun 29 16:09:27 2015 +0200

Explain how to test SDK examples

Change-Id: Ifcf0a7276e1b0da6b9176eb70c4a8dae00491935

diff --git a/odk/README b/odk/README
index 8af3eed..dad77b2 100644
--- a/odk/README
+++ b/odk/README
@@ -1,3 +1,25 @@
 Office development kit - implements the first step on the way to the 
LibreOffice SDK tarball.
 
 Part of the SDK; to build you need to add --enable-odk.
+
+
+Testing the examples:
+=
+
+* See http://api.libreoffice.org/docs/install.html how to set up the SDK.
+
+** When asked about it during configuration, tell the SDK to do automatic
+   deployment of the example extensions that get built.
+
+* In a shell set up for SDK development, build (calling make) and test
+  (following the instructions given at the end of each make invocation) each
+  of the SDK's examples/ sub-directories.
+
+** An example script to build (though not test) the various examples in batch
+   mode is
+
+ find examples \( -type d -name nativelib -prune \) -o \
+  \( -name Makefile -a -print -a \( -execdir make \; -o -quit \) \)
+
+   (Note that one of the example extensions asks you to accept an example
+   license on stdin during deployment.)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 44388] Printing/Exporting to PDF adds text to the side of form elements ('checkbox', ...)

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

--- Comment #11 from Michael Weghorn m.wegh...@posteo.de ---
Created attachment 116922
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116922action=edit
print result of file with different checkbox sizes

I also attach the print result that I get from the document with the three
different check boxes (printed with PDF printer).

-- 
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 92421] Table on contents page number alignment issue

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

--- Comment #1 from Darius Daniel Grigoras daniel.grigo...@movidius.com ---
Created attachment 116911
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116911action=edit
Document exemplifying TOC page number alignment 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


Re: Adding Languages to Writer's Character, Font Menu

2015-06-29 Thread Eike Rathke
Hi Richard,

On Thursday, 2015-06-25 23:36:52 +0100, Richard Wordingham wrote:

 aLocale.Country = 
 aLocale.Language = qlt
 aLocale.Variant = khb-CN

Note that if the language tag consists only of an ISO 639 language code
and an ISO 3166 country code you do not need the qlt-Variant
mechanism, it can be expressed as

aLocale.Language = khb
aLocale.Country = CN
aLocale.Variant = 

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GPG key ID 0x65632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A
Better use 64-bit 0x6A6CD5B765632D3A here is why: https://evil32.com/
Care about Free Software, support the FSFE https://fsfe.org/support/?erack


pgpx7IdG4XNZf.pgp
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice-qa] daily MAB summary and CCing of MABs (was: MAB/Priority and Severity)

2015-06-29 Thread Bjoern Michaelsen
On Mon, Jun 29, 2015 at 11:57:10AM +0200, Eike Rathke wrote:
 What exactly do you mean with review here? I don't think we should spend
 too much time on that during the ESC call, but I'd be ok with some does
 anyone see a bug on this list that shouldn't belong there topic.

Yes, the latter is actually pretty much what I had in mind for the ESC
'review'.

Best,

Bjoern
___
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: vcl/unx

2015-06-29 Thread Stephan Bergmann
 vcl/unx/gtk/a11y/atkutil.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit b3307f57fa8bae9736977aa72597dc4ea958a7ec
Author: Stephan Bergmann sberg...@redhat.com
Date:   Mon Jun 29 12:27:38 2015 +0200

-fsanitize=vptr: avoid needless, wrong downcast

Change-Id: Ib07f3e484f0065a0c72cc0672fc5d975c00f38fa

diff --git a/vcl/unx/gtk/a11y/atkutil.cxx b/vcl/unx/gtk/a11y/atkutil.cxx
index 2ad3124..d816a80 100644
--- a/vcl/unx/gtk/a11y/atkutil.cxx
+++ b/vcl/unx/gtk/a11y/atkutil.cxx
@@ -453,8 +453,7 @@ static void handle_toolbox_highlight(vcl::Window *pWindow)
 
 static void handle_toolbox_highlightoff(vcl::Window *pWindow)
 {
-ToolBox *pToolBox = static_cast ToolBox * (pWindow);
-ToolBox* pToolBoxParent = dynamic_cast ToolBox* ( pToolBox-GetParent() 
);
+ToolBox* pToolBoxParent = dynamic_cast ToolBox* ( pWindow-GetParent() );
 
 // Notify when leaving sub toolboxes
 if( pToolBoxParent  pToolBoxParent-HasFocus() )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92424] New: [l10n] Untranslatable string Edit Comment: Calc - Context menu

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

Bug ID: 92424
   Summary: [l10n] Untranslatable string Edit Comment: Calc -
Context menu
   Product: LibreOffice
   Version: 5.0.0.0.beta3
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: borm...@mail.ru

Created attachment 116914
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116914action=edit
Context menu on commented cell

LO 5.0.0.0.beta3 - LO 5.0.0.2 rc

1) Open Calc

2) Right-click on cell A1, select Insert Comment, enter some text

3) Right-click on cell A1

Context menu contains an untranslatable string:

Edit Comment

They has no ID in KeyID locale (qtz).

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

2015-06-29 Thread Eike Rathke
 sc/qa/unit/ucalc_formula.cxx |   39 +++
 1 file changed, 39 insertions(+)

New commits:
commit 621a7689375a4c23bb1dd23c2643c9ac42aa29a9
Author: Eike Rathke er...@redhat.com
Date:   Mon Jun 29 13:49:07 2015 +0200

insert/shift unit test for tdf#44419

Change-Id: If056bd05ca8895ad301a45bb078d303b56cd172a

diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx
index c270852..0e3c63f 100644
--- a/sc/qa/unit/ucalc_formula.cxx
+++ b/sc/qa/unit/ucalc_formula.cxx
@@ -1747,6 +1747,14 @@ void Test::testFormulaRefUpdateInsertColumns()
 bool bInserted = m_pDoc-InsertNewRangeName(RowRelativeRange, aNamePos, 
$Formula.$B2);
 CPPUNIT_ASSERT(bInserted);
 
+// Set named range for entire absolute column B.
+bInserted = m_pDoc-InsertNewRangeName(EntireColumn, aNamePos, $B:$B);
+CPPUNIT_ASSERT(bInserted);
+
+// Set named range for entire absolute row 2.
+bInserted = m_pDoc-InsertNewRangeName(EntireRow, aNamePos, $2:$2);
+CPPUNIT_ASSERT(bInserted);
+
 // Set values in B1:B3.
 m_pDoc-SetValue(ScAddress(1,0,0), 1.0);
 m_pDoc-SetValue(ScAddress(1,1,0), 2.0);
@@ -1760,6 +1768,14 @@ void Test::testFormulaRefUpdateInsertColumns()
 m_pDoc-SetString(ScAddress(2,1,0), =RowRelativeRange);
 CPPUNIT_ASSERT_EQUAL(2.0, m_pDoc-GetValue(ScAddress(2,1,0)));
 
+// Use named range in C3 to reference column B, values in B1,B2,B3,B4
+m_pDoc-SetString(ScAddress(2,2,0), =SUM(EntireColumn));
+CPPUNIT_ASSERT_EQUAL(12.0, m_pDoc-GetValue(ScAddress(2,2,0)));
+
+// Use named range in C4 to reference row 2, values in B2 and C2.
+m_pDoc-SetString(ScAddress(2,3,0), =SUM(EntireRow));
+CPPUNIT_ASSERT_EQUAL(4.0, m_pDoc-GetValue(ScAddress(2,3,0)));
+
 // Inert columns over A:B.
 ScMarkData aMark;
 aMark.SelectOneTable(0);
@@ -1784,6 +1800,29 @@ void Test::testFormulaRefUpdateInsertColumns()
 CPPUNIT_FAIL(Wrong formula in E2 after column insertion.);
 CPPUNIT_ASSERT_EQUAL(2.0, m_pDoc-GetValue(ScAddress(4,1,0)));
 
+// Check that the named column reference points to the moved column, now D.
+pName = m_pDoc-GetRangeName()-findByUpperName(ENTIRECOLUMN);
+CPPUNIT_ASSERT(pName);
+pName-GetSymbol(aSymbol, aNamePos, formula::FormulaGrammar::GRAM_ENGLISH);
+CPPUNIT_ASSERT_EQUAL(OUString($D:$D), aSymbol);
+
+// Check that the formula using the name, now in E3, still has the same 
result.
+if (!checkFormula(*m_pDoc, ScAddress(4,2,0), SUM(EntireColumn)))
+CPPUNIT_FAIL(Wrong formula in E3 after column insertion.);
+CPPUNIT_ASSERT_EQUAL(12.0, m_pDoc-GetValue(ScAddress(4,2,0)));
+
+// Check that the named row reference still points to the same entire row
+// and does not have a #REF! error due to inserted columns.
+pName = m_pDoc-GetRangeName()-findByUpperName(ENTIREROW);
+CPPUNIT_ASSERT(pName);
+pName-GetSymbol(aSymbol, aNamePos, formula::FormulaGrammar::GRAM_ENGLISH);
+CPPUNIT_ASSERT_EQUAL(OUString($2:$2), aSymbol);
+
+// Check that the formula using the name, now in E4, still has the same 
result.
+if (!checkFormula(*m_pDoc, ScAddress(4,3,0), SUM(EntireRow)))
+CPPUNIT_FAIL(Wrong formula in E4 after column insertion.);
+CPPUNIT_ASSERT_EQUAL(4.0, m_pDoc-GetValue(ScAddress(4,3,0)));
+
 m_pDoc-DeleteTab(0);
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91971] StartCenter minimum size now too small with addition of Recent Files button

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

--- Comment #10 from Sierk Bornemann sie...@gmx.de ---
Created attachment 116917
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116917action=edit
Screenshot StartCenter LO 5 RC1/RC2 (german) on OSX

-- 
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 91971] StartCenter minimum size now too small with addition of Recent Files button

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

--- Comment #9 from Sierk Bornemann sie...@gmx.de ---
Issue still existant in 5.0.0.2 german on OSX 10.10.3.

Version: 5.0.0.2
Build-ID: a26d58f11b99b6aeddf7f7884effea188cc6e512
Gebietsschema: de-DE (de.UTF-8)

See attached screenshot.

-- 
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 92411] ImageMap Editor can select all/some hotspot Frame button

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

--- Comment #1 from baffclan baffc...@yahoo.co.jp ---
Created attachment 116918
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116918action=edit
Screenshot

-- 
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 92423] EDITING Text to columns... does not respect currently selected cells

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

--- Comment #2 from Jarkko Vatjus-Anttila jvatjusantt...@gmail.com ---
Created attachment 116916
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116916action=edit
Spreadsheet which can be used to demo the bug report

Re-adding the attachment

-- 
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 92423] EDITING Text to columns... does not respect currently selected cells

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

--- Comment #3 from Marc Kaulisch m...@kaulisch.de ---
Created attachment 116919
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116919action=edit
screenshot after reproduction

I cannot reproduce this with LO5.0.0.2 64bit on Win8.1 64bit

It works for me as intended.

-- 
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: Callback deadlock

2015-06-29 Thread Stephan Bergmann

On 06/29/2015 10:53 AM, Matthew J. Francis wrote:

It's remote - a test running as an external process.

The Python side of the deadlock is http://pastebin.com/qPkyVTkk
(this is a different run - the corresponding soffice.bin trace is
http://pastebin.com/g4F8zcUi )

The two things that seem to be happening are:

In thread 1, the main Python thread has got the Text property for the
text document being worked on, and PyUNO_new_UNCHECKED() is called to
make a Python object for the result, which calls
createInstanceWithArguments()

Meanwhile, in thread 2, the windowActivated() callback bas been
received, and pyuno::PyUNO_new_UNCHECKED() is called to make a Python
object for the argument, which calls createInstanceWithArguments()


If this sequence doesn't work, I'm not sure what if anything the Python
side can do better here.


ah, that's a poorly implemented Implementation::inspect 
(stoc/source/inspect/introspection.cxx), which locks some m_aMutex first 
thing and for the duration of the whole function call, and both 
Pyhton-side threads 1 and 2 are in this function...

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


Re: Adding Languages to Writer's Character, Font Menu

2015-06-29 Thread Eike Rathke
Hi Richard,

On Wednesday, 2015-06-24 20:54:54 +0100, Richard Wordingham wrote:

   * Be able to associate a language with CTL/CJK.
 
   This is impossible for a few languages.  Several languages exist in
   competing scripts of different categories - Sanskrit and Pali may be
   written in the Latin script as well as in Indic scripts, and I think
   Sanskrit is also available in CJK.  Several languages are used in
   both the Latin script and in the national CTL script or in the
   Arabic script.
  
  Then you will have different language tags that include the script,
  and have one associated with Western and one with CTL. I don't see
  the problem.
 
 I am having great difficulty seeing why one should want to specify the
 script for a barely supported writing system, let alone the class of
 script.

I wasn't referring the artificial Western/CTL/CJK script classes, but
the ISO 15924 script codes that are part of the BCP 47 language tags
specification.

 My thought was that the language code would suffice.

For tagging a portion of text it is not.

 The script is generally implicit in the text.

You want to rely on automatic detection of scripts depending on the
language chosen? Do you plan to implement that? However, even then the
resulting tag would include the script code if it wasn't the default
script of the language.

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GPG key ID 0x65632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A
Better use 64-bit 0x6A6CD5B765632D3A here is why: https://evil32.com/
Care about Free Software, support the FSFE https://fsfe.org/support/?erack


pgpR559sc9JaQ.pgp
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - svx/source

2015-06-29 Thread matteocam
 svx/source/svdraw/textchainflow.cxx |  306 
 1 file changed, 306 insertions(+)

New commits:
commit e0783b00219987051add4c71ebf2319e4fa70fc1
Author: matteocam matteo.campane...@gmail.com
Date:   Mon Jun 29 06:24:22 2015 -0400

Introduced a check before setting (non)overflowing text

Change-Id: I23db9ed9c558486df1ddcd6c5680e6b6f90b447a

diff --git a/svx/source/svdraw/textchainflow.cxx 
b/svx/source/svdraw/textchainflow.cxx
new file mode 100644
index 000..e759387
--- /dev/null
+++ b/svx/source/svdraw/textchainflow.cxx
@@ -0,0 +1,306 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the License); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+
+#include svx/textchain.hxx
+#include svx/svdotext.hxx
+#include svx/svdoutl.hxx
+#include editeng/outlobj.hxx
+#include editeng/overflowingtxt.hxx
+#include svx/textchainflow.hxx
+
+TextChainFlow::TextChainFlow(SdrTextObj *pChainTarget)
+: mpTargetLink(pChainTarget)
+{
+mpTextChain = mpTargetLink-GetTextChain();
+mpNextLink = mpTargetLink-GetNextLinkInChain();
+bCheckedFlowEvents = false;
+
+bUnderflow = bOverflow = false;
+
+mpOverflowingTxt = NULL;
+mpNonOverflowingTxt = NULL;
+
+mpUnderflowingPObj = NULL;
+
+// XXX: Set the next link here?
+
+
+}
+
+
+TextChainFlow::~TextChainFlow()
+{
+
+}
+
+/*
+ * Check for overflow in the state of pFlowOutl.
+ * If pParamOutl is not NULL sets some parameters from there.
+ * This is useful in case the outliner is not set for overflow
+ * (e.g. in editing mode we check for overflow in drawing outl but
+ *  parameters come from editing outliner)
+*/
+void TextChainFlow::impCheckForFlowEvents(SdrOutliner *pFlowOutl, SdrOutliner 
*pParamOutl)
+{
+// NOTE: Nah you probably don't need this
+if (pParamOutl != NULL)
+{
+// XXX: Set parameters
+// XXX: does this work if you do it before setting the text?
+pFlowOutl-SetUpdateMode(true);
+pFlowOutl-SetMaxAutoPaperSize(pParamOutl-GetMaxAutoPaperSize());
+pFlowOutl-SetMinAutoPaperSize(pParamOutl-GetMinAutoPaperSize());
+pFlowOutl-SetPaperSize(pParamOutl-GetPaperSize());
+}
+
+bool bIsPageOverflow = pFlowOutl-IsPageOverflow();
+
+// NOTE: overflow and underflow cannot be both true
+bOverflow = bIsPageOverflow  mpNextLink;
+bUnderflow = !bIsPageOverflow   mpNextLink  mpNextLink-HasText();
+
+// Set (Non)OverflowingTxt here
+
+mpOverflowingTxt = bOverflow ? pFlowOutl-GetOverflowingText() : NULL;
+mpNonOverflowingTxt = bOverflow ? pFlowOutl-GetNonOverflowingText() : 
NULL;
+
+// Set current underflowing text (if any)
+mpUnderflowingPObj = bUnderflow ? pFlowOutl-CreateParaObject() : NULL;
+
+}
+
+void TextChainFlow::CheckForFlowEvents(SdrOutliner *pFlowOutl)
+{
+impCheckForFlowEvents(pFlowOutl, NULL);
+}
+
+
+bool TextChainFlow::IsOverflow()
+{
+return bOverflow;
+}
+
+bool TextChainFlow::IsUnderflow()
+{
+return bUnderflow;
+}
+
+
+// XXX: In editing mode you need to get underflowing text from editing 
outliner, so it's kinda separate from the drawing one!
+
+// XXX:Would it be possible to unify undeflow and its possibly following 
overrflow?
+void TextChainFlow::ExecuteUnderflow(SdrOutliner *pOutl)
+{
+OutlinerParaObject *pNextLinkWholeText = 
mpNextLink-GetOutlinerParaObject();
+
+// making whole text
+OutlinerParaObject *pCurText;   // XXX: at next line we have editing 
outliner in editing version
+//pCurText = pOutl-CreateParaObject();
+
+// We saved this text already
+pCurText = mpUnderflowingPObj;
+
+// NewTextForCurBox = Txt(CurBox) ++ Txt(NextBox)
+pOutl-SetText(*pCurText);
+pOutl-AddText(*pNextLinkWholeText);
+OutlinerParaObject *pNewText = pOutl-CreateParaObject();
+
+// Set the other box empty so if overflow does not occur we are fine
+if (!mpTargetLink-GetPreventChainable())
+mpNextLink-NbcSetOutlinerParaObject(pOutl-GetEmptyParaObject());
+
+mpTargetLink-NbcSetOutlinerParaObject(pNewText);
+
+// Check for new overflow
+CheckForFlowEvents(pOutl); // XXX: How do you know you don't need to set 
parameters here?
+}
+
+void 

[Libreoffice-bugs] [Bug 92275] impress grinds to a total halt as images constantly swapped in

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

--- Comment #3 from Caolán McNamara caol...@redhat.com ---
preview image generation is fired off after document has loaded, but before
graphics are due to be refreshed asynchronously.

Graphics are forcible swapped in to generate the preview, when the async swap
comes in it goes huh, its already swapped in and because it doesn't need to
swap it it doesn't trigger a repaint for the graphics.

Simplest solution looks to revert the initial fix and instead put the
ActionChanged invalidate paint area into the huh, its already loaded, no work
to do then else branch which seems safer

-- 
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 73221] Last comment text is lost if you save as .docx without shifting the focus to another text area

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

Maris Nartiss maris.nart...@gmail.com changed:

   What|Removed |Added

 CC||maris.nart...@gmail.com

--- Comment #19 from Maris Nartiss maris.nart...@gmail.com ---
I got hit by a combination of Bug 85523 and this one - my last comment was
empty - just contained an X letter.
Version: 4.4.3.2 on ~AMD64 Gentoo

There are two more bugs on saving comments in docx - blank lines or X letters
being appended on save (Bug 85523 and Bug 92312). Would be nice if someone
could take a look at comment saving in docx, as they might be related.

-- 
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/Library_sofficeapp.mk svx/Library_svxcore.mk

2015-06-29 Thread Andras Timar
 desktop/Library_sofficeapp.mk |   10 ++
 svx/Library_svxcore.mk|4 
 2 files changed, 14 insertions(+)

New commits:
commit 57117cf52d4c91029cbabf852d1f82c386ac1d75
Author: Andras Timar andras.ti...@collabora.com
Date:   Mon Jun 29 12:35:53 2015 +0200

Partially revert svx, canvas, desktop: gb_OBJCXXFLAGS are not needed at 
all

This reverts commit 601d7d38628bf93218fba15249c4654ae24e7396.

desktop and svx need these flags in case of OS X sandboxing

Change-Id: Ib811aa53bc2d71839961cdcea0dd4836ebdbc38c

diff --git a/desktop/Library_sofficeapp.mk b/desktop/Library_sofficeapp.mk
index b1d9d21..55f6fba1 100644
--- a/desktop/Library_sofficeapp.mk
+++ b/desktop/Library_sofficeapp.mk
@@ -63,12 +63,22 @@ $(eval $(call gb_Library_use_libraries,sofficeapp,\
 
 ifeq ($(OS),MACOSX)
 
+$(eval $(call gb_Library_add_cxxflags,sofficeapp,\
+$(gb_OBJCXXFLAGS) \
+))
+
 $(eval $(call gb_Library_use_system_darwin_frameworks,sofficeapp,\
 Foundation \
 ))
 
 endif
 
+ifeq ($(OS),IOS)
+$(eval $(call gb_Library_add_cflags,sofficeapp,\
+$(gb_OBJCFLAGS) \
+))
+endif
+
 $(eval $(call gb_Library_add_exception_objects,sofficeapp,\
 desktop/source/app/app \
 desktop/source/app/appinit \
diff --git a/svx/Library_svxcore.mk b/svx/Library_svxcore.mk
index 4b4cb11..6ba013a 100644
--- a/svx/Library_svxcore.mk
+++ b/svx/Library_svxcore.mk
@@ -91,6 +91,10 @@ $(eval $(call gb_Library_use_externals,svxcore,\
 
 ifeq ($(OS),MACOSX)
 
+$(eval $(call gb_Library_add_cxxflags,svxcore,\
+$(gb_OBJCXXFLAGS) \
+))
+
 $(eval $(call gb_Library_use_system_darwin_frameworks,svxcore,\
Foundation \
 ))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91740] Cursor disappears when adding text box or drawings

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

--- Comment #11 from ribotb rib...@gmail.com ---
It seems that is OK in RC2. I tried in Writer ans Base with some tools.

Bernard

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

2015-06-29 Thread Eike Rathke
 sc/qa/unit/ucalc_formula.cxx |   40 +++-
 1 file changed, 39 insertions(+), 1 deletion(-)

New commits:
commit 5dd29024a5eb98393eba1c19559ea6c4ed65ac6c
Author: Eike Rathke er...@redhat.com
Date:   Mon Jun 29 13:09:23 2015 +0200

unit test for tdf#44419

Change-Id: I58cccec61eb0235f2212705d4435d7c08ef99146

diff --git a/sc/qa/unit/ucalc_formula.cxx b/sc/qa/unit/ucalc_formula.cxx
index 0cb6cfb..c270852 100644
--- a/sc/qa/unit/ucalc_formula.cxx
+++ b/sc/qa/unit/ucalc_formula.cxx
@@ -276,7 +276,9 @@ void Test::testFormulaParseReference()
 '90''s Music'.B12,
 '90''s and 70''s'.$AB$100,
 'All Others'.Z$100,
-NoQuote.$C111
+NoQuote.$C111,
+B:B,
+10:10
 };
 
 for (size_t i = 0; i  SAL_N_ELEMENTS(aChecks); ++i)
@@ -320,6 +322,42 @@ void Test::testFormulaParseReference()
 CPPUNIT_ASSERT_EQUAL(static_castSCROW(12), aPos.Row());
 CPPUNIT_ASSERT_MESSAGE(This is not an external address., 
!aExtInfo.mbExternal);
 
+ScRange aRange;
+aRange.aStart.SetTab(0);
+nRes = aRange.Parse(B:B, m_pDoc, formula::FormulaGrammar::CONV_OOO);
+CPPUNIT_ASSERT_MESSAGE(Failed to parse., (nRes  SCA_VALID) != 0);
+CPPUNIT_ASSERT_EQUAL(static_castSCTAB(0), aRange.aStart.Tab());
+CPPUNIT_ASSERT_EQUAL(static_castSCCOL(1), aRange.aStart.Col());
+CPPUNIT_ASSERT_EQUAL(static_castSCROW(0), aRange.aStart.Row());
+CPPUNIT_ASSERT_EQUAL(static_castSCTAB(0), aRange.aEnd.Tab());
+CPPUNIT_ASSERT_EQUAL(static_castSCCOL(1), aRange.aEnd.Col());
+CPPUNIT_ASSERT_EQUAL(static_castSCROW(MAXROW), aRange.aEnd.Row());
+CPPUNIT_ASSERT_EQUAL(nRes  (SCA_COL_ABSOLUTE | SCA_COL2_ABSOLUTE), 0);
+CPPUNIT_ASSERT_EQUAL(nRes  (SCA_ROW_ABSOLUTE | SCA_ROW2_ABSOLUTE), 
(SCA_ROW_ABSOLUTE | SCA_ROW2_ABSOLUTE));
+
+aRange.aStart.SetTab(0);
+nRes = aRange.Parse(2:2, m_pDoc, formula::FormulaGrammar::CONV_OOO);
+CPPUNIT_ASSERT_MESSAGE(Failed to parse., (nRes  SCA_VALID) != 0);
+CPPUNIT_ASSERT_EQUAL(static_castSCTAB(0), aRange.aStart.Tab());
+CPPUNIT_ASSERT_EQUAL(static_castSCCOL(0), aRange.aStart.Col());
+CPPUNIT_ASSERT_EQUAL(static_castSCROW(1), aRange.aStart.Row());
+CPPUNIT_ASSERT_EQUAL(static_castSCTAB(0), aRange.aEnd.Tab());
+CPPUNIT_ASSERT_EQUAL(static_castSCCOL(MAXCOL), aRange.aEnd.Col());
+CPPUNIT_ASSERT_EQUAL(static_castSCROW(1), aRange.aEnd.Row());
+CPPUNIT_ASSERT_EQUAL(nRes  (SCA_ROW_ABSOLUTE | SCA_ROW2_ABSOLUTE), 0);
+CPPUNIT_ASSERT_EQUAL(nRes  (SCA_COL_ABSOLUTE | SCA_COL2_ABSOLUTE), 
(SCA_COL_ABSOLUTE | SCA_COL2_ABSOLUTE));
+
+nRes = aRange.Parse(NoQuote.B:C, m_pDoc, 
formula::FormulaGrammar::CONV_OOO);
+CPPUNIT_ASSERT_MESSAGE(Failed to parse., (nRes  SCA_VALID) != 0);
+CPPUNIT_ASSERT_EQUAL(static_castSCTAB(4), aRange.aStart.Tab());
+CPPUNIT_ASSERT_EQUAL(static_castSCCOL(1), aRange.aStart.Col());
+CPPUNIT_ASSERT_EQUAL(static_castSCROW(0), aRange.aStart.Row());
+CPPUNIT_ASSERT_EQUAL(static_castSCTAB(4), aRange.aEnd.Tab());
+CPPUNIT_ASSERT_EQUAL(static_castSCCOL(2), aRange.aEnd.Col());
+CPPUNIT_ASSERT_EQUAL(static_castSCROW(MAXROW), aRange.aEnd.Row());
+CPPUNIT_ASSERT_EQUAL(nRes  (SCA_COL_ABSOLUTE | SCA_COL2_ABSOLUTE), 0);
+CPPUNIT_ASSERT_EQUAL(nRes  (SCA_ROW_ABSOLUTE | SCA_ROW2_ABSOLUTE), 
(SCA_ROW_ABSOLUTE | SCA_ROW2_ABSOLUTE));
+
 m_pDoc-DeleteTab(4);
 m_pDoc-DeleteTab(3);
 m_pDoc-DeleteTab(2);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92421] Table on contents page number alignment issue

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

--- Comment #3 from Darius Daniel Grigoras daniel.grigo...@movidius.com ---
(In reply to Gordo from comment #2)

Deleting the user profile did the trick, but why do I have to delete my user
profile? I had some precious settings there.

-- 
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 73221] Last comment text is lost if you save as .docx without shifting the focus to another text area

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

--- Comment #20 from Maris Nartiss maris.nart...@gmail.com ---
(In reply to Peter Robinson from comment #6)
 4.  The save button will grey out and disable, but in fact the last comment
 is not saved.  You can close the file (without getting any warning about
 saving) and re-open it and the last comment will be blank.

I was running LO under valgrind and observed a difference in this last step:
if LO is run in a normal way, original description holds (save; close; comment
lost).

if LO is run under valgrind, LO after clicking save icon for once, LO still
considers that there are unsaved changes and a) save button is active b) it
offers to save changes if closing the document. After second save, comment text
is really saved and no data loss is observable. Also second click on save
button disables it, LO doesn't ask to save changes on close.

Unfortunately valgrind wasn't complaining about anything on adding comments,
docx open/save (still it was run on a stock version from official RPMs not a
debug one).
Version: 4.4.3.2 ~AMD64 Gentoo.

-- 
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 91825] Libroffice Calc locks up with paste column

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

--- Comment #11 from Carlos Mendes cjmen...@aeconsult.net ---
(In reply to raal from comment #9)
 cannot reproduce with Version: 5.1.0.0.alpha1+
 Build ID: 3ecef8cedb215e49237a11607197edc91639bfcd
 TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
 2015-06-20_01:01:56

Can i have both LO 4.4.x and 5.1.0.x alpha1 installed without harming the
stable version? Running on linux mint 17.1 x64. Is there a PPA or ddo i have to
build it from scratch?

Thanks,
CJ

-- 
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 92415] Numeration style can not be changed when new numeration point strats

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

--- Comment #15 from Marc Kaulisch m...@kaulisch.de ---
Created attachment 116915
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116915action=edit
new heading added with style numbering 3

I added a new heading (Chapter 4) and gave paragraph the Numbering 3
Somehow it affected one of the earlier Numbering 2 styles but when I corrected
this - you can see this - this is an addition from my latest file

-- 
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 92423] EDITING Text to columns... does not respect currently selected cells

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

Marc Kaulisch m...@kaulisch.de changed:

   What|Removed |Added

 CC||m...@kaulisch.de

--- Comment #1 from Marc Kaulisch m...@kaulisch.de ---
Hi Jarkko, I cannot see an attachement yet.

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


Re: [Libreoffice-qa] daily MAB summary and CCing of MABs (was: MAB/Priority and Severity)

2015-06-29 Thread Eike Rathke
Hi Bjoern,

On Monday, 2015-06-29 11:28:02 +0200, Bjoern Michaelsen wrote:

 - create a query that show all priority: highest bugs that have been touched
   in the last 25 hours (daily), 8 days (weekly)[1]
 - have a bot send these summaries daily or weekly to the dev-list
 - drop the MABs are CC'ed to the dev-list
 
 Personally, I would go with 'daily summaries', just like for gerrit. Note that
 even with that, it will reduce the spammage of the dev-list to 1 daily mail
 that is actually read, instead of ~4 that are likely ignored.
 
 This would mean that we would have:
 - a daily summary of MAB/priority highest activity to the dev-list
 - no additional spammage of the dev-list

Sounds all good to me, though I think every other day would be
sufficient. Plus, have a named query for that (and possibly others) so
one can quickly generate a fresh list whenever needed.

 - weekly review of bugs that have been newly raised to 'priority:highest' in
   the ESC call

What exactly do you mean with review here? I don't think we should spend
too much time on that during the ESC call, but I'd be ok with some does
anyone see a bug on this list that shouldn't belong there topic.

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GPG key ID 0x65632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A
Better use 64-bit 0x6A6CD5B765632D3A here is why: https://evil32.com/
Care about Free Software, support the FSFE https://fsfe.org/support/?erack


pgpWwK7s3B_KF.pgp
Description: PGP signature
___
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: daily MAB summary and CCing of MABs (was: [Libreoffice-qa] MAB/Priority and Severity)

2015-06-29 Thread Eike Rathke
Hi Bjoern,

On Monday, 2015-06-29 11:28:02 +0200, Bjoern Michaelsen wrote:

 - create a query that show all priority: highest bugs that have been touched
   in the last 25 hours (daily), 8 days (weekly)[1]
 - have a bot send these summaries daily or weekly to the dev-list
 - drop the MABs are CC'ed to the dev-list
 
 Personally, I would go with 'daily summaries', just like for gerrit. Note that
 even with that, it will reduce the spammage of the dev-list to 1 daily mail
 that is actually read, instead of ~4 that are likely ignored.
 
 This would mean that we would have:
 - a daily summary of MAB/priority highest activity to the dev-list
 - no additional spammage of the dev-list

Sounds all good to me, though I think every other day would be
sufficient. Plus, have a named query for that (and possibly others) so
one can quickly generate a fresh list whenever needed.

 - weekly review of bugs that have been newly raised to 'priority:highest' in
   the ESC call

What exactly do you mean with review here? I don't think we should spend
too much time on that during the ESC call, but I'd be ok with some does
anyone see a bug on this list that shouldn't belong there topic.

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GPG key ID 0x65632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563 2D3A
Better use 64-bit 0x6A6CD5B765632D3A here is why: https://evil32.com/
Care about Free Software, support the FSFE https://fsfe.org/support/?erack


pgphtBiljgUCv.pgp
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2015-06-29 Thread Phillip Sz
 scaddins/source/analysis/analysishelper.cxx |7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

New commits:
commit 4ccb0fb9eb9fa8cebb187cc990a77bc85a826027
Author: Phillip Sz phillip.sze...@gmail.com
Date:   Fri Jun 26 20:25:05 2015 +0200

tdf#39468 Translate German Comments - scaddins/

Change-Id: I95ea40b1b349f03e8ce45906a50e18f7a95ca5e9
Reviewed-on: https://gerrit.libreoffice.org/16525
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Michael Stahl mst...@redhat.com

diff --git a/scaddins/source/analysis/analysishelper.cxx 
b/scaddins/source/analysis/analysishelper.cxx
index f5cd27c..8c1e891 100644
--- a/scaddins/source/analysis/analysishelper.cxx
+++ b/scaddins/source/analysis/analysishelper.cxx
@@ -1001,7 +1001,7 @@ double GetAmordegrc( sal_Int32 nNullDate, double fCost, 
sal_Int32 nDate, sal_Int
 fRate *= fAmorCoeff;
 double  fNRate = ::rtl::math::round( GetYearFrac( nNullDate, nDate, 
nFirstPer, nBase ) * fRate * fCost, 0 );
 fCost -= fNRate;
-double  fRest = fCost - fRestVal;   // Anschaffungskosten - Restwert - 
Summe aller Abschreibungen
+double  fRest = fCost - fRestVal;   // aboriginal cost - residual 
value - sum of all write-downs
 
 for( sal_uInt32 n = 0 ; n  nPer ; n++ )
 {
@@ -2459,7 +2459,7 @@ ConvertDataList::ConvertDataList()
 
 // ENERGY: 1 Joule is...
 NEWDP( J, 1.E00,  CDC_Energy ); // Joule
-NEWDP( e, 1.E07,  CDC_Energy ); // Erg  - 
http://www.chemie.fu-berlin.de/chemistry/general/si.html
+NEWDP( e, 1.E07,  CDC_Energy ); // Erg  - 
https://en.wikipedia.org/wiki/Erg
 NEWDP( c, 2.3900624947346700E-01, CDC_Energy ); // Thermodynamical 
Calorie
 NEWDP( cal,   2.3884619064201700E-01, CDC_Energy ); // Calorie
 NEWDP( eV,6.24145700E18,  CDC_Energy ); // Electronvolt
@@ -2545,7 +2545,6 @@ ConvertDataList::ConvertDataList()
 NEWD( us_acre,2.4710439304662790E-04, CDC_Area ); // *** U.S. 
survey/statute acre
 NEWD( ly2,1.1172985860549147E-32, CDC_Area ); // *** Square 
Light-year
 NEWD( ha, 1.00E-04,   CDC_Area ); // *** Hectare
-NEWD( Quadratlatschen,5.6689342403628117914,CDC_Area ); // ***
 
 // SPEED: 1 Meter per Second is...
 NEWDP( m/s,   1.E00,  CDC_Speed ); // *** Meters per 
Second
@@ -2555,9 +2554,7 @@ ConvertDataList::ConvertDataList()
 NEWD( mph,2.2369362920544023E00,  CDC_Speed ); // *** Britsh Miles 
per Hour
 NEWD( kn, 1.9438444924406048E00,  CDC_Speed ); // *** Knot = 
Nautical Miles per Hour
 NEWD( admkn,  1.9438446603753486E00,  CDC_Speed ); // *** Admiralty Knot
-NEWD( wahnsinnige Geschwindigkeit, 2.0494886343432328E-14, CDC_Speed ); 
// ***
 NEWD( ludicrous speed, 2.0494886343432328E-14, CDC_Speed ); // ***
-NEWD( laecherliche Geschwindigkeit, 4.0156958471424288E-06, CDC_Speed); 
// ***
 NEWD( ridiculous speed, 4.0156958471424288E-06, CDC_Speed); // ***
 
 // INFORMATION: 1 Bit is...
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92415] Numeration style can not be changed when new numeration point strats

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

--- Comment #4 from Marc Kaulisch m...@kaulisch.de ---
For the test case/file scenario some more authoritative persons should comment
on this. In my humble opinion it works as it should work: You have one
numbering with one kind of setting (Chapter) now you only restart the numbering
but not separated this numbering from the other - so setting being the same and
Appendix is taken for all.
You might want to have a new feature: split numbering - somnething similar to
split table

I will investigate the chapter numbering now...

-- 
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 92415] Numeration style can not be changed when new numeration point strats

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

--- Comment #11 from Marc Kaulisch m...@kaulisch.de ---
Created attachment 116913
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116913action=edit
use three numberingstyles

-- 
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 92415] Numeration style can not be changed when new numeration point strats

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

--- Comment #14 from Daniel D compl...@yandex.ru ---
(In reply to Marc Kaulisch from comment #11)
 Created attachment 116913 [details]
 use three numberingstyles

Oh, I see!
Now it works.
I think, it needs FAR MORE user-friendly interface!
And very important thing!
It is more user-friendly if when starting new item from style 1, even if last
works where from second one, it will preserve style that was under cursor, not
the style over time.

I think, it is the UX lapce.

-- 
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 92415] Numeration style can not be changed when new numeration point strats

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

--- Comment #2 from Daniel D compl...@yandex.ru ---
Created attachment 116908
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116908action=edit
Test file for the case

This file is just a test case. In reality a numeration was in headers.

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


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

2015-06-29 Thread Mihai Varga
 loleaflet/src/layer/tile/GridLayer.js |2 +-
 loleaflet/src/layer/tile/TileLayer.js |   16 
 2 files changed, 17 insertions(+), 1 deletion(-)

New commits:
commit 2e5e63724e9b8f35086a6bb2512e2128ebdedfa3
Author: Mihai Varga mihai.va...@collabora.com
Date:   Mon Jun 29 12:45:14 2015 +0300

Restored tile cache and removed invalid tiles from it

diff --git a/loleaflet/src/layer/tile/GridLayer.js 
b/loleaflet/src/layer/tile/GridLayer.js
index 6885a01..64e3054 100644
--- a/loleaflet/src/layer/tile/GridLayer.js
+++ b/loleaflet/src/layer/tile/GridLayer.js
@@ -587,7 +587,7 @@ L.GridLayer = L.Layer.extend({
// FIXME: this _tileCache is used for prev/next slide; but it is
// dangerous in connection with typing / invalidation, so let's
// comment it out for now
-   //this._tileCache[key] = tile.el.src;
+   this._tileCache[key] = tile.el.src;
 
L.DomUtil.remove(tile.el);
delete this._tiles[key];
diff --git a/loleaflet/src/layer/tile/TileLayer.js 
b/loleaflet/src/layer/tile/TileLayer.js
index a8a51d1..75adc59 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -332,6 +332,22 @@ L.TileLayer = L.GridLayer.extend({

'tileheight=' + this._tileHeightTwips);
}
}
+   for (var key in this._tileCache) {
+   // compute the rectangle that each tile covers 
in the document based
+   // on the zoom level
+   coords = this._keyToTileCoords(key);
+   var scale = this._map.getZoomScale(coords.z);
+   topLeftTwips = new L.Point(
+   this.options.tileWidthTwips * 
scale * coords.x,
+   this.options.tileHeightTwips * 
scale * coords.y);
+   bottomRightTwips = topLeftTwips.add(new L.Point(
+   this.options.tileWidthTwips * 
scale,
+   this.options.tileHeightTwips * 
scale));
+   bounds = new L.Bounds(topLeftTwips, 
bottomRightTwips);
+   if (invalidBounds.intersects(bounds)) {
+   delete this._tileCache[key];
+   }
+   }
}
else if (textMsg.startsWith('status:')) {
command = this._parseServerCmd(textMsg);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92415] Numeration style can not be changed when new numeration point strats

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

Marc Kaulisch m...@kaulisch.de changed:

   What|Removed |Added

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

--- Comment #6 from Marc Kaulisch m...@kaulisch.de ---
Gordo, thanks for this. I tested it and it worksforme...

You create/modify two numbering styles (Numbering 1 Chapter and Numbering 2
Appendix), then you apply it them to the paragraph it starts automatically
recounting numbering when Numbering 2 is applied.

-- 
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/gsoc14-draw-chained-text-boxes' - svx/source

2015-06-29 Thread matteocam
 svx/source/svdraw/textchainflow.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit b6b90d8d4e5b37c89fc66a68bbcd62cb62aa0830
Author: matteocam matteo.campane...@gmail.com
Date:   Mon Jun 29 07:40:40 2015 -0400

Setting update=false in chaining

Change-Id: I1be2c97d74870bc2934e8cdd50a8d4cc985d02ec

diff --git a/svx/source/svdraw/textchainflow.cxx 
b/svx/source/svdraw/textchainflow.cxx
index e759387..ec5dc9a 100644
--- a/svx/source/svdraw/textchainflow.cxx
+++ b/svx/source/svdraw/textchainflow.cxx
@@ -72,6 +72,11 @@ void TextChainFlow::impCheckForFlowEvents(SdrOutliner 
*pFlowOutl, SdrOutliner *p
 
 bool bIsPageOverflow = pFlowOutl-IsPageOverflow();
 
+if (pParamOutl != NULL)
+{
+pFlowOutl-SetUpdateMode(false); // XXX: Plausibly should be the prev. 
state
+}
+
 // NOTE: overflow and underflow cannot be both true
 bOverflow = bIsPageOverflow  mpNextLink;
 bUnderflow = !bIsPageOverflow   mpNextLink  mpNextLink-HasText();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92423] New: EDITING Text to columns... does not respect currently selected cells

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

Bug ID: 92423
   Summary: EDITING Text to columns... does not respect currently
selected cells
   Product: LibreOffice
   Version: 4.2.8.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jvatjusantt...@gmail.com

When a group of cells is copied around and after copy operation the copied
cells are selected, text to columns... operation refuses to operate but only
with the first cell.

Use the attached spreadsheet:

1) select cells A1:A31
2) copy cells
3) move cursor to another location, say, cell A35
4) paste
5) at this point the pasted cells are all selected. 
6) DO NOT ALTER THE SELECTION AND use data-text to columns...
7) the operation is applied only to the first cell of the selection

One needs to reselect the cells in order to apply for all cells. This is
misleading for the user because all the cells were selected in the first place.

-- 
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: 17 commits - comphelper/source connectivity/source embeddedobj/source filter/source framework/source include/comphelper include/filter include/svx scaddins/source sc/so

2015-06-29 Thread Caolán McNamara
 comphelper/source/misc/storagehelper.cxx|2 
 connectivity/source/drivers/dbase/DTable.cxx|2 
 connectivity/source/inc/dbase/DTable.hxx|2 
 embeddedobj/source/commonembedding/xfactory.cxx |3 -
 embeddedobj/source/commonembedding/xfactory.hxx |2 
 filter/source/msfilter/msvbahelper.cxx  |2 
 framework/source/accelerators/storageholder.cxx |2 
 framework/source/uielement/langselectionstatusbarcontroller.cxx |4 -
 include/comphelper/storagehelper.hxx|2 
 include/filter/msfilter/msvbahelper.hxx |2 
 include/svx/unoapi.hxx  |4 -
 sc/source/ui/Accessibility/AccessibleTableBase.cxx  |2 
 sc/source/ui/inc/AccessibleTableBase.hxx|2 
 sc/source/ui/vba/vbaeventshelper.cxx|2 
 sc/source/ui/vba/vbaeventshelper.hxx|2 
 scaddins/source/analysis/analysis.cxx   |2 
 scaddins/source/analysis/analysis.hxx   |2 
 scaddins/source/datefunc/datefunc.cxx   |2 
 scaddins/source/datefunc/datefunc.hxx   |2 
 scaddins/source/pricing/pricing.cxx |2 
 scaddins/source/pricing/pricing.hxx |2 
 sd/source/ui/inc/SdUnoDrawView.hxx  |2 
 sd/source/ui/inc/unomodel.hxx   |2 
 sd/source/ui/inc/unopage.hxx|4 -
 sd/source/ui/unoidl/SdUnoDrawView.cxx   |2 
 sd/source/ui/unoidl/unomodel.cxx|2 
 sd/source/ui/unoidl/unopage.cxx |4 -
 svtools/langsupport/langsupport.cxx |5 ++
 svx/source/sdr/contact/viewobjectcontactofgraphic.cxx   |   21 
++
 svx/source/unodraw/unoprov.cxx  |8 +--
 30 files changed, 54 insertions(+), 43 deletions(-)

New commits:
commit 2d196d0ee26b3840e56ec6537066a3b4a2f08691
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Jun 29 11:26:41 2015 +0100

Resolves: tdf#92275 impress grinds to a halt constant swapping images

This reverts commit 6c84442f99de109b585d3ba8964deb8dcf261c0f.
tdf#87820 Images not displayed properly in Calc

and replaces it with an alternative solution

Change-Id: Iecb560d43767f0e41e442a307eefcdcecb7589ef

diff --git a/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx 
b/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
index 53fc85d..ebca769 100644
--- a/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
+++ b/svx/source/sdr/contact/viewobjectcontactofgraphic.cxx
@@ -134,22 +134,30 @@ namespace sdr
 rGrafObj.mbInsidePaint = false;
 }
 
-// Invalidate paint areas.
-GetViewContact().ActionChanged();
-
 bRetval = true;
 }
 }
 }
 else
 {
-// it is not swapped out, somehow it was loaded. In that case, 
forget
+// it is not swapped out, somehow[1] it was loaded. In that 
case, forget
 // about an existing triggered event
-if(mpAsynchLoadEvent)
+if (mpAsynchLoadEvent)
 {
 // just delete it, this will remove it from the 
EventHandler and
 // will trigger forgetAsynchGraphicLoadingEvent from the 
destructor
 delete mpAsynchLoadEvent;
+
+// Invalidate paint areas.
+// [1] If a calc document with graphics is loaded then 
OnLoad will
+// be emitted before the graphic are due to be swapped in 
asynchronously
+// In sfx2 we generate a preview on receiving onload, 
which forces
+// the graphics to be swapped in to generate the preview. 
When
+// the timer triggers it find the graphics already swapped 
in. So
+// we should still invalidate the paint area on finding 
the graphic
+// swapped in seeing as we're still waiting in calc to 
draw the
+// graphics on receipt of their contents.
+GetViewContact().ActionChanged();
 }
 }
 
@@ -189,9 +197,6 @@ namespace sdr
 rGrafObj.mbInsidePaint = false;
 }
 
-// Invalidate paint areas.
-GetViewContact().ActionChanged();
-
 bRetval 

[Libreoffice-bugs] [Bug 92275] impress grinds to a total halt as images constantly swapped in

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

--- Comment #4 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Caolán McNamara committed a patch related to this issue.
It has been pushed to master:

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

Resolves: tdf#92275 impress grinds to a halt constant swapping images

It will be available in 5.1.0.

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

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


[Libreoffice-bugs] [Bug 92275] impress grinds to a total halt as images constantly swapped in

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

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

   What|Removed |Added

 Whiteboard|| target:5.1.0

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


[Libreoffice-bugs] [Bug 92415] Numeration style can not be changed when new numeration point strats

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

--- Comment #13 from Marc Kaulisch m...@kaulisch.de ---
it works you have to apply the numbering style to the Headings paragraph
see my screenshot.
bytheway, I work with LO5.0.0.2 64bit on Win8.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 91485] UI:Cursors other than the default work but are not displayed

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

ribotb rib...@gmail.com changed:

   What|Removed |Added

 CC||rib...@gmail.com

--- Comment #27 from ribotb rib...@gmail.com ---
It seems that is OK in RC2. I tried in Writer ans Base with some tools.
Version: 5.0.0.2
Build ID: a26d58f11b99b6aeddf7f7884effea188cc6e512
Locale : fr-FR (fr_FR)
Win 7 x86

Bernard

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


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

2015-06-29 Thread Mihai Varga
 loleaflet/src/layer/tile/TileLayer.js |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 96aa6e2048eddc3260e6e84d06b130cfc8bb3d8d
Author: Mihai Varga mihai.va...@collabora.com
Date:   Mon Jun 29 15:17:43 2015 +0300

Restore focus to textArea after dragging handle

diff --git a/loleaflet/src/layer/tile/TileLayer.js 
b/loleaflet/src/layer/tile/TileLayer.js
index 75adc59..28013ca 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -905,6 +905,7 @@ L.TileLayer = L.GridLayer.extend({
}
if (e.type === 'dragend') {
e.target.isDragged = false;
+   this._textArea.focus();
}
 
if (this._startMarker === e.target) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 73977] Other: Increase available footnote area to support traditional Arabic, Urdu, and Persian typesetting

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

--- Comment #3 from Ishayahu ishay...@mail.ru ---
I have the same problem while translating hebrew books into russian. I too need
footnote are to be 100% of page sometimes
OS win7x64
LO 5.0.0.0.beta1

-- 
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 92423] EDITING Text to columns... does not respect currently selected cells

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

--- Comment #4 from Marc Kaulisch m...@kaulisch.de ---
In addition I cannot reproduce this in
Version: 4.4.5.0.0+
Build-ID: 7ea962bd8f2e5303b7719add1f47bb79047b0739
TinderBox: Win-x86@51-TDF, Branch:libreoffice-4-4, Time: 2015-06-28_23:43:12

For me it seems to be solved in upcoming LO versions

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