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

2015-06-16 Thread Andrea Gelmini
 winaccessibility/source/UAccCOM/AccEditableText.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 888098ef0d26b80d36e464c14b2f6bb440d30f4e
Author: Andrea Gelmini andrea.gelm...@gelma.net
Date:   Mon Jun 15 12:18:28 2015 +0200

Remove reference to AccessibleTextImpl.java

The file:

infra\accessibility\bridge\org\openoffice\java\accessibility\AccessibleTextImpl.java
was deleted on commit 130833f80e89774269108cf30b2d1155a00354ce

Change-Id: I8cecee3f55fd472f0ff13a14ff9db9acc26cd6ac
Reviewed-on: https://gerrit.libreoffice.org/16296
Reviewed-by: Noel Grandin noelgran...@gmail.com
Tested-by: Noel Grandin noelgran...@gmail.com

diff --git a/winaccessibility/source/UAccCOM/AccEditableText.cxx 
b/winaccessibility/source/UAccCOM/AccEditableText.cxx
index f5d0d8e..e7e23aa 100644
--- a/winaccessibility/source/UAccCOM/AccEditableText.cxx
+++ b/winaccessibility/source/UAccCOM/AccEditableText.cxx
@@ -253,7 +253,6 @@ STDMETHODIMP CAccEditableText::setAttributes(long 
startOffset, long endOffset, B
 
 /**
  * Convert attributes string to Any type.
- * Reference to 
infra\accessibility\bridge\org\openoffice\java\accessibility\AccessibleTextImpl.java
  *
  * @param   ouName  the string of attribute name.
  * @param   ouValue the string of attribute value.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92116] PIVOTTABLE: Format of Date from registered database

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

Anthony ORGER anthony.or...@eree.fr changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 'libreoffice-4-4' - sc/source

2015-06-16 Thread Eike Rathke
 sc/source/core/data/document.cxx |   11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

New commits:
commit b121efd08e9cc396af25b79c2a4ee55507ff6ee0
Author: Eike Rathke er...@redhat.com
Date:   Mon Jun 15 23:45:28 2015 +0200

Resolves: tdf#91411 end listening only on selected sheets

... not in cell areas of all sheets.

(cherry picked from commit 80ec99db4325a439a8a3f1d420d0a80f8bf9c439)

Conflicts:
sc/source/core/data/document.cxx

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

diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 5889916..4a4f0004 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -1779,12 +1779,15 @@ void ScDocument::DeleteArea(
 std::vectorScAddress aGroupPos;
 sc::EndListeningContext aCxt(*this);
 ScRange aRange(nCol1, nRow1, 0, nCol2, nRow2, 0);
-for (size_t i = 0; i  maTabs.size(); ++i)
+for (SCTAB i = 0; i  static_castSCTAB(maTabs.size()); i++)
 {
-aRange.aStart.SetTab(i);
-aRange.aEnd.SetTab(i);
+if (rMark.GetTableSelect(i))
+{
+aRange.aStart.SetTab(i);
+aRange.aEnd.SetTab(i);
 
-EndListeningIntersectedGroups(aCxt, aRange, aGroupPos);
+EndListeningIntersectedGroups(aCxt, aRange, aGroupPos);
+}
 }
 aCxt.purgeEmptyBroadcasters();
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92116] PIVOTTABLE: Format of Date from registered database

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

Anthony ORGER anthony.or...@eree.fr changed:

   What|Removed |Added

 CC||anthony.or...@eree.fr
   Hardware|Other   |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-commits] core.git: sd/source

2015-06-16 Thread Miklos Vajna
 sd/source/ui/inc/ViewShell.hxx   |2 ++
 sd/source/ui/unoidl/unomodel.cxx |3 +++
 sd/source/ui/view/viewshel.cxx   |   13 +
 3 files changed, 18 insertions(+)

New commits:
commit 56f5a402287e735f5a9c1f84931dcbc9e7b579e7
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Tue Jun 16 15:55:38 2015 +0200

tdf#91887 handle LOK_MOUSEEVENT_MOUSEMOVE in SdXImpressDocument

Change-Id: If6948e523fd681dbe289909df68364806628ead6

diff --git a/sd/source/ui/inc/ViewShell.hxx b/sd/source/ui/inc/ViewShell.hxx
index 49417b6..97ed710 100644
--- a/sd/source/ui/inc/ViewShell.hxx
+++ b/sd/source/ui/inc/ViewShell.hxx
@@ -447,6 +447,8 @@ public:
 void LogicMouseButtonDown(const MouseEvent rMouseEvent);
 /// Same as MouseButtonUp(), but coordinates are in logic unit.
 void LogicMouseButtonUp(const MouseEvent rMouseEvent);
+/// Same as MouseMove(), but coordinates are in logic unit.
+void LogicMouseMove(const MouseEvent rMouseEvent);
 /// Allows adjusting the point or mark of the selection to a document 
coordinate.
 void SetCursorMm100Position(const Point rPosition, bool bPoint, bool 
bClearMark);
 /// Allows starting or ending a graphic move or resize action.
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx
index d64c2b6..1029f19 100644
--- a/sd/source/ui/unoidl/unomodel.cxx
+++ b/sd/source/ui/unoidl/unomodel.cxx
@@ -2411,6 +2411,9 @@ void SdXImpressDocument::postMouseEvent(int nType, int 
nX, int nY, int nCount)
 case LOK_MOUSEEVENT_MOUSEBUTTONUP:
 pViewShell-LogicMouseButtonUp(aEvent);
 break;
+case LOK_MOUSEEVENT_MOUSEMOVE:
+pViewShell-LogicMouseMove(aEvent);
+break;
 default:
 assert(false);
 break;
diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx
index 8e87137..d35cd02 100644
--- a/sd/source/ui/view/viewshel.cxx
+++ b/sd/source/ui/view/viewshel.cxx
@@ -523,6 +523,19 @@ void ViewShell::LogicMouseButtonUp(const MouseEvent 
rMouseEvent)
 mpActiveWindow-SetPointerPosPixel(aPoint);
 }
 
+void ViewShell::LogicMouseMove(const MouseEvent rMouseEvent)
+{
+// When we're not doing tiled rendering, then positions must be passed as 
pixels.
+assert(GetDoc()-isTiledRendering());
+
+Point aPoint = mpActiveWindow-GetPointerPosPixel();
+mpActiveWindow-SetLastMousePos(rMouseEvent.GetPosPixel());
+
+MouseMove(rMouseEvent, 0);
+
+mpActiveWindow-SetPointerPosPixel(aPoint);
+}
+
 void ViewShell::SetCursorMm100Position(const Point rPosition, bool bPoint, 
bool bClearMark)
 {
 if (SdrView* pSdrView = GetView())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

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

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=56f5a402287e735f5a9c1f84931dcbc9e7b579e7

tdf#91887 handle LOK_MOUSEEVENT_MOUSEMOVE in SdXImpressDocument

It will be available in 5.1.0.

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

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


[Libreoffice-bugs] [Bug 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

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

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

   What|Removed |Added

 Whiteboard|| target:5.1.0

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


[Libreoffice-bugs] [Bug 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 70465] [a11y] with Assistive Technology Tools enabled building Expert Config tool is slow and resource intensive

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

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

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: 2 commits - vcl/opengl

2015-06-16 Thread Tor Lillqvist
 vcl/opengl/win/WinDeviceInfo.cxx |   10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)

New commits:
commit 3a8aff659bbd32543f28f796f59b6225f1011876
Author: Tor Lillqvist t...@collabora.com
Date:   Tue Jun 16 17:14:42 2015 +0300

Drop duplicated statements

In the original Mozilla code the statements differed, as there were
separate ones for FEATURE_OPENGL_LAYERS and FEATURE_WEBGL_OPENGL.
These two uses have been combined here.

Change-Id: Idc2533f23d48761249a905b298b1ebbfde0e3a54

diff --git a/vcl/opengl/win/WinDeviceInfo.cxx b/vcl/opengl/win/WinDeviceInfo.cxx
index 33360c4..9103324 100644
--- a/vcl/opengl/win/WinDeviceInfo.cxx
+++ b/vcl/opengl/win/WinDeviceInfo.cxx
@@ -1121,12 +1121,6 @@ void WinOpenGLDeviceInfo::FillBlacklist()
 GetDeviceVendor(wgl::VendorATI), wgl::DriverInfo::allDevices,
 wgl::DRIVER_LESS_THAN, wgl::DriverInfo::allDriverVersions );
 APPEND_TO_DRIVER_BLOCKLIST2( wgl::DRIVER_OS_ALL,
-GetDeviceVendor(wgl::VendorATI), wgl::DriverInfo::allDevices,
-wgl::DRIVER_LESS_THAN, wgl::DriverInfo::allDriverVersions );
-APPEND_TO_DRIVER_BLOCKLIST2( wgl::DRIVER_OS_ALL,
-GetDeviceVendor(wgl::VendorAMD), wgl::DriverInfo::allDevices,
-wgl::DRIVER_LESS_THAN, wgl::DriverInfo::allDriverVersions );
-APPEND_TO_DRIVER_BLOCKLIST2( wgl::DRIVER_OS_ALL,
 GetDeviceVendor(wgl::VendorAMD), wgl::DriverInfo::allDevices,
 wgl::DRIVER_LESS_THAN, wgl::DriverInfo::allDriverVersions );
 
@@ -1175,9 +1169,6 @@ void WinOpenGLDeviceInfo::FillBlacklist()
 APPEND_TO_DRIVER_BLOCKLIST2( wgl::DRIVER_OS_ALL,
 GetDeviceVendor(wgl::VendorIntel), wgl::DriverInfo::allDevices,
 wgl::DRIVER_LESS_THAN, wgl::DriverInfo::allDriverVersions );
-APPEND_TO_DRIVER_BLOCKLIST2( wgl::DRIVER_OS_ALL,
-GetDeviceVendor(wgl::VendorIntel), wgl::DriverInfo::allDevices,
-wgl::DRIVER_LESS_THAN, wgl::DriverInfo::allDriverVersions );
 
 /**
  * Disable acceleration on Intel HD 3000 for graphics drivers = 
8.15.10.2321.
commit b2cd406dce247786f4b7a5a2ccec0bd4c6fdf3cc
Author: Tor Lillqvist t...@collabora.com
Date:   Tue Jun 16 17:10:48 2015 +0300

Log blacklisting more visibly

Change-Id: I7c661181ed7904650eff103d097ab357d3b8dfea

diff --git a/vcl/opengl/win/WinDeviceInfo.cxx b/vcl/opengl/win/WinDeviceInfo.cxx
index abc367a..33360c4 100644
--- a/vcl/opengl/win/WinDeviceInfo.cxx
+++ b/vcl/opengl/win/WinDeviceInfo.cxx
@@ -722,6 +722,7 @@ bool WinOpenGLDeviceInfo::FindBlocklistedDeviceInList()
 }
 }
 
+SAL_INFO(vcl.opengl, (match ? BLACKLISTED : not blacklisted));
 return match;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 87651] SIDEBAR: Addition of bullet commands in Impress

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

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

   What|Removed |Added

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

-- 
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: Changes to 'private/vmiklos/mm-embedding-5.0'

2015-06-16 Thread Miklos Vajna
New branch 'private/vmiklos/mm-embedding-5.0' available with the following 
commits:
commit 3602509319615e311a8b3f05474847faadda3df1
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Thu Jun 11 12:43:17 2015 +0200

SwDocShell: re-store embedded data source def only when location changes

(cherry picked from commit ddaca012d2715e5270dfeef43452e07aa7a9508c)

Change-Id: Ic667491026e9e88a72253aa079c77b8079cac588

commit a726d5b29cd9ba2e0549004137117ce495f293b3
Author: Stephan Bergmann sberg...@redhat.com
Date:   Thu Jun 11 09:53:03 2015 +0200

So assume SwUiWriterTest::testEmbeddedDataSource works on MACOSX now too

...similar to 6cca91f7ada91701443225061a5dd0ae81a98b8e 
CppunitTest_sw_uiwriter:
enable on Windows, whatever the original problem was in
601ba26cb5737970e7e9a173515bb21ebde55db9 Fix the Windows and OS X build
temporarily.

Change-Id: Ia1befff90d773637e01e6d88e398ae21a1d47108
(cherry picked from commit 808d40139283e6dbc2248efaf661502f6e22f0ac)

commit e122d2abefa01d7f2dac0eab95ef86dec7ad70df
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Thu Jun 11 09:42:29 2015 +0200

SwDBManager: avoid registering two data sources when creating an emebedded 
one

SwDBManager::LoadAndRegisterDataSource() calls
SwXDocumentSettings::setPropertyValue() to set its EmbeddedDatabaseName
UNO property, when creating the embedded data source definition. OTOH,
during load, SwXDocumentSettings calls
SwDBManager::LoadAndRegisterEmbeddedDataSource() to register the data
source. The result is that when creating the embedded definition using
the MM wizard, we registered two data sources.

Fix the problem by first setting the UNO property, and only then storing
the data source definition.

Change-Id: I3efc141d9ab94828007a48a8bf5949b4f3b6510a
(cherry picked from commit 12783429cfa5984adf02efdfcbe6e1653d58365f)

commit ea3b0fb06b162d719eadffcade1b881d8ce3dd64
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jun 10 19:04:04 2015 +0200

sw: remove embedded data source on location deregistration

Change-Id: I5b2a24fee50a25a41ba26787f7e30409348d7808
(cherry picked from commit b8b4ac9e6e8f03fb84bddb714d3c5908a45153b1)

commit b716f0d676990f24acc3e058b41b908ac16c2a6d
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jun 10 18:49:56 2015 +0200

CppunitTest_sw_uiwriter: enable on Windows

I hope that the underlying problem is fixed now by commit
670100fcfbb39d3dbe4afdb27fbced26d7b14283 (Remove FastLoader
optimization, 2015-06-10).

Change-Id: I1cb577ec1f50a45b40683031e79c0999338a2926
(cherry picked from commit 6cca91f7ada91701443225061a5dd0ae81a98b8e)

commit 52917eb39e3a8af11021523b58613629d1ac079b
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jun 10 14:22:26 2015 +0200

SfxObjectShell::CopyStoragesOfUnknownMediaType: still try to copy Base 
streams

When Base is embedded in a Writer document, we still need this when the
document is saved for the first time after embedding.

Change-Id: I1103da01838abd4ac1b03dc4d44e10db3ce650bc
(cherry picked from commit 4897f10beab678494a7c2dfdc140c424154e9f8c)

commit d7125c01490487e9cbde443a5dc8cfae529c6a70
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Jun 10 14:20:28 2015 +0200

SwDBManager::LoadAndRegisterDataSource: restore lost hunk

Accidently removed in commit f01f31201f9b26b3071ab25f9a5a3a0311ff7423
(SwDBManager: extract StoreEmbeddedDataSource() from registration code,
2015-06-09).

Change-Id: I27e47249b92b8fd19dcd09a1226f5e80184ea8db
(cherry picked from commit 23c467fd7a1932015ef209f9db49acd167fd713f)

commit cb4db4eca5cedf3f9d7b441b0de80fd7240d1362
Author: Stephan Bergmann sberg...@redhat.com
Date:   Wed Jun 10 12:27:02 2015 +0200

Remove FastLoader optimization

...that was introduced in b88a62cc97613e5dc00c806f59982cb57f9d1dc8 
CWS-TOOLING:
integrate CWS dbaperf2, apparently to speed up later activity by 
pre-loading a
JVM or Calc.

The problem is that any spawned FastLoader thread was never joined, so could
still run during exit.  That caused many spurious failures of
CppunitTest_sw_uiwriter after df726c8b3e80bf2e1696f901ea01f192dcb8a77e
CppunitTest_sw_uiwriter: add embedded data source definition testcase
triggered spawning such FastLoader threads there.

Adding code to join any spawned FastLoader thread is not easy, though.  For 
one,
it is not clear whether there would not be very many (terminated, waiting 
to be
joined, thus still holding up system resources) such treads when doing the 
join
in ~DatasourceURLListener or DatasourceURLListener::disposing.  For 
another, a
naive attempt at joining in ~DatasourceURLListener leads to deadlock, as it 
is
called with the SolarMutex locked and the E_CALC branch in FastLoader::run
blocks waiting to acquire 

[Libreoffice-bugs] [Bug 81806] EDITING: Document corruption and crash when editing tables

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

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

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

--- Comment #12 from Caolán McNamara caol...@redhat.com ---
What I see is that undo always leaves a pam that points to the start of the
undone area and a mark to the end of the undone area, even if that area is
empty. (In the normal where there is a selection this can be seen by selecting
something, deleting it, and undoing and the newly undeleted stuff is again
selected)

The table overwrite/paste thing looks to see if a mark is set and goes off to
do something very complex if its set. So if after each undo cycle, you
physically click at the point where the cursor is flashing (which clears the
mark) and then paste, undo, *click*, paste you get a wonderfully stable
experience.

So it seems reasonable to me to do the simple thing if there is no mark, or
if the mark and point are the same, i.e. there is nothing actually selected by
the PaM.

-- 
You are receiving this mail because:
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 91361] LibreOffice stopped working XLSX to PDF conversion

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

--- Comment #6 from Julien Nabet serval2...@yahoo.fr ---
Martijn: did you try to rename your LO directory profile? (see
https://bugs.documentfoundation.org/show_bug.cgi?id=91361#c3)

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


[Libreoffice-bugs] [Bug 89100] FILEOPEN: DOCX - File no longer opens in LO 5.0+

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

Timur gti...@gmail.com changed:

   What|Removed |Added

Summary|FILEOPEN: DOCX - File no|FILEOPEN: DOCX - File no
   |longer opens|longer opens in LO 5.0+

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


[Libreoffice-bugs] [Bug 92112] UI: Running NX/Thin client Sort dialog does not repaint part that has been covered by opened list with key

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

--- Comment #2 from Cor Nouws c...@nouenoff.nl ---
The same problem, though hardly visible, occurs in the Sort dialog in Writer.
There the list give Numeric / Alphanumeric as options. And opening that, hides
a tiny part of the list below.

The repaint problem only occurs once during the use of the dialog.

-- 
You are receiving this mail because:
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 91001] Cannot increase font size

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

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

   What|Removed |Added

 Whiteboard|bibisected target:5.1.0 |bibisected target:5.1.0
   ||target:5.0.0.1

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


[Libreoffice-bugs] [Bug 88290] Numbering toolbar icon not working for certain locales

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

--- Comment #14 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Maxim Monastirsky committed a patch related to this issue.
It has been pushed to libreoffice-5-0:

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

tdf#88290 Adapt the numbering popup to more than 8 items

It will be available in 5.0.0.1.

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

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


[Libreoffice-bugs] [Bug 88290] Numbering toolbar icon not working for certain locales

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

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

   What|Removed |Added

 Whiteboard| target:5.1.0   | target:5.1.0
   ||target:5.0.0.1

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


[Libreoffice-bugs] [Bug 91001] Cannot increase font size

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

--- Comment #9 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Maxim Monastirsky committed a patch related to this issue.
It has been pushed to libreoffice-5-0:

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

tdf#91001 Fix inc/dec font for complex selections

It will be available in 5.0.0.1.

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

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


[Libreoffice-bugs] [Bug 92115] UI glitch on combo boxes after removing keybard focus

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

--- Comment #1 from Katarina Behrens (CIB) katarina.behr...@cib.de ---
Created attachment 116583
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116583action=edit
.odg file demonstrating the issue

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


[Libreoffice-bugs] [Bug 92116] New: PIVOTTABLE: Format of Date from registered database

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

Bug ID: 92116
   Summary: PIVOTTABLE: Format of Date from registered database
   Product: LibreOffice
   Version: 4.0.0.3 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: anthony.or...@eree.fr

Created attachment 116584
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116584action=edit
Example with LO 4.2.8.2 / Ubuntu 14.10 LTS (screenshot)

When I create a pivot table from a database registered in LibreOffice, throw a
query or not, the Dates get number format. Whereas dates are formatted well in
the autofilter button, for example (please look at screenshot attached).

It's the same problem, I think that mshiner's one on the bug report n° 80177.
But I don't use PostgreSQL or other connection like that. My database is made
of only one Excel5.0 file stored on a Windows Server.

I tried with a file and database stored locally : same result.
I tried with a dbf file instead of Excel : same result.

I tried add a sheet linked to the source file on the same file of the pivot
table (so no database needed) : Dates format is ok.

I had this problem first when trying LO 4.0.0 beta.
It can be reproduce with LOdev 5.0.0.0 beta3.
So I still use LO 3.6.5.2 for this kind of processing.

There's the same bug in Apache OpenOffice 4.0.1 but it's fixed on AOO 4.1.0.

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


[Libreoffice-bugs] [Bug 39299] Picture paste from clipboard is imported with the wrong size (Windows)

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

Gordo gordon1dr...@yahoo.com changed:

   What|Removed |Added

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

--- Comment #12 from Gordo gordon1dr...@yahoo.com ---
Could not reproduce.

Windows Vista 64
Version: 4.4.4.2
Build ID: f784c932ccfd756d01b70b6bb5e09ff62e1b3285

4.2.8.2

Bug present in 4.1.6.2.

Changed to RESOLVED WORKSFORME.

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


[Libreoffice-bugs] [Bug 92117] New: FILESAVE : Error saving

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

Bug ID: 92117
   Summary: FILESAVE : Error saving
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cobafes...@facebook.com

Created attachment 116585
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116585action=edit
for testing

Hi, I'm experiencing weird thing here.
(see attachment)

If you delete the column 'H', and then save. Nothing will happen, LibreOffice
just blank or hangs.

I tried with other office program, it's working fine.

LibreOffice 4.4.3.2
Windows 7 64 bit

-- 
You are receiving this mail because:
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 68604] FILESAVE: part of the comment text is lost in .docx using save toolbar button or save menu item

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

--- Comment #36 from Joel Madero jmadero@gmail.com ---
Is this really not inherited from OOo (this is a regression from the fork)?
I've never seen a bug that is a regression from fork at the point of 3.3. 

@Tommy - can you explain the change? If it's a regression we should tag it in
the keywords

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


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

2015-06-16 Thread Mihály Palenik
 cui/source/options/optaboutconfig.cxx |  652 +-
 cui/source/options/optaboutconfig.hxx |6 
 2 files changed, 345 insertions(+), 313 deletions(-)

New commits:
commit db35b73037483cd22cd7d4ac93fe40f23fbe3967
Author: Mihály Palenik palenik.mih...@gmail.com
Date:   Tue Jun 16 11:51:10 2015 +0200

Change table to tree view in Expert Configuration dialog.

Expert Configuration dialog was too slow when accessibility was used.
Therefore the table was changed to tree view. In tree view the children
of entries is loaded dynamically.

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

diff --git a/cui/source/options/optaboutconfig.cxx 
b/cui/source/options/optaboutconfig.cxx
index ea0e707..121060d 100644
--- a/cui/source/options/optaboutconfig.cxx
+++ b/cui/source/options/optaboutconfig.cxx
@@ -158,7 +158,6 @@ CuiAboutConfigTabPage::CuiAboutConfigTabPage( vcl::Window* 
pParent/*, const SfxI
 util::SearchFlags::REG_NOT_ENDOFLINE);
 
 m_pPrefBox-SetTabs(aTabs, MAP_PIXEL);
-m_pPrefBox-SetAlternatingRowColors( true );
 }
 
 CuiAboutConfigTabPage::~CuiAboutConfigTabPage()
@@ -177,17 +176,17 @@ void CuiAboutConfigTabPage::dispose()
 ModelessDialog::dispose();
 }
 
-void CuiAboutConfigTabPage::InsertEntry(const OUString rProp, const OUString 
rStatus, const OUString rType, const OUString rValue)
+void CuiAboutConfigTabPage::InsertEntry(const OUString rProp, const OUString 
rStatus,
+const OUString rType, const OUString 
rValue, SvTreeListEntry *pParentEntry)
 {
 SvTreeListEntry* pEntry = new SvTreeListEntry;
-
 pEntry-AddItem( new SvLBoxContextBmp( pEntry, 0, Image(), Image(), 
false)); //It is needed, otherwise causes crash
 pEntry-AddItem( new SvLBoxString( pEntry, 0, rProp));
 pEntry-AddItem( new SvLBoxString( pEntry, 0, rStatus));
 pEntry-AddItem( new SvLBoxString( pEntry, 0, rType));
 pEntry-AddItem( new SvLBoxString( pEntry, 0, rValue));
 
-m_pPrefBox-Insert( pEntry );
+m_pPrefBox-Insert( pEntry, pParentEntry );
 
 SvTreeListEntry* pEntryClone = new SvTreeListEntry;
 pEntryClone-Clone( pEntry );
@@ -227,190 +226,211 @@ bool CuiAboutConfigTabPage::FillItemSet()
 return bModified;
 }
 
-void CuiAboutConfigTabPage::FillItems(const Reference XNameAccess  
xNameAccess)
+void CuiAboutConfigTabPage::FillItems(const Reference XNameAccess  
xNameAccess, SvTreeListEntry *pParentEntry)
 {
-OUString sPath = Reference XHierarchicalName (
-xNameAccess, uno::UNO_QUERY_THROW )-getHierarchicalName();
 uno::Sequence OUString  seqItems = xNameAccess-getElementNames();
 for( sal_Int32 i = 0; i  seqItems.getLength(); ++i )
 {
 Any aNode = xNameAccess-getByName( seqItems[i] );
 
-bool bNotLeaf = false;
-
-Reference XNameAccess  xNextNameAccess;
+Reference XNameAccess  xChildNameAccess;
 try
 {
-xNextNameAccess = Reference XNameAccess (aNode, uno::UNO_QUERY);
-bNotLeaf = xNextNameAccess.is();
-}
-catch (const RuntimeException e)
-{
-SAL_WARN( cui.options, CuiAboutConfigTabPage: exception   
e.Message);
-}
+xChildNameAccess = Reference XNameAccess (aNode, uno::UNO_QUERY);
+OUString sPath = Reference XHierarchicalName (
+xChildNameAccess, uno::UNO_QUERY_THROW 
)-getHierarchicalName();
+uno::Sequence OUString  seqChildItems = 
xChildNameAccess-getElementNames();
 
-if (bNotLeaf)
-{
-// not leaf node
-FillItems( xNextNameAccess );
-}
-else
-{
-// leaf node
-OUString sType = aNode.getValueTypeName();
+bool bIsNotLeaf = false;
 
-OUString sValue;
-switch( aNode.getValueType().getTypeClass() )
+for( sal_Int32 l = 0; l  seqChildItems.getLength(); ++l )
 {
-case ::com::sun::star::uno::TypeClass_VOID:
-break;
+aNode = xChildNameAccess-getByName( seqChildItems[l] );
 
-case ::com::sun::star::uno::TypeClass_BOOLEAN:
-sValue = OUString::boolean( aNode.getbool() );
-break;
+Reference XNameAccess  xGrandChildNameAccess = Reference 
XNameAccess (aNode, uno::UNO_QUERY);
+if(xGrandChildNameAccess.is())
+{
+// not leaf node
+if(bIsNotLeaf)
+continue;
+SvTreeListEntry* pEntry = new SvTreeListEntry;
+pEntry-AddItem( new SvLBoxContextBmp( pEntry, 0, 
m_pPrefBox-GetDefaultExpandedNodeImage(),
+

[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - solenv/gbuild

2015-06-16 Thread Juergen Funk
 solenv/gbuild/JunitTest.mk  |2 +-
 solenv/gbuild/platform/com_MSC_class.mk |   17 -
 2 files changed, 17 insertions(+), 2 deletions(-)

New commits:
commit ad8e91255b6c07adc1e8c04e06eba55c6a4e8b3d
Author: Juergen Funk juergen.funk...@cib.de
Date:   Fri Jun 12 15:00:12 2015 +0200

make debugrun under Windows

Debugging with Visual-Studio, attach to soffice.bin

Description:
Start
  make debugrun
after the start of LO, in VS-Debugger
  Attach to Process to the soffice.bin
then start in other box the test with
  make gb_JunitTest_DEBUGRUN=T JunitTest_YYY

Change-Id: I44571d1d4feafe9ce836d71781eaf793fe72cb92
Reviewed-on: https://gerrit.libreoffice.org/16290
Reviewed-by: Michael Stahl mst...@redhat.com
Tested-by: Michael Stahl mst...@redhat.com
(cherry picked from commit 335ea1819b08dbefabb5d67445668d4868bb1db0)
Signed-off-by: Michael Stahl mst...@redhat.com

diff --git a/solenv/gbuild/JunitTest.mk b/solenv/gbuild/JunitTest.mk
index 8370603..4078421 100644
--- a/solenv/gbuild/JunitTest.mk
+++ b/solenv/gbuild/JunitTest.mk
@@ -45,7 +45,7 @@ $(call gb_JunitTest_get_target,%) :
 echo to rerun just this failed test without all others, 
run: \
 echo  echo make JunitTest_$*  echo \
 echo cd into the module dir to run the tests faster \
-echo Or to do interactive debugging (non-Windows), run two 
shells with: \
+echo Or to do interactive debugging, run two shells with: \
 echo \
 echo make debugrun \
 echo make gb_JunitTest_DEBUGRUN=T JunitTest_$* \
diff --git a/solenv/gbuild/platform/com_MSC_class.mk 
b/solenv/gbuild/platform/com_MSC_class.mk
index 4064527..70768b6 100644
--- a/solenv/gbuild/platform/com_MSC_class.mk
+++ b/solenv/gbuild/platform/com_MSC_class.mk
@@ -409,12 +409,27 @@ endif
 
 define gb_JunitTest_JunitTest_platform
 $(call gb_JunitTest_get_target,$(1)) : DEFS := \
-   
-Dorg.openoffice.test.arg.soffice={OOO_TEST_SOFFICE:-path:$(INSTROOT)/$(LIBO_BIN_FOLDER)/soffice.exe}
 \
+   -Dorg.openoffice.test.arg.soffice=$(gb_JunitTest_SOFFICEARG) \
-Dorg.openoffice.test.arg.env=PATH=PATH \
-Dorg.openoffice.test.arg.user=$(call gb_Helper_make_url,$(call 
gb_JunitTest_get_userdir,$(1)))
+   -Dorg.openoffice.test.arg.workdir=$(call gb_JunitTest_get_userdir,$(1)) 
\
 
 endef
 
+
+define gb_Module_DEBUGRUNCOMMAND
+printf \nAttach the debugger to soffice.bin\n\n
+unset VCL_HIDE_WINDOWS  \
+OFFICESCRIPT=`mktemp`  \
+printf $(INSTROOT)/$(LIBO_BIN_FOLDER)/soffice.exe  $${OFFICESCRIPT}  \
+printf  --norestore --nologo '--accept=pipe,name=$(USER);urp;'\n  
$${OFFICESCRIPT}  \
+$(SHELL) $${OFFICESCRIPT}  \
+rm $${OFFICESCRIPT}
+endef
+
+
+
+
 # PythonTest class
 
 gb_PythonTest_PRECOMMAND := $(gb_CppunitTest_CPPTESTPRECOMMAND)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 45028] label of connector gets written through line

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

David Tardon dtar...@redhat.com changed:

   What|Removed |Added

Summary|Visio Import: label of  |label of connector gets
   |connector gets written  |written through line
   |through line|

-- 
You are receiving this mail because:
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 92113] [l10n] Writer: Untranslatable strings Insert Rows Below, Insert Columns Right

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

Serg Bormant borm...@mail.ru changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 92113] [l10n] Writer: Untranslatable strings Insert Rows Below, Insert Columns Right

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

--- Comment #1 from Serg Bormant borm...@mail.ru ---
In addition to initial message...

1. Start localized Writer, insert table in document, place caret into table.

2. Select menu Table - Insert

3. There are untranslatable strings:

Rows Above
Rows Below
Columns Left
Columns Right

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


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

2015-06-16 Thread Caolán McNamara
 sw/source/core/undo/undel.cxx   |   42 +-
 sw/source/core/undo/unmove.cxx  |   12 ++---
 sw/source/core/undo/unredln.cxx |   92 
 sw/source/core/undo/untblk.cxx  |   80 +-
 4 files changed, 113 insertions(+), 113 deletions(-)

New commits:
commit 6f7afbb4dccef0de5521d0a2d1cfef71690222f3
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Jun 16 13:38:01 2015 +0100

change pointer to reference for the win

Change-Id: Ia43a07dc7d6bc87bba297636771ee4bd3a0b477d

diff --git a/sw/source/core/undo/undel.cxx b/sw/source/core/undo/undel.cxx
index c2871f9..bdfd99f8 100644
--- a/sw/source/core/undo/undel.cxx
+++ b/sw/source/core/undo/undel.cxx
@@ -745,14 +745,14 @@ static void lcl_ReAnchorAtContentFlyFrames( const 
SwFrameFormats rSpzArr, SwPos
 
 void SwUndoDelete::UndoImpl(::sw::UndoRedoContext  rContext)
 {
-SwDoc *const pDoc =  rContext.GetDoc();
+SwDoc rDoc = rContext.GetDoc();
 
 sal_uLong nCalcStt = nSttNode - nNdDiff;
 
 if( nSectDiff  bBackSp )
 nCalcStt += nSectDiff;
 
-SwNodeIndex aIdx( pDoc-GetNodes(), nCalcStt );
+SwNodeIndex aIdx(rDoc.GetNodes(), nCalcStt);
 SwNode* pInsNd = aIdx.GetNode();
 
 {   // code block so that SwPosition is detached when deleting a Node
@@ -761,8 +761,8 @@ void SwUndoDelete::UndoImpl(::sw::UndoRedoContext  
rContext)
 {
 if( pInsNd-IsTableNode() )
 {
-pInsNd = pDoc-GetNodes().MakeTextNode( aIdx,
-pDoc-GetDfltTextFormatColl() );
+pInsNd = rDoc.GetNodes().MakeTextNode( aIdx,
+rDoc.GetDfltTextFormatColl() );
 --aIdx;
 aPos.nNode = aIdx;
 aPos.nContent.Assign( pInsNd-GetContentNode(), nSttContent );
@@ -794,13 +794,13 @@ void SwUndoDelete::UndoImpl(::sw::UndoRedoContext  
rContext)
 if( pSttStr  !bFromTableCopy )
 {
 sal_uLong nOldIdx = aPos.nNode.GetIndex();
-pDoc-getIDocumentContentOperations().SplitNode( aPos, false );
+rDoc.getIDocumentContentOperations().SplitNode( aPos, false );
 // After the split all objects are anchored at the first
 // paragraph, but the pHistory of the fly frame formats relies
 // on anchoring at the start of the selection
 // = selection backwards needs a correction.
 if( bBackSp )
-lcl_ReAnchorAtContentFlyFrames( 
*pDoc-GetSpzFrameFormats(), aPos, nOldIdx );
+lcl_ReAnchorAtContentFlyFrames(*rDoc.GetSpzFrameFormats(), 
aPos, nOldIdx);
 pTextNd = aPos.nNode.GetNode().GetTextNode();
 }
 if( pTextNd )
@@ -821,9 +821,9 @@ void SwUndoDelete::UndoImpl(::sw::UndoRedoContext  
rContext)
 if (nSttContent  pNd-GetText().getLength())
 {
 sal_uLong nOldIdx = aPos.nNode.GetIndex();
-pDoc-getIDocumentContentOperations().SplitNode( aPos, 
false );
+rDoc.getIDocumentContentOperations().SplitNode( aPos, 
false );
 if( bBackSp )
-lcl_ReAnchorAtContentFlyFrames( 
*pDoc-GetSpzFrameFormats(), aPos, nOldIdx );
+
lcl_ReAnchorAtContentFlyFrames(*rDoc.GetSpzFrameFormats(), aPos, nOldIdx);
 }
 else
 ++aPos.nNode;
@@ -844,12 +844,12 @@ void SwUndoDelete::UndoImpl(::sw::UndoRedoContext  
rContext)
 nMoveIndex -= nSectDiff + 1;
 ++nDiff;
 }
-SwNodeIndex aMvIdx( pDoc-GetNodes(), nMoveIndex );
+SwNodeIndex aMvIdx(rDoc.GetNodes(), nMoveIndex);
 SwNodeRange aRg( aPos.nNode, 0 - nDiff, aPos.nNode, 1 - nDiff );
 --aPos.nNode;
 if( !bJoinNext )
 pMovedNode = aPos.nNode.GetNode();
-pDoc-GetNodes()._MoveNodes( aRg, pDoc-GetNodes(), aMvIdx, true );
+rDoc.GetNodes()._MoveNodes(aRg, rDoc.GetNodes(), aMvIdx, true);
 ++aPos.nNode;
 }
 
@@ -857,7 +857,7 @@ void SwUndoDelete::UndoImpl(::sw::UndoRedoContext  
rContext)
 {
 SwNodeRange aRange( *pMvStt, 0, *pMvStt, nNode );
 SwNodeIndex aCopyIndex( aPos.nNode, -1 );
-pDoc-GetUndoManager().GetUndoNodes()._Copy( aRange, aPos.nNode );
+rDoc.GetUndoManager().GetUndoNodes()._Copy( aRange, aPos.nNode );
 
 if( nReplaceDummy )
 {
@@ -872,16 +872,16 @@ void SwUndoDelete::UndoImpl(::sw::UndoRedoContext  
rContext)
 aPos = SwPosition( aCopyIndex );
 nMoveIndex = aPos.nNode.GetIndex() + nReplaceDummy + 1;
 }
-SwNodeIndex aMvIdx( pDoc-GetNodes(), nMoveIndex );
+SwNodeIndex aMvIdx(rDoc.GetNodes(), 

[Libreoffice-bugs] [Bug 34467] FORMATTING Fit to Frame for text boxes is broken

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

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||t...@mic-consulting.de

--- Comment #39 from tommy27 ba...@quipo.it ---
*** Bug 92109 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 92112] New: UI: Running NX/Thin client Sort dialog does not repaint part that has been covered by opened list with key

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

Bug ID: 92112
   Summary: UI: Running NX/Thin client Sort dialog does not
repaint part that has been covered by opened list with
key
   Product: LibreOffice
   Version: 4.3.7.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: c...@nouenoff.nl

Mind: only visible for me when running via NX

1 - use spread sheet with  5 column names
2 - choose Data  Sort
3 - open the list with the sort key and select last one
see that the selection list below is now invisible

I'll attach a screen shot.

-- 
You are receiving this mail because:
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 92113] New: [l10n] Writer: Untranslatable strings Insert Rows Below, Insert Columns Right

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

Bug ID: 92113
   Summary: [l10n] Writer: Untranslatable strings Insert Rows
Below, Insert Columns Right
   Product: LibreOffice
   Version: 5.0.0.0.beta3
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: borm...@mail.ru

1. Start localized Writer, insert table in document, place caret into table.

2. Place mouse pointer over first and second icon of Table toolbar.

3. Tips

Insert Rows Below
Insert Columns Right

has no translation and they also has no key ID in KeyID (qtz) language.


PS. Sirf icon theme uses colored icons on Table toolbar.

-- 
You are receiving this mail because:
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 'libreoffice-5-0' - 2 commits - include/svx sd/source svx/source sw/source

2015-06-16 Thread Maxim Monastirsky
 include/svx/nbdtmg.hxx  |1 
 sd/source/ui/func/fuolbull.cxx  |   16 +
 sd/source/ui/view/drtxtob1.cxx  |   15 +---
 sd/source/ui/view/drviewsf.cxx  |3 -
 svx/source/sidebar/nbdtmg.cxx   |2 -
 sw/source/uibase/shells/textsh1.cxx |2 -
 sw/source/uibase/shells/txtnum.cxx  |   61 +++-
 7 files changed, 32 insertions(+), 68 deletions(-)

New commits:
commit 7f04fe1bba2c91055a90174bb85d7b2edf830dee
Author: Maxim Monastirsky momonas...@gmail.com
Date:   Mon Jun 15 23:23:10 2015 +0300

tdf#91001 Fix inc/dec font for complex selections

By complex selection I mean:
1. Selection with an empty paragraph that has a bullet.
2. Selection that has different font sizes.

This is a regression of
5b32d9c4406a68507ac9737ee0ada8bd1d424815 that tried to
fix tdf#61492. In reality in order to fix that, it seems
to be enough to pass an empty SfxItemSet, because what we
really need is to invalidate the bullet width (by setting
it to -1), thus force recalculation, and this occurs
anyway.

Change-Id: I92545192f8c78ef7f1d66d72f0d8e8f256f87604
(cherry picked from commit 2a05cb81d363cce181d3e31967cea2cfff1bd06d)

diff --git a/sd/source/ui/view/drtxtob1.cxx b/sd/source/ui/view/drtxtob1.cxx
index f65ac7f..09a4a59 100644
--- a/sd/source/ui/view/drtxtob1.cxx
+++ b/sd/source/ui/view/drtxtob1.cxx
@@ -396,19 +396,8 @@ void TextObjectBar::Execute( SfxRequest rReq )
 {
 FuText::ChangeFontSize( nSlot == SID_GROW_FONT_SIZE, pOLV, 
pFontList, mpView );
 if( pOLV )
-{
-SfxItemSet aSet( pOLV-GetEditView().GetAttribs() );
-SfxItemSet aNewAttrs 
(pOLV-GetEditView().GetEmptyItemSet() );
-
-aNewAttrs.Put( aSet.Get( EE_CHAR_FONTHEIGHT ), 
EE_CHAR_FONTHEIGHT );
-aNewAttrs.Put( aSet.Get( EE_CHAR_FONTHEIGHT_CJK ), 
EE_CHAR_FONTHEIGHT_CJK );
-aNewAttrs.Put( aSet.Get( EE_CHAR_FONTHEIGHT_CTL ), 
EE_CHAR_FONTHEIGHT_CTL );
-
-mpView-SetAttributes( aNewAttrs );
-}
-Invalidate();
-// to refresh preview (in outline mode), slot has to be 
invalidated:
-mpViewShell-GetViewFrame()-GetBindings().Invalidate( 
SID_PREVIEW_STATE, true, false );
+pOLV-SetAttribs( pOLV-GetEditView().GetEmptyItemSet() );
+mpViewShell-GetViewFrame()-GetBindings().Invalidate( 
SID_ATTR_CHAR_FONTHEIGHT );
 }
 rReq.Done();
 }
commit d8b1b4b085088487837ef6ffd0dc4580b2acbb12
Author: Maxim Monastirsky momonas...@gmail.com
Date:   Wed Jun 10 15:15:56 2015 +0300

tdf#88290 Adapt the numbering popup to more than 8 items

The items count of NumberingTypeMgr is limited by 8, but
some languages have more items, so remove that limitation.

Also fix the behavior of the 10th item. The old sidebar
popup had a None item, whose id was 10 (defined by
DEFAULT_NONE from include/svx/nbdtmg.hxx), and that causes
now the 10th item to behave as on/off toggle. Since we
don't have a None item anymore, get rid of that behavior
completely.

Change-Id: I5546ca637f9951cc093a7bbf8fda11dc35341d4e
(cherry picked from commit 71b35212265bb93b10ca35ab964a36e6b6cc552b)

diff --git a/include/svx/nbdtmg.hxx b/include/svx/nbdtmg.hxx
index 7695e5c..d400a87 100644
--- a/include/svx/nbdtmg.hxx
+++ b/include/svx/nbdtmg.hxx
@@ -27,7 +27,6 @@
 namespace svx { namespace sidebar {
 
 #define DEFAULT_BULLET_TYPES8
-#define DEFAULT_NONE10
 #define DEFAULT_NUM_VALUSET_COUNT   8
 #define DEFAULT_NUMBERING_CACHE_FORMAT_VERSION  0x10
 
diff --git a/sd/source/ui/func/fuolbull.cxx b/sd/source/ui/func/fuolbull.cxx
index 2ee2ddb..bbee427 100644
--- a/sd/source/ui/func/fuolbull.cxx
+++ b/sd/source/ui/func/fuolbull.cxx
@@ -182,17 +182,12 @@ void 
FuOutlineBullet::SetCurrentBulletsNumbering(SfxRequest rReq)
 
 sal_uInt16 nIdx = pItem-GetValue();
 bool bToggle = false;
-bool bSwitchOff = false;
 if( nIdx == (sal_uInt16)0x )
 {
 // If the nIdx is (sal_uInt16)0x, means set bullet status to on/off
 nIdx = 1;
 bToggle = true;
 }
-else if (nIdx == DEFAULT_NONE)
-{
-bSwitchOff = true;
-}
 nIdx--;
 
 sal_uInt32 nNumItemId = SID_ATTR_NUMBERING_RULE;
@@ -266,18 +261,11 @@ void 
FuOutlineBullet::SetCurrentBulletsNumbering(SfxRequest rReq)
 
 if ( pOLV )
 {
-if ( bSwitchOff )
-{
-pOLV-SwitchOffBulletsNumbering( true );
-}
-else
-{
-pOLV-ToggleBulletsNumbering( bToggle, nSId == FN_SVX_SET_BULLET, 
bInMasterView ? 0 : pNumRule );
-}
+pOLV-ToggleBulletsNumbering( bToggle, nSId == 

[Libreoffice-bugs] [Bug 88290] Numbering toolbar icon not working for certain locales

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 92115] New: UI glitch on combo boxes after removing keybard focus

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

Bug ID: 92115
   Summary: UI glitch on combo boxes after removing keybard focus
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: katarina.behr...@cib.de

To reproduce this, you need KDE4 vcl plugin. Just running KDE4 desktop is not
enough, it might still use Gtk vcl plugin to render UI. If needed, start LibO
like this:

SAL_USE_VCLPLUGIN=kde4 ./soffice 

In general, any combo box doesn't bounce back into its original shape after it
has been visited' i.e. keyboard focus has been removed from it or the user
clicked elsewhere with the mouse.

To demonstrate, 
1. Open e.g. empty Writer document, then Format - Paragraph - Outline and
Numbering tab (but any dialog with multiple combo boxes will do)

= now Outline level combo box has keyboard focus

2. Press Tab to move focus to Numbering style combo box, or simply click
somewhere else in the dialog

= funny rendering artifact appears on the right edge of Outline level combo
box (where the dropdown arrow is)

See also attached .odg w/ screenshots

-- 
You are receiving this mail because:
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 92111] New: missing frame-view while editing text

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

Bug ID: 92111
   Summary: missing frame-view while editing text
   Product: LibreOffice
   Version: 5.0.0.0.beta3
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: t...@mic-consulting.de

Created attachment 116580
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116580action=edit
missing text frame while editing

in Draw - the text-frame is not longer visible when eding the text.

In effect this is a negativ development for users - he don´t know the size and
border of the textframe.

Attached picture shows the different between LibO 4.4.x an LibO 5.0.

to reproduce:
- open an new draw document
- select textframe (text tool) 
- create a wide frame
- edit some text - frame disapears
- select frame - frame shows correct border an points
- select text inside frame - frame disappears


Win 8.1 , 64 bit

Version: 5.0.0.0.beta3 (x64)
Build-ID: 96345c15d8ab19c49014f055fe41ba8e1f421e5c
Gebietsschema: de-DE (de_DE)

-- 
You are receiving this mail because:
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: PyUNO usability improvements

2015-06-16 Thread Eike Rathke
Hi,

On Tuesday, 2015-06-16 12:34:15 +0200, Michael Stahl wrote:

   2. Cell ranges
   ==
  
   cell = cellrange[0,0]   # Access cell by indices
   rng = cellrange[0,1:2]  # Access cell range by index,slice
   rng = cellrange[1:2,0]  # Access cell range by slice,index
   rng = cellrange[0:1,2:3]# Access cell range by slices
   rng = cellrange['A1:B2']# Access cell range by descriptor
   rng = cellrange['Name'] # Access cell range by name
  
   Note that the indices used are in Python/C order, and differ from
   the arguments to methods provided by XCellRange.
   - The statement cellrange[r,c], which returns the cell from row r
   and column c, is equivalent to calling
   XCellRange::getCellByPosition(c,r)

Is there a specific reason for this? Why not keep the order the API
uses? My concern is, that if these get mixed the user will get
confused..

   - The statement cellrange[t:b,l:r], which returns a cell range
   covering rows t to b(non-inclusive) and columns l to r(non-
   inclusive), is equivalent to calling
   XCellRange::getCellRangeByPosition(l,t,r-1,b-1).

Which when keeping c,r order would be cellrange[l:r,t:b], slightly
nearer to the API.

  Eike

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


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


[Libreoffice-bugs] [Bug 92090] Radio Buttons Do Not Render

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

Dave Richards drich...@largo.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #4 from Dave Richards drich...@largo.com ---
Closing this issue, root cause here was a post install script that overwrites
all themes to breeze so that users cannot alter their own settings.  
Replicated and this is the root cause.

-- 
You are receiving this mail because:
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 92108] Embed fonts in the document setting is ignored unless you modify the text and save the document

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

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz
Version|4.4.4.1 rc  |4.4.3.2 release

--- Comment #1 from raal r...@post.cz ---
I can confirm with LO 4.4.3, win7

-- 
You are receiving this mail because:
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 92117] FILESAVE : Error saving

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

cobafes...@facebook.com changed:

   What|Removed |Added

Version|unspecified |4.4.3.2 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 65138] [META] Sidebar feature related issues

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

Bug 87651 Summary: SIDEBAR: Addition of bullet commands in Impress
https://bugs.documentfoundation.org/show_bug.cgi?id=87651

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

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

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

   What|Removed |Added

 Status|NEW |ASSIGNED
 QA Contact||vmik...@collabora.co.uk

--- Comment #11 from Miklos Vajna vmik...@collabora.co.uk ---
Yes, desktop-style click to the start, then drag to the end selections is not
implemented for Impress in the LOK API. I'll take care of that.

-- 
You are receiving this mail because:
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 91985] FILEOPEN: Link external data to html file with PRE in table prevent correct table load

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

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from raal r...@post.cz ---
set back to Unconfirmed after you answer questions from comment 1 and comment
2. 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 75025] LibreOffice 4.3 most annoying bugs

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

Bug 70465 Summary: [a11y] with Assistive Technology Tools enabled building 
Expert Config tool is slow and resource intensive
https://bugs.documentfoundation.org/show_bug.cgi?id=70465

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 60251] ACCESSIBILITY: Tracking Metabug for Windows OS accessibility and AT issues

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

Bug 70465 Summary: [a11y] with Assistive Technology Tools enabled building 
Expert Config tool is slow and resource intensive
https://bugs.documentfoundation.org/show_bug.cgi?id=70465

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 36549] ACCESSIBILITY: Tracking bug for issues affecting a11y ATK and GNOME Orca screen reader support

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

Bug 70465 Summary: [a11y] with Assistive Technology Tools enabled building 
Expert Config tool is slow and resource intensive
https://bugs.documentfoundation.org/show_bug.cgi?id=70465

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 55571] ACCESSIBILITY: Tracking bug for important issues related to the Mac OS X Accessibility API

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

Bug 70465 Summary: [a11y] with Assistive Technology Tools enabled building 
Expert Config tool is slow and resource intensive
https://bugs.documentfoundation.org/show_bug.cgi?id=70465

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 92061] When opening an RTF file with bracketed \sub or \super in a footnote, the text body is parsed wrongly, and terminates prematurely

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

   Severity|normal  |major

--- Comment #4 from Beluga todven...@suomi24.fi ---
(In reply to Bernard Moreton from comment #3)
 Any save after opening results in loss of data. With this in mind, and
 looking at your guidlines as quoted, please consider raising the status.

Ok, I'll set severity to major, even though it makes me feel I'm on a
rollercoaster of emotions :)

-- 
You are receiving this mail because:
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 'libreoffice-4-4' - sc/source

2015-06-16 Thread Eike Rathke
 sc/source/core/tool/token.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 012a2f0876663af77316c657c0dbdafd82acb79e
Author: Eike Rathke er...@redhat.com
Date:   Sat Jun 13 15:12:32 2015 +0200

do not access token data after token has been destroyed

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

diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index a96936c..1e5c7d2 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -2245,9 +2245,9 @@ void ScTokenArray::ReadjustAbsolute3DReferences( const 
ScDocument* pOldDoc, cons
 OUString aTabName;
 sal_uInt16 nFileId;
 GetExternalTableData(pOldDoc, pNewDoc, rRef1.Tab(), 
aTabName, nFileId);
-pCode[j]-DecRef();
 ScExternalDoubleRefToken* pToken = new 
ScExternalDoubleRefToken(nFileId, aTabName, rRef);
 pToken-IncRef();
+pCode[j]-DecRef(); // ATTENTION: rRef can't be used after 
this point
 pCode[j] = pToken;
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Call for papers: send your proposals!

2015-06-16 Thread Linda Martinez
Hello Sophie!

I wonder if there is some support for the trip, I would like to
participate. I am part of the Community LibreOffice Venezuela, we have a
very interesting experience about using LibreOffice in our country and
would like to share with you.

Atte.
Linda Martinez

Ubuntu User #32569

Aprendamos a desaprender; rompamos con los paradigmas de la normalidad
común y liberemos nuestras mentes!

Tarjeta de Presentación: http://about.me/lmartinezh


http://eepurl.com/klkf5

2015-06-16 7:11 GMT-04:30 Sophie gautier.sop...@gmail.com:


  Message transféré 
 Sujet : Call for papers: send your proposals!
 Date : Tue, 16 Jun 2015 11:16:49 +0200
 De : Sophie gautier.sop...@gmail.com
 Pour : proje...@global.libreoffice.org
 proje...@global.libreoffice.org, LibreOffice-l10n
 l...@global.libreoffice.org, des...@global.libreoffice.org
 des...@global.libreoffice.org,
 libo-marketing-p...@lists.documentfoundation.org
 libo-marketing-p...@lists.documentfoundation.org

 Hi all,

 This is a reminder that the call for papers is still running. Please
 share your knowledge, achievements, ideas with the community, we are
 very interested to hear you!
 You have the choice between a presentation of 45 mn or one of 20 mn
 including questions and answers.
 You'll find all the details here:
 http://conference.libreoffice.org/2015/call-for-papers/
 Don't hesitate to come back to me if you have any question or need help
 with your travel and accommodations.
 Cheers
 Sophie
 --
 Sophie Gautier sophie.gaut...@documentfoundation.org
 GSM: +33683901545
 IRC: sophi
 Co-founder - Release coordinator
 The Document Foundation


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

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


[Libreoffice-commits] core.git: icon-themes/galaxy icon-themes/tango officecfg/registry sd/inc sd/Library_sd.mk sd/sdi sd/source sd/uiconfig

2015-06-16 Thread Philippe Jung
 icon-themes/galaxy/cmd/lc_movepagedown.png   
|binary
 icon-themes/galaxy/cmd/lc_movepagefirst.png  
|binary
 icon-themes/galaxy/cmd/lc_movepagelast.png   
|binary
 icon-themes/galaxy/cmd/lc_movepageup.png 
|binary
 icon-themes/galaxy/cmd/sc_movepagedown.png   
|binary
 icon-themes/galaxy/cmd/sc_movepagefirst.png  
|binary
 icon-themes/galaxy/cmd/sc_movepagelast.png   
|binary
 icon-themes/galaxy/cmd/sc_movepageup.png 
|binary
 icon-themes/tango/cmd/lc_movepagedown.png
|binary
 icon-themes/tango/cmd/lc_movepagefirst.png   
|binary
 icon-themes/tango/cmd/lc_movepagelast.png
|binary
 icon-themes/tango/cmd/lc_movepageup.png  
|binary
 icon-themes/tango/cmd/sc_movepagedown.png
|binary
 icon-themes/tango/cmd/sc_movepagefirst.png   
|binary
 icon-themes/tango/cmd/sc_movepagelast.png
|binary
 icon-themes/tango/cmd/sc_movepageup.png  
|binary
 officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu |   
88 
 sd/Library_sd.mk |
1 
 sd/inc/app.hrc   |   
10 
 sd/sdi/SlideSorterController.sdi |   
20 +
 sd/sdi/_drvwsh.sdi   |   
21 +
 sd/sdi/sdraw.sdi |  
193 +
 sd/source/core/drawdoc2.cxx  |
4 
 sd/source/ui/func/funavig.cxx|  
156 +++
 sd/source/ui/inc/DrawViewShell.hxx   |   
14 
 sd/source/ui/inc/SlideSorterViewShell.hxx|   
16 
 sd/source/ui/inc/funavig.hxx |   
50 ++
 sd/source/ui/slidesorter/shell/SlideSorterViewShell.cxx  |  
200 ++
 sd/source/ui/view/drviewsa.cxx   |   
61 +++
 sd/uiconfig/sdraw/toolbar/standardbar.xml|   
10 
 sd/uiconfig/simpress/toolbar/standardbar.xml |   
10 
 31 files changed, 852 insertions(+), 2 deletions(-)

New commits:
commit d18afcc9125f427c0e6693900d24f894068d7e56
Author: Philippe Jung phil.j...@free.fr
Date:   Wed Jun 10 16:09:23 2015 +0200

tdf#91909 Uno commands for slide navigation and sorting

The following change adds the following uno commands to
draw and impress. Commands are in standard toolbar and
not visible by default.

NextPage: go to the next page
PreviousPage: go to the previous page
FirstPage: go to the first page
LastPage: go the the last page

MovePageUp: Moves the current selection above the page
preceding the selection.
MovePageDown: Moves the current selection below the page
following the selection.
MovePageTop: Moves the selection to the top.
MovePageBottom: Moves the current selection to the bottom.

Change-Id: I2dbd923f14fd9901fb513c58b51bc7ab91ad0a83
Reviewed-on: https://gerrit.libreoffice.org/16211
Reviewed-by: Philippe Jung phil.j...@free.fr
Tested-by: Philippe Jung phil.j...@free.fr

diff --git a/icon-themes/galaxy/cmd/lc_movepagedown.png 
b/icon-themes/galaxy/cmd/lc_movepagedown.png
new file mode 100644
index 000..e7b6799
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_movepagedown.png differ
diff --git a/icon-themes/galaxy/cmd/lc_movepagefirst.png 
b/icon-themes/galaxy/cmd/lc_movepagefirst.png
new file mode 100644
index 000..8fbb73b
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_movepagefirst.png differ
diff --git a/icon-themes/galaxy/cmd/lc_movepagelast.png 
b/icon-themes/galaxy/cmd/lc_movepagelast.png
new file mode 100644
index 000..28559a9
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_movepagelast.png differ
diff --git a/icon-themes/galaxy/cmd/lc_movepageup.png 
b/icon-themes/galaxy/cmd/lc_movepageup.png
new file mode 100644
index 000..c241105
Binary files /dev/null and b/icon-themes/galaxy/cmd/lc_movepageup.png differ
diff --git a/icon-themes/galaxy/cmd/sc_movepagedown.png 
b/icon-themes/galaxy/cmd/sc_movepagedown.png
new file mode 100644
index 000..b8b13e3
Binary files /dev/null and b/icon-themes/galaxy/cmd/sc_movepagedown.png differ
diff --git a/icon-themes/galaxy/cmd/sc_movepagefirst.png 
b/icon-themes/galaxy/cmd/sc_movepagefirst.png
new file mode 100644
index 000..13e5a53
Binary files /dev/null and 

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

2015-06-16 Thread matteocam
 include/svx/textchain.hxx   |   37 
 svx/Library_svxcore.mk  |1 
 svx/source/svdraw/svdotextdecomposition.cxx |3 ++
 svx/source/svdraw/textchain.cxx |   34 +
 4 files changed, 75 insertions(+)

New commits:
commit f19f80e6fc3b15f2fe266fac827ffed75e1f02fe
Author: matteocam matteo.campane...@gmail.com
Date:   Tue Jun 16 11:36:39 2015 -0400

Added textchain.?xx files

Change-Id: Ib35e73b791c1e78b06e97e56ed6a210d129c632c

diff --git a/include/svx/textchain.hxx b/include/svx/textchain.hxx
new file mode 100644
index 000..e094334
--- /dev/null
+++ b/include/svx/textchain.hxx
@@ -0,0 +1,37 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the License); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#ifndef INCLUDED_SVX_TEXTCHAIN_HXX
+#define INCLUDED_SVX_TEXTCHAIN_HXX
+
+class SdrTextObj;
+
+class TextChain {
+
+public:
+TextChain();
+void AppendLink(SdrTextObj *);
+SdrTextObj *GetNextLink(SdrTextObj *);
+
+};
+
+#endif // INCLUDED_SVX_TEXTCHAIN_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
+
diff --git a/svx/Library_svxcore.mk b/svx/Library_svxcore.mk
index 7ed776f..816bae4 100644
--- a/svx/Library_svxcore.mk
+++ b/svx/Library_svxcore.mk
@@ -325,6 +325,7 @@ $(eval $(call gb_Library_add_exception_objects,svxcore,\
 svx/source/svdraw/svdview \
 svx/source/svdraw/svdviter \
 svx/source/svdraw/svdxcgv \
+svx/source/svdraw/textchain \
 svx/source/table/cell \
 svx/source/table/cellcursor \
 svx/source/table/cellrange \
diff --git a/svx/source/svdraw/svdotextdecomposition.cxx 
b/svx/source/svdraw/svdotextdecomposition.cxx
index 45edac2..a0d6823 100644
--- a/svx/source/svdraw/svdotextdecomposition.cxx
+++ b/svx/source/svdraw/svdotextdecomposition.cxx
@@ -23,6 +23,7 @@
 #include svx/svdpage.hxx
 #include svx/svdotext.hxx
 #include svx/svdmodel.hxx
+#include svx/textchain.hxx
 #include basegfx/vector/b2dvector.hxx
 #include sdr/primitive2d/sdrtextprimitive2d.hxx
 #include drawinglayer/primitive2d/textprimitive2d.hxx
@@ -1627,6 +1628,8 @@ void SdrTextObj::impDecomposeChainedTextPrimitive(
 
 /* Begin overflow handling */
 
+TextChain *aTxtChain = new TextChain;
+
 // If overflow occurs we have to cut the text at the right point
 // If in edit mode ImpEditEngine should have taken care of this
 if ( rOutliner.IsPageOverflow()  !IsInEditMode()) {
diff --git a/svx/source/svdraw/textchain.cxx b/svx/source/svdraw/textchain.cxx
new file mode 100644
index 000..194d4d4
--- /dev/null
+++ b/svx/source/svdraw/textchain.cxx
@@ -0,0 +1,34 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the License); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include svx/textchain.hxx
+#include svx/svdotext.hxx
+
+TextChain::TextChain()
+{
+}
+
+void TextChain::AppendLink(SdrTextObj *)
+{
+}
+
+SdrTextObj *TextChain::GetNextLink(SdrTextObj *)
+{
+return NULL; // XXX
+}
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 58079] FILEOPEN: Table shrinked in Word 2003 XML document

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

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #7 from Beluga todven...@suomi24.fi ---
Table still crunched.

Win 7 Pro 64-bit Version: 5.1.0.0.alpha1+
Build ID: 80ec99db4325a439a8a3f1d420d0a80f8bf9c439
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-06-16_00:00:20
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: Branch 'libreoffice-4-4' - sw/qa writerfilter/source

2015-06-16 Thread Miklos Vajna
 sw/qa/extras/ooxmlimport/data/tdf8255.docx  |binary
 sw/qa/extras/ooxmlimport/ooxmlimport.cxx|9 +
 writerfilter/source/dmapper/PropertyMap.cxx |   12 +++-
 3 files changed, 20 insertions(+), 1 deletion(-)

New commits:
commit 853033da3710f0e8df1b5d0d5355c6b0ce1c9ea0
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Mon Jun 8 07:48:42 2015 +0200

tdf#82553 DOCX import: handle table margin when converting floattables

(cherry picked from commit 292ec5fe8d01af6119325f1a426422bb42e58615)

Conflicts:
sw/qa/extras/ooxmlimport/ooxmlimport.cxx

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

diff --git a/sw/qa/extras/ooxmlimport/data/tdf8255.docx 
b/sw/qa/extras/ooxmlimport/data/tdf8255.docx
new file mode 100644
index 000..366e498
Binary files /dev/null and b/sw/qa/extras/ooxmlimport/data/tdf8255.docx differ
diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 
b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 0721a1e..4a7a8bc 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -2581,6 +2581,15 @@ DECLARE_OOXMLIMPORT_TEST(testFdo87488, fdo87488.docx)
 }
 }
 
+DECLARE_OOXMLIMPORT_TEST(testTdf8255, tdf8255.docx)
+{
+uno::Referencetext::XTextDocument xTextDocument(mxComponent, 
uno::UNO_QUERY);
+uno::Referencedrawing::XDrawPageSupplier 
xDrawPageSupplier(xTextDocument, uno::UNO_QUERY);
+uno::Referencedrawing::XDrawPage xDrawPage = 
xDrawPageSupplier-getDrawPage();
+// This was 1: a full-page-wide multi-page floating table was imported as 
a TextFrame.
+CPPUNIT_ASSERT_EQUAL(static_castsal_Int32(0), xDrawPage-getCount());
+}
+
 #endif
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/writerfilter/source/dmapper/PropertyMap.cxx 
b/writerfilter/source/dmapper/PropertyMap.cxx
index 845dbe6..f83862c 100644
--- a/writerfilter/source/dmapper/PropertyMap.cxx
+++ b/writerfilter/source/dmapper/PropertyMap.cxx
@@ -1037,6 +1037,16 @@ void SectionPropertyMap::CloseSectionGroup( 
DomainMapper_Impl rDM_Impl )
 for (size_t i = 0; i  rPendingFloatingTables.size(); ++i)
 {
 FloatingTableInfo rInfo = rPendingFloatingTables[i];
+
+// Count the layout width of the table.
+sal_Int32 nTableWidth = rInfo.m_nTableWidth;
+sal_Int32 nLeftMargin = 0;
+if (rInfo.getPropertyValue(LeftMargin) = nLeftMargin)
+nTableWidth += nLeftMargin;
+sal_Int32 nRightMargin = 0;
+if (rInfo.getPropertyValue(RightMargin) = nRightMargin)
+nTableWidth += nRightMargin;
+
 // If the table is wider than the text area, then don't create a fly
 // for the table: no wrapping will be performed anyway, but multi-page
 // tables will be broken.
@@ -1045,7 +1055,7 @@ void SectionPropertyMap::CloseSectionGroup( 
DomainMapper_Impl rDM_Impl )
 // If there are columns, always create the fly, otherwise the columns 
would
 // restrict geometry of the table.
 if ( ( rInfo.getPropertyValue(HoriOrientRelation) == 
text::RelOrientation::PAGE_FRAME ) ||
- ( rInfo.m_nTableWidth  nTextAreaWidth ) || ColumnCount() + 1 = 
2 )
+ nTableWidth  nTextAreaWidth || ColumnCount() + 1 = 2 )
 xBodyText-convertToTextFrame(rInfo.m_xStart, rInfo.m_xEnd, 
rInfo.m_aFrameProperties);
 }
 rPendingFloatingTables.clear();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92118] New: FILE OPEN -UNABLE TO OPEN AN ENCRYPTED(PASSWORD PROTECTED) POWER POINT PRESENTATION

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

Bug ID: 92118
   Summary: FILE OPEN -UNABLE TO OPEN AN ENCRYPTED(PASSWORD
PROTECTED) POWER POINT PRESENTATION
   Product: LibreOffice
   Version: 4.4.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nilutpa...@gmail.com

Created attachment 116586
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116586action=edit
unable to open an encrypted file

FILE OPEN -UNABLE TO OPEN AN ENCRYPTED(PASSWORD PROTECTED) POWER POINT
PRESENTATION

SAME FILE CAN BE OPENED EASILY IN MICROSOFT OFFICE SUITE
I HAVE ATTACHED THE FILE FOR REFERENCE

-- 
You are receiving this mail because:
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: Crash test update

2015-06-16 Thread Eike Rathke
Hi Caolán,

On Tuesday, 2015-06-16 10:49:04 +0100, Caolán McNamara wrote:

 http://cgit.freedesktop.org/libreoffice/core/commit/?id=103b619401f06697255167c788192601e87758b9
 calc reviewers welcome to double-check that.

Seems to make sense.

  Eike

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


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


[Libreoffice-bugs] [Bug 88267] Page orientation doesn't export to .doc/.docx correctly

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

Timur gti...@gmail.com changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #11 from Timur gti...@gmail.com ---
We need to know how this sample file was created and in which version, or this
should be closed as NotABug.

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


[Libreoffice-bugs] [Bug 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

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

--- Comment #13 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Miklos Vajna committed a patch related to this issue.
It has been pushed to libreoffice-5-0:

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

tdf#91887 handle LOK_MOUSEEVENT_MOUSEMOVE in SdXImpressDocument

It will be available in 5.0.0.1.

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

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


[Libreoffice-bugs] [Bug 92119] New: EDITING: extra space correcting suggestion as blank

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

Bug ID: 92119
   Summary: EDITING: extra space correcting suggestion as blank
   Product: LibreOffice
   Version: 4.4.3.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: marcio.lopes@gmail.com

Created attachment 116588
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116588action=edit
screenshot of the spelling corrector suggestion

The spelling corrector highlighter marks the extra space, but the option of the
correction suggestion of the interface just shows blank.

It is quite confusing, if it was written (remove extra spaces) it would be
easier to understand.

-- 
You are receiving this mail because:
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 92115] UI glitch on combo boxes after removing keybard focus (KDE-specific)

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

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

   What|Removed |Added

Summary|UI glitch on combo boxes|UI glitch on combo boxes
   |after removing keybard  |after removing keybard
   |focus   |focus (KDE-specific)

-- 
You are receiving this mail because:
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 39327] WMF object not visible in .doc with LibO

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

--- Comment #34 from Timur gti...@gmail.com ---
There were many changes in versions, but in Windows this seemed to work up to
3.5.7 and stopped in 3.6. Since reports for Linux are different, this might
have been 2 different bugs. Anyway, problem persists in LO 5.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 92120] New: crop image not work

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

Bug ID: 92120
   Summary: crop image not work
   Product: LibreOffice
   Version: 5.0.0.0.beta3
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

New feature Crop image in Writer LO 5.0 beta 3 not work. 

Click image in document. 
Select Format-Image-Crop image. 
Around the image will appear thick red marker. 
However, they can not be manipulated and crop the image does not work.

-- 
You are receiving this mail because:
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 92120] crop image not work

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

--- Comment #1 from kompilainenn 79045_79...@mail.ru ---
Версия: 5.0.0.0.beta3 (32bit)
ID сборки: 96345c15d8ab19c49014f055fe41ba8e1f421e5c
Локаль: ru-RU (ru_RU)
Windows 7 HB x86-64

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


[Bug 75025] LibreOffice 4.3 most annoying bugs

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

Bug 70465 Summary: [a11y] with Assistive Technology Tools enabled building 
Expert Config tool is slow and resource intensive
https://bugs.documentfoundation.org/show_bug.cgi?id=70465

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - wizards/source

2015-06-16 Thread Jean-Pierre Ledure
 wizards/source/access2base/Recordset.xba |   21 +
 1 file changed, 9 insertions(+), 12 deletions(-)

New commits:
commit 8a315c82aa6609800b4651811cf72c06cc1b9b29
Author: Jean-Pierre Ledure j...@ledure.be
Date:   Sat Jun 13 14:33:36 2015 +0200

Access2Base - Correct behaviour of MoveNext, MovePrevious (patch 03)

Bug in MoveNext and MovePrevious methods of Recordset class module
Reported in https://forum.openoffice.org/en/forum/viewtopic.php?f=47t=76640

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

diff --git a/wizards/source/access2base/Recordset.xba 
b/wizards/source/access2base/Recordset.xba
index 4a9c833..4df3af2 100644
--- a/wizards/source/access2base/Recordset.xba
+++ b/wizards/source/access2base/Recordset.xba
@@ -920,18 +920,15 @@ Dim l As Long, lRow As Long
End If
End Select
 
-   Select Case True
-   Case .isBeforeFirst()
-   _BOF = True
-   _Move = False
-   Case .isAfterlast()
-   _EOF = True
-   _Move = False
-   Case Else
-   If .rowDeleted() Then Goto Error_RowDeleted
-   If .rowUpdated() Then .refreshRow()
-   _Move = True
-   End Select
+   _BOF = .isBeforeFirst() apos;  
https://forum.openoffice.org/en/forum/viewtopic.php?f=47amp;t=76640
+   _EOF = .isAfterlast()
+   If _BOF Or _EOF Then
+   _Move = False
+   Else
+   If .rowDeleted() Then Goto Error_RowDeleted
+   If .rowUpdated() Then .refreshRow()
+   _Move = True
+   End If
End With
 
 Exit_Function:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - svx/uiconfig

2015-06-16 Thread Rishabh Kumar
 svx/uiconfig/ui/sidebararea.ui |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit f9bd17b3c1b2dd656c707512fd34a3bdec5d33c9
Author: Rishabh Kumar kris.kr...@gmail.com
Date:   Mon Jun 8 16:35:05 2015 +0530

tdf#88843 Set Maximum Value for Transparency spin button in area sidebar tab

Change-Id: Idb1c5051de5ddb0501b8d1440f8abe62074296bc
Reviewed-on: https://gerrit.libreoffice.org/16144
Reviewed-by: Katarina Behrens katarina.behr...@cib.de
Tested-by: Katarina Behrens katarina.behr...@cib.de
(cherry picked from commit c1692f620610621a139e54fb1f9d11d4c177608d)
Reviewed-on: https://gerrit.libreoffice.org/16204
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/svx/uiconfig/ui/sidebararea.ui b/svx/uiconfig/ui/sidebararea.ui
index adad038..708533c 100644
--- a/svx/uiconfig/ui/sidebararea.ui
+++ b/svx/uiconfig/ui/sidebararea.ui
@@ -3,6 +3,12 @@
 interface
   requires lib=gtk+ version=3.0/
   requires lib=LibreOffice version=1.0/
+  object class=GtkAdjustment id=adjustment1
+property name=lower0/property
+property name=upper100/property
+property name=step_increment1/property
+property name=page_increment10/property
+  /object
   object class=GtkGrid id=AreaPropertyPanel
 property name=visibleTrue/property
 property name=can_focusFalse/property
@@ -185,6 +191,7 @@
 property name=hexpandTrue/property
 property name=max_length100/property
 property name=invisible_char•/property
+property name=adjustmentadjustment1/property
 property 
name=secondary_icon_activatableFalse/property
 property name=climb_rate5/property
 property name=numericTrue/property
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 46406] EDITING: LibreOffice hangs on Copy+Paste sometimes

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

Timur gti...@gmail.com changed:

   What|Removed |Added

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

--- Comment #24 from Timur gti...@gmail.com ---
This, or 78429, are the most annoying bugs for me in LO. Both Writer and Calc
hang on  Copy+Paste, but only sometimes, which makes this bug very hard to
trace. 
I never succeeded to reproduce it again, once it happened, in order to get a
backtrace. I'm on 4.3.7 now and it still happens to me. Today it happened in
4.4.4 while I tested another bug. 
The only solution I can think of is to have some automatic procedure of
starting debugging with WinDBG (in Windows) each time I start LO, but I don't
know how to make it.

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


[Libreoffice-bugs] [Bug 73071] Sidebar: Styles are missing from Properties tab

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

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

   What|Removed |Added

 Whiteboard|BSA needsDevEval topicUI|BSA needsDevEval topicUI
   |target:5.1.0|target:5.1.0 target:5.0.0.1

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


[Libreoffice-bugs] [Bug 91237] CALC hangs on web table paste

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

Timur gti...@gmail.com changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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: officecfg/registry

2015-06-16 Thread Yousuf Philips
 officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit d5a0cb563bdc538a60938ea421183e4b67c0656f
Author: Yousuf Philips philip...@hotmail.com
Date:   Sat May 30 21:00:39 2015 +0400

Make track changes sidebar an experimental feature as its incomplete

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

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
index 9a40006..504bf3b 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
@@ -203,6 +203,9 @@
 prop oor:name=OrderIndex oor:type=xs:int
   value600/value
 /prop
+prop oor:name=IsExperimental oor:type=xs:boolean
+  valuetrue/value
+/prop
   /node
 
   node oor:name=DesignDeck oor:op=replace
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-06-16 Thread matteocam
 include/svx/svdotext.hxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 94cf197e6d786e6e2b9a17221b7a2faa0e5f9e4d
Author: matteocam matteo.campane...@gmail.com
Date:   Tue Jun 16 12:03:51 2015 -0400

TextChain is friend of SdrTextObj

Change-Id: I866fe10993296670bcca3883cf1ea5492f2ae5c9

diff --git a/include/svx/svdotext.hxx b/include/svx/svdotext.hxx
index 9fd6262..83b488e 100644
--- a/include/svx/svdotext.hxx
+++ b/include/svx/svdotext.hxx
@@ -44,6 +44,7 @@ class SdrTextObj;
 class SvxFieldItem;
 class ImpSdrObjTextLink;
 class EditStatus;
+class TextChain;
 
 namespace sdr { namespace properties {
 class TextProperties;
@@ -135,6 +136,8 @@ private:
 friend classsdr::table::SdrTableRtfExporter;
 friend classsdr::table::SdrTableRTFParser;
 
+friend classTextChain;
+
 // CustomShapeproperties need to access the bTextFrame member:
 friend class sdr::properties::CustomShapeProperties;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92120] crop image not work

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

kompilainenn 79045_79...@mail.ru changed:

   What|Removed |Added

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

--- Comment #2 from kompilainenn 79045_79...@mail.ru ---
understood, the cursor is displayed incorrectly (does not change the form) when
you hover over the markers cropping and crop work itself

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


[Libreoffice-bugs] [Bug 73071] Sidebar: Styles are missing from Properties tab

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

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

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

tdf#73071: Styles tab addition to the sidebar for writer

It will be available in 5.0.0.1.

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

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


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

2015-06-16 Thread Miklos Vajna
 sd/source/ui/inc/ViewShell.hxx   |2 ++
 sd/source/ui/unoidl/unomodel.cxx |3 +++
 sd/source/ui/view/viewshel.cxx   |   13 +
 3 files changed, 18 insertions(+)

New commits:
commit 2f0f6960e7e6cd88c6a8da8d0d4b172286c5b9df
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Tue Jun 16 15:55:38 2015 +0200

tdf#91887 handle LOK_MOUSEEVENT_MOUSEMOVE in SdXImpressDocument

Change-Id: If6948e523fd681dbe289909df68364806628ead6
(cherry picked from commit 56f5a402287e735f5a9c1f84931dcbc9e7b579e7)

diff --git a/sd/source/ui/inc/ViewShell.hxx b/sd/source/ui/inc/ViewShell.hxx
index 49417b6..97ed710 100644
--- a/sd/source/ui/inc/ViewShell.hxx
+++ b/sd/source/ui/inc/ViewShell.hxx
@@ -447,6 +447,8 @@ public:
 void LogicMouseButtonDown(const MouseEvent rMouseEvent);
 /// Same as MouseButtonUp(), but coordinates are in logic unit.
 void LogicMouseButtonUp(const MouseEvent rMouseEvent);
+/// Same as MouseMove(), but coordinates are in logic unit.
+void LogicMouseMove(const MouseEvent rMouseEvent);
 /// Allows adjusting the point or mark of the selection to a document 
coordinate.
 void SetCursorMm100Position(const Point rPosition, bool bPoint, bool 
bClearMark);
 /// Allows starting or ending a graphic move or resize action.
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx
index 5190351..dc40917 100644
--- a/sd/source/ui/unoidl/unomodel.cxx
+++ b/sd/source/ui/unoidl/unomodel.cxx
@@ -2430,6 +2430,9 @@ void SdXImpressDocument::postMouseEvent(int nType, int 
nX, int nY, int nCount)
 case LOK_MOUSEEVENT_MOUSEBUTTONUP:
 pViewShell-LogicMouseButtonUp(aEvent);
 break;
+case LOK_MOUSEEVENT_MOUSEMOVE:
+pViewShell-LogicMouseMove(aEvent);
+break;
 default:
 assert(false);
 break;
diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx
index 402c9a0..66c28b4 100644
--- a/sd/source/ui/view/viewshel.cxx
+++ b/sd/source/ui/view/viewshel.cxx
@@ -538,6 +538,19 @@ void ViewShell::LogicMouseButtonUp(const MouseEvent 
rMouseEvent)
 mpActiveWindow-SetPointerPosPixel(aPoint);
 }
 
+void ViewShell::LogicMouseMove(const MouseEvent rMouseEvent)
+{
+// When we're not doing tiled rendering, then positions must be passed as 
pixels.
+assert(GetDoc()-isTiledRendering());
+
+Point aPoint = mpActiveWindow-GetPointerPosPixel();
+mpActiveWindow-SetLastMousePos(rMouseEvent.GetPosPixel());
+
+MouseMove(rMouseEvent, 0);
+
+mpActiveWindow-SetPointerPosPixel(aPoint);
+}
+
 void ViewShell::SetCursorMm100Position(const Point rPosition, bool bPoint, 
bool bClearMark)
 {
 if (SdrView* pSdrView = GetView())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-06-16 Thread Katarina Behrens
 sd/qa/unit/export-tests.cxx |   65 
 1 file changed, 31 insertions(+), 34 deletions(-)

New commits:
commit a6c07d2c263a39c829385d17cc125bd7d2b01531
Author: Katarina Behrens katarina.behr...@cib.de
Date:   Tue Jun 16 12:20:47 2015 +0200

Use template function to reduce copy'n'pasta code

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

diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx
index 3151afb..3f52898 100644
--- a/sd/qa/unit/export-tests.cxx
+++ b/sd/qa/unit/export-tests.cxx
@@ -71,6 +71,25 @@
 #include config_features.h
 #include com/sun/star/document/XDocumentPropertiesSupplier.hpp
 
+CPPUNIT_NS_BEGIN
+
+template struct assertion_traitsColor
+{
+static bool equal( const Color c1, const Color c2 )
+{
+return c1 == c2;
+}
+
+static std::string toString( const Color c )
+{
+OStringStream ost;
+ost  static_castunsigned int(c.GetColor());
+return ost.str();
+}
+};
+
+CPPUNIT_NS_END
+
 using namespace ::com::sun::star;
 
 class SdExportTest : public SdModelTestBase
@@ -171,8 +190,8 @@ void SdExportTest::testN821567()
 
 namespace {
 
-void checkFontAttributes(const SdrTextObj* pObj, sal_uInt32 nColor,
-bool bCheckWeight, FontWeight eWeight, bool bCheckItalic, FontItalic 
eItalic)
+template typename ItemValue, typename ItemType 
+void checkFontAttributes( const SdrTextObj* pObj, ItemValue nVal)
 {
 CPPUNIT_ASSERT_MESSAGE( no object, pObj != NULL);
 const EditTextObject aEdit = 
pObj-GetOutlinerParaObject()-GetTextObject();
@@ -180,31 +199,12 @@ void checkFontAttributes(const SdrTextObj* pObj, 
sal_uInt32 nColor,
 aEdit.GetCharAttribs(0, rLst);
 for( std::vectorEECharAttrib::reverse_iterator it = rLst.rbegin(); 
it!=rLst.rend(); ++it)
 {
-const SvxColorItem *pCharColor = dynamic_castconst SvxColorItem 
*((*it).pAttr);
-if( pCharColor )
+const ItemType* pAttrib = dynamic_castconst ItemType *((*it).pAttr);
+if (pAttrib)
 {
-CPPUNIT_ASSERT_EQUAL( nColor, pCharColor-GetValue().GetColor());
-}
-
-if(bCheckWeight)
-{
-const SvxWeightItem *pWeight = dynamic_castconst SvxWeightItem 
*((*it).pAttr);
-if( pWeight )
-{
-CPPUNIT_ASSERT_EQUAL( eWeight, pWeight-GetWeight());
-}
-}
-
-if(bCheckItalic)
-{
-const SvxPostureItem *pPosture = dynamic_castconst SvxPostureItem 
*((*it).pAttr);
-if( pPosture )
-{
-CPPUNIT_ASSERT_EQUAL( eItalic, pPosture-GetPosture());
-}
+CPPUNIT_ASSERT_EQUAL( nVal, (ItemValue)pAttrib-GetValue());
 }
 }
-
 }
 
 }
@@ -224,15 +224,15 @@ void SdExportTest::testBnc870233_1()
 // First shape has red, bold font
 {
 const SdrTextObj *pObj = dynamic_castSdrTextObj *( pPage-GetObj( 0 
) );
-checkFontAttributes(pObj, sal_uInt32(0xff),
-true, WEIGHT_BOLD, true, ITALIC_NONE);
+checkFontAttributesColor, SvxColorItem( pObj, Color(0xff) );
+checkFontAttributesFontWeight, SvxWeightItem( pObj, WEIGHT_BOLD );
 }
 
 // Second shape has blue, italic font
 {
 const SdrTextObj *pObj = dynamic_castSdrTextObj *( pPage-GetObj( 1 
) );
-checkFontAttributes(pObj, sal_uInt32(0xff),
-true, WEIGHT_NORMAL, true, ITALIC_NORMAL);
+checkFontAttributesColor, SvxColorItem( pObj, Color(0xff) );
+checkFontAttributesFontItalic, SvxPostureItem( pObj, ITALIC_NORMAL );
 }
 
 xDocShRef-DoClose();
@@ -253,22 +253,19 @@ void SdExportTest::testBnc870233_2()
 // First smart art has blue font color (direct formatting)
 {
 const SdrTextObj *pObj = dynamic_castSdrTextObj *( pPage-GetObj( 0 
) );
-checkFontAttributes(pObj, sal_uInt32(0xff),
-false, WEIGHT_DONTKNOW, false, ITALIC_NONE);
+checkFontAttributesColor, SvxColorItem( pObj, Color(0xff) );
 }
 
 // Second smart art has dk2 font color (style)
 {
 const SdrTextObj *pObj = dynamic_castSdrTextObj *( pPage-GetObj( 1 
) );
-checkFontAttributes(pObj, sal_uInt32(0x1F497D),
-false, WEIGHT_DONTKNOW, false, ITALIC_NONE);
+checkFontAttributesColor, SvxColorItem( pObj, Color(0x1F497D) );
 }
 
 // Third smart art has white font color (style)
 {
 const SdrTextObj *pObj = dynamic_castSdrTextObj *( pPage-GetObj( 2 
) );
-checkFontAttributes(pObj, sal_uInt32(0xff),
-false, WEIGHT_DONTKNOW, false, ITALIC_NONE);
+checkFontAttributesColor, SvxColorItem( pObj, Color(0xff) );
 }
 
 

[GSoC15] Chained Text Boxes - A plan of next milestones

2015-06-16 Thread Matteo Campanelli
Hi there,
I was thinking of the next important goals for something that can be
(hopefully) merged in master at the end of the Summer and I thought of
sharing publicly my plan.
The estimated times are kinda pessimistic since it is likely I missed some
important.

- Get Underflow working as well as overflow (1-2 weeks)
- Have cursor motion work automatically among chained boxes (1 week)
- Have undo working (1 week)
- Have style sheets preserved and allow # of boxes  2. (2 weeks)

In the worst case this should keep me busy until around 19th of July.

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


[Libreoffice-ux-advise] [Bug 91909] Uno commands for slide navigation and slide sorting

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

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

   What|Removed |Added

 Whiteboard|| target:5.1.0

-- 
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 92121] New: Add option to format currency with currency sign left aligned

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

Bug ID: 92121
   Summary: Add option to format currency with currency sign left
aligned
   Product: LibreOffice
   Version: 4.4.4.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: marcelo_javier_r...@yahoo.com.ar

Calc could improve the way it represents currencies by allowing formating them
with the currency symbol left-aligned in the cell (Excel style). This will make
currencies easier to read.

This is current behavior:

A  | B

1 | Currency 1:|   $1,00
2 | Currency 2:| $198,00
3 | Currency 3:|  $21,00
4 | Currency 4:|$9851,00
5 | Currency 5:|   $5,00
6 | Total::|   $10079,00

Requested enhancement:

A  | B

1 | Currency 1:| $  1,00
2 | Currency 2:| $198,00
3 | Currency 3:| $ 21,00
4 | Currency 4:| $   9851,00
5 | Currency 5:| $  5,00
6 | Total::| $  10079,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-commits] core.git: Branch 'libreoffice-5-0' - officecfg/registry svx/Library_svx.mk svx/source svx/uiconfig svx/UIConfig_svx.mk

2015-06-16 Thread Rishabh Kumar
 officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu |   29 ++
 svx/Library_svx.mk   |1 
 svx/UIConfig_svx.mk  |1 
 svx/source/sidebar/PanelFactory.cxx  |5 
 svx/source/sidebar/styles/StylesPropertyPanel.cxx|   55 +
 svx/source/sidebar/styles/StylesPropertyPanel.hxx|   52 
 svx/uiconfig/ui/sidebarstylespanel.ui|  118 +++
 7 files changed, 260 insertions(+), 1 deletion(-)

New commits:
commit 31fcd558a2fdf892e190d9738c224a0752997903
Author: Rishabh Kumar kris.kr...@gmail.com
Date:   Mon Jun 15 01:54:43 2015 +0530

tdf#73071: Styles tab addition to the sidebar for writer

Addition of .uno:StyleApply , .uno:StyleUpdateByExample and 
.uno:StyleNewByExample uno commands to the sidebar

Change-Id: Iab6f1fb465066fce523fd376038a059189f1b842
Reviewed-on: https://gerrit.libreoffice.org/16279
Reviewed-by: Yousuf Philips philip...@hotmail.com
Tested-by: Yousuf Philips philip...@hotmail.com
(cherry picked from commit e436f31147c7eb75908a8750b0e4053c2efdca5b)
Reviewed-on: https://gerrit.libreoffice.org/16306
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
index 3f9e93e..9a40006 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/Sidebar.xcu
@@ -231,6 +231,33 @@
 /node
 node oor:name=PanelList
 
+  node oor:name=StylesPropertyPanel oor:op=replace
+prop oor:name=Title oor:type=xs:string
+  value xml:lang=en-USStyles/value
+/prop
+prop oor:name=Id oor:type=xs:string
+  valueStylesPropertyPanel/value
+/prop
+prop oor:name=DeckId oor:type=xs:string
+  valuePropertyDeck/value
+/prop
+prop oor:name=ContextList
+  value oor:separator=;
+WriterVariants,   Annotation, visible;
+WriterVariants,   DrawText,   visible;
+WriterVariants,   Table,  visible;
+WriterVariants,   Text,   visible;
+WriterVariants,   default,visible;
+  /value
+/prop
+prop oor:name=ImplementationURL oor:type=xs:string
+  
valueprivate:resource/toolpanel/SvxPanelFactory/StylesPropertyPanel/value
+/prop
+prop oor:name=OrderIndex oor:type=xs:int
+  value100/value
+/prop
+  /node
+
   node oor:name=TextPropertyPanel oor:op=replace
 prop oor:name=Title oor:type=xs:string
   value xml:lang=en-USCharacter/value
@@ -270,7 +297,7 @@
   
valueprivate:resource/toolpanel/SvxPanelFactory/TextPropertyPanel/value
 /prop
 prop oor:name=OrderIndex oor:type=xs:int
-  value100/value
+  value120/value
 /prop
   /node
 
diff --git a/svx/Library_svx.mk b/svx/Library_svx.mk
index db5ab90..7cc76cb 100644
--- a/svx/Library_svx.mk
+++ b/svx/Library_svx.mk
@@ -182,6 +182,7 @@ $(eval $(call gb_Library_add_exception_objects,svx,\
 svx/source/sidebar/text/TextUnderlineControl \
 svx/source/sidebar/text/TextUnderlinePopup \
 svx/source/sidebar/text/TextPropertyPanel \
+svx/source/sidebar/styles/StylesPropertyPanel \
 svx/source/sidebar/paragraph/ParaLineSpacingControl \
 svx/source/sidebar/paragraph/ParaLineSpacingPopup \
 svx/source/sidebar/paragraph/ParaPropertyPanel \
diff --git a/svx/UIConfig_svx.mk b/svx/UIConfig_svx.mk
index f4e1f9f..ba19a9c 100644
--- a/svx/UIConfig_svx.mk
+++ b/svx/UIConfig_svx.mk
@@ -64,6 +64,7 @@ $(eval $(call gb_UIConfig_add_uifiles,svx,\
svx/uiconfig/ui/sidebarline \
svx/uiconfig/ui/sidebarparagraph \
svx/uiconfig/ui/sidebarpossize \
+svx/uiconfig/ui/sidebarstylespanel \
svx/uiconfig/ui/sidebartextpanel \
svx/uiconfig/ui/textcontrolchardialog \
svx/uiconfig/ui/textcontrolparadialog \
diff --git a/svx/source/sidebar/PanelFactory.cxx 
b/svx/source/sidebar/PanelFactory.cxx
index bab0a12..a89b9e0 100644
--- a/svx/source/sidebar/PanelFactory.cxx
+++ b/svx/source/sidebar/PanelFactory.cxx
@@ -18,6 +18,7 @@
  */
 
 #include text/TextPropertyPanel.hxx
+#include styles/StylesPropertyPanel.hxx
 #include paragraph/ParaPropertyPanel.hxx
 #include area/AreaPropertyPanel.hxx
 #include graphic/GraphicPropertyPanel.hxx
@@ -144,6 +145,10 @@ Referenceui::XUIElement SAL_CALL 
PanelFactory::createUIElement (
 {
 pControl = TextPropertyPanel::Create(pParentWindow, xFrame, pBindings, 
aContext);
 }
+

[Libreoffice-bugs] [Bug 91237] CALC hangs on web table paste

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

--- Comment #3 from Timur gti...@gmail.com ---
4.4.4.2 still crashes:
Problem signature:
  Problem Event Name:APPCRASH
  Application Name:soffice.bin
  Application Version:4.4.4.2
  Application Timestamp:5578d67f
  Fault Module Name:MSVCR110.dll
  Fault Module Version:11.0.51106.1
  Fault Module Timestamp:5098858e
  Exception Code:4015
  Exception Offset:000a327c
  OS Version:6.1.7601.2.1.0.256.48
  Locale ID:4122

5.0 beta3 crashes after:
loading component library mergedlo.dll failed

master~2015-06-16_07.04.09_LibreOfficeDev_5.1.0.0.alpha1_Win_x86 doesn't crash
and behaves like Linux, paste is rather slow but there's no hang.

So, whatever changed, should be backported to 4.4 and 5.0.

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


[Libreoffice-bugs] [Bug 68604] FILESAVE: part of the comment text is lost in .docx using save toolbar button or save menu item

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

--- Comment #37 from tommy27 ba...@quipo.it ---
(In reply to Timur from comment #33)
 This bug started in the first LO release that supported saving as DOCX.
 Tested with 3.3.0.4. Since OO didn't support DOCX, not inherited.

@Joel
I changed the version to 3.3.0.4 since Timur said that OOo did not support DOCX
so it's not technically an inherited bug. correct me if I'm wrong

-- 
You are receiving this mail because:
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 44419] Allow entire column or entire row ranges in formulae, e.g. A:A or 1:1

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

Eike Rathke er...@redhat.com changed:

   What|Removed |Added

Summary|Allow column or row ranges  |Allow entire column or
   |in formulae |entire row ranges in
   ||formulae, e.g. A:A or 1: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 92121] Add option to format currency with currency sign left aligned

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

Marcelo Ruiz marcelo_javier_r...@yahoo.com.ar changed:

   What|Removed |Added

   Priority|medium  |low

-- 
You are receiving this mail because:
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' - include/svx svx/source

2015-06-16 Thread matteocam
 include/svx/svdmodel.hxx|5 +
 include/svx/svdotext.hxx|1 +
 include/svx/textchain.hxx   |3 +++
 svx/source/svdraw/svdmodel.cxx  |   14 ++
 svx/source/svdraw/svdotext.cxx  |8 
 svx/source/svdraw/textchain.cxx |5 +
 6 files changed, 36 insertions(+)

New commits:
commit dde308668425a5849d49e3ac5040e2157141cc6c
Author: matteocam matteo.campane...@gmail.com
Date:   Tue Jun 16 12:35:28 2015 -0400

Changed SdrModel and SdrTextObj to use TextChain

Change-Id: I3e2e4cbe861f48366e3ab0abbe83c97e0aafe69b

diff --git a/include/svx/svdmodel.hxx b/include/svx/svdmodel.hxx
index bdc992d..c7f7233 100644
--- a/include/svx/svdmodel.hxx
+++ b/include/svx/svdmodel.hxx
@@ -75,6 +75,8 @@ class SotStorage;
 class SdrOutlinerCache;
 class SdrUndoFactory;
 class ImageMap;
+class TextChain;
+
 namespace comphelper
 {
 class IEmbeddedHelper;
@@ -211,6 +213,8 @@ protected:
 sal_uInt16  nDefaultTabulator;
 sal_uInt32  nMaxUndoCount;
 
+TextChain*  pTextChain;
+
 
 
 // sdr::Comment interface
@@ -328,6 +332,7 @@ public:
 SdrOutliner GetDrawOutliner(const SdrTextObj* pObj=NULL) const;
 
 SdrOutliner GetChainingOutliner(const SdrTextObj* pObj=NULL) 
const;
+TextChain *GetTextChain() const;
 
 SdrOutliner GetHitTestOutliner() const { return 
*pHitTestOutliner; }
 const SdrTextObj*GetFormattingTextObj() const;
diff --git a/include/svx/svdotext.hxx b/include/svx/svdotext.hxx
index 83b488e..bbc9207 100644
--- a/include/svx/svdotext.hxx
+++ b/include/svx/svdotext.hxx
@@ -361,6 +361,7 @@ public:
 bool IsChainable() const { return GetNextLinkInChain() != NULL; }
 void SetPreventChainable();
 bool GetPreventChainable() const;
+TextChain *GetTextChain() const;
 
 SdrObjKind GetTextKind() const { return eTextKind; }
 
diff --git a/include/svx/textchain.hxx b/include/svx/textchain.hxx
index e094334..42dc999 100644
--- a/include/svx/textchain.hxx
+++ b/include/svx/textchain.hxx
@@ -29,6 +29,9 @@ class TextChain {
 void AppendLink(SdrTextObj *);
 SdrTextObj *GetNextLink(SdrTextObj *);
 
+// return whether a paragraph is split between the two links in the 
argument
+bool GetLinksHaveMergeableFirstPara(SdrTextObj *pPrevLink, SdrTextObj 
*pNextLink);
+
 };
 
 #endif // INCLUDED_SVX_TEXTCHAIN_HXX
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index ce0ff7a..19652f4 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -54,6 +54,7 @@
 #include svx/svdpool.hxx
 #include svx/svdobj.hxx
 #include svx/svdotext.hxx
+#include svx/textchain.hxx
 #include svx/svdetc.hxx
 #include svx/svdoutl.hxx
 #include svx/svdoole2.hxx
@@ -212,9 +213,17 @@ void SdrModel::ImpCtor(SfxItemPool* pPool, 
::comphelper::IEmbeddedHelper* _pEmbe
 pHitTestOutliner = SdrMakeOutliner( OUTLINERMODE_TEXTOBJECT, this );
 ImpSetOutlinerDefaults(pHitTestOutliner, true);
 
+// FIXME(matteocam)
+/* Start Text Chaining related code */
+
+// Initialize Chaining Outliner
 pChainingOutliner = SdrMakeOutliner( OUTLINERMODE_TEXTOBJECT, this );
 ImpSetOutlinerDefaults(pChainingOutliner, true);
 
+// Make a TextChain
+pTextChain = new TextChain;
+
+/* End Text Chaining related code */
 
 ImpCreateTables();
 }
@@ -1977,6 +1986,11 @@ void SdrModel::PageListChanged()
 {
 }
 
+TextChain *SdrModel::GetTextChain() const
+{
+return pTextChain;
+}
+
 const SdrPage* SdrModel::GetMasterPage(sal_uInt16 nPgNum) const
 {
 DBG_ASSERT(nPgNum  maMaPag.size(), SdrModel::GetMasterPage: Access out 
of range (!));
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 03b8388..cc17892 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -1543,6 +1543,14 @@ void SdrTextObj::SetToBeChained(bool bToBeChained)
 mbToBeChained = bToBeChained;
 }
 
+TextChain *SdrTextObj::GetTextChain() const
+{
+if (!IsChainable())
+return NULL;
+
+return pModel-GetTextChain();
+}
+
 void SdrTextObj::SetVerticalWriting(bool bVertical)
 {
 OutlinerParaObject* pOutlinerParaObject = GetOutlinerParaObject();
diff --git a/svx/source/svdraw/textchain.cxx b/svx/source/svdraw/textchain.cxx
index 194d4d4..17595c9 100644
--- a/svx/source/svdraw/textchain.cxx
+++ b/svx/source/svdraw/textchain.cxx
@@ -32,3 +32,8 @@ SdrTextObj *TextChain::GetNextLink(SdrTextObj *)
 {
 return NULL; // XXX
 }
+
+bool TextChain::GetLinksHaveMergeableFirstPara(SdrTextObj *pPrevLink, 
SdrTextObj *pNextLink)
+{
+
+}
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Putting speech recognition into LibreOffice Writer

2015-06-16 Thread Tony Robinson
I run a speech recognition company (www.speechmatics.com) and we've 
developed some really cutting-edge technology that means that general 
speech recognition is far more accurate than it has been in the past 
(I've worked in this area for 30 years and run many speech companies).


What I'd like to do is to integrate this into LibreOffice Writer so that 
anyone can quickly and easily edit the speech recognition output until 
it is a perfect, beautifully formatted transcript. This will be far 
faster than conventional audio transcription and so save very many 
thousands of people a lot of time.


To work really well it has to be a very tight integration as the speech 
recogniser provides a very good predictive model for what comes next.   
It will be a completely different mode of operation which remaps keys to 
make corrections as fast and efficiently as possible.   It also has to 
play the audio so that the user can hear what was really said in order 
to make the corrections.


I'm very serious about getting this idea out and would like to engage a 
developer who is fluent with the low level internals of Writer to make 
this happen.


Please get in touch if you are interested.


Tony

--
Dr A J Robinson, Founder.
We are hiring: www.speechmatics.com/careers 
http:www.speechmatics.com/careers

Speechmatics is a trading name of Cantab Research Limited
Phone direct: 01223 778240 office: 01223 794497
Company reg no GB 05697423, VAT reg no 925606030
51 Canterbury Street, Cambridge, CB4 3QG, UK
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 92026] FILEOPEN: Borders not proper in table from DOCX

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

Timur gti...@gmail.com changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

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

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

   What|Removed |Added

 Whiteboard| target:5.1.0   | target:5.1.0
   ||target:5.0.0.1

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


[Libreoffice-bugs] [Bug 68604] FILESAVE: part of the comment text is lost in .docx using save toolbar button or save menu item

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

--- Comment #38 from Timur gti...@gmail.com ---
(In reply to Joel Madero from comment #36)
 Is this really not inherited from OOo (this is a regression from the
 fork)? I've never seen a bug that is a regression from fork at the point of
 3.3. 
Well, there are, because saving to XML is not inherited, it didn't exist, and
it was introduced only in LO 3.3. Also Bug 89991, Bug 91153.
 @Tommy - can you explain the change? If it's a regression we should tag it
 in the keywords
It's not a regression, it never worked fine from the beginning.

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


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

2015-06-16 Thread Caolán McNamara
 sfx2/source/appl/linkmgr2.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ff2dd7942e42476432c2db08da71d85be7a14075
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Jun 16 16:43:15 2015 +0100

crash on use of 'echo hello' as dde command in insert section

Change-Id: Ic46be8ac6da04663096e682d17faa214b324e8bf

diff --git a/sfx2/source/appl/linkmgr2.cxx b/sfx2/source/appl/linkmgr2.cxx
index c77ee19..164742b 100644
--- a/sfx2/source/appl/linkmgr2.cxx
+++ b/sfx2/source/appl/linkmgr2.cxx
@@ -272,7 +272,7 @@ bool LinkManager::GetDisplayNames( const SvBaseLink * pLink,
 if( pFile )
 *pFile = sTopic;
 if( pLinkStr )
-*pLinkStr = sCmd.copy( nTmp );
+*pLinkStr = nTmp != -1 ? sCmd.copy(nTmp) : OUString();
 bRet = true;
 }
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-06-16 Thread Caolán McNamara
 sfx2/source/appl/linkmgr2.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b5fa5c0324298e70fcbfbde482fea6d554fc8760
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Jun 16 16:43:15 2015 +0100

crash on use of 'echo hello' as dde command in insert section

Change-Id: Ic46be8ac6da04663096e682d17faa214b324e8bf
(cherry picked from commit ff2dd7942e42476432c2db08da71d85be7a14075)

diff --git a/sfx2/source/appl/linkmgr2.cxx b/sfx2/source/appl/linkmgr2.cxx
index c3e2565..e3d4b45 100644
--- a/sfx2/source/appl/linkmgr2.cxx
+++ b/sfx2/source/appl/linkmgr2.cxx
@@ -272,7 +272,7 @@ bool LinkManager::GetDisplayNames( const SvBaseLink * pLink,
 if( pFile )
 *pFile = sTopic;
 if( pLinkStr )
-*pLinkStr = sCmd.copy( nTmp );
+*pLinkStr = nTmp != -1 ? sCmd.copy(nTmp) : OUString();
 bRet = true;
 }
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 55058] List of EMF import bugs with examples

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

--- Comment #14 from mathog mat...@caltech.edu ---
Created attachment 116589
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116589action=edit
More recent, more complete EMF test file

I'm uploading a more recent and complete EMF test file.  Among other things, it
has a full set of clipping tests and some gradient record tests (real
gradients, not the fake ones made up hundreds of colored rectangular slices).

-- 
You are receiving this mail because:
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 44419] Allow column or row ranges in formulae

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

Eike Rathke er...@redhat.com changed:

   What|Removed |Added

 CC||7qia0t...@sneakemail.com

--- Comment #14 from Eike Rathke er...@redhat.com ---
*** Bug 48571 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 48571] : Allow A:A format to include an entire column and 1:1 format to include an entire row

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

Eike Rathke er...@redhat.com changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
You are receiving this mail because:
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 48571] : Allow A:A format to include an entire column and 1:1 format to include an entire row

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

Eike Rathke er...@redhat.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #10 from Eike Rathke er...@redhat.com ---


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

-- 
You are receiving this mail because:
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 'libreoffice-4-4' - sc/source svx/source

2015-06-16 Thread Henry Castro
 sc/source/core/data/drwlayer.cxx |   59 +++
 svx/source/svdraw/svdoashp.cxx   |1 
 2 files changed, 60 insertions(+)

New commits:
commit 0c02e1892ad87aa81e29b5642b16db3f4c128418
Author: Henry Castro hcas...@collabora.com
Date:   Fri Apr 24 16:55:01 2015 -0400

Resolves tdf#67712 form controls and draw objects

anchored to cell but changes position after reopening

Also included tdf#68797 FILEOPEN lost position of lines
anchored to cell. It was marked as duplicate but the
step to reproduce are different.

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

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

Reviewed-on: https://gerrit.libreoffice.org/15523
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Andras Timar andras.ti...@collabora.com
(cherry picked from commit 487880b6882ec01c1b4679eae60bec484272a86b)

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

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

diff --git a/sc/source/core/data/drwlayer.cxx b/sc/source/core/data/drwlayer.cxx
index 23e0de3..6649953 100644
--- a/sc/source/core/data/drwlayer.cxx
+++ b/sc/source/core/data/drwlayer.cxx
@@ -27,6 +27,7 @@
 #include com/sun/star/embed/ElementModes.hpp
 #include com/sun/star/embed/NoVisualAreaSizeException.hpp
 #include com/sun/star/datatransfer/XTransferable.hpp
+#include basegfx/matrix/b2dhommatrixtools.hxx
 
 #include scitems.hxx
 #include editeng/eeitem.hxx
@@ -116,6 +117,14 @@ void ScUndoObjData::Undo()
 pData-maStart = aOldStt;
 pData-maEnd = aOldEnd;
 }
+
+// Undo also an untransformed anchor
+pData = ScDrawLayer::GetNonRotatedObjData( pObj );
+if (pData)
+{
+pData-maStart = aOldStt;
+pData-maEnd = aOldEnd;
+}
 }
 
 void ScUndoObjData::Redo()
@@ -127,6 +136,14 @@ void ScUndoObjData::Redo()
 pData-maStart = aNewStt;
 pData-maEnd = aNewEnd;
 }
+
+// Redo also an untransformed anchor
+pData = ScDrawLayer::GetNonRotatedObjData( pObj );
+if (pData)
+{
+pData-maStart = aNewStt;
+pData-maEnd = aNewEnd;
+}
 }
 
 ScTabDeletedHint::ScTabDeletedHint( SCTAB nTabNo ) :
@@ -495,6 +512,15 @@ void ScDrawLayer::MoveCells( SCTAB nTab, SCCOL nCol1,SCROW 
nRow1, SCCOL nCol2,SC
 {
 if ( pObj-ISA( SdrRectObj )  pData-maStart.IsValid()  
pData-maEnd.IsValid() )
 pData-maStart.PutInOrder( pData-maEnd );
+
+// Update also an untransformed anchor thats what we stored ( 
and still do ) to xml
+ScDrawObjData* pNoRotatedAnchor = GetNonRotatedObjData( pObj, 
false );
+if ( pNoRotatedAnchor )
+{
+pNoRotatedAnchor-maStart = pData-maStart;
+pNoRotatedAnchor-maEnd = pData-maEnd;
+}
+
 AddCalcUndo( new ScUndoObjData( pObj, aOldStt, aOldEnd, 
pData-maStart, pData-maEnd ) );
 RecalcPos( pObj, *pData, bNegativePage, bUpdateNoteCaptionPos 
);
 }
@@ -759,6 +785,39 @@ void ScDrawLayer::RecalcPos( SdrObject* pObj, 
ScDrawObjData rData, bool bNegati
 ScDrawObjData rNoRotatedAnchor = *GetNonRotatedObjData( pObj, true );
 if (rData.maLastRect.IsEmpty())
 {
+// Every shape it is saved with an negative offset relative to cell
+if (ScDrawLayer::GetAnchorType(*pObj) == SCA_CELL)
+{
+double fRotate(0.0);
+double fShearX(0.0);
+
+Point aPoint;
+Rectangle aRect;
+
+basegfx::B2DTuple aScale;
+basegfx::B2DTuple aTranslate;
+basegfx::B2DPolyPolygon aPolyPolygon;
+basegfx::B2DHomMatrix aOriginalMatrix;
+
+aRect = pDoc-GetMMRect(nCol1, nRow1, nCol1 , nRow1, nTab1);
+
+if (bNegativePage)
+aPoint.X() = aRect.Right();
+else
+aPoint.X() = aRect.Left();
+aPoint.Y() = aRect.Top();
+
+pObj-TRGetBaseGeometry(aOriginalMatrix, aPolyPolygon);
+aOriginalMatrix.decompose(aScale, aTranslate, fRotate, 
fShearX);
+aTranslate += ::basegfx::B2DTuple(aPoint.X(), aPoint.Y());
+aOriginalMatrix = 
basegfx::tools::createScaleShearXRotateTranslateB2DHomMatrix(
+aScale,
+fShearX,
+fRotate,
+aTranslate);
+pObj-TRSetBaseGeometry(aOriginalMatrix, aPolyPolygon);
+}
+
 // It's confusing ( but blame that we persist the 

[Libreoffice-commits] core.git: svx/uiconfig

2015-06-16 Thread Rishabh Kumar
 svx/uiconfig/ui/sidebarline.ui |  204 -
 1 file changed, 81 insertions(+), 123 deletions(-)

New commits:
commit 4fb65441709d02946f4b24da7839dba7ec1e
Author: Rishabh Kumar kris.kr...@gmail.com
Date:   Sun Jun 14 16:28:42 2015 +0530

Line Section reorganisation

Arrow Style, Corner Style and Cap Style are hidden

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

diff --git a/svx/uiconfig/ui/sidebarline.ui b/svx/uiconfig/ui/sidebarline.ui
index 5aa8431..6309198 100644
--- a/svx/uiconfig/ui/sidebarline.ui
+++ b/svx/uiconfig/ui/sidebarline.ui
@@ -1,6 +1,7 @@
 ?xml version=1.0 encoding=UTF-8?
+!-- Generated with glade 3.18.3 --
 interface
-  !-- interface-requires gtk+ 3.0 --
+  requires lib=gtk+ version=3.0/
   object class=GtkAdjustment id=adjustment1
 property name=upper100/property
 property name=step_increment5/property
@@ -31,47 +32,33 @@
 property name=row_spacing6/property
 property name=column_spacing6/property
 child
-  object class=GtkLabel id=widthlabel
+  object class=GtkLabel id=translabel
 property name=visibleTrue/property
 property name=can_focusFalse/property
 property name=xalign0/property
-property name=label 
translatable=yes_Width:/property
+property name=label 
translatable=yes_Transparency:/property
 property name=use_underlineTrue/property
   /object
   packing
 property name=left_attach0/property
-property name=top_attach0/property
-property name=width1/property
-property name=height1/property
+property name=top_attach3/property
   /packing
 /child
 child
-  object class=GtkToolbar id=width
-property name=width_request120/property
+  object class=GtkSpinButton id=linetransparency:0%
 property name=visibleTrue/property
-property name=can_focusFalse/property
+property name=can_focusTrue/property
 property name=has_tooltipTrue/property
-property name=tooltip_markup translatable=yesSelect 
the width of the line./property
-property name=tooltip_text translatable=yesSelect 
the width of the line./property
-child
-  object class=GtkMenuToolButton id=setwidth
-property name=width_request105/property
-property name=visibleTrue/property
-property name=can_focusFalse/property
-property 
name=action_name.uno:SelectWidth/property
-property name=use_underlineTrue/property
-  /object
-  packing
-property name=expandTrue/property
-property name=homogeneousTrue/property
-  /packing
-/child
+property name=tooltip_markup translatable=yesSpecify 
the transparency of the line./property
+property name=tooltip_text translatable=yesSpecify 
the transparency of the line./property
+property name=hexpandTrue/property
+property name=invisible_char•/property
+property name=adjustmentadjustment1/property
+property name=climb_rate5/property
   /object
   packing
 property name=left_attach1/property
-property name=top_attach0/property
-property name=width1/property
-property name=height1/property
+property name=top_attach3/property
   /packing
 /child
 child
@@ -81,33 +68,10 @@
 property name=xalign0/property
 property name=label 
translatable=yes_Color:/property
 property name=use_underlineTrue/property
-property name=mnemonic_widgetcolor/property
   /object
   packing
 property name=left_attach0/property
-property name=top_attach1/property
-property name=width1/property
-property name=height1/property
-  /packing
-/child
-child
-  object class=GtkSpinButton 

[Libreoffice-bugs] [Bug 67712] form controls and draw objects anchored to cell but changes position after reopening

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

--- Comment #69 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Henry Castro committed a patch related to this issue.
It has been pushed to libreoffice-4-4:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=0c02e1892ad87aa81e29b5642b16db3f4c128418h=libreoffice-4-4

Resolves tdf#67712 form controls and draw objects

It will be available in 4.4.5.

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

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


[Libreoffice-bugs] [Bug 67712] form controls and draw objects anchored to cell but changes position after reopening

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

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

   What|Removed |Added

 Whiteboard|bibisected lhm-limux|bibisected lhm-limux
   |target:5.1.0|target:5.1.0
   |target:5.0.0.0.beta2|target:5.0.0.0.beta2
   |backportRequest:4.4 |backportRequest:4.4
   ||target:4.4.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


  1   2   3   4   >