[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - include/vcl vcl/source

2016-01-29 Thread Katarina Behrens
 include/vcl/layout.hxx   |1 -
 vcl/source/window/dialog.cxx |   34 +++---
 2 files changed, 27 insertions(+), 8 deletions(-)

New commits:
commit 2cbd9dffe76068c71c9de3f6525ce68d949085c3
Author: Katarina Behrens 
Date:   Tue Jan 19 23:07:47 2016 +0100

tdf#95587: Make rectangle control within tab pages work again

Since commit 74407aef94b6d8dfdd6, tab pages|controls are
considered to be container widgets (thus, search for the nearest
non-layout parent will never find a tab page parent, breaking
rectangle control in many dialogs). I've no idea how many
other functions' behaviour this changes in an unexpected way,
so I've reverted that bit.

That however means implementing slightly different approach to
tdf#92630 in dialogs (for a tab dialog, find current tab page
and go through its children)

Change-Id: I3ff5ac13f04b1c5c799c7a1a3769108927809f31
Reviewed-on: https://gerrit.libreoffice.org/21615
Tested-by: Jenkins 
Reviewed-by: Thorsten Behrens 
(cherry picked from commit 39471da6e4d016c52c6cdf6553d7418416a160f4)
Reviewed-on: https://gerrit.libreoffice.org/21668
Reviewed-by: Miklos Vajna 

diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index be86c75..6bdef03 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -704,7 +704,6 @@ inline bool isContainerWindow(const vcl::Window )
 {
 WindowType eType = rWindow.GetType();
 return eType == WINDOW_CONTAINER || eType == WINDOW_SCROLLWINDOW ||
-eType == WINDOW_TABCONTROL || eType == WINDOW_TABPAGE ||
(eType == WINDOW_DOCKINGWINDOW && ::isLayoutEnabled());
 }
 
diff --git a/vcl/source/window/dialog.cxx b/vcl/source/window/dialog.cxx
index 1793afdf5..8b70c2e 100644
--- a/vcl/source/window/dialog.cxx
+++ b/vcl/source/window/dialog.cxx
@@ -42,6 +42,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 #include 
 #include 
 #include 
@@ -236,6 +238,16 @@ void ImplWindowAutoMnemonic( vcl::Window* pWindow )
 }
 }
 
+void ImplHandleControlAccelerator( vcl::Window* pWindow, bool bShow )
+{
+Control *pControl = dynamic_cast(pWindow->ImplGetWindow());
+if (pControl && pControl->GetText().indexOf('~') != -1)
+{
+pControl->SetShowAccelerator( bShow );
+pControl->Invalidate(InvalidateFlags::Update);
+}
+}
+
 static VclButtonBox* getActionArea(Dialog *pDialog)
 {
 VclButtonBox *pButtonBox = nullptr;
@@ -590,19 +602,27 @@ bool Dialog::ImplHandleCmdEvent( const CommandEvent& 
rCEvent )
 if (rCEvent.GetCommand() == CommandEventId::ModKeyChange)
 {
 const CommandModKeyData *pCData = rCEvent.GetModKeyData ();
+bool bShowAccel =  pCData && pCData->IsMod2();
 
 Window *pGetChild = firstLogicalChildOfParent(this);
 while (pGetChild)
 {
-Control *pControl = 
dynamic_cast(pGetChild->ImplGetWindow());
-if (pControl && pControl->GetText().indexOf('~') != -1)
+if ( pGetChild->GetType() == WINDOW_TABCONTROL )
 {
-if (pCData && pCData->IsMod2())
-pControl->SetShowAccelerator(true);
-else
-pControl->SetShowAccelerator(false);
-pControl->Invalidate(InvalidateFlags::Update);
+ // find currently shown tab page
+ TabControl* pTabControl = static_cast( pGetChild 
);
+ TabPage* pTabPage = pTabControl->GetTabPage( 
pTabControl->GetCurPageId() );
+ vcl::Window* pTabPageChild =  firstLogicalChildOfParent( 
pTabPage );
+
+ // and go through its children
+ while ( pTabPageChild )
+ {
+ ImplHandleControlAccelerator(pTabPageChild, bShowAccel);
+ pTabPageChild = nextLogicalChildOfParent(pTabPage, 
pTabPageChild);
+ }
 }
+
+ImplHandleControlAccelerator( pGetChild, bShowAccel );
 pGetChild = nextLogicalChildOfParent(this, pGetChild);
 }
 return true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96327] Start Center: "F" accelerator for "Remote Files" conflicts with "alt+F" accelerator for "File" menu

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96327

--- Comment #8 from Beluga  ---
(In reply to Gabriele Ponzo from comment #7)
> I've moved accelerator from F to S as suggested.
> 
> Thanks to _david_ for pushing the patch.

Ah, it is here: https://gerrit.libreoffice.org/#/c/21898/

-- 
You are receiving this mail because:
You 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 97344] Filter items disappear after press space bar

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97344

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||deena.fran...@gmail.com

--- Comment #3 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Deena Francis ; Could you possibly take a look at this one?
Thanks

39937f1a341adcd07964285be3c2e71e70798d57 is the first bad commit
commit 39937f1a341adcd07964285be3c2e71e70798d57
Author: Matthew Francis 
Date:   Wed May 27 20:39:53 2015 +0800

source-hash-f340278df616921c663075be692264ca37d86d84

commit f340278df616921c663075be692264ca37d86d84
Author: Deena Francis 
AuthorDate: Mon Mar 23 06:54:36 2015 +0530
Commit: Caolán McNamara 
CommitDate: Thu Mar 26 14:20:28 2015 +

Enhancement : tdf#89908 Add Search field to the autofilter

Change-Id: Id44f61b5194f0a0898f8eed85ceadf78c3101aa1
Reviewed-on: https://gerrit.libreoffice.org/14958
Tested-by: Jenkins 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

:04 04 de15c4de741c20225e95bf38e238363e04c69f46
b16b6b5f42b3c897cd3e12a7727584be11f5349f Mopt

-- 
You are receiving this mail because:
You 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 56311] UI: Cell Comments do not play well with Frozen Cells

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56311

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #4 from Beluga  ---
I confirm editing comment below freeze is still wonky.

Note: new location of Freeze: View - Freeze rows and columns

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 259c1ed201f4277d74dfd600fed8c837cbf56abc
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-27_00:45:12
Locale: fi-FI (fi_FI)

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


[Libreoffice-bugs] [Bug 61871] EDITING: Query of a multiplication with fields of two tables don't refresh.

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61871

--- Comment #10 from rob...@familiegrosskopf.de ---
Bug still exists with LO 5.1.0.3, OpenSUSE 42.1 Leap, 64bit rpm Linux.

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


[Libreoffice-bugs] [Bug 97435] New: Memory wasteage around OutputDevice ...

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97435

Bug ID: 97435
   Summary: Memory wasteage around OutputDevice ...
   Product: LibreOffice Online
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michael.me...@collabora.com

47   
mpBufferDevice->SetOutputSizePixel(getOutputDevice().GetOutputSizePixel(),
false);

Allocates a buffer of this size:

1789x956

To render a 256x256 pixel square tile ;-) which seems ... curious in the
extreme, and potentially rather wasteful as well =)

Command-line is:

LO_TRACE='gdb --args' bin/run tilebench
/opt/libreoffice/master/instdir/program/ /tmp/helloworld.odt

where helloworld.odt is a small file containing "Hello World"

Backtrace is like this:

#0  0x7fffeaa2fd48 in
sdr::overlay::OverlayManagerBuffered::ImpPrepareBufferDevice() (this=0x13ef680)
at
/data/opt/libreoffice/master/svx/source/sdr/overlay/overlaymanagerbuffered.cxx:47
#1  0x7fffeaa30822 in
sdr::overlay::OverlayManagerBuffered::ImpSaveBackground(vcl::Region const&,
OutputDevice*) (this=0x13ef680, rRegion=..., pPreRenderDevice=0x131b410) at
/data/opt/libreoffice/master/svx/source/sdr/overlay/overlaymanagerbuffered.cxx:161
#2  0x7fffeaa31878 in
sdr::overlay::OverlayManagerBuffered::completeRedraw(vcl::Region const&,
OutputDevice*) const (this=0x13ef680, rRegion=..., pPreRenderDevice=0x131b410)
at
/data/opt/libreoffice/master/svx/source/sdr/overlay/overlaymanagerbuffered.cxx:419
#3  0x7fffd247d22c in (anonymous
namespace)::RenderContextGuard::~RenderContextGuard() (this=0x7ffbd300,
__in_chrg=) at
/data/opt/libreoffice/master/sw/source/core/view/viewsh.cxx:1709
#4  0x7fffd247db20 in SwViewShell::Paint(OutputDevice&, Rectangle const&)
(this=0x12c3b10, rRenderContext=..., rRect=Rectangle = {...}) at
/data/opt/libreoffice/master/sw/source/core/view/viewsh.cxx:1848
#5  0x7fffd1b5c3b4 in SwCursorShell::Paint(OutputDevice&, Rectangle const&)
(this=0x12c3b10, rRenderContext=..., rRect=Rectangle = {...}) at
/data/opt/libreoffice/master/sw/source/core/crsr/crsrsh.cxx:1278
#6  0x7fffd247e183 in SwViewShell::PaintTile(VirtualDevice&, int, int, int,
int, long, long) (this=0x12c3b10, rDevice=..., contextWidth=256,
contextHeight=256, tilePosX=0, tilePosY=0, tileWidth=12474, tileHeight=17406)
at /data/opt/libreoffice/master/sw/source/core/view/viewsh.cxx:1907
#7  0x7fffd2861235 in SwXTextDocument::paintTile(VirtualDevice&, int, int,
int, int, long, long) (this=0x7fffd8b18508, rDevice=..., nOutputWidth=256,
nOutputHeight=256, nTilePosX=0, nTilePosY=0, nTileWidth=12474,
nTileHeight=17406) at
/data/opt/libreoffice/master/sw/source/uibase/uno/unotxdoc.cxx:3111
#8  0x7fffee7d4a50 in doc_paintTile(LibreOfficeKitDocument*, unsigned
char*, int, int, int, int, int, int) (pThis=0x1123e00, pBuffer=0x7ffbdaf0
'\001' ,
"\002\002\002\002\004\002\002\002\004\003\003\003\006\004\004\004\a\004\004\004\a\004\004\004\a\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b\004\004\004\b"...,
nCanvasWidth=256, nCanvasHeight=256, nTilePosX=0, nTilePosY=0,
nTileWidth=12474, nTileHeight=17406) at
/data/opt/libreoffice/master/desktop/source/lib/init.cxx:924

I assume it is picking up a window size, from a (hidden) window that is
~irrelevant to the size of the output device we should be rendering into.

I guess a more careful selection of outputdevice - not fetched from the window,
but as-passed-in would be helpful there =)

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


[Libreoffice-bugs] [Bug 50816] EDITING: Pictures in forms not deleted in the *.odb-file when deleted in forms

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50816

--- Comment #5 from rob...@familiegrosskopf.de ---
Bug still exists with LO 5.1.0.3, OpenSUSE 42.1 Leap, 64bit rpm Linux.

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


[Libreoffice-bugs] [Bug 97233] [META] Dialog Designer bugs and enhancements

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97233

Samuel Mehrbrodt  changed:

   What|Removed |Added

 Depends on||96684

-- 
You are receiving this mail because:
You 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 96684] Basic XDL Dialog files should open with Dialog Editor

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96684

Samuel Mehrbrodt  changed:

   What|Removed |Added

 CC||samuel.mehrbr...@cib.de
 Blocks||97233

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

2016-01-29 Thread akki95
 dbaccess/source/core/misc/dsntypes.cxx |2 +-
 dbaccess/source/inc/dsntypes.hxx   |   12 ++--
 dbaccess/source/ui/dlg/ConnectionPageSetup.cxx |5 +
 3 files changed, 12 insertions(+), 7 deletions(-)

New commits:
commit 82b4afb4295a58c1afee39877a894136d68111ec
Author: akki95 
Date:   Tue Jan 26 03:52:42 2016 +0530

whitespace fixup

Change-Id: Ia5a2cd92e069c038f4ff0c97876b95c5d81e4db1

diff --git a/dbaccess/source/core/misc/dsntypes.cxx 
b/dbaccess/source/core/misc/dsntypes.cxx
index 8f90a1a..fe94d2e 100644
--- a/dbaccess/source/core/misc/dsntypes.cxx
+++ b/dbaccess/source/core/misc/dsntypes.cxx
@@ -401,7 +401,7 @@ DATASOURCE_TYPE ODsnTypeCollection::determineType(const 
OUString& _rDsn) const
 KnownPrefix( "sdbc:mysql:jdbc:",DST_MYSQL_JDBC, false ),
 KnownPrefix( "sdbc:mysql:mysqlc:",  DST_MYSQL_NATIVE,   false ),
 KnownPrefix( "sdbc:mysqlc:",DST_MYSQL_NATIVE_DIRECT,false ),
-KnownPrefix( "sdbc:postgresql:",DST_POSTGRES,false ),
+KnownPrefix( "sdbc:postgresql:",DST_POSTGRES   ,false ),
 
 KnownPrefix( "sdbc:address:mozilla:",   DST_MOZILLA,   
 true ),
 KnownPrefix( "sdbc:address:thunderbird:",   DST_THUNDERBIRD,   
 true ),
diff --git a/dbaccess/source/inc/dsntypes.hxx b/dbaccess/source/inc/dsntypes.hxx
index 9ce1f7c..8de9a93 100644
--- a/dbaccess/source/inc/dsntypes.hxx
+++ b/dbaccess/source/inc/dsntypes.hxx
@@ -46,22 +46,22 @@ enum DATASOURCE_TYPE
 DST_ODBC= 10,
 DST_ADO = 11,
 DST_MOZILLA = 12,
- DST_THUNDERBIRD = 13,
+DST_THUNDERBIRD = 13,
 DST_LDAP= 14,
 DST_OUTLOOK = 15,
 DST_OUTLOOKEXP  = 16,
 DST_EVOLUTION   = 17,
 DST_EVOLUTION_GROUPWISE = 18,
 DST_EVOLUTION_LDAP  = 19,
- DST_KAB = 20,
- DST_MACAB   = 21,
+DST_KAB = 20,
+DST_MACAB   = 21,
 DST_MSACCESS_2007   = 22,
- DST_EMBEDDED_HSQLDB= 23,
+DST_EMBEDDED_HSQLDB = 23,
 DST_MYSQL_NATIVE= 24,
 DST_MYSQL_NATIVE_DIRECT = 25,
 DST_FIREBIRD= 26,
-DST_EMBEDDED_FIREBIRD= 27,
-DST_POSTGRES = 28,
+DST_EMBEDDED_FIREBIRD   = 27,
+DST_POSTGRES= 28,
 
 DST_USERDEFINE1,/// first user defined driver
 DST_USERDEFINE2,
commit 90e18b514f639827091cee0f04892d999046eb18
Author: akki95 
Date:   Tue Jan 26 03:52:42 2016 +0530

tdf#45775 PgSQL new DB allow empty Datasource

Change-Id: I5d672629ddf7f153f0ad1927f0f6c0ffc545c3ab

diff --git a/dbaccess/source/ui/dlg/ConnectionPageSetup.cxx 
b/dbaccess/source/ui/dlg/ConnectionPageSetup.cxx
index 21e1ea3..864b406 100644
--- a/dbaccess/source/ui/dlg/ConnectionPageSetup.cxx
+++ b/dbaccess/source/ui/dlg/ConnectionPageSetup.cxx
@@ -138,6 +138,9 @@ namespace dbaui
 //! TODO
 //if (  ::dbaccess::DST_ORACLE_JDBC == m_eType )
 //m_eType =  ::dbaccess::DST_JDBC;
+if(m_pCollection->determineType(m_eType) == ::dbaccess::DST_POSTGRES){
+SetRoadmapStateValue(true);
+}
 
 OConnectionHelper::implInitControls(_rSet, _bSaveValue);
 
@@ -168,6 +171,8 @@ namespace dbaui
 }
 bool OConnectionTabPageSetup::checkTestConnection()
 {
+if ( m_pCollection->determineType(m_eType) ==  
::dbaccess::DST_POSTGRES )
+return true;
 return !m_pConnectionURL->IsVisible() || 
!m_pConnectionURL->GetTextNoPrefix().isEmpty();
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: configure.ac distro-configs/LibreOfficeAndroidAarch64.conf distro-configs/LibreOfficeAndroid.conf distro-configs/LibreOfficeAndroidX86.conf

2016-01-29 Thread Peter Foley
 configure.ac  |3 +++
 distro-configs/LibreOfficeAndroid.conf|3 ---
 distro-configs/LibreOfficeAndroidAarch64.conf |3 ---
 distro-configs/LibreOfficeAndroidX86.conf |3 ---
 4 files changed, 3 insertions(+), 9 deletions(-)

New commits:
commit 6f2b0b5de3a99b029b61079bd9a9c313305d0e12
Author: Peter Foley 
Date:   Mon Jan 18 17:27:34 2016 -0500

disable options by default on android

Some options aren't supported on android, so disable them by default to
avoid errors.

Change-Id: Ifef2f5ff55d3bd7d7da1f53d1345be3c5ef11f45
Reviewed-on: https://gerrit.libreoffice.org/21590
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/configure.ac b/configure.ac
index 75d6b70..fed2b42 100644
--- a/configure.ac
+++ b/configure.ac
@@ -811,6 +811,9 @@ linux-android*)
 enable_coinmp=yes
 enable_lpsolve=no
 enable_report_builder=no
+enable_odk=no
+enable_postgresql_sdbc=no
+enable_python=no
 with_theme="tango"
 test_cups=no
 test_dbus=no
diff --git a/distro-configs/LibreOfficeAndroid.conf 
b/distro-configs/LibreOfficeAndroid.conf
index 6fd32fa..9db6a72 100644
--- a/distro-configs/LibreOfficeAndroid.conf
+++ b/distro-configs/LibreOfficeAndroid.conf
@@ -3,9 +3,6 @@
 --disable-cups
 --disable-gstreamer-0-10
 --disable-gstreamer-1-0
---disable-odk
---disable-postgresql-sdbc
---disable-python
 --disable-randr
 --disable-randr-link
 --disable-systray
diff --git a/distro-configs/LibreOfficeAndroidAarch64.conf 
b/distro-configs/LibreOfficeAndroidAarch64.conf
index a673c95..ca93713 100644
--- a/distro-configs/LibreOfficeAndroidAarch64.conf
+++ b/distro-configs/LibreOfficeAndroidAarch64.conf
@@ -3,9 +3,6 @@
 --disable-cups
 --disable-gstreamer-0-10
 --disable-gstreamer-1-0
---disable-odk
---disable-postgresql-sdbc
---disable-python
 --disable-randr
 --disable-randr-link
 --disable-systray
diff --git a/distro-configs/LibreOfficeAndroidX86.conf 
b/distro-configs/LibreOfficeAndroidX86.conf
index e79a2c4..e5589e8 100644
--- a/distro-configs/LibreOfficeAndroidX86.conf
+++ b/distro-configs/LibreOfficeAndroidX86.conf
@@ -3,9 +3,6 @@
 --disable-cups
 --disable-gstreamer-0-10
 --disable-gstreamer-1-0
---disable-odk
---disable-postgresql-sdbc
---disable-python
 --disable-randr
 --disable-randr-link
 --disable-systray
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: external/cairo external/expat external/lcms2 external/redland

2016-01-29 Thread Peter Foley
 external/cairo/ExternalProject_cairo.mk |3 ++-
 external/cairo/ExternalProject_pixman.mk|3 ++-
 external/expat/ExternalProject_expat.mk |3 ++-
 external/lcms2/ExternalProject_lcms2.mk |3 ++-
 external/redland/ExternalProject_raptor.mk  |3 ++-
 external/redland/ExternalProject_rasqal.mk  |3 ++-
 external/redland/ExternalProject_redland.mk |3 ++-
 7 files changed, 14 insertions(+), 7 deletions(-)

New commits:
commit 2c5f8927349cf0e643e0bfebf4d9aa5b726b0f89
Author: Peter Foley 
Date:   Sun Jan 17 19:22:51 2016 -0500

Android autoconf fixes

Change-Id: I3429f6a80dd7e080e8f2634ca744d1dac5ea1865
Reviewed-on: https://gerrit.libreoffice.org/21558
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/external/cairo/ExternalProject_cairo.mk 
b/external/cairo/ExternalProject_cairo.mk
index ca54bfc..e74f5f0 100644
--- a/external/cairo/ExternalProject_cairo.mk
+++ b/external/cairo/ExternalProject_cairo.mk
@@ -54,7 +54,8 @@ $(call gb_ExternalProject_get_state_target,cairo,build) :
--disable-valgrind \
$(if $(filter IOS,$(OS)),--disable-ft,--enable-ft --enable-fc) \
--disable-svg --enable-gtk-doc=no --enable-test-surfaces=no \
-   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)) \
+   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM) \
+   $(if $(filter INTEL ARM,$(CPUNAME)),ac_cv_c_bigendian=no 
ax_cv_c_float_words_bigendian=no)) \
$(if $(filter 
MACOSX,$(OS)),--prefix=/@.__OOO)
 \
&& cp cairo-version.h src/cairo-version.h \
&& cd src && $(MAKE) \
diff --git a/external/cairo/ExternalProject_pixman.mk 
b/external/cairo/ExternalProject_pixman.mk
index bbb4081..083b0b6 100644
--- a/external/cairo/ExternalProject_pixman.mk
+++ b/external/cairo/ExternalProject_pixman.mk
@@ -34,7 +34,8 @@ $(call gb_ExternalProject_get_state_target,pixman,build) :
./configure \
$(if $(filter MACOSX IOS 
ANDROID,$(OS)),--disable-shared,--disable-static) \
$(if $(filter ANDROID,$(OS)),--disable-arm-simd 
--disable-arm-neon --disable-arm-iwmmxt) \
-   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)) \
+   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM) \
+   $(if $(filter INTEL ARM,$(CPUNAME)),ac_cv_c_bigendian=no)) \
&& $(MAKE) \
)
 
diff --git a/external/expat/ExternalProject_expat.mk 
b/external/expat/ExternalProject_expat.mk
index 0cc1eaa..1a638ee 100644
--- a/external/expat/ExternalProject_expat.mk
+++ b/external/expat/ExternalProject_expat.mk
@@ -16,7 +16,8 @@ $(eval $(call gb_ExternalProject_register_targets,expat,\
 $(call gb_ExternalProject_get_state_target,expat,configure) :
$(call gb_ExternalProject_run,configure,\
./configure \
-   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)) \
+   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM) \
+   $(if $(filter INTEL 
ARM,$(CPUNAME)),ac_cv_c_bigendian=no)) \
,,expat_configure.log)
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/lcms2/ExternalProject_lcms2.mk 
b/external/lcms2/ExternalProject_lcms2.mk
index 7b9f7a4..6bf69b3 100644
--- a/external/lcms2/ExternalProject_lcms2.mk
+++ b/external/lcms2/ExternalProject_lcms2.mk
@@ -26,7 +26,8 @@ else
 $(call gb_ExternalProject_get_state_target,lcms2,build):
$(call gb_ExternalProject_run,build,\
./configure --without-jpeg --without-tiff --with-pic \
-   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)) \
+   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM) \
+   $(if $(filter INTEL 
ARM,$(CPUNAME)),ac_cv_c_bigendian=no)) \
CPPFLAGS=" $(SOLARINC)" \
CFLAGS='$(if 
$(debug),$(gb_DEBUG_CFLAGS),$(gb_COMPILEROPTFLAGS))' \
$(if $(filter-out WNTGCC,$(OS)$(COM)),,CPPFLAGS=" 
-DCMS_DLL_BUILD") \
diff --git a/external/redland/ExternalProject_raptor.mk 
b/external/redland/ExternalProject_raptor.mk
index f083609..51efb1a 100644
--- a/external/redland/ExternalProject_raptor.mk
+++ b/external/redland/ExternalProject_raptor.mk
@@ -45,7 +45,8 @@ $(call gb_ExternalProject_get_state_target,raptor,build):
 --enable-parsers="rdfxml ntriples turtle trig guess 
rss-tag-soup" \
--with-www=xml \
--without-xslt-config \
-   $(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)) \
+  

[Libreoffice-bugs] [Bug 84337] PDF: Opened PDF files are displayed with bugs

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84337

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #10 from Beluga  ---
http://download.gigabyte.eu/FileList/Manual/mb_manual_ga-z87%28h87%29m-hd3_e.pdf
hangs on open.

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 259c1ed201f4277d74dfd600fed8c837cbf56abc
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-27_00:45:12
Locale: fi-FI (fi_FI)

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


[Libreoffice-bugs] [Bug 97410] Comments randomly lost on saving

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97410

--- Comment #2 from teo8...@gmail.com ---
Could you verify it yourself? I'd rather not mess around with versions not
installed through official Ubuntu updates.

What I can tell you is that on 5.0.2.2 I can SYSTEMATICALLY reproduce it in the
following way:
1 - open the document (it's a docx)
2 - add a comment
3 - add another comment: write the comment text without ever clicking outside
the comment box or loosing focus to the comment box
4 - save the document while the comment box still has focus
5 - close Writer

Result: the last comment is saved empty, and no warning is given when closing
Writer.

Note that if you click outside the comment box after step 3 and before step 4,
the comment will be saved as expected.
Also (and this is kind of "consistent" in its wrongness), if you click outside
the comment box after step 4 (saving) and before step 4 (quitting), you do get
the save document prompt as expected, and the saving button becomes enabled
when the comment box looses focus.


Basically, the issue seems to be that until the comment box looses focus,
everything that has been typed into it is somehow not "committed" and not
considered as some existing changes to the document. It's like what you have
typed does not exist (though it's visible).

-- 
You are receiving this mail because:
You 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 97410] Comments randomly lost on saving

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97410

--- Comment #3 from Beluga  ---
(In reply to teo8976 from comment #2)
> Could you verify it yourself? I'd rather not mess around with versions not
> installed through official Ubuntu updates.

I could and I will, if you confirm it, but I'd rather delegate it first to you
as I do so much testing.

The parallel install will not mess anything up.

-- 
You are receiving this mail because:
You 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 82638] Unable to get media sound file (.wav) to play when running slide show

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82638

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
 OS|Windows (All)   |All

--- Comment #5 from Beluga  ---
(In reply to Teo91 from comment #3)
> I can confirm this bug on Linux with LO 4.2.6.
> 
> When I add a .wav audio file to Impress, it freezes for a pair of minutes
> and takes very long time to reproduce the audio.

Repro slowness, no audio played. I have gstreamer plugins installed.

Ubuntu 15.10 64-bit 
Version: 5.2.0.0.alpha0+
Build ID: c43fdd74097cb12f69f86fd1217dd2f41ccae101
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF-dbg, Branch:master, Time:
2016-01-25_23:43:01
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 57965] FILESAVE: ODT with table spanning page boundary saves to DOC with extra row on first page and blank row on following page

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57965

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #5 from Beluga  ---
Still confirmed.

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 259c1ed201f4277d74dfd600fed8c837cbf56abc
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-27_00:45:12
Locale: fi-FI (fi_FI)

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


[Libreoffice-bugs] [Bug 97436] New: Crash if I try to play a presentation with audiofiles.

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97436

Bug ID: 97436
   Summary: Crash if I try to play a presentation with audiofiles.
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sergey.rahma...@gmail.com

User-Agent:   Mozilla/5.0 (Windows NT 6.3; WOW64; rv:44.0) Gecko/20100101
Firefox/44.0
Build Identifier: LibreOffice 5.0.4.2

After beginning I hear a music then it crashes immediately with "unexpected
error". It doesn't depend on the way I add music .

Reproducible: Always

Steps to Reproduce:
1.Вставка>Медиа>Видео и звук (1-й способ)
2.Демонстрация>Смена слайда>Изменить переход>Звук>Другой звук... (2-й способ)
3.Запустить просмотр слайдов (Start a slideshow)
Actual Results:  
It crashes with unexpected error.

Expected Results:  
It should play sound and show slides normally.

[Information automatically included from LibreOffice]
Locale: ru
Module: StartModule
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: yes


Reset User Profile?yes - it didn't help

-- 
You are receiving this mail because:
You 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-1' - desktop/inc desktop/source include/LibreOfficeKit libreofficekit/source

2016-01-29 Thread Michael Stahl
 desktop/inc/lib/init.hxx |   12 +++
 desktop/source/lib/init.cxx  |   38 +
 desktop/source/lib/lokinteractionhandler.cxx |  107 +--
 desktop/source/lib/lokinteractionhandler.hxx |   15 +++
 include/LibreOfficeKit/LibreOfficeKit.h  |9 ++
 include/LibreOfficeKit/LibreOfficeKit.hxx|   34 
 include/LibreOfficeKit/LibreOfficeKitEnums.h |   45 +++
 libreofficekit/source/gtk/lokdocview.cxx |   10 ++
 8 files changed, 262 insertions(+), 8 deletions(-)

New commits:
commit 2241a7fd97b8b70d2d3106ac531cc72192ad708f
Author: Michael Stahl 
Date:   Fri Jan 22 13:39:32 2016 +0100

libreofficekit: password interaction optional and off by default

Add setOptionalFeatures() function that clients must call during
initialization, and enum LibreOfficeKitOptionalFeatures.

Reviewed-on: https://gerrit.libreoffice.org/21809
Reviewed-by: Jan Holesovsky 
Tested-by: Jan Holesovsky 
(cherry picked from commit 23a0ee3c01c3588472e1c19605909d6b9401253c)

libreofficekit: ask for password when loading encrypted documents
(cherry picked from commit 2b63e576a5cf06f4af877d63403ad7955ac71b72)

desktop: use x prefix for uno::Reference
(cherry picked from commit 0101cd3da6262169fa273309a86ba5e7cfe573bf)

loplugin:defaultparams
(cherry picked from commit 95c8b8e85d3328bfbe906ef3f69145842aae01db)

Change-Id: I73035193c87033052921c3aad94fdc057fe8
Reviewed-on: https://gerrit.libreoffice.org/21838
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 

diff --git a/desktop/inc/lib/init.hxx b/desktop/inc/lib/init.hxx
index 9003859..d077297 100644
--- a/desktop/inc/lib/init.hxx
+++ b/desktop/inc/lib/init.hxx
@@ -11,12 +11,16 @@
 #define INCLUDED_DESKTOP_INC_LIB_INIT_HXX
 
 #include 
+#include 
 #include 
 #include 
 #include 
+#include 
 #include "../../source/inc/desktopdllapi.h"
 #include 
 
+class LOKInteractionHandler;
+
 namespace desktop {
 struct DESKTOP_DLLPUBLIC LibLODocument_Impl : public 
_LibreOfficeKitDocument
 {
@@ -36,8 +40,16 @@ namespace desktop {
 oslThread maThread;
 LibreOfficeKitCallback mpCallback;
 void *mpCallbackData;
+int64_t mOptionalFeatures;
+std::map 
mInteractionMap;
 
 LibLibreOffice_Impl();
+~LibLibreOffice_Impl();
+
+bool hasOptionalFeature(LibreOfficeKitOptionalFeatures const feature)
+{
+return (mOptionalFeatures & feature) != 0;
+}
 };
 }
 
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 5d1586f..9d70ad2 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -434,12 +434,17 @@ static voidlo_registerCallback 
(LibreOfficeKit* pThis,
 LibreOfficeKitCallback 
pCallback,
 void* pData);
 static char* lo_getFilterTypes(LibreOfficeKit* pThis);
+static void lo_setOptionalFeatures(LibreOfficeKit* pThis, uint64_t features);
+static voidlo_setDocumentPassword(LibreOfficeKit* pThis,
+   const char* pURL,
+   const char* pPassword);
 
 LibLibreOffice_Impl::LibLibreOffice_Impl()
 : m_pOfficeClass( gOfficeClass.lock() )
 , maThread(nullptr)
 , mpCallback(nullptr)
 , mpCallbackData(nullptr)
+, mOptionalFeatures(0)
 {
 if(!m_pOfficeClass) {
 m_pOfficeClass.reset(new LibreOfficeKitClass);
@@ -451,6 +456,8 @@ LibLibreOffice_Impl::LibLibreOffice_Impl()
 m_pOfficeClass->documentLoadWithOptions = lo_documentLoadWithOptions;
 m_pOfficeClass->registerCallback = lo_registerCallback;
 m_pOfficeClass->getFilterTypes = lo_getFilterTypes;
+m_pOfficeClass->setOptionalFeatures = lo_setOptionalFeatures;
+m_pOfficeClass->setDocumentPassword = lo_setDocumentPassword;
 
 gOfficeClass = m_pOfficeClass;
 }
@@ -458,6 +465,10 @@ LibLibreOffice_Impl::LibLibreOffice_Impl()
 pClass = m_pOfficeClass.get();
 }
 
+LibLibreOffice_Impl::~LibLibreOffice_Impl()
+{
+}
+
 namespace
 {
 
@@ -519,7 +530,10 @@ static LibreOfficeKitDocument* 
lo_documentLoadWithOptions(LibreOfficeKit* pThis,

uno::makeAny(OUString::createFromAscii(pOptions)),

beans::PropertyState_DIRECT_VALUE);
 
-uno::Reference xInteraction(new 
LOKInteractionHandler(::comphelper::getProcessComponentContext()));
+rtl::Reference const pInteraction(
+new 
LOKInteractionHandler(::comphelper::getProcessComponentContext(), pLib));
+auto const 

[Libreoffice-bugs] [Bug 97433] New: Spell Checker Problem

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97433

Bug ID: 97433
   Summary: Spell Checker Problem
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jtsj...@gmail.com

The spell checker does not work unless I go to Tools->Language->For All
Text->English and then click on English. I have to do this for each document.
This is not just a minor inconvenience. I recently missed a typo on an
important letter because I didn't do this step. Why can't I configure the spell
checker to check spelling for all documents?

-- 
You are receiving this mail because:
You 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 42438] FORMATTING: Can not format MS WORD ducument correctly

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42438

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #9 from Beluga  ---
(In reply to Urmas from comment #3)
> Created attachment 78554 [details]
> Another document of that kind

Yep, still messy.

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 259c1ed201f4277d74dfd600fed8c837cbf56abc
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-27_00:45:12
Locale: fi-FI (fi_FI)

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


[Libreoffice-bugs] [Bug 97367] Editing white text has a white background fill (unseen in PDF and in slideshow)

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97367

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||libreoff...@kohei.us

--- Comment #4 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Kohei Yoshida ; Could you possibly take a look at this one?
Thanks

d09c5defb702f63eabd460d81f2e9434866f3b24 is the first bad commit
commit d09c5defb702f63eabd460d81f2e9434866f3b24
Author: Matthew Francis 
Date:   Sat Mar 14 23:38:09 2015 +0800

source-hash-0f47de0cff673d298af63926e15e3dff40ee80db

commit 0f47de0cff673d298af63926e15e3dff40ee80db
Author: Kohei Yoshida 
AuthorDate: Tue Jul 22 15:25:27 2014 -0400
Commit: Kohei Yoshida 
CommitDate: Tue Jul 22 15:26:14 2014 -0400

Fix the font handling esp wrt font colors.

Change-Id: I7dda03368f67ea6a12dfb39115f4546277abb76b

-- 
You are receiving this mail because:
You 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 55808] EDITING: wrong undo after copy from edit mode and paste to complete cell

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55808

Beluga  changed:

   What|Removed |Added

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

--- Comment #9 from Beluga  ---
After middle-click pasting and moving out of edit mode, undo first deletes the
original text and then the pasted ones.
This is the logical order, after all. Closing as WFM.

Note for testers: middle-click paste works by keeping some text selected in
edit mode, hovering over some cell and just hitting middle (scroll) button.

Ubuntu 15.10 64-bit 
Version: 5.2.0.0.alpha0+
Build ID: c43fdd74097cb12f69f86fd1217dd2f41ccae101
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF-dbg, Branch:master, Time:
2016-01-25_23:43:01
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 84392] changing paragraph style does not work correctly

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84392

Beluga  changed:

   What|Removed |Added

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

--- Comment #4 from Beluga  ---
(In reply to Luuk from comment #0)
> When a change is applied, the change is directly visible (this is OK)
> But when a change is reverted back to the original, the apply will not do
> anything.
> 
> This is broken for:
> - Position / Rotation/Scaling
> - Indents / Below Paragraph

All of these now work.

Steps: edit default style, change rot & scale and below paragraph by applying
and then applying the original value (not closing the dialog in between).

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 259c1ed201f4277d74dfd600fed8c837cbf56abc
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-27_00:45:12
Locale: fi-FI (fi_FI)

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


[Libreoffice-bugs] [Bug 97406] i18n: add language “Székely-magyar rovásírás” [Hung-HU]

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97406

--- Comment #3 from Urmas  ---
So, why cannot you use 'hu-Hung' language? There is bug #83376, but it is
workable around.

-- 
You are receiving this mail because:
You 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 52319] Chart wizard freezes Calc for a long time on both initialization and cancellation.

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52319

Beluga  changed:

   What|Removed |Added

   Keywords||perf
 CC||todven...@suomi24.fi
   Severity|normal  |major

--- Comment #4 from Beluga  ---
Still an issue.

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 259c1ed201f4277d74dfd600fed8c837cbf56abc
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-27_00:45:12
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-5-1' - vcl/source

2016-01-29 Thread David Tardon
 vcl/source/gdi/dibtools.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 04fdf5bb667f8425228fa5df69236a4728808ab2
Author: David Tardon 
Date:   Fri Jan 22 15:14:00 2016 +0100

sanitize value

Change-Id: I0dfde2343263251a6b3034736c5c7219c5e130e4
(cherry picked from commit 55141ac82950aaa289fd5ec9957800030fcdba0c)
Reviewed-on: https://gerrit.libreoffice.org/21786
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 

diff --git a/vcl/source/gdi/dibtools.cxx b/vcl/source/gdi/dibtools.cxx
index 030cf57..8cfc630 100644
--- a/vcl/source/gdi/dibtools.cxx
+++ b/vcl/source/gdi/dibtools.cxx
@@ -824,6 +824,8 @@ bool ImplReadDIBBody( SvStream& rIStm, Bitmap& rBmp, 
Bitmap* pBmpAlpha, sal_uLon
 
 // read coding information
 rIStm.ReadUInt32( nCodedSize ).ReadUInt32( nUncodedSize 
).ReadUInt32( aHeader.nCompression );
+if (nCodedSize > rIStm.remainingSize())
+   nCodedSize = sal_uInt32(rIStm.remainingSize());
 pData = static_cast(rtl_allocateMemory( nUncodedSize 
));
 
 // decode buffer
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Branch 'libreoffice-5-1' - source/text

2016-01-29 Thread Laurent Balland-Poirier
 source/text/shared/01/05020301.xhp |   20 +---
 1 file changed, 17 insertions(+), 3 deletions(-)

New commits:
commit 0caa881976b2213448b33fa5c31741759a5e4458
Author: Laurent Balland-Poirier 
Date:   Tue Jan 26 22:34:23 2016 +0100

tdf#40517 Update for '?' in decimal number format

Add help to use '?' in user defined number format
Correction of ordered list

Reviewed-on: https://gerrit.libreoffice.org/21827
Reviewed-by: jan iversen 
Tested-by: jan iversen 
(cherry picked from commit ed8d3d936d9008a34a1f59baee2c241157588dba)

Change-Id: Ia14a34cbc0d2d9cff4601a0bd19b392a3aaae268
Reviewed-on: https://gerrit.libreoffice.org/21844
Reviewed-by: Christian Lohmaier 
Tested-by: Christian Lohmaier 

diff --git a/source/text/shared/01/05020301.xhp 
b/source/text/shared/01/05020301.xhp
index 7ff73d1..17ecac1 100644
--- a/source/text/shared/01/05020301.xhp
+++ b/source/text/shared/01/05020301.xhp
@@ -47,14 +47,12 @@
 
 In a number format code with three sections, the first section 
applies to positive values, the second section to negative values, and the 
third section to the value zero.
 
-
-
 
 You can also assign conditions to the three sections, so that the 
format is only applied if a condition is met.
 
 
 Decimal Places and Significant Digits
-Use zero (0) or the number sign (#) as placeholders in your number 
format code to represent numbers. The (#) only displays significant digits, 
while the (0) displays zeroes if there are fewer digits in the number than in 
the number format.
+Use zero (0), 
the number sign (#) or the question mark (?) as placeholders in your number 
format code to represent numbers. The (#) only displays significant digits, 
while the (0) displays zeroes if there are fewer digits in the number than in 
the number format. The (?) works as the (#) but adds a space character to keep 
decimal alignment if there is a hidden non-significant zero.
 Use question marks (?) to represent the number of digits to 
include in the numerator and the denominator of a fraction. Fractions that do 
not fit the pattern that you define are displayed as floating point 
numbers.
 If a number contains more digits to the right of the decimal 
delimiter than there are placeholders in the format, the number is rounded 
accordingly. If a number contains more digits to the left of the decimal 
delimiter than there are placeholders in the format, the entire number is 
displayed. Use the following list as a guide for using placeholders when you 
create a number format code:
 
@@ -76,6 +74,14 @@
 
 
 
+?
+
+
+Displays 
space characters instead of extra zeros.
+
+
+
+
 0 (Zero)
 
 
@@ -134,6 +140,14 @@
 0.##
 
 
+
+
+.5 as 
0.5 (with two extra spaces at the end)
+
+
+0.???
+
+
 
 
 Thousands Separator
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - helpcontent2

2016-01-29 Thread Laurent Balland-Poirier
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit dd298cf3f0012ece4170a19d31f1883a911b23a2
Author: Laurent Balland-Poirier 
Date:   Tue Jan 26 22:34:23 2016 +0100

Updated core
Project: help  0caa881976b2213448b33fa5c31741759a5e4458

tdf#40517 Update for '?' in decimal number format

Add help to use '?' in user defined number format
Correction of ordered list

Reviewed-on: https://gerrit.libreoffice.org/21827
Reviewed-by: jan iversen 
Tested-by: jan iversen 
(cherry picked from commit ed8d3d936d9008a34a1f59baee2c241157588dba)

Change-Id: Ia14a34cbc0d2d9cff4601a0bd19b392a3aaae268
Reviewed-on: https://gerrit.libreoffice.org/21844
Reviewed-by: Christian Lohmaier 
Tested-by: Christian Lohmaier 

diff --git a/helpcontent2 b/helpcontent2
index 6cc37b6..0caa881 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 6cc37b6e75e7aca982e89a185d9b4055b1155ec2
+Subproject commit 0caa881976b2213448b33fa5c31741759a5e4458
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 96327] Start Center: "F" accelerator for "Remote Files" conflicts with "alt+F" accelerator for "File" menu

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96327

--- Comment #7 from Gabriele Ponzo  ---
I've moved accelerator from F to S as suggested.

Thanks to _david_ for pushing the patch.

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


[Libreoffice-commits] online.git: loolwsd/bundled

2016-01-29 Thread Miklos Vajna
 loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKit.h  |   20 +++-
 loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h |   49 ++-
 loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKitInit.h  |   31 --
 loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKitTypes.h |4 
 4 files changed, 84 insertions(+), 20 deletions(-)

New commits:
commit 230c9cb4e3607250147c308567b97a1e9082a66f
Author: Miklos Vajna 
Date:   Fri Jan 29 14:36:14 2016 +0100

loolwsd: update bundled headers

diff --git a/loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKit.h 
b/loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKit.h
index a78c0aa..ee9ac1a 100644
--- a/loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKit.h
+++ b/loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKit.h
@@ -12,9 +12,10 @@
 
 #include 
 
-#ifdef LOK_USE_UNSTABLE_API
+#if defined LOK_USE_UNSTABLE_API || defined LIBO_INTERNAL_ONLY
 // the unstable API needs C99's bool
 #include 
+#include 
 #endif
 
 #include 
@@ -55,14 +56,25 @@ struct _LibreOfficeKitClass
 LibreOfficeKitDocument* (*documentLoadWithOptions) (LibreOfficeKit* pThis,
 const char* pURL,
 const char* pOptions);
-#ifdef LOK_USE_UNSTABLE_API
+void (*freeError) (char* pFree);
+
+#if defined LOK_USE_UNSTABLE_API || defined LIBO_INTERNAL_ONLY
 void (*registerCallback) (LibreOfficeKit* pThis,
   LibreOfficeKitCallback pCallback,
   void* pData);
 
 /// @see lok::Office::getFilterTypes().
 char* (*getFilterTypes) (LibreOfficeKit* pThis);
+
+/// @see lok::Office::setOptionalFeatures().
+void (*setOptionalFeatures)(LibreOfficeKit* pThis, uint64_t features);
+
+/// @see lok::Office::setDocumentPassword().
+void (*setDocumentPassword) (LibreOfficeKit* pThis,
+char const* pURL,
+char const* pPassword);
 #endif
+
 };
 
 #define LIBREOFFICEKIT_DOCUMENT_HAS(pDoc,member) 
LIBREOFFICEKIT_HAS_MEMBER(LibreOfficeKitDocumentClass,member,(pDoc)->pClass->nSize)
@@ -83,7 +95,7 @@ struct _LibreOfficeKitDocumentClass
const char* pFormat,
const char* pFilterOptions);
 
-#ifdef LOK_USE_UNSTABLE_API
+#if defined LOK_USE_UNSTABLE_API || defined LIBO_INTERNAL_ONLY
 /// @see lok::Document::getDocumentType().
 int (*getDocumentType) (LibreOfficeKitDocument* pThis);
 
@@ -208,7 +220,7 @@ struct _LibreOfficeKitDocumentClass
const char* pFontName,
int* pFontWidth,
int* pFontHeight);
-#endif // LOK_USE_UNSTABLE_API
+#endif // defined LOK_USE_UNSTABLE_API || defined LIBO_INTERNAL_ONLY
 };
 
 #ifdef __cplusplus
diff --git a/loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h 
b/loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
index a0f5e88..b615bd9 100644
--- a/loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
+++ b/loolwsd/bundled/include/LibreOfficeKit/LibreOfficeKitEnums.h
@@ -15,7 +15,7 @@ extern "C"
 {
 #endif
 
-#ifdef LOK_USE_UNSTABLE_API
+#if defined LOK_USE_UNSTABLE_API || defined LIBO_INTERNAL_ONLY
 typedef enum
 {
   LOK_DOCTYPE_TEXT,
@@ -40,6 +40,32 @@ typedef enum
 }
 LibreOfficeKitTileMode;
 
+/** Optional features of LibreOfficeKit, in particular callbacks that block
+ *  LibreOfficeKit until the corresponding reply is received, which would
+ *  deadlock if the client does not support the feature.
+ *
+ *  @see lok::Office::setOptionalFeatures().
+ */
+typedef enum
+{
+/**
+ * Handle LOK_CALLBACK_DOCUMENT_PASSWORD by prompting the user
+ * for a password.
+ *
+ * @see lok::Office::setDocumentPassword().
+ */
+LOK_FEATURE_DOCUMENT_PASSWORD = (1ULL << 0),
+
+/**
+ * Handle LOK_CALLBACK_DOCUMENT_PASSWORD_TO_MODIFY by prompting the user
+ * for a password.
+ *
+ * @see lok::Office::setDocumentPassword().
+ */
+LOK_FEATURE_DOCUMENT_PASSWORD_TO_MODIFY = (1ULL << 1),
+}
+LibreOfficeKitOptionalFeatures;
+
 typedef enum
 {
 /**
@@ -221,7 +247,24 @@ typedef enum
 /**
  * The text content of the formula bar in Calc.
  */
-LOK_CALLBACK_CELL_FORMULA
+LOK_CALLBACK_CELL_FORMULA,
+
+/**
+ * Loading a document requires a password.
+ *
+ * Loading the document is blocked until the password is provided via
+ * lok::Office::setDocumentPassword().  The document cannot be loaded
+ * without the password.
+ */
+LOK_CALLBACK_DOCUMENT_PASSWORD,
+
+/**
+ * Editing a document requires a password.
+ *
+ * Loading the document is blocked until the password is provided via
+ * lok::Office::setDocumentPassword().
+ */
+LOK_CALLBACK_DOCUMENT_PASSWORD_TO_MODIFY,
 }
 LibreOfficeKitCallbackType;
 
@@ -281,7 +324,7 @@ typedef enum
 }
 LibreOfficeKitSetGraphicSelectionType;
 
-#endif // 

[Libreoffice-bugs] [Bug 97434] New: LibreOffice Calc Find and Find/Replace won't find trailing zeros in numbers or currency

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97434

Bug ID: 97434
   Summary: LibreOffice Calc Find and Find/Replace won't find
trailing zeros in numbers or currency
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: and...@themagicofyou.co.uk

Created attachment 122275
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122275=edit
Shows Find etc does not find currency value with trailing zeros

I format cells to be  currency or numbers with 2 decimal places [maybe other
formats also, I didn't check all.] Then I enter a value of 4.70. Neither Find
nor Find/Replace will locate the entry, because neither recognises the trailing
zero. Both correctly find 4.7. Particularly in dealing with money, it is normal
to enter all digits including training zeros even thought these are
scientifically meaningless. So this can be - and in my income tax spreadsheet
yesterday was! - very misleading. 

This is v 5.0.4.2, I assume earlier also.

I never posted a bug before, apologies if I didn't do it 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-bugs] [Bug 62770] FILEOPEN XLS file with conditional formats, sheet name gets inserted in conditional formula

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62770

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
Summary|CALC - import of XLS file   |FILEOPEN XLS file with
   |with conditional formats,   |conditional formats, sheet
   |sheet name gets inserted in |name gets inserted in
   |conditional formula |conditional formula

--- Comment #9 from Beluga  ---
Still confirmed.

Win 7 Pro 64-bit Version: 5.2.0.0.alpha0+
Build ID: 259c1ed201f4277d74dfd600fed8c837cbf56abc
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@39, Branch:master, Time: 2016-01-27_00:45:12
Locale: fi-FI (fi_FI)

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


[Libreoffice-bugs] [Bug 84745] EDITING: recalculation issue with user defined function (it is not recalculated)

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84745

Beluga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #3 from Beluga  ---
Would be cool to have exact steps to reproduce. Now I have no idea what I
should do.

-- 
You are receiving this mail because:
You 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 87737] EDITING: Date-parameter in queries don't work in UI-language, if parameter is only in subquery

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87737

--- Comment #4 from rob...@familiegrosskopf.de ---
Bug still exists with LO 5.1.0.3, OpenSUSE 42.1 Leap, 64bit rpm Linux.

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


[Libreoffice-bugs] [Bug 97435] Memory wasteage around OutputDevice ...

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97435

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


[Bug 97362] Convert Java complex tests to Python

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97362

--- Comment #2 from Commit Notification 
 ---
kadertarlan committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=679bcbe06dc063414151ce05d4bf3e3b44f2de8d

tdf#97362: Fixed Python unit test (check_indexed_property_values.py)

It will be available in 5.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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


[Libreoffice-bugs] [Bug 97426] New: Text is displayed without smoothing/antialiasing

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97426

Bug ID: 97426
   Summary: Text is displayed without smoothing/antialiasing
   Product: LibreOffice
   Version: 5.1.0.2 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mathias.schind...@gmail.com

Created attachment 122268
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122268=edit
screenshot of LO writer showing font not rendered properly

Text in LO Writer is not shown smoothly on the display.

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


[Libreoffice-bugs] [Bug 97369] SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows)

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97369

Tor Lillqvist  changed:

   What|Removed |Added

 Blocks||97391

-- 
You are receiving this mail because:
You 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 97391] [META]: Tracker bug for OpenCL issues in Calc

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97391

Tor Lillqvist  changed:

   What|Removed |Added

 Depends on||97369

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

2016-01-29 Thread Miklos Vajna
 writerfilter/source/dmapper/DomainMapperTableHandler.cxx |   35 ++-
 writerfilter/source/dmapper/DomainMapperTableHandler.hxx |8 ---
 writerfilter/source/dmapper/TableManager.cxx |2 
 3 files changed, 18 insertions(+), 27 deletions(-)

New commits:
commit 6eb59ccf87a3b419d38561e722cc6753a22e2c8f
Author: Miklos Vajna 
Date:   Fri Jan 29 11:12:16 2016 +0100

writerfilter: uno::Sequence -> std::vector for table ranges

Change-Id: If9ea1786a8a4b66288267e6bd6ffca7dfe651e6a

diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx 
b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
index 60acaca..218beb7 100644
--- a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
@@ -56,7 +56,6 @@ DomainMapperTableHandler::DomainMapperTableHandler(
 DomainMapper_Impl& rDMapper_Impl)
 : m_xText(xText),
 m_rDMapper_Impl( rDMapper_Impl ),
-m_nRowIndex(0),
 m_bHadFootOrEndnote(false)
 {
 }
@@ -65,17 +64,14 @@ DomainMapperTableHandler::~DomainMapperTableHandler()
 {
 }
 
-void DomainMapperTableHandler::startTable(unsigned int nRows,
-  unsigned int /*nDepth*/,
+void DomainMapperTableHandler::startTable(unsigned int /*nDepth*/,
   TablePropertyMapPtr pProps)
 {
 m_aTableProperties = pProps;
-m_aTableSeq = TableSequence_t(nRows);
-m_nRowIndex = 0;
+m_aTableRanges.clear();
 
 #ifdef DEBUG_WRITERFILTER
 TagLogger::getInstance().startElement("tablehandler.table");
-TagLogger::getInstance().attribute("rows", nRows);
 
 if (pProps.get() != nullptr)
 pProps->dumpXml();
@@ -815,7 +811,7 @@ CellPropertyValuesSeq_t 
DomainMapperTableHandler::endTableGetCellProperties(Tabl
 if (aCellDirectionVal->second.get() == 
static_cast(NS_ooxml::LN_Value_ST_TextDirection_btLr))
 {
 // btLr, so map ParagraphAdjust_CENTER to 
VertOrientation::CENTER.
-uno::Reference 
xPropertySet(m_aTableSeq[nRow][nCell][0], uno::UNO_QUERY);
+uno::Reference 
xPropertySet(m_aTableRanges[nRow][nCell][0], uno::UNO_QUERY);
 if 
(xPropertySet->getPropertyValue("ParaAdjust").get() == 
style::ParagraphAdjust_CENTER)
 (*aCellIterator)->Insert(PROP_VERT_ORIENT, 
uno::makeAny(text::VertOrientation::CENTER));
 }
@@ -873,18 +869,18 @@ bool lcl_hideMarks(PropertyMapVector1& rCellProperties)
 }
 
 /// Are all cells in this row empty?
-bool lcl_emptyRow(TableSequence_t& rTableSeq, sal_Int32 nRow)
+bool lcl_emptyRow(std::vector& rTableRanges, sal_Int32 nRow)
 {
-if (nRow >= rTableSeq.getLength())
+if (nRow >= static_cast(rTableRanges.size()))
 {
-SAL_WARN("writerfilter", "m_aCellProperties not in sync with 
m_aTableSeq?");
+SAL_WARN("writerfilter", "m_aCellProperties not in sync with 
rTableRanges?");
 return false;
 }
 
-RowSequence_t rRowSeq = rTableSeq[nRow];
+RowSequence_t rRowSeq = rTableRanges[nRow];
 if (rRowSeq.getLength() == 0)
 {
-SAL_WARN("writerfilter", "m_aCellProperties not in sync with 
m_aTableSeq?");
+SAL_WARN("writerfilter", "m_aCellProperties not in sync with 
rTableRanges?");
 return false;
 }
 
@@ -929,7 +925,7 @@ css::uno::Sequence 
DomainMapperTableHandler::endTabl
 // tblHeader is only our property, remove before the property map 
hits UNO
 (*aRowIter)->Erase(PROP_TBL_HEADER);
 
-if (lcl_hideMarks(m_aCellProperties[nRow]) && 
lcl_emptyRow(m_aTableSeq, nRow))
+if (lcl_hideMarks(m_aCellProperties[nRow]) && 
lcl_emptyRow(m_aTableRanges, nRow))
 {
 // We have CellHideMark on all cells, and also all cells are 
empty:
 // Set the row height to minimal as Word does.
@@ -997,17 +993,17 @@ void DomainMapperTableHandler::endTable(unsigned int 
nestedTableLevel)
 lcl_DumpPropertyValueSeq(aRowProperties);
 #endif
 
-if (m_aTableSeq.getLength() > 0)
+if (!m_aTableRanges.empty())
 {
 uno::Reference xStart;
 uno::Reference xEnd;
 
 bool bFloating = !aFrameProperties.empty();
 // Additional checks: if we can do this.
-if (bFloating && m_aTableSeq[0].getLength() > 0 && 
m_aTableSeq[0][0].getLength() > 0)
+if (bFloating && m_aTableRanges[0].getLength() > 0 && 
m_aTableRanges[0][0].getLength() > 0)
 {
-xStart = m_aTableSeq[0][0][0];
-uno::Sequence< uno::Sequence< uno::Reference > 
>& rLastRow = m_aTableSeq[m_aTableSeq.getLength() - 1];
+xStart = m_aTableRanges[0][0][0];
+uno::Sequence< uno::Sequence< uno::Reference > 
>& rLastRow = m_aTableRanges[m_aTableRanges.size() - 1];
 

[Bug 45775] PgSQL new DB allow empty Datasource

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45775

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

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


[Bug 96414] Remove feature to show Navigator during slideshow

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96414

--- Comment #3 from Jean-Baptiste Faure  ---
(In reply to Samuel Mehrbrodt from comment #2)
> (In reply to Jean-Baptiste Faure from comment #1)
> > Did you ask on users mailing list if someone is using this feature? I never
> > need it but it is not a proof that it is useless.
> 
> This feature has been broken since ages. I didn't find any bug report for
> this. Also the ESC rubber-stamped this afair.

Indeed, if the function does not work and nobody complains, it is a clue that
nobody uses it.

Does this removing will concern the slides list available from the right-click
menu in slideshow mode?

Best regards. JBF

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


[Bug 96414] Remove feature to show Navigator during slideshow

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96414

--- Comment #4 from Samuel Mehrbrodt  ---
(In reply to Jean-Baptiste Faure from comment #3)
> Does this removing will concern the slides list available from the
> right-click menu in slideshow mode?

That part should be retained.

-- 
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-ux-advise] [Bug 91820] Reorganization of the menu bar for Calc

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91820

--- Comment #47 from Yousuf (Jay) Philips  ---
(In reply to kompilainenn from comment #46)
> Hi, Yousuf. Item "Fill cell" in menu "Sheet" inconvenient to use. Even
> knowing about the changes in the menu, I've been searching this item. It
> should be placed in the Data menu. It is more logical.

Hey kompilainenn,

The Data menu is for working with data already present in your sheet (sort,
autofilter, pivot table, etc), so thats why i dont think that would be the
correct place for it. It used to be Edit > Fill, but was moved from there as
the Edit menu is for edit functions (undo, cut, track changes, edit object,
edit mode). Also we needed to bring all cell related functions under one roof -
insert cell, delete cell, filling cell with data, managing cell comment,
clearing cell data, and changing cell references.

-- 
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: framework/Library_fwk.mk framework/source

2016-01-29 Thread Maxim Monastirsky
 framework/Library_fwk.mk   |1 
 framework/source/uielement/resourcemenucontroller.cxx  |   92 +++-
 framework/source/uielement/toolbarasmenucontroller.cxx |  363 -
 3 files changed, 84 insertions(+), 372 deletions(-)

New commits:
commit 1d0f08cdf1b9396e97e068f97fd78f31b5906748
Author: Maxim Monastirsky 
Date:   Fri Jan 29 12:21:45 2016 +0200

Use ResourceMenuController for toolbar-based menus too

No need for yet another controller that does similar things.

Change-Id: I4ad79d82ea34a90a43e36082d1fb834201dba3a1

diff --git a/framework/Library_fwk.mk b/framework/Library_fwk.mk
index ce85848..0c78fc4 100644
--- a/framework/Library_fwk.mk
+++ b/framework/Library_fwk.mk
@@ -156,7 +156,6 @@ $(eval $(call gb_Library_add_exception_objects,fwk,\
 framework/source/uielement/subtoolbarcontroller \
 framework/source/uielement/thesaurusmenucontroller \
 framework/source/uielement/togglebuttontoolbarcontroller \
-framework/source/uielement/toolbarasmenucontroller \
 framework/source/uielement/toolbarmanager \
 framework/source/uielement/toolbarmerger \
 framework/source/uielement/toolbarwrapper \
diff --git a/framework/source/uielement/resourcemenucontroller.cxx 
b/framework/source/uielement/resourcemenucontroller.cxx
index 581c227..4477516 100644
--- a/framework/source/uielement/resourcemenucontroller.cxx
+++ b/framework/source/uielement/resourcemenucontroller.cxx
@@ -16,6 +16,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -26,7 +27,7 @@ class ResourceMenuController : public 
cppu::ImplInheritanceHelper< svt::PopupMen
 {
 public:
 ResourceMenuController( const css::uno::Reference< 
css::uno::XComponentContext >& rxContext,
-const css::uno::Sequence< css::uno::Any >& rxArgs 
);
+const css::uno::Sequence< css::uno::Any >& rxArgs, 
bool bToolbarContainer );
 virtual ~ResourceMenuController();
 
 // XPopupMenuController
@@ -55,20 +56,23 @@ private:
 OUString m_aMenuURL;
 bool m_bContextMenu;
 bool m_bInToolbar;
+bool m_bToolbarContainer;
 sal_uInt16 m_nNewMenuId;
 rtl::Reference< framework::MenuBarManager > m_xMenuBarManager;
 css::uno::Reference< css::container::XIndexAccess > m_xMenuContainer;
 css::uno::Reference< css::uno::XComponentContext > m_xContext;
 css::uno::Reference< css::ui::XUIConfigurationManager > m_xConfigManager, 
m_xModuleConfigManager;
 void addVerbs( const css::uno::Sequence< css::embed::VerbDescriptor >& 
rVerbs );
+void fillToolbarData();
 virtual void SAL_CALL disposing() override;
 };
 
 ResourceMenuController::ResourceMenuController( const css::uno::Reference< 
css::uno::XComponentContext >& rxContext,
-const css::uno::Sequence< 
css::uno::Any >& rxArgs ) :
+const css::uno::Sequence< 
css::uno::Any >& rxArgs, bool bToolbarContainer ) :
 ImplInheritanceHelper( rxContext ),
 m_bContextMenu( false ),
 m_bInToolbar( false ),
+m_bToolbarContainer( bToolbarContainer ),
 m_nNewMenuId( 1 ),
 m_xContext( rxContext )
 {
@@ -81,7 +85,10 @@ ResourceMenuController::ResourceMenuController( const 
css::uno::Reference< css::
 {
 OUString aMenuName;
 aPropValue.Value >>= aMenuName;
-m_aMenuURL = "private:resource/popupmenu/" + aMenuName;
+if ( m_bToolbarContainer )
+m_aMenuURL = "private:resource/toolbar/" + aMenuName;
+else
+m_aMenuURL = "private:resource/popupmenu/" + aMenuName;
 }
 else if ( aPropValue.Name == "Frame" )
 aPropValue.Value >>= m_xFrame;
@@ -184,9 +191,11 @@ void ResourceMenuController::updatePopupMenu()
 m_nNewMenuId = 1;
 
 // Now fill the menu with the configuration data.
-VCLXMenu* pAwtMenu = VCLXMenu::GetImplementation( m_xPopupMenu );
 css::uno::Reference< css::frame::XDispatchProvider > xDispatchProvider( 
m_xFrame, css::uno::UNO_QUERY );
-framework::MenuBarManager::FillMenu( m_nNewMenuId, pAwtMenu->GetMenu(), 
m_aModuleName, m_xMenuContainer, xDispatchProvider );
+if ( m_bToolbarContainer )
+fillToolbarData();
+else
+framework::MenuBarManager::FillMenu( m_nNewMenuId, 
VCLXMenu::GetImplementation( m_xPopupMenu )->GetMenu(), m_aModuleName, 
m_xMenuContainer, xDispatchProvider );
 
 // For context menus, add object verbs.
 if ( m_bContextMenu )
@@ -235,6 +244,63 @@ void ResourceMenuController::addVerbs( const 
css::uno::Sequence< css::embed::Ver
 }
 }
 
+void ResourceMenuController::fillToolbarData()
+{
+if ( !m_xMenuContainer.is() )
+return;
+
+VCLXMenu* pAwtMenu = VCLXMenu::GetImplementation( m_xPopupMenu );
+Menu* pVCLMenu = pAwtMenu->GetMenu();
+
+

[Bug 96414] Remove feature to show Navigator during slideshow

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96414

--- Comment #5 from Christian Lohmaier  ---
(In reply to Samuel Mehrbrodt from comment #2)
> This feature has been broken since ages. I didn't find any bug report for
> this. Also the ESC rubber-stamped this afair.

ESC agreed not because it is broken (it is not, just the keyboard shortcut did
change), but because it doesn't provide any additional benefit compared to
using the contextmenu. On the contrary you can trigger the contextmenu with a
pointing device, while you  can launch the  navigator  only with keyboard
shortcut.

contextmenu is more discoverable and provides access to all (and more) that the
navigator could do.

-- 
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-qa] [ANN] LibreOffice 5.1.0 RC3 available

2016-01-29 Thread Christian Lohmaier
Dear Community,

The Document Foundation is pleased to announce the third release
candidate of LibreOffice 5.1.0. The upcoming 5.1.0 will be the first
release of our fresh 5.1 line. Please be aware that LibreOffice 5.1.0
RC3 has not been flagged as ready for production use yet, however feel
free to give it a try instead of 4.4.7 or 5.0.4.

A work-in-progress list of new features in LibreOffice 5.1 can be
found at https://wiki.documentfoundation.org/ReleaseNotes/5.1

The release is available for Windows, Linux and Mac OS X from our QA
builds download page at

  http://www.libreoffice.org/download/pre-releases/

Windows builds are also provided in 64bit version.

Developers and QA might also be interested in the symbol server for
windows debug information (see
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg
for
details)

Should you find bugs, please report them to our Bugzilla:

  https://bugs.documentfoundation.org

A good way to assess the release candidate quality is to run some
specific manual tests on it, our TCM wiki page has more details:

 
http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

For other ways to get involved with this exciting project - you can
e.g. contribute code:

  http://www.libreoffice.org/community/developers/

translate LibreOffice to your language:

  http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

or help with funding our operations:

  http://donate.libreoffice.org/

A list of known issues and fixed bugs compared to 5.1.0 rc2 is
available from our wiki:

  http://wiki.documentfoundation.org/Releases/5.1.0/RC3

Let us close again with a BIG Thank You! to all of you having
contributed to the LibreOffice project - this release would not have
been possible without your help.

On behalf of the Community,

Christian
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 97344] Filter items disappear after press space bar

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97344

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
Version|5.0.4.2 release |4.5.0.0.alpha0+ Master

--- Comment #2 from raal  ---
Reproducible with Version: 4.5.0.0.alpha0+

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


[Libreoffice-qa] Minutes of the Design Hangout: 2016-01-22

2016-01-29 Thread Jan Holesovsky
* Present: Tomaz, Stuart, Jan-Marek, Heiko, Jay, Samuel

* UI changes integrated since the last meeting:

+ Disable increase/decrease indent in R/O documents (Oliver)
+ Make TabBarVisible configuration persistent (Philippe)
+ More useful function suggestion system in formula editing (Keigo)
+ Writer context menu converted to xml descriptions (Maxim)
+ Propagate the selected slides in the print dialog (David)
+ Show autofilter row count in status bar (Dennis)
+ Show OS X version in the About dialog (Douglas)

* An alternative print range selection algorithm (Jan-Marek)

+ http://listarchives.libreoffice.org/global/design/msg07516.html
+ jmux introduced the use case and the issues
+ patch is available in gerrit and usability needs to get tested
  https://gerrit.libreoffice.org/#/c/18420/
+ added Tomaz and Samuel to gerrit 
AI: + Jan-Marek will push to master and Stuart will test

* Blog post about menu changes

+ Draft at 
https://docs.google.com/document/d/1QBHc3Kq7iXwfodNTjj1-DPujpr2WTZKwRvtOgrWqZJ0/edit#
+ Publish: Yes (all)
   
* Save button behavior (Samuel)

+ implemented now
+ thanks so much Maxim!

+ is in RC2 now (Samuel)
+ new icon is available for Breeze, Tango, Sifr, Galaxy (thanks to 
Andreas & Adolfo!) (Samuel)
+ minor issue with the new toolbar item 
https://bugs.documentfoundation.org/show_bug.cgi?id=97317

+ Separate UNO command for Save Split button (Jay)
+ alternatively have just the menu item disabled (Samuel: difficult/not 
possible to do)
+ no need to show the document status in the menu; indication is clear 
from toolbar, statusbar, and the app title (Samuel, Stuart)
+ an active save button in the toolbar doesn't show status (Jay)

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Minutes of the Design Hangout: 2016-01-22

2016-01-29 Thread Jan Holesovsky
* Present: Tomaz, Stuart, Jan-Marek, Heiko, Jay, Samuel

* UI changes integrated since the last meeting:

+ Disable increase/decrease indent in R/O documents (Oliver)
+ Make TabBarVisible configuration persistent (Philippe)
+ More useful function suggestion system in formula editing (Keigo)
+ Writer context menu converted to xml descriptions (Maxim)
+ Propagate the selected slides in the print dialog (David)
+ Show autofilter row count in status bar (Dennis)
+ Show OS X version in the About dialog (Douglas)

* An alternative print range selection algorithm (Jan-Marek)

+ http://listarchives.libreoffice.org/global/design/msg07516.html
+ jmux introduced the use case and the issues
+ patch is available in gerrit and usability needs to get tested
  https://gerrit.libreoffice.org/#/c/18420/
+ added Tomaz and Samuel to gerrit 
AI: + Jan-Marek will push to master and Stuart will test

* Blog post about menu changes

+ Draft at 
https://docs.google.com/document/d/1QBHc3Kq7iXwfodNTjj1-DPujpr2WTZKwRvtOgrWqZJ0/edit#
+ Publish: Yes (all)
   
* Save button behavior (Samuel)

+ implemented now
+ thanks so much Maxim!

+ is in RC2 now (Samuel)
+ new icon is available for Breeze, Tango, Sifr, Galaxy (thanks to 
Andreas & Adolfo!) (Samuel)
+ minor issue with the new toolbar item 
https://bugs.documentfoundation.org/show_bug.cgi?id=97317

+ Separate UNO command for Save Split button (Jay)
+ alternatively have just the menu item disabled (Samuel: difficult/not 
possible to do)
+ no need to show the document status in the menu; indication is clear 
from toolbar, statusbar, and the app title (Samuel, Stuart)
+ an active save button in the toolbar doesn't show status (Jay)

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


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

2016-01-29 Thread Miklos Vajna
 sw/source/core/inc/pagefrm.hxx |5 +++--
 sw/source/core/layout/calcmove.cxx |8 +---
 sw/source/core/layout/pagechg.cxx  |6 --
 sw/source/core/text/widorp.cxx |3 ++-
 4 files changed, 14 insertions(+), 8 deletions(-)

New commits:
commit 363aa5dbb2c223b6cc3a109bd654f39772e310fa
Author: Miklos Vajna 
Date:   Fri Jan 29 13:10:30 2016 +0100

sw: refactor SwPageFrame::HandleWhitespaceHiddenDiff()

As suggested at .

Change-Id: Id1e7a6381954c6d56a2593a064c37cc185475a56
Reviewed-on: https://gerrit.libreoffice.org/21899
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins 

diff --git a/sw/source/core/inc/pagefrm.hxx b/sw/source/core/inc/pagefrm.hxx
index 2df4c1d..3fae2a3 100644
--- a/sw/source/core/inc/pagefrm.hxx
+++ b/sw/source/core/inc/pagefrm.hxx
@@ -335,8 +335,9 @@ public:
 
 static SwTwips GetSidebarBorderWidth( const SwViewShell* );
 
-/// Adjust a bottom-of-page-frame - bottom-of-text-frame difference in 
case whitespace is hidden.
-void HandleWhitespaceHiddenDiff(SwTwips& nDiff);
+/// Is bottom-of-page-frame - bottom-of-text-frame difference valid in 
case whitespace is hidden?
+/// If false is returned, then the caller should handle negative 
difference as (at least) zero difference instead.
+bool CheckPageHeightValidForHideWhitespace(SwTwips nDiff);
 };
 
 inline SwContentFrame *SwPageFrame::FindFirstBodyContent()
diff --git a/sw/source/core/layout/calcmove.cxx 
b/sw/source/core/layout/calcmove.cxx
index aa4e4a5..a5fd16c 100644
--- a/sw/source/core/layout/calcmove.cxx
+++ b/sw/source/core/layout/calcmove.cxx
@@ -1525,10 +1525,12 @@ void SwContentFrame::MakeAll(vcl::RenderContext* 
/*pRenderContext*/)
 
 // Hide whitespace may require not to insert a new page.
 SwPageFrame* pPageFrame = FindPageFrame();
-long nOldBottomDist = nBottomDist;
-pPageFrame->HandleWhitespaceHiddenDiff(nBottomDist);
-if (nOldBottomDist != nBottomDist)
+const bool bHeightValid = 
pPageFrame->CheckPageHeightValidForHideWhitespace(nBottomDist);
+if (!bHeightValid)
+{
 pPageFrame->InvalidateSize();
+nBottomDist = 0;
+}
 
 if( nBottomDist >= 0 )
 {
diff --git a/sw/source/core/layout/pagechg.cxx 
b/sw/source/core/layout/pagechg.cxx
index 967ee2f..42ae8ac 100644
--- a/sw/source/core/layout/pagechg.cxx
+++ b/sw/source/core/layout/pagechg.cxx
@@ -2287,7 +2287,7 @@ bool SwPageFrame::IsOverHeaderFooterArea( const Point& 
rPt, FrameControlType 
 return false;
 }
 
-void SwPageFrame::HandleWhitespaceHiddenDiff(SwTwips& nDiff)
+bool SwPageFrame::CheckPageHeightValidForHideWhitespace(SwTwips nDiff)
 {
 SwViewShell* pShell = getRootFrame()->GetCurrShell();
 if (pShell && pShell->GetViewOptions()->IsWhitespaceHidden())
@@ -2309,10 +2309,12 @@ void SwPageFrame::HandleWhitespaceHiddenDiff(SwTwips& 
nDiff)
 {
 // It does: don't move it and invalidate our page frame so
 // that it gets a larger height.
-nDiff = 0;
+return false;
 }
 }
 }
+
+return true;
 }
 
 SwTextGridItem const* GetGridItem(SwPageFrame const*const pPage)
diff --git a/sw/source/core/text/widorp.cxx b/sw/source/core/text/widorp.cxx
index c75a958..7c22b12 100644
--- a/sw/source/core/text/widorp.cxx
+++ b/sw/source/core/text/widorp.cxx
@@ -131,7 +131,8 @@ bool SwTextFrameBreak::IsInside( SwTextMargin  ) const
 
 // Hide whitespace may require not to insert a new page.
 SwPageFrame* pPageFrame = m_pFrame->FindPageFrame();
-pPageFrame->HandleWhitespaceHiddenDiff(nDiff);
+if (!pPageFrame->CheckPageHeightValidForHideWhitespace(nDiff))
+nDiff = 0;
 
 // If everything is inside the existing frame the result is true;
 bFit = nDiff >= 0;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[ANN] LibreOffice 5.1.0 RC3 available

2016-01-29 Thread Christian Lohmaier
Dear Community,

The Document Foundation is pleased to announce the third release
candidate of LibreOffice 5.1.0. The upcoming 5.1.0 will be the first
release of our fresh 5.1 line. Please be aware that LibreOffice 5.1.0
RC3 has not been flagged as ready for production use yet, however feel
free to give it a try instead of 4.4.7 or 5.0.4.

A work-in-progress list of new features in LibreOffice 5.1 can be
found at https://wiki.documentfoundation.org/ReleaseNotes/5.1

The release is available for Windows, Linux and Mac OS X from our QA
builds download page at

  http://www.libreoffice.org/download/pre-releases/

Windows builds are also provided in 64bit version.

Developers and QA might also be interested in the symbol server for
windows debug information (see
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg
for
details)

Should you find bugs, please report them to our Bugzilla:

  https://bugs.documentfoundation.org

A good way to assess the release candidate quality is to run some
specific manual tests on it, our TCM wiki page has more details:

 
http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

For other ways to get involved with this exciting project - you can
e.g. contribute code:

  http://www.libreoffice.org/community/developers/

translate LibreOffice to your language:

  http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

or help with funding our operations:

  http://donate.libreoffice.org/

A list of known issues and fixed bugs compared to 5.1.0 rc2 is
available from our wiki:

  http://wiki.documentfoundation.org/Releases/5.1.0/RC3

Let us close again with a BIG Thank You! to all of you having
contributed to the LibreOffice project - this release would not have
been possible without your help.

On behalf of the Community,

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


[Libreoffice-bugs] [Bug 97428] New: Variation of a interval for line and for symbols when focus of a frames is changed

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97428

Bug ID: 97428
   Summary: Variation of a interval for line and for symbols  when
focus of a frames is changed
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hka...@yandex.ru

User-Agent:   Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0)
Gecko/20100101 Firefox/43.0
Build Identifier: LibreOffice 5.0.4.2

To demonstrate the problem, I took three pictures. They show are one a slide. A
difference is that the focus of frames are changed. As you can see, 
inter-character and inter-line spacing is different on these images.
I suppose that this behavior may be caused by non-standard DPI. For my monitor
DPI = 100.

Reproducible: Always




[Information automatically included from LibreOffice]
Locale: ru
Module: PresentationDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes


Reset User Profile?No

-- 
You are receiving this mail because:
You 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 97398] SIDEBAR: Content panels not independent between apps

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97398

--- Comment #3 from Beluga  ---
Aha.. well, just so we remember, the definition for medium + minor is:
Does bug make it substantially harder to make high quality work or require
users to not use some features?

-- 
You are receiving this mail because:
You 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 60428] Duplex Printing - HP Officejet Pro 8600 Plus

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60428

--- Comment #25 from herman.via...@edpnet.be ---
@Michael
I explained my usage and versions in Comment 13.
As I saw Comment 22, I wanted to test if the bug really was solved on my Mageia
5 platform.
The issue I got at the checkout, let me install 5.1.0 , not 5.0.2 as in Comment
22, but a newer version would be OK i guessed?
As to which repository I used, I cann't confirm anymore, as the laptop I used
to test, died, and I had to replace it, I have to reinstall everything on a naw
machine and run the tests again from scratch.

-- 
You are receiving this mail because:
You 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 - include/o3tl o3tl/CppunitTest_o3tl_tests.mk o3tl/qa

2016-01-29 Thread David Tardon
 include/o3tl/enumarray.hxx |1 
 include/o3tl/enumrange.hxx |2 
 include/o3tl/functional.hxx|2 
 include/o3tl/lazy_update.hxx   |2 
 include/o3tl/range.hxx |  183 -
 include/o3tl/vector_pool.hxx   |1 
 o3tl/CppunitTest_o3tl_tests.mk |1 
 o3tl/qa/test-range.cxx |  226 -
 8 files changed, 418 deletions(-)

New commits:
commit da45a1686088d0b05fd694e0b413527a89027b6e
Author: David Tardon 
Date:   Fri Jan 29 13:30:53 2016 +0100

remove unused o3tl::range

Change-Id: I080f4f2cb15d25ecf5545300da422957f24e3f9b

diff --git a/include/o3tl/range.hxx b/include/o3tl/range.hxx
deleted file mode 100644
index 9abfb25..000
--- a/include/o3tl/range.hxx
+++ /dev/null
@@ -1,183 +0,0 @@
-/* -*- 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_O3TL_RANGE_HXX
-#define INCLUDED_O3TL_RANGE_HXX
-
-
-#include 
-#include 
-
-
-
-namespace o3tl
-{
-/** Represents a range of integer or iterator values.
-
-@tpl T
-Has to be assignable, add- and subtractable. That is:
-either it is
-- an integral type
-- or a random access iterator.
-*/
-template 
-class range
-{
-  public:
-typedef T   element_type;   /// Provided for generic 
programming.
-typedef rangeself;
-
-  // LIFECYCLE
-range(
-T   i_inclusiveLowerBorder,
-T   i_exclusiveUpperBorder );
-~range();
-  // INQUIRY
-T   begin() const;
-T   end() const;
-std::size_t size() const;
-
-boolcontains(
-T   i_value ) const;
-boolcontains(
-const self &i_other ) const;
-booloverlaps(
-const self &i_other ) const;
-/// @return i_other.begin() - this->end()
-longdistance_to(
-const self &i_other ) const;
-  private:
-  // DATA
-T   nBegin;
-T   nEnd;
-};
-
-
-template 
-inline range
-make_range(T i1, T i2)
-{
-return range(i1, i2);
-}
-
-template 
-inline range
-range_of(const T & i_container)
-{
-return make_range( i_container.begin(),
-   i_container.end()
- );
-}
-
-template 
-inline range
-range_of(T & io_container)
-{
-return make_range( io_container.begin(),
-   io_container.end()
- );
-}
-
-
-
-
-
-// IMPLEMENTATION
-
-template 
-range::range( T i_inclusiveLowerBorder,
- T i_exclusiveUpperBorder )
-:   nBegin(i_inclusiveLowerBorder),
-nEnd(i_exclusiveUpperBorder)
-{
-assert( nBegin <= nEnd
-&& "Invalid parameters for range<> constructor.");
-}
-
-template 
-range::~range()
-{
-}
-
-template 
-inline T
-range::begin() const
-{
-return nBegin;
-}
-
-template 
-inline T
-range::end() const
-{
-return nEnd;
-}
-
-template 
-inline std::size_t
-range::size() const
-{
-assert( nBegin <= nEnd
-&& "Invalid range limits in range<>::size().");
-return static_cast( end() - begin() );
-}
-
-template 
-bool
-range::contains(T i_value ) const
-{
-return  begin() <= i_value
-&&  i_value < end();
-}
-
-template 
-bool
-range::contains(const self & i_other) const
-{
-// This is subtle, because this would be wrong:
-//  begin() <= i_other.begin()
-//  &&  i_other.end() <= end();
-// An empty range that begins and starts at my end()
-// must not be contained.
-
-return  contains(i_other.begin())
-&&  i_other.end() <= end();
-}
-
-template 
-bool
-range::overlaps(const self & i_other) const
-{
-return  contains(i_other.begin())
-||  i_other.contains(begin());
-}
-
-template 
-long
-range::distance_to(const self & i_other) const
-{
-  

[Libreoffice-bugs] [Bug 86602] Float Frame should require real filename in Content

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86602

--- Comment #3 from Maxim Britov  ---
I can reproduce this on 5.0.5.1 and 5.1.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 96466] missing data in PDF export from spreadsheet in Windows

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96466

Timur  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #10 from Timur  ---
I was free to add Justin due to the other PDF export bug. Be free to remove.

-- 
You are receiving this mail because:
You 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 97430] New: ccx and cmx sample files

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97430

Bug ID: 97430
   Summary: ccx and cmx sample files
   Product: libcdr
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: martin.tlus...@live.at

I have a collection of several thousand .ccx and .cmx files that I coul provide
for improving support if needed... (An old Corel Gallery)

-- 
You are receiving this mail because:
You 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 - download.lst external/firebird

2016-01-29 Thread Lionel Elie Mamane
 download.lst   |4 
 external/firebird/ExternalPackage_firebird.mk  |4 
 external/firebird/ExternalProject_firebird.mk  |4 
 external/firebird/UnpackedTarball_firebird.mk  |1 
 external/firebird/firebird-c++11.patch.1   |  214 -
 external/firebird/firebird-c++11replfn.patch.0 |   50 -
 6 files changed, 6 insertions(+), 271 deletions(-)

New commits:
commit 7dc0b376e7f5cbff28e2c637786f7421c125cef4
Author: Lionel Elie Mamane 
Date:   Fri Jan 29 13:29:44 2016 +0100

enable parallelisation of firebird builds

Change-Id: I651bb973bfff555b8627be85f74b49c2c6ccf425

diff --git a/external/firebird/ExternalProject_firebird.mk 
b/external/firebird/ExternalProject_firebird.mk
index 479fdcd..353786a 100644
--- a/external/firebird/ExternalProject_firebird.mk
+++ b/external/firebird/ExternalProject_firebird.mk
@@ -60,7 +60,7 @@ $(call gb_ExternalProject_get_state_target,firebird,build):
&& $(if $(filter WNT,$(OS)),\
   PATH="$(shell cygpath -u $(call 
gb_UnpackedTarball_get_dir,icu)/source/lib):$$PATH",\
   $(gb_Helper_set_ld_path)) \
-  $(MAKE) SHELL=$(SHELL) firebird_embedded \
+  $(MAKE) CPU=$(PARALLELISM) SHELL=$(SHELL) firebird_embedded \
$(if $(filter MACOSX,$(OS)),&& $(PERL) \
$(SRCDIR)/solenv/bin/macosx-change-install-names.pl shl 
OOO \

$(gb_Package_SOURCEDIR_firebird)/gen/firebird/lib/libfbembed.dylib.2.5.5) \
commit 8d5bca2a40d1fded921165cfc5637ff763b21510
Author: Lionel Elie Mamane 
Date:   Fri Jan 29 13:29:19 2016 +0100

new upstream version Firebird 2.5.5

Change-Id: Icd41e2115d30525eea26df3f92867ab6dd87c747

diff --git a/download.lst b/download.lst
index a3156fc..aedb01e 100644
--- a/download.lst
+++ b/download.lst
@@ -31,8 +31,8 @@ export ETONYEK_MD5SUM := 77ff46936dcc83670557274e7dd2aa33
 export ETONYEK_VERSION_MICRO := 6
 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.bz2
 export EXPAT_TARBALL := dd7dab7a5fea97d2a6a43f511449b7cd-expat-2.1.0.tar.gz
-export FIREBIRD_MD5SUM := 7a17ec9889424b98baa29e001a054434
-export FIREBIRD_TARBALL := Firebird-2.5.4.26856-0.tar.bz2
+export FIREBIRD_MD5SUM := b0b5293991fcf07347b38431c80be1d4
+export FIREBIRD_TARBALL := Firebird-2.5.5.26952-0.tar.bz2
 # FIREBIRD_MD5SUM := b259c2d1c60a03bd104108405ae990a7
 # export FIREBIRD_TARBALL := Firebird-3.0-alpha1-20130302.tar.gz
 export FONTCONFIG_TARBALL := 
77e15a92006ddc2adbb06f840d591c0e-fontconfig-2.8.0.tar.gz
diff --git a/external/firebird/ExternalPackage_firebird.mk 
b/external/firebird/ExternalPackage_firebird.mk
index 3b921ed..6e757d8 100644
--- a/external/firebird/ExternalPackage_firebird.mk
+++ b/external/firebird/ExternalPackage_firebird.mk
@@ -14,9 +14,9 @@ $(eval $(call 
gb_ExternalPackage_use_external_project,firebird,firebird))
 ifeq ($(OS)-$(COM),WNT-MSC)
 $(eval $(call 
gb_ExternalPackage_add_file,firebird,$(LIBO_LIB_FOLDER)/ifbembed.dll,gen/firebird/bin/ifbembed.dll))
 else ifeq ($(OS),MACOSX)
-$(eval $(call 
gb_ExternalPackage_add_file,firebird,$(LIBO_LIB_FOLDER)/libfbembed.dylib,gen/firebird/lib/libfbembed.dylib.2.5.4))
+$(eval $(call 
gb_ExternalPackage_add_file,firebird,$(LIBO_LIB_FOLDER)/libfbembed.dylib,gen/firebird/lib/libfbembed.dylib.2.5.5))
 else ifeq ($(DISABLE_DYNLOADING),)
-$(eval $(call 
gb_ExternalPackage_add_file,firebird,$(LIBO_LIB_FOLDER)/libfbembed.so.2.5,gen/firebird/lib/libfbembed.so.2.5.4))
+$(eval $(call 
gb_ExternalPackage_add_file,firebird,$(LIBO_LIB_FOLDER)/libfbembed.so.2.5,gen/firebird/lib/libfbembed.so.2.5.5))
 endif
 
 $(eval $(call 
gb_ExternalPackage_add_file,firebird,$(LIBO_SHARE_FOLDER)/firebird/firebird.msg,gen/firebird/firebird.msg))
diff --git a/external/firebird/ExternalProject_firebird.mk 
b/external/firebird/ExternalProject_firebird.mk
index 35e63ab..479fdcd 100644
--- a/external/firebird/ExternalProject_firebird.mk
+++ b/external/firebird/ExternalProject_firebird.mk
@@ -63,6 +63,6 @@ $(call gb_ExternalProject_get_state_target,firebird,build):
   $(MAKE) SHELL=$(SHELL) firebird_embedded \
$(if $(filter MACOSX,$(OS)),&& $(PERL) \
$(SRCDIR)/solenv/bin/macosx-change-install-names.pl shl 
OOO \
-   
$(gb_Package_SOURCEDIR_firebird)/gen/firebird/lib/libfbembed.dylib.2.5.4) \
+   
$(gb_Package_SOURCEDIR_firebird)/gen/firebird/lib/libfbembed.dylib.2.5.5) \
)
 # vim: set noet sw=4 ts=4:
diff --git a/external/firebird/UnpackedTarball_firebird.mk 
b/external/firebird/UnpackedTarball_firebird.mk
index 9701fc2..d04a350a 100644
--- a/external/firebird/UnpackedTarball_firebird.mk
+++ b/external/firebird/UnpackedTarball_firebird.mk
@@ -16,7 +16,6 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,firebird,0))
 $(eval $(call gb_UnpackedTarball_add_patches,firebird,\

[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - oox/source writerfilter/source

2016-01-29 Thread Michael Stahl
 oox/source/token/namespaces-strict.txt |2 +-
 writerfilter/source/ooxml/model.xml|2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 5fc827d2d0289d178d227161976eb05117853af9
Author: Michael Stahl 
Date:   Fri Jan 15 21:45:01 2016 +0100

oox, writerfilter: incorrect a14 namespace

Change-Id: I813ca0510b6cfc26c307c510f3511c01c0f65c85
(cherry picked from commit 4eee0f8d1180300bd56942ad23321f8f3f1b6177)
Reviewed-on: https://gerrit.libreoffice.org/21782
Tested-by: Jenkins 
Reviewed-by: Miklos Vajna 

diff --git a/oox/source/token/namespaces-strict.txt 
b/oox/source/token/namespaces-strict.txt
index 69eb335..f9a4633 100644
--- a/oox/source/token/namespaces-strict.txt
+++ b/oox/source/token/namespaces-strict.txt
@@ -77,7 +77,7 @@ wps 
http://schemas.microsoft.com/office/word/2010/wordproces
 wpg 
http://schemas.microsoft.com/office/word/2010/wordprocessingGroup
 wp14
http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing
 w14 http://schemas.microsoft.com/office/word/2010/wordml
-a14 http://schemas.microsoft.com/office/drawingml/2010/main
+a14 http://schemas.microsoft.com/office/drawing/2010/main
 p14 
http://schemas.microsoft.com/office/powerpoint/2010/main
 
 # MSO 2012/2013 extensions 
-
diff --git a/writerfilter/source/ooxml/model.xml 
b/writerfilter/source/ooxml/model.xml
index 260aa3d..2407a73 100644
--- a/writerfilter/source/ooxml/model.xml
+++ b/writerfilter/source/ooxml/model.xml
@@ -5342,7 +5342,7 @@
 
   
   
-http://relaxng.org/ns/structure/1.0; 
ns="http://schemas.microsoft.com/office/drawingml/2010/main;>
+http://relaxng.org/ns/structure/1.0; 
ns="http://schemas.microsoft.com/office/drawing/2010/main;>
   
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Call for help - understanding how to debug sw module

2016-01-29 Thread Tomaž Vajngerl
Hi,

On Thu, Jan 28, 2016 at 9:52 AM, Chris Sherlock
 wrote:
> I did a calculation from http://www.sven.de/dpi and apparently I have a pixel 
> density of 267.02 PPI.
>
> Wondering if this is skewing the calculations.

OS usually doesn't tell the correct monitor DPI to the application but
usually just reports 96 DPI (if no scaling is applied). In windows you
can change the scale levels - 100%, 125%, 150%, 200%,... which just
adjusts what DPI is reported to the application (100% - 96DPI, 125% -
120DPI, 150% - 144 DPI, 200% - 192DPI...) so the application can scale
accordingly (at least fonts). I'm not sure how OSX does this.

You should check what DPI is actually reported to LO - OutputDevice
has mnDPIX and mnDPIY - check where they are set and to what value.
DPI influences how pixels are converted to and from actual units (mm,
inch, twips,..) It could be that we transform between units just too
much and the error accumulates if the DPI is set to a weird value.
Tracking this down could be tricky.

> Chris

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


[Libreoffice-bugs] [Bug 97303] Add Illustration and Table caption fields into Insert -> Field menu

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97303

--- Comment #6 from Heiko Tietze  ---
Perhaps we should split this into two topics: UNO command and framed captions.

(In reply to Yousuf (Jay) Philips from comment #5)
> In order to accurately place a caption for a floating image, a frame is
> needed to be placed around it to make sure the caption aligns with the
> image. Maybe the alternative solution is to have an option in the caption
> dialog to enable/disable to creation of the frame.
How about paragraph style with the "keep together" option? Or is it not
possible to assign a style to any object.

(In reply to Yousuf (Jay) Philips from comment #5)
> .uno:InsertField?type=Number range=Table
The UNO command might make sense, but actually there is no use case to have
captions without any relation to an object. So the question is do we really
need 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 91820] Reorganization of the menu bar for Calc

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91820

--- Comment #47 from Yousuf (Jay) Philips  ---
(In reply to kompilainenn from comment #46)
> Hi, Yousuf. Item "Fill cell" in menu "Sheet" inconvenient to use. Even
> knowing about the changes in the menu, I've been searching this item. It
> should be placed in the Data menu. It is more logical.

Hey kompilainenn,

The Data menu is for working with data already present in your sheet (sort,
autofilter, pivot table, etc), so thats why i dont think that would be the
correct place for it. It used to be Edit > Fill, but was moved from there as
the Edit menu is for edit functions (undo, cut, track changes, edit object,
edit mode). Also we needed to bring all cell related functions under one roof -
insert cell, delete cell, filling cell with data, managing cell comment,
clearing cell data, and changing cell references.

-- 
You are receiving this mail because:
You 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 97369] SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows)

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97369

Tor Lillqvist  changed:

   What|Removed |Added

 Blocks|97391   |

-- 
You are receiving this mail because:
You 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 97369] SUM formulas, in the cell below one with the same formula (and maybe more?) are not calculate correctly in 5.1 (with more then ~100 rows)

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97369

--- Comment #26 from Tor Lillqvist  ---
Actually this is not an OpenCL bug, but related to the Software Interpreter, I
think. Probably could be resolved as duplicate of bug #97204.

-- 
You are receiving this mail because:
You 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 97391] [META]: Tracker bug for OpenCL issues in Calc

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97391

Tor Lillqvist  changed:

   What|Removed |Added

 Depends on|97369   |

-- 
You are receiving this mail because:
You 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 97295] Crash when switch odt files, direct opened from browser

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97295

--- Comment #2 from baffclan  ---
(In reply to Beluga from comment #1)
> No crash here. I noticed you are using quite an old master build.
Thanks for comments.
Reproduce newest master.
(but not 5.1.0.2)

Version: 5.2.0.0.alpha0+
Build ID: a8860122fecbaa932a48f41a38077f621275be9d
Threads 4; Ver: Windows 6.1; Render: GL;
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-11-27_10:34:00
Locale: ja-JP (ja_JP)

-- 
You are receiving this mail because:
You 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 97429] New: Writer crash on print selected area

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97429

Bug ID: 97429
   Summary: Writer crash on print selected area
   Product: LibreOffice
   Version: 5.0.5.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ungift...@ya.ru

Created attachment 122273
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122273=edit
Example

Open attached document
Ctrl+A
Ctrl+P
Select Print selected area only
Crash

Crash LO 5.0.5.1 win32
Crash LO 5.0.5.1 lin64
Crash LO 5.1.0.2 lin64
Not affected 4.4.7 both win/lin.

-- 
You are receiving this mail because:
You 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: drawinglayer/source include/vcl svtools/source vcl/source

2016-01-29 Thread Armin Le Grand
 drawinglayer/source/processor2d/vclhelperbufferdevice.cxx |   40 -
 include/vcl/dibtools.hxx  |6 
 svtools/source/misc/transfer.cxx  |4 
 vcl/source/filter/wmf/enhwmf.cxx  |  106 +++--
 vcl/source/filter/wmf/winmtf.cxx  |  108 ++
 vcl/source/filter/wmf/winmtf.hxx  |   17 +-
 vcl/source/gdi/dibtools.cxx   |   22 ++
 7 files changed, 242 insertions(+), 61 deletions(-)

New commits:
commit 6f12c93703b676b1b3839caaf2c21788e5d68477
Author: Armin Le Grand 
Date:   Fri Jan 22 11:39:41 2016 +0100

tdf#91017 Enhance WMF import of EMR_ALPHABLEND action

The EMR_ALPHABLEND action was added 2012/2013, but missed support for
Bitmaps with Mask/Alpha. Due to that files with WMF containing these
actions may look different from before. Added suport to load contained
Mask/Alpha information in DIBs and the needed additional processing
through the display chain. WMF import is still based on Metafile
creation, when it would be using Primitives more original data could be
preserved.

Change-Id: I577569848cee2528328181fa0c7eb7f87857d094
Reviewed-on: https://gerrit.libreoffice.org/21709
Tested-by: Jenkins 
Reviewed-by: Noel Grandin 
Reviewed-by: Armin Le Grand 

diff --git a/drawinglayer/source/processor2d/vclhelperbufferdevice.cxx 
b/drawinglayer/source/processor2d/vclhelperbufferdevice.cxx
index c9ef7ab..62d11c4 100644
--- a/drawinglayer/source/processor2d/vclhelperbufferdevice.cxx
+++ b/drawinglayer/source/processor2d/vclhelperbufferdevice.cxx
@@ -297,6 +297,9 @@ namespace drawinglayer
 
 // copy AA flag for new target
 mpContent->SetAntialiasing(mrOutDev.GetAntialiasing());
+
+// copy RasterOp (e.g. may be ROP_XOR on destination)
+mpContent->SetRasterOp(mrOutDev.GetRasterOp());
 }
 }
 
@@ -325,28 +328,50 @@ namespace drawinglayer
 const Point aEmptyPoint;
 const Size aSizePixel(maDestPixel.GetSize());
 const bool bWasEnabledDst(mrOutDev.IsMapModeEnabled());
+#ifdef DBG_UTIL
 static bool bDoSaveForVisualControl(false);
+#endif
 
 mrOutDev.EnableMapMode(false);
 mpContent->EnableMapMode(false);
 Bitmap aContent(mpContent->GetBitmap(aEmptyPoint, aSizePixel));
 
+#ifdef DBG_UTIL
 if(bDoSaveForVisualControl)
 {
-SvFileStream aNew( "c:\\content.bmp", 
StreamMode::WRITE|StreamMode::TRUNC);
+SvFileStream aNew(
+#ifdef WNT
+"c:\\content.bmp",
+#else
+"~/content.bmp",
+#endif
+StreamMode::WRITE|StreamMode::TRUNC);
 WriteDIB(aContent, aNew, false, true);
 }
+#endif
+
+// during painting the buffer, disable evtl. set RasterOp (may be 
ROP_XOR)
+const RasterOp aOrigRasterOp(mrOutDev.GetRasterOp());
+mrOutDev.SetRasterOp(ROP_OVERPAINT);
 
 if(mpAlpha)
 {
 mpAlpha->EnableMapMode(false);
 const AlphaMask aAlphaMask(mpAlpha->GetBitmap(aEmptyPoint, 
aSizePixel));
 
+#ifdef DBG_UTIL
 if(bDoSaveForVisualControl)
 {
-SvFileStream aNew( "c:\\transparence.bmp", 
StreamMode::WRITE|StreamMode::TRUNC);
+SvFileStream aNew(
+#ifdef WNT
+"c:\\transparence.bmp",
+#else
+"~/transparence.bmp",
+#endif
+StreamMode::WRITE|StreamMode::TRUNC);
 WriteDIB(aAlphaMask.GetBitmap(), aNew, false, true);
 }
+#endif
 
 mrOutDev.DrawBitmapEx(maDestPixel.TopLeft(), 
BitmapEx(aContent, aAlphaMask));
 }
@@ -355,11 +380,19 @@ namespace drawinglayer
 mpMask->EnableMapMode(false);
 const Bitmap aMask(mpMask->GetBitmap(aEmptyPoint, aSizePixel));
 
+#ifdef DBG_UTIL
 if(bDoSaveForVisualControl)
 {
-SvFileStream aNew( "c:\\mask.bmp", 
StreamMode::WRITE|StreamMode::TRUNC);
+SvFileStream aNew(
+#ifdef WNT
+"c:\\mask.bmp",
+#else
+"~/mask.bmp",
+#endif
+StreamMode::WRITE|StreamMode::TRUNC);
 WriteDIB(aMask, aNew, false, true);
 }
+#endif
 
 mrOutDev.DrawBitmapEx(maDestPixel.TopLeft(), 
BitmapEx(aContent, aMask));
 }
@@ -374,6 +407,7 @@ namespace drawinglayer
 mrOutDev.DrawBitmap(maDestPixel.TopLeft(), aContent);
 }
 
+mrOutDev.SetRasterOp(aOrigRasterOp);
 

[Libreoffice-bugs] [Bug 97295] Crash when switch odt files, direct opened from browser

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97295

--- Comment #3 from Beluga  ---
Hmm, now I noticed you have OpenGL on.

Does it stop crashing, if you disable Tools - Options - LibO - View - Use
OpenGL for all rendering?

-- 
You are receiving this mail because:
You 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 97431] New: Shlomo font not accessible

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97431

Bug ID: 97431
   Summary: Shlomo font not accessible
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: axel.niedenh...@web.de

On my Linux box (RHEL 6.7) I have installed the Shlomo font from here:
https://sites.google.com/site/orlaeinayim/download

The font is not displayed in the various font selection lists in LibreOffice.
All other fonts in my .fonts folder are displayed without problems. That
includes, for example, the Ezra SIL font, upon which Shlomo is based. So it
looks as if some slight change in Shlomo compared to Ezra SIL prevents the font
from being picked up by LO.

Other applications (LuaTeX, GEdit, for example) work fine with Shlomo.

I made sure that the Shlomo font has the same permissions as the other fonts
and also ran fc-cache to update the font cache. Logging out and back in again
does not fix the problem.

The same behavior occurs for Ubuntu 15.10 in the LO version shipped with the
OS.

-- 
You are receiving this mail because:
You 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 86536] 4.4.0.0.beta1: couldn't mouse click on TextBox for edit when selection on shape

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86536

--- Comment #4 from Maxim Britov  ---
Same on 4.4.7.2 / 5.0.5.1 / 5.1.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 97432] New: Breakpoints ignore when macro first run

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97432

Bug ID: 97432
   Summary: Breakpoints ignore when macro first run
   Product: LibreOffice
   Version: 5.1.0.2 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: t...@tim-passingham.co.uk

Created attachment 122274
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122274=edit
Test database

When a breakpoint is set in a BAsic Macro, the first time the routine is
executed the breakpoint is ignored.  This can be baffling at times.

Open the attached database.  

Open the macros: Tools, Macros, Organise Macros, LibreOffice Basic
Under testbreakpoint.odb, Standard, Module1 select the TestBreakpoint macro and
Edit.

Put a breakpoint on the line: oCodeRun.Text = "Code Run" 

Leave the Macro page open and go back to the BASE home page for this database
and open the Table1 Form.

Press the button marked 'Press'.  Look at the Macro page - the breakpoint has
not been executed, but the code has been, and the field below the Press button
contains 'Code Run', proving that the macro has been executed without a
breakpoint.

Now press the button marked 'Press' again.  Look at the Macro page - the
breakpoint has been executed this time and code is halted.

-- 
You are receiving this mail because:
You 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 97367] Editing white text has a white background fill (unseen in PDF and in slideshow)

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97367

raal  changed:

   What|Removed |Added

 CC||r...@post.cz
Version|5.0.4.2 release |4.5.0.0.alpha0+ Master

--- Comment #3 from raal  ---
Reproducible with Version: 4.5.0.0.alpha0+

-- 
You are receiving this mail because:
You 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 97345] Mail Merge Crashes

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97345

--- Comment #7 from morvan  ---
Hi.
Thanks, Beluga. If it manifests again I will report. Have a nice day.

-- 
You are receiving this mail because:
You 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 97428] Variation of a interval for line and for symbols when focus of a frames is changed

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97428

--- Comment #1 from Pavel Karelin  ---
Created attachment 122270
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122270=edit
not-focus-text-frame

-- 
You are receiving this mail because:
You 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 97428] Variation of a interval for line and for symbols when focus of a frames is changed

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97428

--- Comment #3 from Pavel Karelin  ---
Created attachment 122272
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122272=edit
focus-second-text-frame

-- 
You are receiving this mail because:
You 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 97428] Variation of a interval for line and for symbols when focus of a frames is changed

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97428

--- Comment #2 from Pavel Karelin  ---
Created attachment 122271
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122271=edit
focus-first-text-frame

-- 
You are receiving this mail because:
You 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 91820] Reorganization of the menu bar for Calc

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91820

--- Comment #49 from Yousuf (Jay) Philips  ---
(In reply to kompilainenn from comment #48)
> I disagree. In the menu Sheet - adding or removing cells - yes, the
> operation of the sheet - yes, add or delete rows and columns - yes. Filling
> cells DATA - no, delete data from the cell - no.

So according to your thinking, where should we place cell comment and cell
references, as you didnt address those.

> Data operations (adding, modifying or deleting) must be in the Data menu.

I wouldnt call adding and removing data from a cell a data operation, as if
that were so, we should move Cut, Copy and Paste under Data as well. The point
here is that a user shouldnt need to open the Data menu unless there is data in
his/her sheet. Here is what it says in the help about the Data menu - "Use the
Data menu commands to edit the data in the current sheet. You can define
ranges, sort and filter the data, calculate results, outline data, and create a
pivot table."

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


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

2016-01-29 Thread Miklos Vajna
 sw/qa/extras/rtfexport/data/tdf96175.rtf |6 ++
 sw/qa/extras/rtfexport/rtfexport.cxx |   10 ++
 sw/source/filter/ww8/rtfexport.cxx   |   15 +++
 3 files changed, 31 insertions(+)

New commits:
commit abe8ea175ad9fc282a1e702acb74da5d7c967cbe
Author: Miklos Vajna 
Date:   Fri Jan 29 12:18:49 2016 +0100

tdf#96175 RTF filter: export \company

Change-Id: I590d015aa50350cceef70313498e72474d242789
Reviewed-on: https://gerrit.libreoffice.org/21897
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins 

diff --git a/sw/qa/extras/rtfexport/data/tdf96175.rtf 
b/sw/qa/extras/rtfexport/data/tdf96175.rtf
new file mode 100644
index 000..b125ba6
--- /dev/null
+++ b/sw/qa/extras/rtfexport/data/tdf96175.rtf
@@ -0,0 +1,6 @@
+{\rtf1
+{\info
+{\*\company foobar}
+}
+hello
+\par}
diff --git a/sw/qa/extras/rtfexport/rtfexport.cxx 
b/sw/qa/extras/rtfexport/rtfexport.cxx
index f39e013..0825034 100644
--- a/sw/qa/extras/rtfexport/rtfexport.cxx
+++ b/sw/qa/extras/rtfexport/rtfexport.cxx
@@ -973,6 +973,16 @@ DECLARE_RTFEXPORT_TEST(testPageBackground, 
"page-background.rtf")
 CPPUNIT_ASSERT_EQUAL(sal_Int32(0x92D050), 
getProperty(xPageStyle, "BackColor"));
 }
 
+DECLARE_RTFEXPORT_TEST(testTdf96175, "tdf96175.rtf")
+{
+// The problem that a user defined property named "Company" was lost on 
export.
+uno::Reference 
xDocumentPropertiesSupplier(mxComponent, uno::UNO_QUERY);
+uno::Reference 
xDocumentProperties(xDocumentPropertiesSupplier->getDocumentProperties(), 
uno::UNO_QUERY);
+uno::Reference xUserDefinedProperties = 
xDocumentProperties->getUserDefinedProperties();
+// This resulted in a beans::UnknownPropertyException.
+CPPUNIT_ASSERT_EQUAL(OUString("foobar"), 
getProperty(xUserDefinedProperties, "Company"));
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/filter/ww8/rtfexport.cxx 
b/sw/source/filter/ww8/rtfexport.cxx
index 4fed09f..766d6d4 100644
--- a/sw/source/filter/ww8/rtfexport.cxx
+++ b/sw/source/filter/ww8/rtfexport.cxx
@@ -443,6 +443,21 @@ void RtfExport::WriteInfo()
 
 if (xDocProps.is())
 {
+// Handle user-defined properties.
+uno::Reference xUserDefinedProperties = 
xDocProps->getUserDefinedProperties();
+if (xUserDefinedProperties.is())
+{
+uno::Reference 
xPropertySet(xUserDefinedProperties, uno::UNO_QUERY);
+uno::Reference xPropertySetInfo = 
xPropertySet->getPropertySetInfo();
+// Do we have explicit markup in RTF for this property name?
+if (xPropertySetInfo->hasPropertyByName("Company"))
+{
+OUString aValue;
+xPropertySet->getPropertyValue("Company") >>= aValue;
+OutUnicode(OOO_STRING_SVTOOLS_RTF_IGNORE 
OOO_STRING_SVTOOLS_RTF_COMPANY, aValue);
+}
+}
+
 OutUnicode(OOO_STRING_SVTOOLS_RTF_TITLE, xDocProps->getTitle(), true);
 OutUnicode(OOO_STRING_SVTOOLS_RTF_SUBJECT, xDocProps->getSubject());
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 86599] 4.4.0.0.beta1 Floating Frames can't Undo after Redo

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86599

--- Comment #3 from Maxim Britov  ---
Same on 4.4.7, 5.0.5.1, 5.1.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 86529] 4.4.0.0.beta1 new TextBox seems incompatible with shape rotate

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86529

--- Comment #8 from ungifted  ---
Same on 4.4.7.2 / 5.0.5.1 / 5.1.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 97241] Move to more natural French translation for Pivot Table

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97241

--- Comment #5 from Milan Bouchet-Valat  ---
Any other opinions? The release is quite close...

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


[Libreoffice-qa] Minutes of the Design Hangout: 2016-01-15

2016-01-29 Thread Jan Holesovsky
* Present: Stuart, Italo, Heiko

* UI changes integrated since the last meeting:

+ Update of Breeze and Galaxy transition icons (Andreas)
+ Update in the handling of OS X menus (Maxim)
+ SaveModified icon for Tango and Galaxy (Adolfo)
+ Sifr updates (Matthias)

* Impress - Modes Tab bar
+ http://listarchives.libreoffice.org/global/design/msg07525.html

+ Setting of modes tab bar is not persistent 
+ https://bugs.documentfoundation.org/show_bug.cgi?id=97119 is being 
fixed by bubli according IRC communication
+ META: https://bugs.documentfoundation.org/show_bug.cgi?id=95983 for 
issues related to this refactoring

+ Workflow needs improvement (Italo)
+ Power users switch frequently between page and slide sorter (Italo)
+ Even Benjamin would be kind of an expert in Impress since the gap 
between novice and experts are small here (Italo)
+ Fixing the bug solves the issue since Eve would enable the modes tab 
bar once and forever (Cor)
+ Adding shortcuts like Cltr+Shft+M for norMal and Ctrl+Shft+T sorT 
(Cor)
+ Hiding by default to spare vertical space, easy access via split 
button in toolbar (Stuart)
+ Not enough user testing; Impress power users will not hide this tabs 
bar (Italo, Michel)
+ Show by default until we found a better solution (Samuel)
+ Find a better place for the toolbar split button for instance next to 
format pages (Italo, Sophie, Michel)
+ Last choice of the split button's selection has to be stored (Sophie)
+ Acceptance of changes is a matter of communication (Sophi)
  part of that being to increase use of our MozTrap guided testing cases
  https://wiki.documentfoundation.org/MozTrap
  http://manual-test.libreoffice.org/results/runs/?

+ Master slides are too easy to access making it dangerous for beginners 
(could edit master instead of pages) (Italo)
+ Enterprise  environment blocks editing of master slides; remove 
master slides from split button widget (Italo)
+ Blocking is not so easy, e.g. "Set background image > To all pages" 
affects the master (Cor)
+ Does not introduces new great dangers for corporate use in the 
Netherlands but definitely an issue for Italy (Cor)
+ No good visual cue for master vs. normal (black/gray) (Italo)
+ Hide master slides behind a menu as how masters are handled by 
PowerPoint and Keynote  (Italo, Cor)

+ Opt-in for the modes tab bar (current master) or shown by default
+ off by default (Heiko)
+ on by default, or when it is off then have the toggle on/off button 
on the toolbar (Italo, Stuart)
+ transition time: on for now, off from the next release on (Stuart, 
Italo)
+ Show the toggle display-modes-tab button on toolbar solves everything 
(Italo)
+ Feature is used only once and should go into the main menu view 
settings (Heiko)
+ Agree with keeping it as it for now is and we explain the changes to 
people (Italo)

+ Where to place the toolbar split button?
+ next to other slide functions (Italo, Heiko)
+ enable view on/off and move both buttons to the right end of the 
standard toolbar (Stuart)

+ Store selected mode for the next session?
+ Sure (Heiko)
+ Change access to master slides?
+ Improve yes, but in future release (Heiko, Italo)
+ Move buttons to presentation toolbar, right hand of standard docked 
(Michel, Stuart)
+  
https://wiki.documentfoundation.org/User:Michelr/Impress51_group_buttons
   has some cross over with tdf#89668 -- SLIDE PANE: Move slide 
manipulation buttons to the bottom of the pane
+  https://bugs.documentfoundation.org/show_bug.cgi?id=89668
   and with tdf#87672 -- Moving Impress view tabs to slide pane 
   https://bugs.documentfoundation.org/show_bug.cgi?id=87672

+ Conclusion:
+ Hide the tabs bar by default
+ Show toggle display tabs bar button in the toolbar
+ But then hide the toggle button from realease 5.2 on (aiding 
transition)
+ Move display modes split button and the toggle tabs bar button to the 
right edge of the standard toolbar
+ Store last user setting
+ Think about changing access to master slides for 5.x

* Marketing wants a new name for "notebook bar" interface (Italo)
+ Present the user interface for LibreOffice (Italo)
+ there are multiple interface form factors for users


___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Minutes of the Design Hangout: 2016-01-15

2016-01-29 Thread Jan Holesovsky
* Present: Stuart, Italo, Heiko

* UI changes integrated since the last meeting:

+ Update of Breeze and Galaxy transition icons (Andreas)
+ Update in the handling of OS X menus (Maxim)
+ SaveModified icon for Tango and Galaxy (Adolfo)
+ Sifr updates (Matthias)

* Impress - Modes Tab bar
+ http://listarchives.libreoffice.org/global/design/msg07525.html

+ Setting of modes tab bar is not persistent 
+ https://bugs.documentfoundation.org/show_bug.cgi?id=97119 is being 
fixed by bubli according IRC communication
+ META: https://bugs.documentfoundation.org/show_bug.cgi?id=95983 for 
issues related to this refactoring

+ Workflow needs improvement (Italo)
+ Power users switch frequently between page and slide sorter (Italo)
+ Even Benjamin would be kind of an expert in Impress since the gap 
between novice and experts are small here (Italo)
+ Fixing the bug solves the issue since Eve would enable the modes tab 
bar once and forever (Cor)
+ Adding shortcuts like Cltr+Shft+M for norMal and Ctrl+Shft+T sorT 
(Cor)
+ Hiding by default to spare vertical space, easy access via split 
button in toolbar (Stuart)
+ Not enough user testing; Impress power users will not hide this tabs 
bar (Italo, Michel)
+ Show by default until we found a better solution (Samuel)
+ Find a better place for the toolbar split button for instance next to 
format pages (Italo, Sophie, Michel)
+ Last choice of the split button's selection has to be stored (Sophie)
+ Acceptance of changes is a matter of communication (Sophi)
  part of that being to increase use of our MozTrap guided testing cases
  https://wiki.documentfoundation.org/MozTrap
  http://manual-test.libreoffice.org/results/runs/?

+ Master slides are too easy to access making it dangerous for beginners 
(could edit master instead of pages) (Italo)
+ Enterprise  environment blocks editing of master slides; remove 
master slides from split button widget (Italo)
+ Blocking is not so easy, e.g. "Set background image > To all pages" 
affects the master (Cor)
+ Does not introduces new great dangers for corporate use in the 
Netherlands but definitely an issue for Italy (Cor)
+ No good visual cue for master vs. normal (black/gray) (Italo)
+ Hide master slides behind a menu as how masters are handled by 
PowerPoint and Keynote  (Italo, Cor)

+ Opt-in for the modes tab bar (current master) or shown by default
+ off by default (Heiko)
+ on by default, or when it is off then have the toggle on/off button 
on the toolbar (Italo, Stuart)
+ transition time: on for now, off from the next release on (Stuart, 
Italo)
+ Show the toggle display-modes-tab button on toolbar solves everything 
(Italo)
+ Feature is used only once and should go into the main menu view 
settings (Heiko)
+ Agree with keeping it as it for now is and we explain the changes to 
people (Italo)

+ Where to place the toolbar split button?
+ next to other slide functions (Italo, Heiko)
+ enable view on/off and move both buttons to the right end of the 
standard toolbar (Stuart)

+ Store selected mode for the next session?
+ Sure (Heiko)
+ Change access to master slides?
+ Improve yes, but in future release (Heiko, Italo)
+ Move buttons to presentation toolbar, right hand of standard docked 
(Michel, Stuart)
+  
https://wiki.documentfoundation.org/User:Michelr/Impress51_group_buttons
   has some cross over with tdf#89668 -- SLIDE PANE: Move slide 
manipulation buttons to the bottom of the pane
+  https://bugs.documentfoundation.org/show_bug.cgi?id=89668
   and with tdf#87672 -- Moving Impress view tabs to slide pane 
   https://bugs.documentfoundation.org/show_bug.cgi?id=87672

+ Conclusion:
+ Hide the tabs bar by default
+ Show toggle display tabs bar button in the toolbar
+ But then hide the toggle button from realease 5.2 on (aiding 
transition)
+ Move display modes split button and the toggle tabs bar button to the 
right edge of the standard toolbar
+ Store last user setting
+ Think about changing access to master slides for 5.x

* Marketing wants a new name for "notebook bar" interface (Italo)
+ Present the user interface for LibreOffice (Italo)
+ there are multiple interface form factors for users


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


[Libreoffice-bugs] [Bug 91820] Reorganization of the menu bar for Calc

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91820

--- Comment #48 from kompilainenn <79045_79...@mail.ru> ---
(In reply to Yousuf (Jay) Philips from comment #47)
> (In reply to kompilainenn from comment #46)
> > Hi, Yousuf. Item "Fill cell" in menu "Sheet" inconvenient to use. Even
> > knowing about the changes in the menu, I've been searching this item. It
> > should be placed in the Data menu. It is more logical.
> 
> Hey kompilainenn,
> 
> The Data menu is for working with data already present in your sheet (sort,
> autofilter, pivot table, etc), so thats why i dont think that would be the
> correct place for it. It used to be Edit > Fill, but was moved from there as
> the Edit menu is for edit functions (undo, cut, track changes, edit object,
> edit mode). Also we needed to bring all cell related functions under one
> roof - insert cell, delete cell, filling cell with data, managing cell
> comment, clearing cell data, and changing cell references.

I disagree. In the menu Sheet - adding or removing cells - yes, the operation
of the sheet - yes, add or delete rows and columns - yes. Filling cells DATA -
no, delete data from the cell - no.
Data operations (adding, modifying or deleting) must be in the Data menu.
Thank you for attention.

-- 
You are receiving this mail because:
You 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 96175] FILESAVE: Imported custom properties missing from exported RTF

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96175

Miklos Vajna  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |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


adding unittest for Calc FORECAST.ETS functions

2016-01-29 Thread Winfried Donkers
Hi,

I have bit of a problem with writing unit tests for the new FORECAST.ETS 
functions (https://bugs.documentfoundation.org/show_bug.cgi?id=94635).
As the functions return forecasts and predicted confidence intervals, the 
returned values are not mathematically exact.
Excel2016 returns slightly different values than Calc does, because of 
differences in the way coefficients are calculated, internal thresholds for 
error levels and/or accuracy, etc.

So it seems that all I can do is to check handling of (in)correct argument 
values by checking if the functions return an error or not.
I could add something like result should be x plus or minus y%, but that 
doesn't attract me.
I cannot use an xlsx document to test import as well because Excel only 
supports about half of the new functions (and the results differ anyway).

Any suggestions on how to proceed here?

Winfried

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


[Libreoffice-commits] core.git: 6 commits - include/oox include/osl include/sfx2 include/tools include/vcl oox/source sc/source unoxml/source

2016-01-29 Thread Michael Stahl
 include/oox/helper/refmap.hxx |   11 ++-
 include/oox/helper/refvector.hxx  |   13 +++--
 include/osl/diagnose.hxx  |4 ++--
 include/sfx2/sidebar/Theme.hxx|1 -
 include/tools/diagnose_ex.h   |3 ---
 include/vcl/threadex.hxx  |   10 +-
 oox/source/ole/vbacontrol.cxx |6 +++---
 oox/source/ole/vbaproject.cxx |   10 +-
 sc/source/filter/oox/pivottablebuffer.cxx |4 ++--
 unoxml/source/rdf/librdf_repository.cxx   |8 
 10 files changed, 34 insertions(+), 36 deletions(-)

New commits:
commit fb76228fe7a6984a240e137d4de083199f96aaf4
Author: Michael Stahl 
Date:   Fri Jan 29 13:35:08 2016 +0100

unoxml: replace boost::bind with lambda

Change-Id: Id8d73fa9a93cd793dbce0d3f84ddde86860f7308

diff --git a/unoxml/source/rdf/librdf_repository.cxx 
b/unoxml/source/rdf/librdf_repository.cxx
index 2c62713..353f91a 100644
--- a/unoxml/source/rdf/librdf_repository.cxx
+++ b/unoxml/source/rdf/librdf_repository.cxx
@@ -30,7 +30,6 @@
 
 #include 
 #include 
-#include 
 #include 
 
 #include 
@@ -1253,8 +1252,8 @@ throw (uno::RuntimeException, rdf::RepositoryException, 
std::exception)
 ::std::vector< uno::Reference > ret;
 std::transform(m_NamedGraphs.begin(), m_NamedGraphs.end(),
 std::back_inserter(ret),
-boost::bind(::XNamedGraph::getName,
-boost::bind(_t::value_type::second, _1)));
+[](std::pair const& it)
+{ return it.second->getName(); });
 return comphelper::containerToSequence(ret);
 }
 
@@ -1585,7 +1584,8 @@ throw (uno::RuntimeException, 
lang::IllegalArgumentException,
 predicates;
 ::std::transform(i_rPredicates.begin(), i_rPredicates.end(),
 ::std::back_inserter(predicates),
-::boost::bind(_TypeConverter::extractResource_NoLock, _1));
+[](uno::Reference const& xURI)
+{ return librdf_TypeConverter::extractResource_NoLock(xURI); });
 
 removeStatementRDFa(i_xObject); // not atomic with insertion?
 
commit d54a7555ab38435d07bdb12e3d4b017d0753fa1f
Author: Michael Stahl 
Date:   Fri Jan 29 13:23:14 2016 +0100

sfx2: remove unused boost include

Change-Id: I75d9e953bc99f0af70e09ee07568a7a31b904573

diff --git a/include/sfx2/sidebar/Theme.hxx b/include/sfx2/sidebar/Theme.hxx
index a4c823c..38d9d14 100644
--- a/include/sfx2/sidebar/Theme.hxx
+++ b/include/sfx2/sidebar/Theme.hxx
@@ -33,7 +33,6 @@
 
 #include 
 #include 
-#include 
 
 class SvBorder;
 
commit 4548110146b7d392a9d24379025e4550c7d1a947
Author: Michael Stahl 
Date:   Fri Jan 29 13:17:18 2016 +0100

vcl: update documentation to std::bind

Change-Id: Ibabcc78a6b30740a8a0f675591dc37dfd5887be9

diff --git a/include/vcl/threadex.hxx b/include/vcl/threadex.hxx
index 2bb011b..47c1c44 100644
--- a/include/vcl/threadex.hxx
+++ b/include/vcl/threadex.hxx
@@ -159,7 +159,7 @@ private:
 (e.g. for out parameters) to foreign threads, use inout_by_ref()
 for this purpose.  For in parameters, this may not affect you, because
 the functor object is copy constructed into free store.  This way
-you must not use \verbatim boost::cref()/boost::ref() \endverbatim or 
similar
+you must not use \verbatim std::cref()/std::ref() \endverbatim or similar
 for objects on your thread's stack.
 Use inout_by_ref() or inout_by_ptr() for this purpose, e.g.
 
@@ -168,15 +168,15 @@ private:
 
 long n = 3;
 // calling foo( long & r ):
-syncExecute( boost::bind( , inout_by_ref(n) ) );
+syncExecute( std::bind( , inout_by_ref(n) ) );
 // calling foo( long * p ):
-syncExecute( boost::bind( , inout_by_ptr() ) );
+syncExecute( std::bind( , inout_by_ptr() ) );
 
 char const* pc = "default";
 // calling foo( char const** ppc ):
-syncExecute( boost::bind( , inout_by_ptr() ) );
+syncExecute( std::bind( , inout_by_ptr() ) );
 // calling foo( char const*& rpc ):
-syncExecute( boost::bind( , inout_by_ref(pc) ) );
+syncExecute( std::bind( , inout_by_ref(pc) ) );
 \endcode
 
 @tpl ResultT result type, defaults to FuncT::result_type to seamlessly
commit 0e57d54e1f8fe81d870ae18d6401f5ce104deb17
Author: Michael Stahl 
Date:   Fri Jan 29 12:59:35 2016 +0100

oox: replace boost::bind with std::bind

Change-Id: Ic402cfd6900cdf1741264b409f6fbe8f2db7e17a

diff --git a/include/oox/helper/refmap.hxx b/include/oox/helper/refmap.hxx
index 1a40634..ef20d37 100644
--- a/include/oox/helper/refmap.hxx
+++ b/include/oox/helper/refmap.hxx
@@ -21,10 +21,11 @@
 #define INCLUDED_OOX_HELPER_REFMAP_HXX
 
 #include 
+
+#include 
 #include 
 #include 
 #include 
-#include 
 
 namespace oox {
 
@@ -77,7 +78,7 @@ public:
 template< typename FuncType >
 void 

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

2016-01-29 Thread kadertarlan
 sw/qa/python/check_indexed_property_values.py |   14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

New commits:
commit 679bcbe06dc063414151ce05d4bf3e3b44f2de8d
Author: kadertarlan 
Date:   Thu Jan 28 20:51:10 2016 +0200

tdf#97362: Fixed Python unit test (check_indexed_property_values.py)

Change-Id: Ib8cfaccaaf5bf75169c96e46d95ff118cc850f79
v2: Deleted whitespaces
Reviewed-on: https://gerrit.libreoffice.org/21886
Tested-by: Jenkins 
Reviewed-by: jan iversen 

diff --git a/sw/qa/python/check_indexed_property_values.py 
b/sw/qa/python/check_indexed_property_values.py
index 0e18b94..b146359 100644
--- a/sw/qa/python/check_indexed_property_values.py
+++ b/sw/qa/python/check_indexed_property_values.py
@@ -23,6 +23,8 @@ from org.libreoffice.unotest import UnoInProcess
 from com.sun.star.beans import PropertyValue
 from com.sun.star.container import XIndexContainer
 from org.libreoffice.unotest import OfficeConnection
+from com.sun.star.lang import IllegalArgumentException
+from com.sun.star.lang import IndexOutOfBoundsException
 
 class CheckIndexedPropertyValues(unittest.TestCase):
 
@@ -53,7 +55,7 @@ class CheckIndexedPropertyValues(unittest.TestCase):
 prop3 = uno.Any("[]com.sun.star.beans.PropertyValue", (p3,))
 
 t = xCont.getElementType()
-self.assertEqual(0, xCont.getCount()) #Initial container is not empty
+self.assertEqual(0, xCont.getCount(), "Initial container is not empty")
 uno.invoke(xCont, "insertByIndex", (0, prop1))
 
 ret = xCont.getByIndex(0)
@@ -66,10 +68,10 @@ class CheckIndexedPropertyValues(unittest.TestCase):
 self.assertEqual(p2.Value, ret[0].Value)
 
 xCont.removeByIndex(0)
-self.assertTrue(not(xCont.hasElements()) and xCont.getCount()==0) 
#Could not remove PropertyValue
+self.assertTrue(not(xCont.hasElements()) and xCont.getCount()==0, 
"Could not remove PropertyValue")
 uno.invoke(xCont, "insertByIndex", (0, prop1))
 uno.invoke(xCont, "insertByIndex", (1, prop2))
-self.assertTrue(xCont.hasElements() and xCont.getCount()==2) #Did not 
insert PropertyValue
+self.assertTrue(xCont.hasElements() and xCont.getCount()==2, "Did not 
insert PropertyValue")
 
 uno.invoke(xCont, "insertByIndex", (1, prop2))
 uno.invoke(xCont, "insertByIndex", (1, prop3))
@@ -77,11 +79,11 @@ class CheckIndexedPropertyValues(unittest.TestCase):
 self.assertEqual(p3.Name, ret[0].Name)
 self.assertEqual(p3.Value, ret[0].Value)
 
-with self.assertRaises(Exception):
+with self.assertRaises(IndexOutOfBoundsException):
 uno.invoke(xCont, "insertByIndex", (25, prop2))
 
-with self.assertRaises(Exception):
+with self.assertRaises(IndexOutOfBoundsException):
 xCont.removeByIndex(25)
 
-with self.assertRaises(Exception):
+with self.assertRaises(IllegalArgumentException):
 uno.invoke(xCont, "insertByIndex", (3, "Example String"))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97415] Formular / Table Control Field / not editing column

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97415

Beluga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
Version|5.2.0.0.alpha0+ Master  |5.0.4.2 release
 Resolution|--- |DUPLICATE

--- Comment #4 from Beluga  ---
Thanks. So you can try with 5.1.

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

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


[Libreoffice-ux-advise] [Bug 97303] Add Illustration and Table caption fields into Insert -> Field menu

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97303

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords|needAdvice  |needsDevEval
 Status|UNCONFIRMED |NEW
 CC||momonas...@gmail.com
  Component|ux-advise   |Writer
Summary|Add Illustration and Table  |Add Illustration and Table
   |field into Insert -> Field  |caption fields into Insert
   |menu|-> Field menu
 Ever confirmed|0   |1

--- Comment #5 from Yousuf (Jay) Philips  ---
(In reply to Heiko Tietze from comment #3)
> needsDevEval for the UNO question and the table context menu

Caption was removed from the table context menu due to context menu size
restraints.

(In reply to Ljiljan from comment #4)
> Insert -> Caption is really good when it comes to tables (caption is
> inserted above or below table), but what I don't like is how caption is
> added to illustration/ drawings. Inserting caption for drawings/
> illustration will also insert frame. And I (personally) don't like inserting
> frames just to add caption. That is why I always need to go Insert ->Field
> -> Other -> Variables -> Illustration. But I think it is matter of habit/ my
> personal preference, so no need to talk about this anymore. 

In order to accurately place a caption for a floating image, a frame is needed
to be placed around it to make sure the caption aligns with the image. Maybe
the alternative solution is to have an option in the caption dialog to
enable/disable to creation of the frame.

@Maxim: Would it be easy to create a single UNO command to be able to open the
insert field dialog at a particular field or insert any field, similar to how
we have for changing styles and changing slide layout? So something like this
to open the insert field dialog at a particular field type

.uno:InsertField?type=Number range=Table

and something like this to insert a field directly

.uno:InsertField?type=Number range=Table=Arabic (1 2
3)=Table=Table+1

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


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

2016-01-29 Thread Tor Lillqvist
 starmath/source/view.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 0a1267d2c7096037ca1999f4d4c741e045d38f5c
Author: Tor Lillqvist 
Date:   Fri Jan 29 10:27:10 2016 +0200

WaE: calling static member function through member call syntax

Change-Id: I71c1ae0c5f34e17ab11cd6726d6845255224044d

diff --git a/starmath/source/view.cxx b/starmath/source/view.cxx
index 8708c03..416d415 100644
--- a/starmath/source/view.cxx
+++ b/starmath/source/view.cxx
@@ -569,8 +569,7 @@ void SmGraphicWindow::Command(const CommandEvent& rCEvt)
 SAL_WARN_IF( !pViewShell, "starmath", "view shell missing" );
 
 // added for replaceability of context menus
-pViewShell->GetViewFrame()->GetBindings().GetDispatcher()
-->ExecutePopup( this,  );
+SfxDispatcher::ExecutePopup( this,  );
 
 bCallBase = false;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 97345] Mail Merge Crashes

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97345

Beluga  changed:

   What|Removed |Added

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

--- Comment #6 from Beluga  ---
Ok, let's kill this as WFM :)
If the problem comes back, you can set back to unconfirmed.

-- 
You are receiving this mail because:
You 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 96482] cannot access columns of a tablecontrol in design mode

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96482

Beluga  changed:

   What|Removed |Added

 CC||h...@swiateck.com

--- Comment #21 from Beluga  ---
*** Bug 97415 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 97425] New: JVM start parameters should be editable

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97425

Bug ID: 97425
   Summary: JVM start parameters should be editable
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: samuel.mehrbr...@cib.de

Created attachment 122267
  --> https://bugs.documentfoundation.org/attachment.cgi?id=122267=edit
Java start parameters dialog

In the settings, you can add and remove start parameters for the JVM (see
attached screenshot).

What is missing is the possibility to edit existing start parameters.

This can be done by adding the edit button to
cui/uiconfig/ui/javastartparametersdialog.ui and adding the logic to
SvxJavaParameterDlg in cui/source/options/optjava.cxx.

Should be a quite easy Easy Hack :)

-- 
You are receiving this mail because:
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 97425] JVM start parameters should be editable

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97425

Samuel Mehrbrodt  changed:

   What|Removed |Added

   Keywords||difficultyBeginner,
   ||easyHack, skillCpp, topicUI
 Status|UNCONFIRMED |NEW
 CC||libreoffice@lists.freedeskt
   ||op.org,
   ||samuel.mehrbr...@cib.de
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 97425] JVM start parameters should be editable

2016-01-29 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97425

Samuel Mehrbrodt  changed:

   What|Removed |Added

   Keywords||difficultyBeginner,
   ||easyHack, skillCpp, topicUI
 Status|UNCONFIRMED |NEW
 CC||libreoffice@lists.freedeskt
   ||op.org,
   ||samuel.mehrbr...@cib.de
 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


  1   2   3   >