[Libreoffice-bugs] [Bug 92620] Password protected Macro lenght limited

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

   Priority|medium  |low
 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #3 from Beluga todven...@suomi24.fi ---
Test document: https://bz.apache.org/ooo/attachment.cgi?id=39533

In English:
Tools - Macros - Organize dialogs
Libraries
Select the document name in the Location dropdown.
Select Xray and set a password.

Saving gives the error:
Error saving the document test-ray-bigmodule:
You are about to save/export a password protected basic library containing
module(s) 
_Main
which are too large to store in binary format. If you wish users that don't
have access to the library password to be able to run macros in those module(s)
you must split those modules into a number of smaller modules. Do you wish to
continue to save/export this library?

Win 7 Pro 64-bit, Version: 4.4.4.3
Build ID: 2c39ebcf046445232b798108aa8a7e7d89552ea8
Locale: fi_FI

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


[Libreoffice-bugs] [Bug 92688] When inserting a cross-reference, remember last used reference to

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Summary|Save settings of|When inserting a
   |cross-references|cross-reference, remember
   ||last used reference to
 Ever confirmed|0   |1
 Whiteboard||needsDevEval

--- Comment #4 from Beluga todven...@suomi24.fi ---
Reproduced.
Might be qualified for an easy hack..

Win 7 Pro 64-bit, Version: 4.4.4.3
Build ID: 2c39ebcf046445232b798108aa8a7e7d89552ea8
Locale: fi_FI

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


[Libreoffice-commits] core.git: Branch 'feature/gsoc-tiled-rendering' - 124 commits - accessibility/source animations/source basctl/source basic/source bin/find-unused-defines.awk bin/find-unused-defi

2015-07-29 Thread Pranav Kant
Rebased ref, commits from common ancestor:
commit 0f482ad82b57fd881935e939cbe7b674aab710ff
Author: Pranav Kant pran...@gnome.org
Date:   Wed Jul 29 21:41:56 2015 +0530

lokdocview: Don't use extern variable: lokThreadPool

Change-Id: Ia208e3309bb64baf71ceb97cdf1b3b57b6120353

diff --git a/libreofficekit/source/gtk/lokdocview.cxx 
b/libreofficekit/source/gtk/lokdocview.cxx
index d13fb9b..47d75a3 100644
--- a/libreofficekit/source/gtk/lokdocview.cxx
+++ b/libreofficekit/source/gtk/lokdocview.cxx
@@ -49,6 +49,7 @@ struct _LOKDocViewPrivate
 LibreOfficeKitDocument* m_pDocument;
 
 TileBuffer m_aTileBuffer;
+GThreadPool* lokThreadPool;
 
 gfloat m_fZoom;
 glong m_nDocumentWidthTwips;
@@ -151,8 +152,6 @@ G_DEFINE_TYPE_WITH_CODE (LOKDocView, lok_doc_view, 
GTK_TYPE_DRAWING_AREA,
 #pragma GCC diagnostic pop
 #endif
 
-GThreadPool* lokThreadPool;
-
 /// Helper struct used to pass the data from soffice thread - main thread.
 struct CallbackData
 {
@@ -307,7 +306,7 @@ signalKey (GtkWidget* pWidget, GdkEventKey* pEvent)
 pLOEvent-m_nCharCode = nCharCode;
 pLOEvent-m_nKeyCode  = nKeyCode;
 g_task_set_task_data(task, pLOEvent, g_free);
-g_thread_pool_push(lokThreadPool, g_object_ref(task), NULL);
+g_thread_pool_push(priv-lokThreadPool, g_object_ref(task), NULL);
 g_object_unref(task);
 }
 else
@@ -318,7 +317,7 @@ signalKey (GtkWidget* pWidget, GdkEventKey* pEvent)
 pLOEvent-m_nCharCode = nCharCode;
 pLOEvent-m_nKeyCode  = nKeyCode;
 g_task_set_task_data(task, pLOEvent, g_free);
-g_thread_pool_push(lokThreadPool, g_object_ref(task), NULL);
+g_thread_pool_push(priv-lokThreadPool, g_object_ref(task), NULL);
 g_object_unref(task);
 }
 
@@ -486,7 +485,7 @@ setTilesInvalid (LOKDocView* pDocView, const GdkRectangle 
rRectangle)
 for (int j = aStart.y; j  aEnd.y; j++)
 {
 GTask* task = g_task_new(pDocView, NULL, NULL, NULL);
-priv-m_aTileBuffer.setInvalid(i, j, priv-m_fZoom, task);
+priv-m_aTileBuffer.setInvalid(i, j, priv-m_fZoom, task, 
priv-lokThreadPool);
 g_object_unref(task);
 }
 }
@@ -759,7 +758,7 @@ renderDocument(LOKDocView* pDocView, cairo_t* pCairo)
 if (bPaint)
 {
 GTask* task = g_task_new(pDocView, NULL, NULL, NULL);
-Tile currentTile = priv-m_aTileBuffer.getTile(nRow, nColumn, 
priv-m_fZoom, task);
+Tile currentTile = priv-m_aTileBuffer.getTile(nRow, nColumn, 
priv-m_fZoom, task, priv-lokThreadPool);
 GdkPixbuf* pPixBuf = currentTile.getBuffer();
 gdk_cairo_set_source_pixbuf (pCairo, pPixBuf,
  
twipToPixel(aTileRectangleTwips.x, priv-m_fZoom),
@@ -897,7 +896,7 @@ lok_doc_view_signal_button(GtkWidget* pWidget, 
GdkEventButton* pEvent)
 pLOEvent-m_nSetGraphicSelectionY = pixelToTwip(pEvent-y, 
priv-m_fZoom);
 g_task_set_task_data(task, pLOEvent, g_free);
 
-g_thread_pool_push(lokThreadPool, g_object_ref(task), NULL);
+g_thread_pool_push(priv-lokThreadPool, g_object_ref(task), 
NULL);
 g_object_unref(task);
 
 return FALSE;
@@ -916,7 +915,7 @@ lok_doc_view_signal_button(GtkWidget* pWidget, 
GdkEventButton* pEvent)
 pLOEvent-m_nSetGraphicSelectionY = pixelToTwip(pEvent-y, 
priv-m_fZoom);
 g_task_set_task_data(task, pLOEvent, g_free);
 
-g_thread_pool_push(lokThreadPool, g_object_ref(task), NULL);
+g_thread_pool_push(priv-lokThreadPool, g_object_ref(task), NULL);
 g_object_unref(task);
 
 return FALSE;
@@ -965,7 +964,7 @@ lok_doc_view_signal_button(GtkWidget* pWidget, 
GdkEventButton* pEvent)
 pLOEvent-m_nSetGraphicSelectionY = 
pixelToTwip(priv-m_aGraphicHandleRects[i].y + 
priv-m_aGraphicHandleRects[i].height / 2, priv-m_fZoom);
 g_task_set_task_data(task, pLOEvent, g_free);
 
-g_thread_pool_push(lokThreadPool, g_object_ref(task), 
NULL);
+g_thread_pool_push(priv-lokThreadPool, 
g_object_ref(task), NULL);
 g_object_unref(task);
 
 return FALSE;
@@ -993,7 +992,7 @@ lok_doc_view_signal_button(GtkWidget* pWidget, 
GdkEventButton* pEvent)
 pLOEvent-m_nPostMouseEventCount = nCount;
 g_task_set_task_data(task, pLOEvent, g_free);
 
-g_thread_pool_push(lokThreadPool, g_object_ref(task), NULL);
+g_thread_pool_push(priv-lokThreadPool, g_object_ref(task), NULL);
 g_object_unref(task);
 break;
 }
@@ -1011,7 +1010,7 @@ lok_doc_view_signal_button(GtkWidget* pWidget, 
GdkEventButton* pEvent)
 pLOEvent-m_nPostMouseEventCount = nCount;
 g_task_set_task_data(task, pLOEvent, g_free);
 
-g_thread_pool_push(lokThreadPool, 

[Libreoffice-bugs] [Bug 92999] EDITING: Context Menu off the screen upon scrolling

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

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from raal r...@post.cz ---
Reproducible with Version: 5.1.0.0.alpha1+
Build ID: 74d4168f8830f7bbec6b784c3fb774296d9adafa
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-07-22_06:14:00

-- 
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 70287] Saving a document as certain file types does not populate Recently Used in KDE

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

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

--- Comment #5 from Beluga todven...@suomi24.fi ---
NEW per comment 4.

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


[Libreoffice-bugs] [Bug 92903] Base: text displayed offset in table edit UI listbox dropdown

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

--- Comment #12 from Doug dougt901-2...@yahoo.com ---
For the KDE theme I am using the OpenSuse 13.2 KDE defaults, which I believe is
referenced as 'Plasma'.  For widgets maybe 'Plastik' for icons maybe 'Crystal
SVG'.  Desktop theme is 'OpenSUSElight' version 0.5.

-- 
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 93003] New: EDITING: Sorting filtered results causes some cells to sort unpredictably

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

Bug ID: 93003
   Summary: EDITING: Sorting filtered results causes some cells to
sort unpredictably
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: skinnerb...@gmail.com

Sorting a spreadsheet when a filter has been applied and rows are hidden will
cause unpredictable sorting -- cells will get transposed to different rows
(although not to different rows). I believe this will also happen when columns
are hidden, but have not confirmed. The affected sheets have all been large
(1000+ rows, 60-100 columns); I also haven't confirmed whether this is a
problem with large spreadsheets only or if it also occurs in smaller ones.

-- 
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 40534] slide tearing in LARGE screens with hardware acceleration enabled

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

--- Comment #40 from Duarte duarte.fra...@gmail.com ---
(In reply to tommy27 from comment #36)
 I raise the priority to high since there are already 7 duplicates and we
 will see more in the future once large screens become more popular

Good to know, hope it helps get this finally dealt with.
It would be nice to have this fixed for LibreOffice 5.0, though with the
eminent release in a few days it's unlikely it will find it's way to the final
build.

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


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

2015-07-29 Thread Miklos Vajna
 vcl/source/window/cursor.cxx |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

New commits:
commit 79c9598d0a586f44757954556661ce6eda1f997e
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jul 29 18:09:32 2015 +0200

tdf#92982 vcl::Cursor: handle rendercontext

With this, vcl::Cursor does not paint on the vcl::Window directly, and
in case the output should be something other than pRenderContext, it
should be a one-liner change to do that.

Change-Id: I57833f6f8589286260d96f412f1fcc681e6c5c8c

diff --git a/vcl/source/window/cursor.cxx b/vcl/source/window/cursor.cxx
index 0d893ca..2eaa551 100644
--- a/vcl/source/window/cursor.cxx
+++ b/vcl/source/window/cursor.cxx
@@ -44,8 +44,9 @@ struct ImplCursorData
 static void ImplCursorInvert( ImplCursorData* pData )
 {
 vcl::Window* pWindow  = pData-mpWindow;
-boolbMapMode = pWindow-IsMapModeEnabled();
-pWindow-EnableMapMode( false );
+vcl::RenderContext* pRenderContext = pWindow-GetOutDev();
+boolbMapMode = pRenderContext-IsMapModeEnabled();
+pRenderContext-EnableMapMode( false );
 InvertFlags nInvertStyle;
 if ( pData-mnStyle  CURSOR_SHADOW )
 nInvertStyle = InvertFlags::N50;
@@ -107,12 +108,12 @@ static void ImplCursorInvert( ImplCursorData* pData )
 
 if ( pData-mnOrientation )
 aPoly.Rotate( pData-maPixRotOff, pData-mnOrientation );
-pWindow-Invert( aPoly, nInvertStyle );
+pRenderContext-Invert( aPoly, nInvertStyle );
 }
 }
 else
-pWindow-Invert( aRect, nInvertStyle );
-pWindow-EnableMapMode( bMapMode );
+pRenderContext-Invert( aRect, nInvertStyle );
+pRenderContext-EnableMapMode( bMapMode );
 }
 
 void vcl::Cursor::ImplDraw()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #14 from Beluga todven...@suomi24.fi ---
Parallel install:
https://wiki.documentfoundation.org/Installing_in_parallel/Linux

-- 
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: Branch 'distro/collabora/milestone-3' - 2 commits - loleaflet/Makefile

2015-07-29 Thread Mihai Varga
 loleaflet/Makefile |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7dc7dce1eab3f92c5bafbae3fad4c1659b1db938
Author: Mihai Varga mihai.va...@collabora.com
Date:   Wed Jul 29 19:18:25 2015 +0300

loleaflet: bump version after tarball

diff --git a/loleaflet/Makefile b/loleaflet/Makefile
index 29473e3..e0c07c7 100644
--- a/loleaflet/Makefile
+++ b/loleaflet/Makefile
@@ -1,6 +1,6 @@
 # Version number of loleaflet, no need to be in sync with the loolwsd one
 
-VERSION=1.1.16
+VERSION=1.1.17
 
 # Version number of the bundled 'draw' thing
 DRAW_VERSION=0.2.4
commit 8970c229b15f6c69e9b1acd4e863e33b8e5b3332
Author: Mihai Varga mihai.va...@collabora.com
Date:   Wed Jul 29 19:17:19 2015 +0300

loleaflet: bump version for tarball

diff --git a/loleaflet/Makefile b/loleaflet/Makefile
index 2794cc0..29473e3 100644
--- a/loleaflet/Makefile
+++ b/loleaflet/Makefile
@@ -1,6 +1,6 @@
 # Version number of loleaflet, no need to be in sync with the loolwsd one
 
-VERSION=1.1.15
+VERSION=1.1.16
 
 # Version number of the bundled 'draw' thing
 DRAW_VERSION=0.2.4
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93001] Libreoffice can't show diagram in xlsx file

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

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

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

--- Comment #2 from Maxim Monastirsky momonas...@gmail.com ---
Hi,

Looking inside this xlsx file reveals that it was last edited by LibreOffice,
and there is no chart inside at all. Could you please attach the original file
that was created by MS Office?

Setting to NEEDINFO until a test file is provided.

-- 
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 92945] FILESAVE / draw / export to png

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

--- Comment #1 from Gérald Maruccia gerald.maruc...@yahoo.fr ---
…resolution lowered,

and

proportions of the image are not kept

(as you can see on attached gimp picture, horizontal and vertical resolution
are different)

-- 
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: Branch 'distro/collabora/milestone-3' - 12 commits - loleaflet/build loleaflet/debug loleaflet/dist loleaflet/README loleaflet/src

2015-07-29 Thread Mihai Varga
 loleaflet/README  |   84 +
 loleaflet/build/deps.js   |   29 +-
 loleaflet/debug/document/document_simple_example.html |   28 -
 loleaflet/dist/leaflet.css|8 
 loleaflet/src/control/Control.Scroll.js   |   93 ++
 loleaflet/src/control/Scroll.js   |   19 +
 loleaflet/src/layer/tile/GridLayer.js |   50 ---
 loleaflet/src/layer/tile/TileLayer.js |  254 --
 loleaflet/src/map/Map.js  |   23 -
 loleaflet/src/map/handler/Map.Keyboard.js |  214 ++-
 loleaflet/src/map/handler/Map.Mouse.js|  131 +
 loleaflet/src/map/handler/Map.Scroll.js   |   59 
 loleaflet/src/map/handler/Map.ScrollWheelZoom.js  |   68 
 13 files changed, 582 insertions(+), 478 deletions(-)

New commits:
commit fd00c9b133fc709fb6bea739ac15a93bb2c81b4d
Author: Mihai Varga mihai.va...@collabora.com
Date:   Wed Jul 29 19:08:59 2015 +0300

loleaflet: cherry-pick fix

diff --git a/loleaflet/src/layer/tile/TileLayer.js 
b/loleaflet/src/layer/tile/TileLayer.js
index dcaef5e..2c58f86 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -120,7 +120,6 @@ L.TileLayer = L.GridLayer.extend({
getEvents: function () {
var events = {
viewreset: this._viewReset,
-   movestart: this._moveStart,
moveend: this._move
};
 
commit 71b015657626b9dc356ed2a528aa689336f806f4
Author: Mihai Varga mihai.va...@collabora.com
Date:   Fri Jul 24 17:17:49 2015 +0300

loleaflet: keyboard navigation now also fires 'scrollby' event

Conflicts:
loleaflet/src/map/handler/Map.Keyboard.js

diff --git a/loleaflet/src/map/handler/Map.Keyboard.js 
b/loleaflet/src/map/handler/Map.Keyboard.js
index 084fc03..f1454b5 100644
--- a/loleaflet/src/map/handler/Map.Keyboard.js
+++ b/loleaflet/src/map/handler/Map.Keyboard.js
@@ -4,6 +4,8 @@
 
 L.Map.mergeOptions({
keyboard: true,
+   keyboardPanOffset: 20,
+   keyboardZoomOffset: 1
 });
 
 L.Map.Keyboard = L.Handler.extend({
@@ -93,8 +95,19 @@ L.Map.Keyboard = L.Handler.extend({
46  : true // delete
},
 
+   navigationKeyCodes: {
+   left:[37],
+   right:   [39],
+   down:[40],
+   up:  [38],
+   zoomIn:  [187, 107, 61, 171],
+   zoomOut: [189, 109, 173]
+   },
+
initialize: function (map) {
this._map = map;
+   this._setPanOffset(map.options.keyboardPanOffset);
+   this._setZoomOffset(map.options.keyboardZoomOffset);
},
 
addHooks: function () {
@@ -109,6 +122,38 @@ L.Map.Keyboard = L.Handler.extend({
this._map.on('keydown keyup keypress', this._onKeyDown, this);
},
 
+   _setPanOffset: function (pan) {
+   var keys = this._panKeys = {},
+   codes = this.navigationKeyCodes,
+   i, len;
+
+   for (i = 0, len = codes.left.length; i  len; i++) {
+   keys[codes.left[i]] = [-1 * pan, 0];
+   }
+   for (i = 0, len = codes.right.length; i  len; i++) {
+   keys[codes.right[i]] = [pan, 0];
+   }
+   for (i = 0, len = codes.down.length; i  len; i++) {
+   keys[codes.down[i]] = [0, pan];
+   }
+   for (i = 0, len = codes.up.length; i  len; i++) {
+   keys[codes.up[i]] = [0, -1 * pan];
+   }
+   },
+
+   _setZoomOffset: function (zoom) {
+   var keys = this._zoomKeys = {},
+   codes = this.navigationKeyCodes,
+   i, len;
+
+   for (i = 0, len = codes.zoomIn.length; i  len; i++) {
+   keys[codes.zoomIn[i]] = zoom;
+   }
+   for (i = 0, len = codes.zoomOut.length; i  len; i++) {
+   keys[codes.zoomOut[i]] = -zoom;
+   }
+   },
+
_onMouseDown: function () {
if (this._map._docLayer._permission === 'edit') {
return;
@@ -131,30 +176,41 @@ L.Map.Keyboard = L.Handler.extend({
return;
}
 
-   if (docLayer._permission !== 'edit') {
-   return;
-   }
-
-   var charCode = e.originalEvent.charCode;
-   var keyCode = e.originalEvent.keyCode;
-   if (e.type === 'keydown'  this.handleOnKeyDown[keyCode]  
charCode === 0) {
-   docLayer._postKeyboardEvent('input', charCode, 
this._toUNOKeyCode(keyCode));
-   }
-   else if (e.type === 

[Libreoffice-bugs] [Bug 93003] EDITING: Sorting filtered results causes some cells to sort unpredictably

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

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #1 from raal r...@post.cz ---
Hello Geoffrey,

Thank you for filing the bug. Please send us a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO', so please do change it back to
'UNCONFIRMED' once you have attached a document.
(Please note that the attachment will be public, remove any sensitive
information before attaching it.)
How can I eliminate confidential data from a sample document?
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
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 90937] Default set of calc cell styles

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

raal r...@post.cz changed:

   What|Removed |Added

 CC||jigglebi...@mailinator.com

--- Comment #7 from raal r...@post.cz ---
*** Bug 92968 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 92968] Calc has no built in cell styles.

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

raal r...@post.cz changed:

   What|Removed |Added

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

--- Comment #1 from raal r...@post.cz ---
Hello,

Thank you for submitting the bug. The bug has previously been reported, so this
bug will be added as a duplicate of it. You will automatically be CCed to
updates made to the other bug.

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

-- 
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 93001] Libreoffice can't show diagram in xlsx file

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

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal r...@post.cz ---
Hello, where is the diagram? I doesn't see it in excel 2010.

-- 
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 93004] New: New Theme on Windows Installer

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

Bug ID: 93004
   Summary: New Theme on Windows Installer
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: ke...@collabora.com,
libreoffice-ux-adv...@lists.freedesktop.org

Created attachment 117517
  -- https://bugs.documentfoundation.org/attachment.cgi?id=117517action=edit
Windows Installer visual problems

While trying out the latest daily build on windows, i noticed two issues with
the new 5.0 visual design in the installer.

1) In the initial parts of the wizard, the visual design is in a column on the
left and there are 2 shades of gray above the green box, as there is a line
separator going through it. As this doesnt also happen at the bottom, i would
suggest that the top be similar to the bottom

2) In other pats of the wizard, the visual design is in a row at the top and
the gray left portion of it appears above below black text, which cause the
text to be difficult to read. Also the right bottom corner of row is missing
gray pixels under the very dark portion of the green square.

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


[Libreoffice-ux-advise] [Bug 93004] New: New Theme on Windows Installer

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

Bug ID: 93004
   Summary: New Theme on Windows Installer
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-b...@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: ke...@collabora.com,
libreoffice-ux-advise@lists.freedesktop.org

Created attachment 117517
  -- https://bugs.documentfoundation.org/attachment.cgi?id=117517action=edit
Windows Installer visual problems

While trying out the latest daily build on windows, i noticed two issues with
the new 5.0 visual design in the installer.

1) In the initial parts of the wizard, the visual design is in a column on the
left and there are 2 shades of gray above the green box, as there is a line
separator going through it. As this doesnt also happen at the bottom, i would
suggest that the top be similar to the bottom

2) In other pats of the wizard, the visual design is in a row at the top and
the gray left portion of it appears above below black text, which cause the
text to be difficult to read. Also the right bottom corner of row is missing
gray pixels under the very dark portion of the green square.

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


[Libreoffice-bugs] [Bug 92998] impress/charts: Can save broken odc

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

raal r...@post.cz changed:

   What|Removed |Added

   Priority|medium  |high
 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1
   Severity|normal  |critical

--- Comment #1 from raal r...@post.cz ---
Reproducible with Verze: 5.0.0.4 (x64)
ID sestavení: cf112dc905650fb985306a7a03d2fe3fcc6c978f
dataloss, setting Importance

-- 
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 93006] New: Page number offset field does not work properly for numbers other than 1

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

Bug ID: 93006
   Summary: Page number offset field does not work properly for
numbers other than 1
   Product: LibreOffice
   Version: 4.3.7.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: joseph.l...@gmail.com

When inserting a Page Number field using the Insert  Fields  Other dialogue
entering a number other than 1 or -1 into the Offset field and hitting insert
only inserts an empty field into the document. Editing an existing Page Number
field yields the same result.

-- 
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 92713] Inability to keep selected text selected

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Summary|CONFIGURATION: Inability to |Inability to keep selected
   |keep selected text selected |text selected
 Ever confirmed|0   |1
 OS|Windows (All)   |All
   Severity|normal  |minor

--- Comment #1 from Beluga todven...@suomi24.fi ---
Reproduced, but only with the F8 method.

Actually, only in Linux the selection got deselected by itself.
All versions had the problem of not being able to select anything after doing a
selection with F8 and deselecting.
I had to close the document, writing more text didn't help.

Win 7 Pro 64-bit, Version: 4.4.4.3
Build ID: 2c39ebcf046445232b798108aa8a7e7d89552ea8
Locale: fi_FI

Version: 5.1.0.0.alpha1+ (x64)
Build ID: e92a8b92072284fd7c37d7bb3e1e8fe72a185f35
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-07-22_21:46:26
Locale: fi-FI (fi_FI)

Ubuntu 15.04 64-bit 
Version: 5.1.0.0.alpha1+
Build ID: 0bd582834b46dbbc5037310d45bac8885e6f2a07
TinderBox: Linux-rpm_deb-x86_64@46-TDF-dbg, Branch:master, Time:
2015-07-14_01:14:35
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 92695] UI: certain sequence of clicks on Basic Shapes crashes LO.

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

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

--- Comment #1 from Beluga todven...@suomi24.fi ---
Crashes on Linux, but not Windows.

Does not crash on 5.1, though.

Win 7 Pro 64-bit, Version: 4.4.4.3
Build ID: 2c39ebcf046445232b798108aa8a7e7d89552ea8
Locale: fi_FI

Ubuntu 15.04 64-bit 
Version: 4.4.4.3
Build ID: 40m0(Build:3)
Locale: en_US.UTF-8

Version: 5.1.0.0.alpha1+
Build ID: 0bd582834b46dbbc5037310d45bac8885e6f2a07
TinderBox: Linux-rpm_deb-x86_64@46-TDF-dbg, Branch:master, Time:
2015-07-14_01:14:35
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 89094] Start Center: clearer separation between templates chooser screen and options arrow

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

--- Comment #5 from Yousuf (Jay) Philips philip...@hotmail.com ---
The only visual difference i see in the current template button and the one in
firefox is that the template button's separator line doesnt fully extend all
the way to the top and bottom edges of the button.

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


[Libreoffice-ux-advise] [Bug 89094] Start Center: clearer separation between templates chooser screen and options arrow

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

--- Comment #5 from Yousuf (Jay) Philips philip...@hotmail.com ---
The only visual difference i see in the current template button and the one in
firefox is that the template button's separator line doesnt fully extend all
the way to the top and bottom edges of the button.

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


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

2015-07-29 Thread matteocam
 svx/source/svdraw/svdotext.cxx  |   52 ++--
 svx/source/svdraw/svdotextdecomposition.cxx |3 +
 2 files changed, 53 insertions(+), 2 deletions(-)

New commits:
commit 8e7192c5e053684930e82a5c6bd53905ac2a
Author: matteocam matteo.campane...@gmail.com
Date:   Wed Jul 29 18:56:51 2015 +0200

Check GetNicChainingEvent before chaining in static mode

Change-Id: Ie3e4aeea896ae3269ee196d17d80505e2491eb71

diff --git a/svx/source/svdraw/svdotextdecomposition.cxx 
b/svx/source/svdraw/svdotextdecomposition.cxx
index b627b77..25feda4 100644
--- a/svx/source/svdraw/svdotextdecomposition.cxx
+++ b/svx/source/svdraw/svdotextdecomposition.cxx
@@ -1425,6 +1425,9 @@ void 
SdrTextObj::impGetScrollTextTiming(drawinglayer::animation::AnimationEntryL
 
 void SdrTextObj::impHandleChainingEventsDuringDecomposition(SdrOutliner 
rOutliner) const
 {
+if (GetTextChain()-GetNilChainingEvent(this))
+return;
+
 GetTextChain()-SetNilChainingEvent(this, true);
 
 TextChainFlow aTxtChainFlow(const_castSdrTextObj*(this));
commit 452ac5b3b37dc3c06ff0dbe958cc65417f2ed064
Author: matteocam matteo.campane...@gmail.com
Date:   Wed Jul 29 18:54:55 2015 +0200

Set link at calls of IsChainable. (not working)

Change-Id: Ia6b57c560f20abac8cac98c29880d7aa5b962d7c

diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index ca28046..46b1bbc 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -1984,12 +1984,60 @@ void SdrTextObj::onEditOutlinerStatusEvent( EditStatus* 
pEditStatus )
 }
 }
 
+// XXX: Make it a method somewhere?
+SdrObject *ImpGetObjByName(SdrObjList *pObjList, OUString aObjName)
+{
+// scan the whole list
+size_t nObjCount = pObjList-GetObjCount();
+for (unsigned i = 0; i  nObjCount; i++) {
+SdrObject *pCurObj = pObjList-GetObj(i);
+
+if (pCurObj-GetName() == aObjName) {
+return pCurObj;
+}
+}
+// not found
+return NULL;
+}
+
+// XXX: Make it a (private) method of SdrTextObj
+void ImpUpdateChainLinks(SdrTextObj *pTextObj, OUString aNextLinkName)
+{
+// XXX: Current implementation constraints text boxes to be on the same 
page
+
+// No next link
+if (aNextLinkName == ) {
+pTextObj-SetNextLinkInChain(NULL);
+return;
+}
+
+SdrPage *pPage = pTextObj-GetPage();
+assert(pPage);
+SdrTextObj *pNextTextObj = dynamic_cast SdrTextObj * 
+(ImpGetObjByName(pPage, aNextLinkName));
+if (!pNextTextObj) {
+fprintf(stderr, [CHAINING] Can't find object as next link.\n);
+return;
+}
+
+pTextObj-SetNextLinkInChain(pNextTextObj);
+}
+
 bool SdrTextObj::IsChainable() const
 {
 // Read it as item
 const SfxItemSet rSet = GetObjectItemSet();
-OUString aNextName = static_castconst 
SfxStringItem(rSet.Get(SDRATTR_TEXT_CHAINNEXTNAME)).GetValue();
-return aNextName != ; // XXX: Should we also check for 
GetNilChainingEvent? (see old code below)
+OUString aNextLinkName = static_castconst 
SfxStringItem(rSet.Get(SDRATTR_TEXT_CHAINNEXTNAME)).GetValue();
+
+// Update links if any inconsistency is found
+bool bNextLinkUnsetYet = (aNextLinkName != )  !mpNextInChain;
+bool bInconsistentNextLink = mpNextInChain  mpNextInChain-GetName() != 
aNextLinkName;
+// if the link is not set despite there should be one OR if it has changed
+if (bNextLinkUnsetYet || bInconsistentNextLink) {
+ImpUpdateChainLinks(const_castSdrTextObj *(this), aNextLinkName);
+}
+
+return aNextLinkName != ; // XXX: Should we also check for 
GetNilChainingEvent? (see old code below)
 
 /*
 // Check that no overflow is going on
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Text Chains in Draw] A few question on general handling of chains of text boxes

2015-07-29 Thread Matteo Campanelli
This part has been completed; also we can chain-links are set directly
after loading from file now.
Thorsten, everything that worked already is working after setting the UNO
property but the solution is a bit dirty. Please see my last chat message
today.

Matteo


On Fri, Jul 24, 2015 at 12:14 AM Thorsten Behrens 
t...@documentfoundation.org wrote:

 Matteo Campanelli wrote:
  *Question*: what is a good place to keep these chains in svx?
  They hold some kind of global information so my first guess would be
  SdrModel. Does that make sense?
 
 Absolutely.

  At some point it should be possible to specify next links from the UI.
  *Question*: where should one put such commands/methods (called from the
 UI)
  for setting/removing links ? SdrTextObj-s themselves?
 
 There, or as a binary op on the SdrModel again, with the two boxes
 (upstream  downstream) as parameters. See what feels more natural
 when calling it (SdrTextObj::setNextLink() or SdrModel::linkBoxes(up,
 down))...

 HTH,

 -- Thorsten

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


Re: [GSoC15] Chained Text Boxes - Report Week 9

2015-07-29 Thread Matteo Campanelli
Hi Thorsten,

On Mon, Jul 27, 2015 at 1:58 PM, Thorsten Behrens 
t...@documentfoundation.org wrote:


 Hi Matteo,

 nice progress there again! As said earlier, let's now start getting
 bits and pieces of that into master. Depending on your risk profile,
 as an experimental feature, or w/o UI but enabled by default. ;)


I'm sorry for the basic question but the next step for this is basically
pulling master+rebasing+pushing to master?

Matteo


 Cheers,

 -- Thorsten

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


[Libreoffice-ux-advise] [Bug 89154] EDITING: Ctrl+Right key - cursor doesn't stop at the end of the line, jumps to next paragraph

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

--- Comment #35 from Yousuf (Jay) Philips philip...@hotmail.com ---
Created attachment 117519
  -- https://bugs.documentfoundation.org/attachment.cgi?id=117519action=edit
test document

Here is a test document to work with, so we are all on the same page according
to the bug description.

Steps:
1) Open doc
2) Press Ctrl+Right on line/paragraph 1
3) Notice that it doesnt stop at the end of the line as it doesnt have
punctuation
4) Try this on line/paragraph 2.
5) It stops before the period

This is the behaviour in 3.3 and master. Try this same thing in Word 2013, WPS
Writer, and other word processors and the cursor wont stop at the end of
line/paragraph 1.

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


[Libreoffice-bugs] [Bug 89154] EDITING: Ctrl+Right key - cursor doesn't stop at the end of the line, jumps to next paragraph

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

--- Comment #35 from Yousuf (Jay) Philips philip...@hotmail.com ---
Created attachment 117519
  -- https://bugs.documentfoundation.org/attachment.cgi?id=117519action=edit
test document

Here is a test document to work with, so we are all on the same page according
to the bug description.

Steps:
1) Open doc
2) Press Ctrl+Right on line/paragraph 1
3) Notice that it doesnt stop at the end of the line as it doesnt have
punctuation
4) Try this on line/paragraph 2.
5) It stops before the period

This is the behaviour in 3.3 and master. Try this same thing in Word 2013, WPS
Writer, and other word processors and the cursor wont stop at the end of
line/paragraph 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 82135] Cell references don't resolve in imported Excel sheet, but do after edit

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

raal r...@post.cz changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
Version|unspecified |4.2.5.2 release
 Ever confirmed|0   |1
 Whiteboard||bibisectRequest

--- Comment #11 from raal r...@post.cz ---
Reproducible with Version: 5.1.0.0.alpha1+
Build ID: 74d4168f8830f7bbec6b784c3fb774296d9adafa
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-07-22_06:14:00

Hard recalc CTRL+SHIFT+F9 helps, after recalc is value 123

Works correct with LO 3.5, regression

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


Minutes of the Design Hangout: 2015-07-29 [call canceled]

2015-07-29 Thread Jan Holesovsky
Hi,

Just Mattias appeared in the first 15 minutes, so we canceled the call.
Hopefully we'll have more people attending the next week! :-) [but it's
vacation period, so...]

All the best,
Kendy

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


[GSoC] More and Better Tests - Weekly Report #9 (Varun Dhall)

2015-07-29 Thread Varun Dhall
Hi all!


Ninth week of GSoC was passed in writing some new tests.


Here are the changes made in last 7 days -

https://gerrit.libreoffice.org/#/c/17284/

https://gerrit.libreoffice.org/#/c/17375/


These changes are successfully merged into the master.


Currently I am working on a couple of tests and they will be merged soon.


Last week I was not able to devote proper time as per my schedule, will try to 
cover pending tasks ASAP.


Future Goals- Adding more and better unit tests in code-base to assist in 
finding regressions as early as possible.


Regards,

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


[Libreoffice-bugs] [Bug 92605] Format for editing Time does not match the format assigned to a cell.

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

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

--- Comment #5 from Beluga todven...@suomi24.fi ---
(In reply to Aprax from comment #4)
 I would like the editing to use the user's selected format, 
 i.e. that was consciously and with specific purpose chosen by the user, for
 a cell.
 
 LO does the right thing for Date and Number formats and should for Time
 formats.

I agree - NEW.

Repro with US locale.

Win 7 Pro 64-bit Version: 5.1.0.0.alpha1+ (x64)
Build ID: e92a8b92072284fd7c37d7bb3e1e8fe72a185f35
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-07-22_21:46:26
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-commits] core.git: chart2/source chart2/uiconfig

2015-07-29 Thread Katarina Behrens
 chart2/source/controller/sidebar/ChartElementsPanel.cxx |7 
 chart2/source/controller/sidebar/ChartElementsPanel.hxx |2 
 chart2/uiconfig/ui/sidebarelements.ui   |  743 +---
 3 files changed, 455 insertions(+), 297 deletions(-)

New commits:
commit 93d301a287141013c28556570d67ffc9d3286b2a
Author: Katarina Behrens katarina.behr...@cib.de
Date:   Tue Jul 28 16:19:59 2015 +0200

Some (mostly HIG) tweaks to chart elements panel

As I wanted to represent subsections as frames (it looks kinda
better with bold labels), I tried to emulate grid behaviour by
putting widgets into 2 size groups

Other tweaks include disabling legend position listbox when legend
is not to be shown and missing clear() of that listbox

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

diff --git a/chart2/source/controller/sidebar/ChartElementsPanel.cxx 
b/chart2/source/controller/sidebar/ChartElementsPanel.cxx
index fd498ff..08d1fea 100644
--- a/chart2/source/controller/sidebar/ChartElementsPanel.cxx
+++ b/chart2/source/controller/sidebar/ChartElementsPanel.cxx
@@ -310,6 +310,7 @@ ChartElementsPanel::ChartElementsPanel(
 get(mpCBGridHorizontalMinor,  checkbutton_gridline_horizontal_minor);
 
 get(mpLBLegendPosition, comboboxtext_legend);
+get(mpBoxLegend, box_legend);
 
 Initialize();
 }
@@ -342,6 +343,9 @@ void ChartElementsPanel::dispose()
 mpCBGridVerticalMinor.clear();
 mpCBGridHorizontalMinor.clear();
 
+mpLBLegendPosition.clear();
+mpBoxLegend.clear();
+
 PanelLayout::dispose();
 }
 
@@ -491,7 +495,10 @@ IMPL_LINK(ChartElementsPanel, CheckBoxHdl, CheckBox*, 
pCheckBox)
 else if (pCheckBox == mpCB2ndYAxisTitle.get())
 setTitleVisible(mxModel, TitleHelper::SECONDARY_Y_AXIS_TITLE, 
bChecked);
 else if (pCheckBox == mpCBLegend.get())
+{
+mpBoxLegend-Enable( bChecked );
 setLegendVisible(mxModel, bChecked);
+}
 else if (pCheckBox == mpCBGridVerticalMajor.get())
 setGridVisible(mxModel, GridType::VERT_MAJOR, bChecked);
 else if (pCheckBox == mpCBGridHorizontalMajor.get())
diff --git a/chart2/source/controller/sidebar/ChartElementsPanel.hxx 
b/chart2/source/controller/sidebar/ChartElementsPanel.hxx
index 766915c..47265fb 100644
--- a/chart2/source/controller/sidebar/ChartElementsPanel.hxx
+++ b/chart2/source/controller/sidebar/ChartElementsPanel.hxx
@@ -23,6 +23,7 @@
 #include sfx2/sidebar/IContextChangeReceiver.hxx
 #include sfx2/sidebar/SidebarModelUpdate.hxx
 #include svx/sidebar/PanelLayout.hxx
+#include vcl/layout.hxx
 #include ChartSidebarModifyListener.hxx
 
 #include com/sun/star/util/XModifyListener.hpp
@@ -95,6 +96,7 @@ private:
 VclPtrCheckBox mpCBGridHorizontalMinor;
 
 VclPtrListBox mpLBLegendPosition;
+VclPtrVclHBox mpBoxLegend;
 
 css::uno::Referencecss::frame::XFrame mxFrame;
 ::sfx2::sidebar::EnumContextmaContext;
diff --git a/chart2/uiconfig/ui/sidebarelements.ui 
b/chart2/uiconfig/ui/sidebarelements.ui
index 94d1ff0..8250d6e 100644
--- a/chart2/uiconfig/ui/sidebarelements.ui
+++ b/chart2/uiconfig/ui/sidebarelements.ui
@@ -5,338 +5,487 @@
   object class=GtkGrid id=ChartElementsPanel
 property name=visibleTrue/property
 property name=can_focusFalse/property
+property name=border_width6/property
 child
-  object class=GtkGrid id=container
+  object class=GtkBox id=container
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=resize_modeimmediate/property
-property name=row_homogeneousTrue/property
-property name=column_homogeneousTrue/property
+property name=orientationvertical/property
+property name=spacing6/property
 child
-  object class=GtkCheckButton id=checkbutton_subtitle
-property name=label translatable=yesSubtitle/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=xalign0/property
-property name=draw_indicatorTrue/property
-  /object
-  packing
-property name=left_attach1/property
-property name=top_attach1/property
-  /packing
-/child
-child
-  object class=GtkCheckButton id=checkbutton_x_axis
-property name=label translatable=yesX-Axis/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=xalign0/property
-property name=draw_indicatorTrue/property
-  /object
-  packing
-property 

[Libreoffice-bugs] [Bug 92574] Empty cells totally broken when pasting link

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #6 from Beluga todven...@suomi24.fi ---
Confirmed with test file.

Win 7 Pro 64-bit, Version: 4.4.4.3
Build ID: 2c39ebcf046445232b798108aa8a7e7d89552ea8
Locale: fi_FI

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


[Libreoffice-commits] core.git: chart2/source chart2/uiconfig

2015-07-29 Thread Katarina Behrens
 chart2/source/controller/sidebar/ChartSeriesPanel.cxx |   10 
 chart2/source/controller/sidebar/ChartSeriesPanel.hxx |3 
 chart2/uiconfig/ui/sidebarseries.ui   |  408 --
 3 files changed, 290 insertions(+), 131 deletions(-)

New commits:
commit 2d4223e32628d12b9b256b532819e6cced79178e
Author: Katarina Behrens katarina.behr...@cib.de
Date:   Tue Jul 28 17:34:20 2015 +0200

Some (mostly HIG) tweaks to chart data series panel

Additional tweak: use 'Data series %1' as frame label, substitute
%1 by real series name

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

diff --git a/chart2/source/controller/sidebar/ChartSeriesPanel.cxx 
b/chart2/source/controller/sidebar/ChartSeriesPanel.cxx
index 644766d..85336ff 100644
--- a/chart2/source/controller/sidebar/ChartSeriesPanel.cxx
+++ b/chart2/source/controller/sidebar/ChartSeriesPanel.cxx
@@ -302,9 +302,11 @@ ChartSeriesPanel::ChartSeriesPanel(
 get(mpRBPrimaryAxis, radiobutton_primary_axis);
 get(mpRBSecondaryAxis, radiobutton_secondary_axis);
 
+get(mpBoxLabelPlacement, datalabel_box);
 get(mpLBLabelPlacement, comboboxtext_label);
 
 get(mpFTSeriesName, label_series_name);
+get(mpFTSeriesTemplate, label_series_tmpl);
 
 Initialize();
 }
@@ -330,9 +332,11 @@ void ChartSeriesPanel::dispose()
 mpRBPrimaryAxis.clear();
 mpRBSecondaryAxis.clear();
 
+mpBoxLabelPlacement.clear();
 mpLBLabelPlacement.clear();
 
 mpFTSeriesName.clear();
+mpFTSeriesTemplate.clear();
 
 PanelLayout::dispose();
 }
@@ -374,10 +378,12 @@ void ChartSeriesPanel::updateData()
 mpRBPrimaryAxis-Check(bPrimaryAxis);
 mpRBSecondaryAxis-Check(!bPrimaryAxis);
 
-mpLBLabelPlacement-Enable(bLabelVisible);
+mpBoxLabelPlacement-Enable(bLabelVisible);
 mpLBLabelPlacement-SelectEntryPos(getDataLabelPlacement(mxModel, aCID));
 
-mpFTSeriesName-SetText(getSeriesLabel(mxModel, aCID));
+OUString aFrameLabel = mpFTSeriesTemplate-GetText();
+aFrameLabel = aFrameLabel.replaceFirst(%1, getSeriesLabel(mxModel, 
aCID));
+mpFTSeriesName-SetText(aFrameLabel);
 }
 
 VclPtrvcl::Window ChartSeriesPanel::Create (
diff --git a/chart2/source/controller/sidebar/ChartSeriesPanel.hxx 
b/chart2/source/controller/sidebar/ChartSeriesPanel.hxx
index 156bbc7..d125c2f 100644
--- a/chart2/source/controller/sidebar/ChartSeriesPanel.hxx
+++ b/chart2/source/controller/sidebar/ChartSeriesPanel.hxx
@@ -23,6 +23,7 @@
 #include sfx2/sidebar/IContextChangeReceiver.hxx
 #include sfx2/sidebar/SidebarModelUpdate.hxx
 #include svx/sidebar/PanelLayout.hxx
+#include vcl/layout.hxx
 
 #include ChartSidebarModifyListener.hxx
 #include ChartSidebarSelectionListener.hxx
@@ -91,9 +92,11 @@ private:
 VclPtrRadioButton mpRBPrimaryAxis;
 VclPtrRadioButton mpRBSecondaryAxis;
 
+VclPtrVclHBox mpBoxLabelPlacement;
 VclPtrListBox mpLBLabelPlacement;
 
 VclPtrFixedText mpFTSeriesName;
+VclPtrFixedText mpFTSeriesTemplate;
 
 css::uno::Referencecss::frame::XFrame mxFrame;
 
diff --git a/chart2/uiconfig/ui/sidebarseries.ui 
b/chart2/uiconfig/ui/sidebarseries.ui
index 88180b5..bdaca87 100644
--- a/chart2/uiconfig/ui/sidebarseries.ui
+++ b/chart2/uiconfig/ui/sidebarseries.ui
@@ -5,147 +5,297 @@
   object class=GtkGrid id=ChartSeriesPanel
 property name=visibleTrue/property
 property name=can_focusFalse/property
+property name=border_width6/property
 child
-  object class=GtkGrid id=grid2
+  object class=GtkBox id=box1
 property name=visibleTrue/property
 property name=can_focusFalse/property
+property name=orientationvertical/property
+property name=spacing6/property
 child
-  object class=GtkLabel id=label_series_name
-property name=visibleTrue/property
-property name=can_focusFalse/property
-property name=label translatable=yeslabel/property
-  /object
-  packing
-property name=left_attach0/property
-property name=top_attach0/property
-  /packing
-/child
-child
-  object class=GtkCheckButton id=checkbutton_label
-property name=label translatable=yesShow data 
label/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=xalign0/property
-property name=draw_indicatorTrue/property
-  /object
-  packing
-property name=left_attach0/property
-property name=top_attach1/property
-  /packing
-/child
-child
-  object class=GtkCheckButton id=checkbutton_trendline
-property name=label translatable=yesTrendline/property
-

[Libreoffice-bugs] [Bug 92643] FILEOPEN save PNG with embedded animated GIF to just animated GIF (from PPT to ODP)

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
Summary|FILEOPEN save PNG with  |FILEOPEN save PNG with
   |embedded animated GIF to|embedded animated GIF to
   |just animated GIF   |just animated GIF (from PPT
   ||to ODP)
 Ever confirmed|0   |1
   Severity|normal  |enhancement

--- Comment #7 from Beluga todven...@suomi24.fi ---
Right-click - Save image also gives PNG as the format.

Ok, I guess we can accept this change (when saving to ODP).

Win 7 Pro 64-bit, Version: 4.4.4.3
Build ID: 2c39ebcf046445232b798108aa8a7e7d89552ea8
Locale: fi_FI

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


[Libreoffice-bugs] [Bug 70287] Saving a document as certain file types does not populate Recently Used in KDE

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

   Priority|medium  |low
 Whiteboard||needsKDE
   Severity|normal  |minor

--- Comment #6 from Beluga todven...@suomi24.fi ---
Lowering priority and severity.

-- 
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-07-29 Thread matteocam
 svx/source/svdraw/svdotext.cxx |   28 +++-
 1 file changed, 3 insertions(+), 25 deletions(-)

New commits:
commit c835e327d9941cf65d82fbdf66c368a4e66016b4
Author: matteocam matteo.campane...@gmail.com
Date:   Wed Jul 29 17:38:09 2015 +0200

Remove old code

Change-Id: Ie226e450d3013c92e9a0236a1c3cfd214b6edab5

diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 66b8a7a..ca28046 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -1989,35 +1989,13 @@ bool SdrTextObj::IsChainable() const
 // Read it as item
 const SfxItemSet rSet = GetObjectItemSet();
 OUString aNextName = static_castconst 
SfxStringItem(rSet.Get(SDRATTR_TEXT_CHAINNEXTNAME)).GetValue();
-return aNextName != ;
-
-// XXX
-if (!GetName().startsWith(Chainable)) {
-//fprintf(stderr, [CHAINABLE?] %p is _not_ chainable\n, this);
-return false;
-}
+return aNextName != ; // XXX: Should we also check for 
GetNilChainingEvent? (see old code below)
 
+/*
 // Check that no overflow is going on
 if (!GetTextChain() || GetTextChain()-GetNilChainingEvent(this))
 return false;
-
- // XXX: Hack to have links together
-static bool bHasDoneTheLinking = false;
-
-SdrTextObj *pTxtObj0 =  dynamic_cast SdrTextObj * ( pPage-GetObj( 0 ) );
-
-if (!bHasDoneTheLinking  pPage  pPage-GetObjCount()  1  this == 
pTxtObj0)
-{
-SdrTextObj *pTxtObj1 =  dynamic_cast SdrTextObj * ( pPage-GetObj( 1 
) );
-const_castSdrTextObj *(this)-SetNextLinkInChain(pTxtObj1);
-
-bHasDoneTheLinking = true;
-}
-// end hack
-
-
-return true;
-
+*/
 }
 
 void SdrTextObj::onChainingEvent()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 93001] Libreoffice can't show diagram in xlsx file

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

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Attachment #117516|0   |1
is obsolete||
 Attachment #117516|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.spreadsh
   ||eetml.sheet

-- 
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 92995] EDITING Copy-paste causes crash

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

raal r...@post.cz changed:

   What|Removed |Added

   Priority|medium  |high
 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1
 OS|Windows (All)   |All
   Severity|normal  |critical

--- Comment #4 from raal r...@post.cz ---
I can confirm crash with Verze: 5.0.0.4 (x64)
ID sestavení: cf112dc905650fb985306a7a03d2fe3fcc6c978f
and Version: 5.1.0.0.alpha1+
Build ID: 74d4168f8830f7bbec6b784c3fb774296d9adafa
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-07-22_06:14:00

-- 
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 89720] Highlighted comment text with replies have dark color

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

Miklos Vajna vmik...@collabora.co.uk changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |desktop.org |

--- Comment #4 from Miklos Vajna vmik...@collabora.co.uk ---
In 4.2 only the color of the original note determined the overlay color, while
now all do this, so need to disable the range overlay for reply post-its.
I'll take care of this.

-- 
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 92964] experimental feature code completion does not work with deep structure

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

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal r...@post.cz ---
Cannot reproduce with Version: 5.1.0.0.alpha1+
Build ID: 74d4168f8830f7bbec6b784c3fb774296d9adafa
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-07-22_06:14:00

-- 
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 92681] Menu list doesn't always close

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #4 from Beluga todven...@suomi24.fi ---
Not reproduced.
Ubuntu with Unity?

Ubuntu 15.04 64-bit 
Version: 4.4.4.3
Build ID: 40m0(Build:3)
Locale: en_US.UTF-8

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


[Libreoffice-bugs] [Bug 93002] New: Comments Content Disappears

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

Bug ID: 93002
   Summary: Comments Content Disappears
   Product: LibreOffice
   Version: 4.2.8.2 release
  Hardware: x86 (IA32)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ravensoun...@hotmail.com

Text in Comments boxes will disappear, leaving the comment box still present,
but empty. 

Not all comments will be affected. 

Empty comment boxes will change colour (blue instead of yellow) and will state:
No Author, no date. 

As I use LibreOffice to write novels, this happens in large documents (100,000+
words) with many comments.

-- 
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 93005] New: Chart / Unable to save as .odc file

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

Bug ID: 93005
   Summary: Chart / Unable to save as .odc file
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@post.cz

Created attachment 117518
  -- https://bugs.documentfoundation.org/attachment.cgi?id=117518action=edit
test file

steps:
 - open empty impress and insert chart (or open attachment)
 - double click on chart to edit
 - menu File- Save as
 - save  .odc file

Error message Error saving the document broken-charts-forbug:
Wrong parameter.
The operation was started under an invalid parameter.

Version: 5.1.0.0.alpha1+
Build ID: 74d4168f8830f7bbec6b784c3fb774296d9adafa
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-07-22_06:14:00

-- 
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 92723] Font replacements not activatable in master

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
 Whiteboard||bibisectRequest
 OS|Linux (All) |All
   Severity|normal  |minor

--- Comment #1 from Beluga todven...@suomi24.fi ---
Reproduced. Unable to check checkboxes.

Win 7 Pro 64-bit Version: 5.1.0.0.alpha1+ (x64)
Build ID: e92a8b92072284fd7c37d7bb3e1e8fe72a185f35
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-07-22_21:46:26
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 92674] Cannot remove one page break after Contents Heading

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #8 from Beluga todven...@suomi24.fi ---
After removing the page break between pages 5  6 (the TOCs), I updated both
TOCs. The page break did not return.

To remove it: hover your mouse over the center of the page break and a dropdown
menu will appear, where you can choose to remove it.

Win 7 Pro 64-bit, Version: 4.4.4.3
Build ID: 2c39ebcf046445232b798108aa8a7e7d89552ea8
Locale: fi_FI

Ubuntu 15.04 64-bit 
Version: 4.4.4.3
Build ID: 40m0(Build:3)
Locale: en_US.UTF-8

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


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

2015-07-29 Thread matteocam
 svx/source/svdraw/svdedxv.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit ba90284faa3fe85ad061ff72a9f9cca54ff8fb2d
Author: matteocam matteo.campane...@gmail.com
Date:   Wed Jul 29 19:12:07 2015 +0200

Check for links instead of chainabity when handling key input

Change-Id: Id8a7892ab5465b85a79a4347a6653de8c975416c

diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx
index 9324ffd..02f7df0 100644
--- a/svx/source/svdraw/svdedxv.cxx
+++ b/svx/source/svdraw/svdedxv.cxx
@@ -543,6 +543,7 @@ void 
SdrObjEditView::ImpMoveCursorAfterChainingEvent(TextChainCursorManager *pCu
 
 SdrTextObj* pTextObj = dynamic_castSdrTextObj*(mxTextEditObj.get());
 
+// Check if it has links to move it to
 if (!pTextObj-IsChainable())
 return;
 
@@ -1288,7 +1289,7 @@ TextChainCursorManager 
*SdrObjEditView::ImpHandleMotionThroughBoxesKeyInput(
 else
 return NULL;
 
-if (!pTextObj-IsChainable())
+if (!pTextObj-GetNextLinkInChain()  !pTextObj-GetPrevLinkInChain())
 return NULL;
 
 TextChainCursorManager *pCursorManager = new TextChainCursorManager(this, 
pTextObj);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92730] Calc help offline STILE

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
Summary|Calc help online SILE   |Calc help offline STILE

-- 
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 92710] Right-to-Left direction for Arabic is not working

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

Yousuf (Jay) Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #5 from Yousuf (Jay) Philips philip...@hotmail.com ---
Works fine for me on Windows.

Version: 5.0.0.4
Build ID: cf112dc905650fb985306a7a03d2fe3fcc6c978f
Locale: en-US (en_US)

Mohammed can you do a screencast to demonstrate the problem. Some free
screencast apps for mac are screencast-o-matic.com, jing, or screenr.com. Can
you also copy and paste the build information found in the Help  About
LibreOffice dialog box into your next comment.

-- 
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 92738] Sub-styles from custom styles in sidebar autocollapse in 5 RC3

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Beluga todven...@suomi24.fi ---
Could not reproduce.

Does this still occur in 5.0 RC4?

Win 7 Pro 64-bit Version: 5.1.0.0.alpha1+ (x64)
Build ID: e92a8b92072284fd7c37d7bb3e1e8fe72a185f35
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-07-22_21:46:26
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 92898] LibreOffice Vanilla 100% CPU and have to Force Quit after installing OSX 10.11 Public Beta 2

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

--- Comment #13 from Michael Cook mco...@mymts.net ---
Installed Apple OS X 10.11 Public Beta 3 and I get similar results. 99% CPU
time for LibreOffice Vanilla (LOV) 4.4.4006 opening a known good .ods file. 

This time:

-- On opening the file from Finder I get overwriting of the green startup
screen
and then the 99% CPU and I Force Quit.
-- On a second try the file opens normally then LOV freezes when I change 1
cell and click on Save (and I Force Quit).

Unable to report this to Apple as the Feedback application will not let me in.

-- 
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 93009] New: PRINTING Comments on the side of document does not print document

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

Bug ID: 93009
   Summary: PRINTING Comments on the side of document does not
print document
   Product: LibreOffice
   Version: 5.0.0.4 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: obsazeny...@volny.cz

Created attachment 117522
  -- https://bugs.documentfoundation.org/attachment.cgi?id=117522action=edit
sample document with comment

When document with revisions and comments is printed, I usually set to print
comments on the right side of document in printer window. Revisions are printed
fine, but comments are not printed. Only the line connecting comment bubble to
the place in text shows up. EOP and EOD options work fine.

-- 
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 92580] Crash: when creating a table via wizard, go back then forth in a step

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #10 from Beluga todven...@suomi24.fi ---
Windows: No crash on table creation, no crash on saving.
Linux: crash on DB creation (Finish). Maybe I should update..

Win 7 Pro 64-bit Version: 5.1.0.0.alpha1+ (x64)
Build ID: e92a8b92072284fd7c37d7bb3e1e8fe72a185f35
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-07-22_21:46:26
Locale: fi-FI (fi_FI)

Ubuntu 15.04 64-bit 
Version: 5.1.0.0.alpha1+
Build ID: 0bd582834b46dbbc5037310d45bac8885e6f2a07
TinderBox: Linux-rpm_deb-x86_64@46-TDF-dbg, Branch:master, Time:
2015-07-14_01:14:35
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 92924] Export to PDF loses transparency

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

--- Comment #11 from Jean-Baptiste Faure jbfa...@libreoffice.org ---
(In reply to Gianpaolo from comment #9)
 Created attachment 117442 [details]
 Stamps example

Really ?

-- 
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 93012] New: Consider adding to FREQUENCY() output the columns for cumulative frequency, relative frequency (%) and cum. rel. freq. (%).

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

Bug ID: 93012
   Summary: Consider adding to FREQUENCY() output the columns for
cumulative frequency, relative frequency (%) and cum.
rel. freq. (%).
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jcrma...@gmail.com

Consider adding to FREQUENCY() output the columns for cumulative frequency,
relative frequency (%) and cum. rel. freq. (%).

-- 
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 93013] New: New function to auto create bins for freq table/histogram using Freedman-Diaconis algo

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

Bug ID: 93013
   Summary: New function to auto create bins for freq
table/histogram using Freedman-Diaconis algo
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jcrma...@gmail.com

New function to auto create bins for freq table/histogram using
Freedman-Diaconis algo

2*IQR*Count^(-1/3)

https://en.wikipedia.org/wiki/Freedman%E2%80%93Diaconis_rule

-- 
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 92793] UI: Cursor disappears when editing a cell using formula bar

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

--- Comment #2 from Heiko Tietze heiko.tie...@user-prompt.com ---
On the first glance it's true: the frame indicator should remain there. But
when you go into edit mode the frame disappears as well in favor of the cursor,
which is a good decision here. So I'm not sure if the current behavior needs to
be changed.

-- 
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: [Text Chains in Draw] A few question on general handling of chains of text boxes

2015-07-29 Thread Thorsten Behrens
Matteo Campanelli wrote:
 This part has been completed; also we can chain-links are set directly
 after loading from file now.

Nice!

 Thorsten, everything that worked already is working after setting
 the UNO property but the solution is a bit dirty. Please see my last
 chat message today.
 
To paste my answer (after spell-checking by mst):

Look at include/svl/lstner.hxx for the listener interface, and
SdrPaintView::Notify(), SdrPaintView::SetDefaultStyleSheet() for how
to set yourself up for notifications and react on them.

HTH,

-- Thorsten


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


Re: [GSoC15] Chained Text Boxes - Report Week 9

2015-07-29 Thread Thorsten Behrens
Matteo Campanelli wrote:
 I'm sorry for the basic question but the next step for this is basically
 pulling master+rebasing+pushing to master?
 
Yep, except for the pushing part - we really want to run this past
gerrit CI first. ;)

Cheers,

-- Thorsten


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


[Libreoffice-bugs] [Bug 93008] Graphics Cache: Use for LibreOffice 2047: 'Memory per object' broken

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

Jean-Baptiste Faure jbfa...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure jbfa...@libreoffice.org ---
Please, could you be more explicit in what you find wrong in the current
behavior of this dialog.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 93002] Comments Content Disappears

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

Jean-Baptiste Faure jbfa...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure jbfa...@libreoffice.org ---
LibreOffice 4.2 has reached its End Of Life and is not supported anymore.
Please upgrade to one of the current stable versions (4.4.4 or 4.3.7) and try
again.

If you still encounter the same problem with an up to date version, please
attach a test document and describe step by step how to reproduce the problem.

Best regards. JBF

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


[Libreoffice-ux-advise] [Bug 93007] Splash screen text needs to be moved upwards

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

--- Comment #2 from Heiko Tietze heiko.tie...@user-prompt.com ---
Created attachment 117523
  -- https://bugs.documentfoundation.org/attachment.cgi?id=117523action=edit
Splash screen Linux/KDE

Cannot confirm the text position issue under Linux/KDE - because there is no
text at all ;-). But I'm sure that there is no progress bar.

Version: 5.1.0.0.alpha1+
Build ID: 74d4168f8830f7bbec6b784c3fb774296d9adafa
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-07-22_06:14:00
Locale: de-DE (de_DE.UTF-8)

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


[Libreoffice-bugs] [Bug 93007] Splash screen text needs to be moved upwards

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

--- Comment #2 from Heiko Tietze heiko.tie...@user-prompt.com ---
Created attachment 117523
  -- https://bugs.documentfoundation.org/attachment.cgi?id=117523action=edit
Splash screen Linux/KDE

Cannot confirm the text position issue under Linux/KDE - because there is no
text at all ;-). But I'm sure that there is no progress bar.

Version: 5.1.0.0.alpha1+
Build ID: 74d4168f8830f7bbec6b784c3fb774296d9adafa
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-07-22_06:14:00
Locale: de-DE (de_DE.UTF-8)

-- 
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 92734] LibO 5: missing screen refresh with OpenGL rendering

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

--- Comment #3 from sergio.calleg...@gmail.com ---
Linux version 3.19.0-25-generic (buildd@lgw01-07) (gcc version 4.9.2 (Ubuntu
4.9.2-10ubuntu13) )

In fact, the ubuntu vivid standard kernel

Intel Gen8 Graphics
VGA compatible controller: Intel Corporation Crystal Well Integrated Graphics
Controller (rev 08)

Mesa 10.5.2
In fact the ubuntu vivid standard graphics stack

Working without OpenGL rendering everywhere seems to workaround the issue
without any apparent problem.

Will check with newer LibO as soon as possible.

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


[Libreoffice-ux-advise] [Bug 79455] FORMATTING: Ctrl+M does not clear language settings

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

--- Comment #9 from Niklas Johansson sleeping.pil...@gmail.com ---
(In reply to Heiko Tietze from comment #8)
...
 Another con argument: if language was part of the paragraph or character
 style it makes sense to handle it as any other property. But it isn't.

Well language setting can be set in paragraph styles as well as character
styles. You find the setting on the tab Font if you modify a paragraph or
character style. 

So to me it makes perfect sense to reset the language to whatever is set in the
style in use, in other words if the language has been applied as with the means
of direct formatting it should be cleared by pressing Ctrl+M.

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


[Libreoffice-bugs] [Bug 92926] LO50RC4: The text of running operations on LO startup is cut off with new slim splash screen design

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

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

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #3 from Adolfo Jayme f...@libreoffice.org ---
*** Bug 93007 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 92989] LibO no longer supports Arabic or Farsi

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

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

--- Comment #2 from V Stuart Foote vstuart.fo...@utsa.edu ---


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

-- 
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 92710] Right-to-Left direction for Arabic is not working

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

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

   What|Removed |Added

   Priority|medium  |highest
 CC||vstuart.fo...@utsa.edu

-- 
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 79455] FORMATTING: Ctrl+M does not clear language settings

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

--- Comment #10 from Heiko Tietze heiko.tie...@user-prompt.com ---
(In reply to Niklas Johansson from comment #9)
 You find the setting on the tab Font if you modify a paragraph or
 character style. 

Touché! So for sake of consistency it makes sense to clear the direct language
setting.

-- 
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 93016] Add Auto Correlation Function (ACF)

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

--- Comment #1 from jcrma...@gmail.com ---
Forgot to include an example of the corresponding chart
https://www.google.pt/url?sa=irct=jq=esrc=ssource=imagescd=cad=rjauact=8ved=0CAcQjRxqFQoTCPqKx_iugccCFclZFAod53YAGQurl=http%3A%2F%2Fpeople.duke.edu%2F~rnau%2F411arim3.htmei=qVC5VbqSLMmzUeftgcgBbvm=bv.99028883,d.d24psig=AFQjCNGJHypBYc-KBqDNg8v-RBjBd6NH9wust=1438294527552497

-- 
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 92996] Function Wizard Structure view empty if invoked on existing formula cell

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

m.a.riosv miguelange...@libreoffice.org changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv miguelange...@libreoffice.org ---
Hi @Eike,

I can't reproduce.
Win7x64Ultimate
Version: 5.1.0.0.alpha1+ (x64) Build ID:
e92a8b92072284fd7c37d7bb3e1e8fe72a185f35
TinderBox: Win-x86_64@62-TDF, Branch:MASTER, Time: 2015-07-22_21:46:26

-- 
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 76239] OpenSymbol font is not retained after an upgrade (work around in comment 16, 32, .. install log in comment 50 )

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

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

   What|Removed |Added

Summary|OpenSymbol font is not  |OpenSymbol font is not
   |retained after an upgrade   |retained after an upgrade
   ||(work around in comment 16,
   ||32, .. install log in
   ||comment 50 )

-- 
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 93000] Fields error

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

Jean-Baptiste Faure jbfa...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jbfa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure jbfa...@libreoffice.org ---
Please attach a test document and describe step by step how to reproduce the
problem.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 79455] FORMATTING: Ctrl+M does not clear language settings

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

--- Comment #9 from Niklas Johansson sleeping.pil...@gmail.com ---
(In reply to Heiko Tietze from comment #8)
...
 Another con argument: if language was part of the paragraph or character
 style it makes sense to handle it as any other property. But it isn't.

Well language setting can be set in paragraph styles as well as character
styles. You find the setting on the tab Font if you modify a paragraph or
character style. 

So to me it makes perfect sense to reset the language to whatever is set in the
style in use, in other words if the language has been applied as with the means
of direct formatting it should be cleared by pressing Ctrl+M.

-- 
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] Recruiting Tactics

2015-07-29 Thread Cor Nouws
Hi Joel,

Joel Madero wrote on 29-07-15 19:36:
 ...
 
 Other ideas appreciated.

Thanks for bringing this forward and your efforts on the topic!
Additionally to the ideas you mentioned, it might work out fine (in a
part of the cases) when people that are relatively new in BugZilla, and
report an issue, are appreciated for their work and ideas, also if it
may not be perfect. I would expect that friendly guidance of people that
show up themselves, is a key factor in success of development to attract
contributors too. People of course always contribute as they like and by
the possibilities wrt time. The second thing is one we cannot influence.
The first is.

Ciao,
Cor


-- 
Cor Nouws
GPD key ID: 0xB13480A6 - 591A 30A7 36A0 CE3C 3D28  A038 E49D 7365 B134 80A6
- vrijwilliger http://nl.libreoffice.org
- volunteer http://www.libreoffice.org
- The Document Foundation Membership Committee Member
___
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-ux-advise] [Bug 93007] Splash screen text needs to be moved upwards

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
 Resolution|--- |DUPLICATE

--- Comment #3 from Adolfo Jayme f...@libreoffice.org ---
Please use Bugzilla’s many search fields.

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

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


[Libreoffice-bugs] [Bug 92710] Right-to-Left direction for Arabic is not working

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

--- Comment #6 from V Stuart Foote vstuart.fo...@utsa.edu ---
*** Bug 92989 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 93009] PRINTING Comments on the side of document do not print

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

mi...@filmsi.net changed:

   What|Removed |Added

 OS|Windows (All)   |All

-- 
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 93009] PRINTING Comments on the side of document do not print

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

mi...@filmsi.net changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from mi...@filmsi.net ---
I can confirm that on OSX LO50RC4.

Printing to PDF from Print window after enabling printing of comments in the
right border creates a PDF without a comment, just with the line pointing to
the comment.

However if same document gets exported as PDF and comments are enabled for
export, the finished PDF includes the comment.

This should be quite a serious error, I guess, for a 5.0 release.

-- 
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 93014] New: Add IQR to Descriptive Statistics

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

Bug ID: 93014
   Summary: Add IQR to Descriptive Statistics
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jcrma...@gmail.com

Add IQR in Descriptive Stats

-- 
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 93015] New: Divide Descriptive Stats into Descriptive Stats\Population and Descriptive Stats\Sample

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

Bug ID: 93015
   Summary: Divide Descriptive Stats into Descriptive
Stats\Population and Descriptive Stats\Sample
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jcrma...@gmail.com

Divide Descriptive Stats into Descriptive Stats\Population and Descriptive
Stats\Sample

-- 
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: 3 commits - solenv/gdb sw/inc sw/source

2015-07-29 Thread Michael Stahl
 solenv/gdb/boost/ptr_container.py   |8 
 solenv/gdb/boost/unordered.py   |4 ++--
 sw/inc/poolfmt.hxx  |5 +
 sw/source/core/doc/DocumentStylePoolManager.cxx |8 
 sw/source/core/undo/unattr.cxx  |5 -
 5 files changed, 19 insertions(+), 11 deletions(-)

New commits:
commit 37e936996acb4a8329fad2ec73a35f66be446e90
Author: Michael Stahl mst...@redhat.com
Date:   Wed Jul 29 23:59:43 2015 +0200

tdf#83223: sw: fix Undo of format change of conditional para style

SwUndoFormatAttr was simply missing a case for RES_CONDTXTFMTCOLL.
Handle it the same way as an oridnary paragraph style, which seems to
work for me.

Change-Id: Ib529beb1116633e4890d5b51df39da21de485db9

diff --git a/sw/source/core/undo/unattr.cxx b/sw/source/core/undo/unattr.cxx
index 2ba9bb34..80d068c 100644
--- a/sw/source/core/undo/unattr.cxx
+++ b/sw/source/core/undo/unattr.cxx
@@ -204,6 +204,7 @@ bool SwUndoFormatAttr::IsFormatInDoc( SwDoc* pDoc )
 switch ( m_nFormatWhich )
 {
 case RES_TXTFMTCOLL:
+case RES_CONDTXTFMTCOLL:
 bFound = pDoc-GetTextFormatColls()-Contains( m_pFormat );
 break;
 
@@ -301,7 +302,9 @@ void SwUndoFormatAttr::RepeatImpl(::sw::RepeatContext  
rContext)
 }
 break;
 
-case RES_TXTFMTCOLL: {
+case RES_TXTFMTCOLL:
+case RES_CONDTXTFMTCOLL:
+{
 SwTextNode *const pNd =
 rContext.GetRepeatPaM().GetNode().GetTextNode();
 if( pNd ) {
commit fc805abce250f68e1d9848b1c127fa673f646715
Author: Michael Stahl mst...@redhat.com
Date:   Wed Jul 29 23:32:33 2015 +0200

sw: un-inline IsConditionalByPoolId

why rebuild half of sw to add a comment?

Change-Id: I72796a704aadc820004f519ed43cb54ba18f918a

diff --git a/sw/inc/poolfmt.hxx b/sw/inc/poolfmt.hxx
index b80e0ed..2bc91f4 100644
--- a/sw/inc/poolfmt.hxx
+++ b/sw/inc/poolfmt.hxx
@@ -401,10 +401,7 @@ sal_uInt16 GetPoolParent( sal_uInt16 nId );
 
 SvxFrameDirection GetDefaultFrameDirection(sal_uLong nLanguage);
 
-inline bool IsConditionalByPoolId(sal_uInt16 nId)
-{
-return RES_POOLCOLL_TEXT == nId;
-}
+bool IsConditionalByPoolId(sal_uInt16 nId);
 
 #endif
 
diff --git a/sw/source/core/doc/DocumentStylePoolManager.cxx 
b/sw/source/core/doc/DocumentStylePoolManager.cxx
index e8d4b64..d06574e 100644
--- a/sw/source/core/doc/DocumentStylePoolManager.cxx
+++ b/sw/source/core/doc/DocumentStylePoolManager.cxx
@@ -67,6 +67,14 @@
 using namespace ::editeng;
 using namespace ::com::sun::star;
 
+bool IsConditionalByPoolId(sal_uInt16 nId)
+{
+// TODO: why is this style conditional?
+// If it is changed to no longer be conditional, then a style Text Body
+// will be imported without its conditions from ODF.
+return RES_POOLCOLL_TEXT == nId;
+}
+
 namespace
 {
 static const sal_uInt16 PT_3   =  3 * 20;  //  3 pt
commit 396643d46a778539f2bde30569d35ec05d7d867b
Author: Michael Stahl mst...@redhat.com
Date:   Wed Jul 29 22:46:26 2015 +0200

gdb pretty printers for boost can't iterate with Python 3

Change-Id: Ie2d1cb7312de6f14a5c6de81eefd7a00be6f75c0

diff --git a/solenv/gdb/boost/ptr_container.py 
b/solenv/gdb/boost/ptr_container.py
index 38f3b2f..425d812 100644
--- a/solenv/gdb/boost/ptr_container.py
+++ b/solenv/gdb/boost/ptr_container.py
@@ -70,7 +70,7 @@ class PtrStdPrinterBase(object):
 return self
 
 def __next__(self):
-(index, value) = self.impl.next()
+(index, value) = six.advance_iterator(self.impl)
 return (index, value.cast(self.type).dereference())
 
 def _import_std(self):
@@ -137,7 +137,7 @@ class PtrMapPrinter(PtrStdPrinterBase):
 return self
 
 def __next__(self):
-(index, value) = self.impl.next()
+(index, value) = six.advance_iterator(self.impl)
 if self.key:
 value = value.cast(self.key_type)
 else:
@@ -190,7 +190,7 @@ class PtrUnorderedMapPrinter(PtrBoostPrinterBase):
 
 def __next__(self):
 if self.step:
-self.value = self.impl.next()
+self.value = six.advance_iterator(self.impl)
 value = self.value[0]
 else:
 value = self.value[1].cast(self.value_type).dereference()
@@ -216,7 +216,7 @@ class PtrUnorderedSetPrinter(PtrBoostPrinterBase):
 return self
 
 def __next__(self):
-return (, 
self.impl.next()[1].cast(self.value_type).dereference())
+return (, 
six.advance_iterator(self.impl)[1].cast(self.value_type).dereference())
 
 printer = None
 
diff --git a/solenv/gdb/boost/unordered.py b/solenv/gdb/boost/unordered.py
index c21d31a..2c56721 100644
--- a/solenv/gdb/boost/unordered.py
+++ b/solenv/gdb/boost/unordered.py
@@ -63,7 +63,7 @@ class UnorderedMapPrinter(PrinterBase):
 
 def 

[Libreoffice-bugs] [Bug 83223] Undo does not work when modifying a conditional style including Text Body

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

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||mst...@redhat.com
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |mst...@redhat.com
   |desktop.org |

--- Comment #4 from Michael Stahl mst...@redhat.com ---
it's just that the Undo class for this does not handle the ID of conditional
styles; no idea why that is; it seems to work if i just add it.

fixed on master

-- 
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 93017] New: Add Coefficient of Variation

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

Bug ID: 93017
   Summary: Add Coefficient of Variation
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jcrma...@gmail.com

Add Coefficient of Variation
CV = StdDev / Mean

https://en.wikipedia.org/wiki/Coefficient_of_variation

-- 
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 93005] Chart / Unable to save as .odc file

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

Jean-Baptiste Faure jbfa...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jbfa...@libreoffice.org
Version|5.1.0.0.alpha0+ Master  |5.0.0.4 rc
 Ever confirmed|0   |1

--- Comment #1 from Jean-Baptiste Faure jbfa...@libreoffice.org ---
Same problem with my own charts with LO 5.0.1.0+ build at home under Ubuntu
15.04 x86-64 with gcc 5.1.

Best regards. JBF

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


[Libreoffice-ux-advise] [Bug 92793] UI: Cursor disappears when editing a cell using formula bar

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

--- Comment #2 from Heiko Tietze heiko.tie...@user-prompt.com ---
On the first glance it's true: the frame indicator should remain there. But
when you go into edit mode the frame disappears as well in favor of the cursor,
which is a good decision here. So I'm not sure if the current behavior needs to
be changed.

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


[Libreoffice-bugs] [Bug 92989] LibO no longer supports Arabic or Farsi

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

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Maxim Monastirsky momonas...@gmail.com ---
What's the difference between this one and Bug 92710?

-- 
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 92990] BUG FILTER DUPLICATE

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

m.a.riosv miguelange...@libreoffice.org changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from m.a.riosv miguelange...@libreoffice.org ---
There is not a direct way, but can be done with a few steps.

- Select the column to delete duplicates.
- Do the filter as you have comment
- Select the whole table data.
- Copy.
- Click on the up-left corner to select all rows.
- Show all rows or deactivate the filter.
- Select all table data.
- On A1 paste.

Or maybe easy creating a help column like in this link:
http://ask.libreoffice.org/en/question/26865/how-to-remove-entire-row-based-on-duplicates-from-single-column-in-libre-calc/

In any there is another bug report asking for this enhancement.

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

-- 
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 85976] Feature Request - Add Remove Duplicates button to LibreOffice

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

m.a.riosv miguelange...@libreoffice.org changed:

   What|Removed |Added

 CC||erelyn.al...@prodepa.pa.gov
   ||.br

--- Comment #3 from m.a.riosv miguelange...@libreoffice.org ---
*** Bug 92990 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 93016] New: Add Auto Correlation Function (ACF)

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

Bug ID: 93016
   Summary: Add Auto Correlation Function (ACF)
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jcrma...@gmail.com

Add Auto Correlation Function (ACF)
https://en.wikipedia.org/wiki/Autocorrelation

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


[Libreoffice-ux-advise] [Bug 92821] Make Shift-F5 jump to the last four places where you edited something

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

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

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
  Component|Writer  |ux-advise

--- Comment #2 from V Stuart Foote vstuart.fo...@utsa.edu ---
I could see some utility to setting a customizable number of Edit Views and
cycling through them with Shift+F5.  But, this would have to be worked into
ODF so as to move with the .odt and allow alternate authors/editors (as opposed
to recording into user profile) which would be limited.

But, would need to decide which Edit View of the several would be the
opening/starting target.

Also have the other facet as in bug 82300 where the bIsOwnDocument (i.e. the
Tools - Options - User data is complete) and the Restore Edit View is
parsed on opening the document to position to where I left off.  

@Beluga -- the Shift+F5 Restore Edit View is not broken, bug 82300 is still
open for builds  4.4.3.2 only because the target calculated on opening, does
not exactly match the last Edit View recorded in the document. It is close
but not exact.

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


[Libreoffice-bugs] [Bug 92821] Make Shift-F5 jump to the last four places where you edited something

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

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

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||vstuart.fo...@utsa.edu
  Component|Writer  |ux-advise

--- Comment #2 from V Stuart Foote vstuart.fo...@utsa.edu ---
I could see some utility to setting a customizable number of Edit Views and
cycling through them with Shift+F5.  But, this would have to be worked into
ODF so as to move with the .odt and allow alternate authors/editors (as opposed
to recording into user profile) which would be limited.

But, would need to decide which Edit View of the several would be the
opening/starting target.

Also have the other facet as in bug 82300 where the bIsOwnDocument (i.e. the
Tools - Options - User data is complete) and the Restore Edit View is
parsed on opening the document to position to where I left off.  

@Beluga -- the Shift+F5 Restore Edit View is not broken, bug 82300 is still
open for builds  4.4.3.2 only because the target calculated on opening, does
not exactly match the last Edit View recorded in the document. It is close
but not exact.

-- 
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 68997] FILEOPEN: Import from Word2010 not correctly rendered

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

--- Comment #6 from Laurent BP jumbo4...@yahoo.fr ---
Bug is still present with Version: 5.1.0.0.alpha1+
Build ID: 8cfdd81b70ef37927b40497ffd10034f28335034
TinderBox: Win-x86@39, Branch:master, Time: 2015-07-24_02:47:18
Locale: fr-FR (fr_FR)
Same screenshot as attachment 85284

-- 
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 92804] Style information not updating

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

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 CC||momonas...@gmail.com
 Resolution|--- |NOTABUG

--- Comment #2 from Maxim Monastirsky momonas...@gmail.com ---
(In reply to Martin from comment #0)
 Moving the cursor through the document text does not correctly
 update the corresponding styles in the property pane. ie. font color is
 always default or as last modified. 
That's a feature. This button has two clickable areas, the main part of the
button, and the dropdown triangle. By clicking the main part you can easily
reapply the last used color to another text, so it must always show the last
used color. And as Beluga pointed out, you can see the current color if you
click on the dropdown triangle, it should be preselected in the palette.

-- 
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 79455] FORMATTING: Ctrl+M does not clear language settings

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

--- Comment #8 from Heiko Tietze heiko.tie...@user-prompt.com ---
I wouldn't do so. The use case is to format passages in a written document,
e.g. as some kind of a note or to show relevant parts to colleagues, and to
remove that formatting afterwards. Language isn't affected by those actions.
That means text written in English instead of the native language wouldn't
change it's origin in any condition.
Another con argument: if language was part of the paragraph or character style
it makes sense to handle it as any other property. But it isn't.

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


[Libreoffice-ux-advise] [Bug 79455] FORMATTING: Ctrl+M does not clear language settings

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

--- Comment #8 from Heiko Tietze heiko.tie...@user-prompt.com ---
I wouldn't do so. The use case is to format passages in a written document,
e.g. as some kind of a note or to show relevant parts to colleagues, and to
remove that formatting afterwards. Language isn't affected by those actions.
That means text written in English instead of the native language wouldn't
change it's origin in any condition.
Another con argument: if language was part of the paragraph or character style
it makes sense to handle it as any other property. But it isn't.

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


  1   2   3   4   >