[Libreoffice-bugs] [Bug 122382] Focus randomly jumps to menu bar while typing

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122382

--- Comment #2 from photograp...@msn.com ---
Thank you for the suggestions. I do have the latest driver for my graphic card,
so that's not the issue. I have now removed my user profile and disabled OpenGL
in LibreOffice and will see if that helps.

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


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

2018-12-30 Thread Libreoffice Gerrit user
 include/sfx2/notebookbar/NotebookbarTabControl.hxx |4 
 include/vcl/tabctrl.hxx|1 
 sfx2/source/notebookbar/NotebookbarTabControl.cxx  |   92 +
 3 files changed, 97 insertions(+)

New commits:
commit cb834ae5c8d5dbecdbc3729bc21889d97d8b582f
Author: Jim Raykowski 
AuthorDate: Thu Nov 22 23:31:37 2018 -0900
Commit: Jim Raykowski 
CommitDate: Mon Dec 31 08:03:41 2018 +0100

Provide keyboard navigation to Shortcuts tool box and Hamburger menu in

NotebookbarTabControl

Use Ctrl+Right/Left arrow to move focus among current notebookbar tab
control tab title, hamburger menu, and shortcuts tool box.

Change-Id: Ia7b22ff03fce7148eb411cfe9eaabc247b737cb5
Reviewed-on: https://gerrit.libreoffice.org/63875
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/include/sfx2/notebookbar/NotebookbarTabControl.hxx 
b/include/sfx2/notebookbar/NotebookbarTabControl.hxx
index 2ff4d3c48974..f3411d769b71 100644
--- a/include/sfx2/notebookbar/NotebookbarTabControl.hxx
+++ b/include/sfx2/notebookbar/NotebookbarTabControl.hxx
@@ -27,6 +27,8 @@ public:
 NotebookbarTabControl( Window* pParent );
 ~NotebookbarTabControl() override;
 
+virtual void KeyInput( const KeyEvent& rKEvt ) override;
+virtual bool EventNotify( NotifyEvent& rNEvt ) override;
 virtual void StateChanged(StateChangedType nStateChange) override;
 virtual Size calculateRequisition() const override;
 
@@ -36,6 +38,8 @@ private:
   const OUString& aModuleName,
   ToolBox* pShortcuts
  );
+void ArrowStops( sal_uInt16 nCode );
+
 DECL_LINK(OpenNotebookbarPopupMenu, NotebookBar*, void);
 
 css::uno::Reference m_pListener;
diff --git a/include/vcl/tabctrl.hxx b/include/vcl/tabctrl.hxx
index 332f92abb4e9..cf64e66efc64 100644
--- a/include/vcl/tabctrl.hxx
+++ b/include/vcl/tabctrl.hxx
@@ -201,6 +201,7 @@ public:
 void SetIconClickHdl( Link aHdl );
 void SetToolBox( ToolBox* pToolBox );
 ToolBox* GetToolBox() { return m_pShortcuts; }
+PushButton* GetOpenMenu() { return m_pOpenMenu; }
 
 virtual sal_uInt16  GetPageId( const Point& rPos ) const override;
 virtual voidSelectTabPage( sal_uInt16 nPageId ) override;
diff --git a/sfx2/source/notebookbar/NotebookbarTabControl.cxx 
b/sfx2/source/notebookbar/NotebookbarTabControl.cxx
index 994dbf7d3a3f..2e5f18af3150 100644
--- a/sfx2/source/notebookbar/NotebookbarTabControl.cxx
+++ b/sfx2/source/notebookbar/NotebookbarTabControl.cxx
@@ -126,6 +126,20 @@ public:
 mbUseDefaultButtonSize = false;
 SetToolboxButtonSize(ToolBoxButtonSize::Small);
 }
+
+virtual void KeyInput( const KeyEvent& rKEvt ) override
+{
+if ( rKEvt.GetKeyCode().IsMod1() )
+{
+sal_uInt16 nCode( rKEvt.GetKeyCode().GetCode() );
+if ( nCode == KEY_RIGHT || nCode == KEY_LEFT )
+{
+GetParent()->KeyInput( rKEvt );
+return;
+}
+}
+return sfx2::sidebar::SidebarToolBox::KeyInput( rKEvt );
+}
 };
 
 NotebookbarTabControl::NotebookbarTabControl( Window* pParent )
@@ -139,6 +153,84 @@ NotebookbarTabControl::~NotebookbarTabControl()
 {
 }
 
+void NotebookbarTabControl::ArrowStops( sal_uInt16 nCode )
+{
+ToolBox* pToolBox( GetToolBox() );
+PushButton* pOpenMenu( GetOpenMenu() );
+
+if ( nCode == KEY_LEFT )
+{
+if ( HasFocus() )
+{
+if ( pToolBox )
+pToolBox->GrabFocus();
+else if ( pOpenMenu )
+pOpenMenu->GrabFocus();
+}
+else if ( pToolBox && pToolBox->HasFocus() )
+{
+if ( pOpenMenu )
+pOpenMenu->GrabFocus();
+else
+GrabFocus();
+}
+else if ( pOpenMenu && pOpenMenu->HasFocus() )
+{
+GrabFocus();
+}
+}
+else if ( nCode == KEY_RIGHT )
+{
+if ( HasFocus() )
+{
+if ( pOpenMenu )
+pOpenMenu->GrabFocus();
+else if ( pToolBox )
+pToolBox->GrabFocus();
+}
+else if ( pToolBox && pToolBox->HasFocus() )
+{
+GrabFocus();
+}
+else if ( pOpenMenu && pOpenMenu->HasFocus() )
+{
+if ( pToolBox )
+pToolBox->GrabFocus();
+else
+GrabFocus();
+}
+}
+}
+
+void NotebookbarTabControl::KeyInput( const KeyEvent& rKEvt )
+{
+if ( rKEvt.GetKeyCode().IsMod1() )
+{
+sal_uInt16 nCode( rKEvt.GetKeyCode().GetCode() );
+if ( nCode == KEY_RIGHT || nCode == KEY_LEFT )
+{
+ArrowStops( nCode );
+return;
+}
+}
+return NotebookbarTabControlBase::KeyInput( rKEvt );
+}
+
+bool 

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

2018-12-30 Thread Libreoffice Gerrit user
 connectivity/source/cpool/ZPooledConnection.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 639013342e216776d1c6a8a6ff3ce29d1355b8ea
Author: Andrea Gelmini 
AuthorDate: Mon Dec 17 21:29:57 2018 +0100
Commit: Julien Nabet 
CommitDate: Mon Dec 31 08:00:44 2018 +0100

Fix typo

Change-Id: I300c411e02e162d11e10ed1bce8152725f5ad52d
Reviewed-on: https://gerrit.libreoffice.org/65762
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/connectivity/source/cpool/ZPooledConnection.hxx 
b/connectivity/source/cpool/ZPooledConnection.hxx
index 839cffe7c2ee..5f529f0c3c33 100644
--- a/connectivity/source/cpool/ZPooledConnection.hxx
+++ b/connectivity/source/cpool/ZPooledConnection.hxx
@@ -38,7 +38,7 @@ namespace connectivity
 class OPooledConnection : public ::cppu::BaseMutex
  ,public OPooledConnection_Base
 {
-css::uno::Reference< css::sdbc::XConnection > 
m_xRealConnection;  // the connection fom driver
+css::uno::Reference< css::sdbc::XConnection > 
m_xRealConnection;  // the connection from driver
 css::uno::Reference< css::lang::XComponent >  
m_xComponent;   // the connection which wraps the real connection
 css::uno::Reference< css::reflection::XProxyFactory > 
m_xProxyFactory;
 public:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122391] New: Custom Shortcut not working properly on OSX

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122391

Bug ID: 122391
   Summary: Custom Shortcut not working properly on OSX
   Product: LibreOffice
   Version: 6.1.3.2 release
  Hardware: x86 (IA32)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: adriancue...@gmail.com

Description:
After changing shortcuts for Zoom in/out to custom key combination (CMD + and
CMD -) 
and restart, new combination don't work. 

I'm using a dvorak-ES keyboard layout, but the problem persists using
Spanish-ISO.

Steps to Reproduce:
1.Remove shortcuts CMD + and CMD +
2.Assign View Increase / Reduce to CMD + and CMD - in Writer and LibreOffice
3.Restart

Actual Results:
Shortcut do nothing

Expected Results:
Increase / reduce view


Reproducible: Always


User Profile Reset: No



Additional Info:
Tested on  computers
---
Versión: 6.1.3.2
Id. de compilación: 86daf60bf00efa86ad547e59e09d6bb77c699acb
Subprocs. CPU: 4; SO: Mac OS X 10.13.4; Repres. IU: predet.; 
Configuración regional: es-ES (es_ES.UTF-8); Calc: group threaded

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


[Libreoffice-bugs] [Bug 99530] DOCX without effects

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99530

--- Comment #8 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 47179] performance depends on /etc/hosts (svt::DocumentLockFile::CreateOwnLockFile calls gethostbyname_r)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47179

--- Comment #16 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 63368] FORMATTING: Images attached to cell get mispositioned when spreadsheet is edited

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63368

--- Comment #12 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - bin/lo-xlate-lang

2018-12-30 Thread Libreoffice Gerrit user
 bin/lo-xlate-lang |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 43007a5da70dafcec78b1fc9bf8cfef9821e82b3
Author: Rene Engelhard 
AuthorDate: Sun Dec 30 13:57:06 2018 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Dec 31 03:43:20 2018 +0100

deb#917795 Belarussian → Belarusian

Change-Id: I2b0be9bf13cb3feedecbe22c5c844d9328013b3a
Reviewed-on: https://gerrit.libreoffice.org/65744
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/bin/lo-xlate-lang b/bin/lo-xlate-lang
index 1580d642027a..fcfd90cbb6e6 100755
--- a/bin/lo-xlate-lang
+++ b/bin/lo-xlate-lang
@@ -111,7 +111,7 @@ print $LanguageMap->{$LanguageCode}, "\n";
 # keep third column names here with openoffice-dir/share/*//
 
 __DATA__
-:be:belarussian
+:be:belarusian
 :bg:bulgarian
 :bn:bengali
 :bs:bosnian
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-12-30 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 082144fa0fb2021cfb41494bb6eb5bf417e58ab1
Author: Andrea Gelmini 
AuthorDate: Mon Dec 31 00:07:08 2018 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Dec 31 03:42:46 2018 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - Fix typo

Change-Id: I7d7955d60820c38cd2048c5fd6d37d51a3c53438
Reviewed-on: https://gerrit.libreoffice.org/65761
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 3ddd2196c078..a09fb6175aa6 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 3ddd2196c0788b6748b0ac0afdc3512b07eb290b
+Subproject commit a09fb6175aa6070520d3d446129912b99588540e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - bin/lo-xlate-lang

2018-12-30 Thread Libreoffice Gerrit user
 bin/lo-xlate-lang |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c6e82304a5c75a96b08e494c825f005b91ed3104
Author: Rene Engelhard 
AuthorDate: Sun Dec 30 13:57:06 2018 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Dec 31 03:43:32 2018 +0100

deb#917795 Belarussian → Belarusian

Change-Id: I2b0be9bf13cb3feedecbe22c5c844d9328013b3a
Reviewed-on: https://gerrit.libreoffice.org/65745
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/bin/lo-xlate-lang b/bin/lo-xlate-lang
index 1580d642027a..fcfd90cbb6e6 100755
--- a/bin/lo-xlate-lang
+++ b/bin/lo-xlate-lang
@@ -111,7 +111,7 @@ print $LanguageMap->{$LanguageCode}, "\n";
 # keep third column names here with openoffice-dir/share/*//
 
 __DATA__
-:be:belarussian
+:be:belarusian
 :bg:bulgarian
 :bn:bengali
 :bs:bosnian
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2018-12-30 Thread Libreoffice Gerrit user
 source/text/sbasic/shared/03080502.xhp |2 +-
 source/text/sbasic/shared/03080503.xhp |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a09fb6175aa6070520d3d446129912b99588540e
Author: Andrea Gelmini 
AuthorDate: Mon Dec 31 00:07:08 2018 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Dec 31 03:42:46 2018 +0100

Fix typo

Change-Id: I7d7955d60820c38cd2048c5fd6d37d51a3c53438
Reviewed-on: https://gerrit.libreoffice.org/65761
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/sbasic/shared/03080502.xhp 
b/source/text/sbasic/shared/03080502.xhp
index 147c862a9..61ad8390c 100644
--- a/source/text/sbasic/shared/03080502.xhp
+++ b/source/text/sbasic/shared/03080502.xhp
@@ -58,7 +58,7 @@
 End Sub
 
 
-Fix 
Function
+Fix 
Function
 Frac 
Function
 
 
diff --git a/source/text/sbasic/shared/03080503.xhp 
b/source/text/sbasic/shared/03080503.xhp
index 282a81a0a..64e7fc9a0 100644
--- a/source/text/sbasic/shared/03080503.xhp
+++ b/source/text/sbasic/shared/03080503.xhp
@@ -40,7 +40,7 @@
 End 
Sub
 
 
-Fix 
Function
+Fix 
Function
 Int 
Function
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 102256] ODF filter: as child of is written in case of strict ODF1.2, but invalid

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102256

--- Comment #5 from Regina Henschel  ---
(In reply to Julien Nabet from comment #4)
> Reading this one, I wonder if we shouldn't add a dialog indicating that
> since we use ODF 1.2 strict, some parts of the documents won't be exported
> so a backup should be made.

The export to ODF 1.2 strict is only available via Tools > Options. So I
assume, that users who switch to strict are advanced users. I think, that an
additional dialog is not necessary. There is already the text "! Not using ODF
1.2 Extended may cause information to be lost." This could be extended by a
hint to make a backup in 'extended' format. And perhaps a link to detailed
information about 'strict' and 'extended'.

There exists the page
https://wiki.documentfoundation.org/Development/ODF_Implementer_Notes/List_of_LibreOffice_ODF_Extensions.
But that page is currently in such a bad state, that it is not helpful for
users and not even helpful for developers. And the help
[https://help.libreoffice.org/Common/General_7] has only one example about a
feature, which does not exist in 'strict'. Improvement in that area would be a
different issue.


> Finally, block lines 1099 to 1139 from sw/source/filter/xml/xmltble.cxx
> should be executed only if we use odf version > 1.2
> Any thoughts?

Why do you think so? The  element exists already in ODF 1.1.

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


[Libreoffice-bugs] [Bug 122390] New: [EDITING] Track Changes author doesn't represent options field in docx files

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122390

Bug ID: 122390
   Summary: [EDITING] Track Changes author doesn't represent
options field in docx files
   Product: LibreOffice
   Version: 6.1.3.1 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: data...@gmail.com

Description:
I see my track changes comments are "unknown author". I google how to fix it
and find
https://ask.libreoffice.org/en/question/82521/when-i-create-a-comment-the-words-unknown-author-appears-in-the-comment-box-how-do-i-change-that-to-my-name-initials-or-nickname/

which seems reasonable. 

Make those changes, but my name doesn't appear in the comment as the author.

Version: 6.1.3.2
Build ID: 1:6.1.3~rc2-0ubuntu0.18.04.2
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-AU (en_AU.UTF-8); Calc: group threaded

Steps to Reproduce:
1.Make change
2.Nothing changes
3.

Actual Results:
per

Expected Results:
My name is listed as the author.


Reproducible: Always


User Profile Reset: No



Additional Info:

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


[Libreoffice-bugs] [Bug 122389] Does not save the settings defined in: FORMATTING> Interval in Print> Define

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122389

--- Comment #1 from Robsom Baptista Pimto  ---
Does not save the settings defined in: FORMATTING> Interval in Print> Define
You can not preview the text for printing. This text was previously saved in
the worksheet. When you click Preview, the print interval is empty.
I can view it only by clicking on the clear option in FORMATTING> Interval in
Print> Clear
This Cleanup option is always enabled regardless of whether or not a print
range has been included
Even by clicking Clear to be able to view and print the text. After saving the
file, the problem returns.
Occurs Only if the file is in odf format.

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


[Libreoffice-bugs] [Bug 122389] New: Does not save the settings defined in: FORMATTING> Interval in Print> Define

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122389

Bug ID: 122389
   Summary: Does not save the settings defined in: FORMATTING>
Interval in Print> Define
   Product: LibreOffice
   Version: 6.2.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: robsonestana...@gmail.com

Created attachment 147904
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147904=edit
Displays the Clear Active option in FORMATTING> Interval in Print> Clear Even
if print interval has not been set

Does not save the settings defined in: FORMATTING> Interval in Print> Define
You can not preview the text for printing. This text was previously saved in
the worksheet. When you click Preview, the print interval is empty.
I can view it only by clicking on the clear option in FORMATTING> Interval in
Print> Clear
This Cleanup option is always enabled regardless of whether or not a print
range has been included
Even by clicking Clear to be able to view and print the text. After saving the
file, the problem returns.
Occurs Only if the file is in odf format.

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


[Libreoffice-bugs] [Bug 122388] New: [EDITING] URL links are not saved across save/close/open in Track Changes comments

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122388

Bug ID: 122388
   Summary: [EDITING] URL links are not saved across
save/close/open in Track Changes comments
   Product: LibreOffice
   Version: 6.0.7.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: data...@gmail.com

Description:
Version: 6.0.7.3
Build ID: 1:6.0.7-0ubuntu0.18.04.2
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: en-AU (en_AU.UTF-8); Calc: group

I added a track changes comment to a document which included a link and after
saving, closing and re-opening the document, the changes were lost, the links
and their text were missing 

Steps to Reproduce:
1.Track Changes, make comment.
2.Reply to comment includes a link via link icon 
3.save, close, reopen. 

Actual Results:
No link or text

Expected Results:
text remains with link. 


Reproducible: Always


User Profile Reset: No



Additional Info:

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


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

2018-12-30 Thread Libreoffice Gerrit user
 sw/qa/extras/ooxmlexport/ooxmlexport11.cxx   |2 +-
 sw/qa/extras/ooxmlexport/ooxmlexport4.cxx|3 ---
 sw/source/filter/ww8/docxattributeoutput.cxx |4 ++--
 3 files changed, 3 insertions(+), 6 deletions(-)

New commits:
commit 63b32bff885169ef77f86b205257fb573da7b70c
Author: Justin Luth 
AuthorDate: Sat Dec 29 11:39:13 2018 +0300
Commit: Justin Luth 
CommitDate: Mon Dec 31 02:11:12 2018 +0100

Revert "tdf#70195 docx export: default header/footer at 720"

This reverts LO6.2 commit 7413216e02be9b2f8eb39d550c297021e92ef299
which thought it was only affecting MSWord, but as this
unit test shows, it also can affect LO.

When we manufacture an empty footnote,
then we want the original default of 0.

Change-Id: Ibba0d48ee24997c51b81b37c2750960e7a0ab5b5
Reviewed-on: https://gerrit.libreoffice.org/65700
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
index 4b0d7bd8d1d7..b36fe833dcc3 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport11.cxx
@@ -217,7 +217,7 @@ DECLARE_OOXMLEXPORT_TEST(testTdf113849_evenAndOddHeaders, 
"tdf113849_evenAndOddH
 CPPUNIT_ASSERT_EQUAL_MESSAGE("Footer5 text", OUString(""), 
parseDump("/root/page[5]/footer/txt"));
 CPPUNIT_ASSERT_EQUAL_MESSAGE("Footer6 text", OUString(""), 
parseDump("/root/page[6]/footer/txt"));
 
-//CPPUNIT_ASSERT_EQUAL_MESSAGE("Number of pages", 6, getPages() );
+CPPUNIT_ASSERT_EQUAL_MESSAGE("Number of pages", 6, getPages() );
 }
 
 DECLARE_OOXMLEXPORT_TEST(testTdf118361_RTLfootnoteSeparator, 
"tdf118361_RTLfootnoteSeparator.docx")
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx
index 592249d2a49f..2c2facc2716a 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport4.cxx
@@ -987,9 +987,6 @@ DECLARE_OOXMLEXPORT_TEST(test76108, "test76108.docx")
 if (!pXmlDoc) return;
 //docx file after RT is getting corrupted.
 assertXPath(pXmlDoc, 
"/w:document[1]/w:body[1]/w:p[1]/w:r[1]/w:fldChar[1]", "fldCharType", "begin");
-
-// tdf#70195 the default header should start at 720, not 0
-assertXPath(pXmlDoc, "//w:pgMar", "header", "720");
 }
 
 DECLARE_OOXMLEXPORT_TEST(testTCTagMisMatch, "TCTagMisMatch.docx")
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index 0a71d47edc58..c655d991c7aa 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -8026,14 +8026,14 @@ void DocxAttributeOutput::FormatULSpace( const 
SvxULSpaceItem& rULSpace )
 
 HdFtDistanceGlue aDistances( *m_rExport.GetCurItemSet() );
 
-sal_Int32 nHeader = 720;
+sal_Int32 nHeader = 0;
 if ( aDistances.HasHeader() )
 nHeader = sal_Int32( aDistances.dyaHdrTop );
 
 // Page top
 m_pageMargins.nTop = aDistances.dyaTop;
 
-sal_Int32 nFooter = 720;
+sal_Int32 nFooter = 0;
 if ( aDistances.HasFooter() )
 nFooter = sal_Int32( aDistances.dyaHdrBottom );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122260] EDITING Autofilters not properly cleared

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122260

Maddes  changed:

   What|Removed |Added

 CC||maddes+docfoundation@maddes
   ||.net

--- Comment #2 from Maddes  ---
Created attachment 147903
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147903=edit
Reproduction of AutoFilter issue

I can confirm this bug in 6.2.0.1-rc.
My assumption is that it has to do with the count of the different unique
values.
Just a guess.

Reproduction with attached file "AutoFilter_Issue_6.2.0.1-rc.ods"
* Filter Col B to #N/A (so that TRUE is filtered out)
* Filter Col A to any value you like
* Filter Col A back to All
* Result: Filter Col B cannot be set back to all values, as TRUE is missing in
the filter list

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


[Libreoffice-bugs] [Bug 122387] New: Cannot change paper size for printing on an Epson L200

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122387

Bug ID: 122387
   Summary: Cannot change paper size for printing on an Epson L200
   Product: LibreOffice
   Version: 3.3.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: randomly_cho...@hotmail.com

Description:
PRINTING: When trying to print a document on LibreOffice Writer using my Epson
L200 printer, I cannot change the size the document will be printed on. I can
go to the printer properties and change the paper size, but upon clicking OK
and returning to the dialogue box for printing, the size will have returned to
the default (A4). If I try to open the printer properties again, the paper size
will have returned to A4 there as well. It appears to occasionally, randomly
accept a different paper size, but I cannot get it to change reliably.

Steps to Reproduce:
1. On LibreOffice Writer, choose File > Print.
2. Choose an Epson L200 and select Properties. 
3. On that dialogue, change the paper size and click OK.

Actual Results:
Changing the paper size on the Properties dialogue does not actually change it;
the print preview refreshes but remains on the default size (A4). If the
Properties dialogue is opened again, the default size is selected again.

Expected Results:
The paper size changes.


Reproducible: Always


User Profile Reset: No



Additional Info:
Versão: 5.3.3.2
ID de compilação: 3d9a8b4b4e538a85e0782bd6c2d430bafe583448
Threads da CPU:4; Versão do SO: Windows 6.1; Realizador da interface: padrão;
Motor de leiaute: novo; 
Local: pt-BR (pt_BR); Calc: CL

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


[Libreoffice-bugs] [Bug 103542] [META] vcl: scheduler tracker bug.

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103542

Aron Budea  changed:

   What|Removed |Added

 Depends on||122386


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122386
[Bug 122386] Dragging Find dialog leaves trail until stopping/pausing
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 122386] New: Dragging Find dialog leaves trail until stopping/pausing

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122386

Bug ID: 122386
   Summary: Dragging Find dialog leaves trail until
stopping/pausing
   Product: LibreOffice
   Version: 6.0.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Keywords: bibisected, bisected, regression
  Severity: normal
  Priority: medium
 Component: framework
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
CC: glo...@fbihome.de
Blocks: 103542, 113136

When dragging Find dialog around, there's no UI refresh of the main
window while there is ongoing movement (pausing for a bit does cause UI to
refresh).

Observed using LO 6.2.0.1 & 6.0.0.3 / Windows 7.
No issue in LO 5.4.0.3.
=> regression

Bibisected to the following commit using repo bibisect-win32-6.0. Adding Cc: to
Jan-Marek Glogowski, please take a look sometimes.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=fb4e7be5d4eac6d7c429c215e72de45ea28d86cd
author  Jan-Marek Glogowski  2017-10-12 16:00:42
+0200
committer   Jan-Marek Glogowski  2017-10-13 16:48:32
+0200

WIN another system loop integration attempt


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103542
[Bug 103542] [META] vcl: scheduler tracker bug.
https://bugs.documentfoundation.org/show_bug.cgi?id=113136
[Bug 113136] [META] Find & Replace Dialog
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 113136] [META] Find & Replace Dialog

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113136

Aron Budea  changed:

   What|Removed |Added

 Depends on||122386


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122386
[Bug 122386] Dragging Find dialog leaves trail until stopping/pausing
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - vcl/qt5

2018-12-30 Thread Libreoffice Gerrit user
 vcl/qt5/Qt5Frame.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 66d3a5b78b7a7665a75047c87ac180eeb03b476f
Author: Sumit Chauhan 
AuthorDate: Tue Dec 4 18:47:10 2018 +0530
Commit: Michael Weghorn 
CommitDate: Mon Dec 31 00:56:17 2018 +0100

tdf#98253 Qt5 rely on VCL for SetDeactiveColor

Keep the DeactiveColor from generic vcl style without overriding it
with the Qt5 style.

Change-Id: I10ffdc79e1b6878d27ae13c6394ad50d7470f073
Reviewed-on: https://gerrit.libreoffice.org/64522
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski 
(cherry picked from commit 3911bf8364dae4c855ad37237c114f9007f70657)
Reviewed-on: https://gerrit.libreoffice.org/65560
Reviewed-by: Michael Weghorn 

diff --git a/vcl/qt5/Qt5Frame.cxx b/vcl/qt5/Qt5Frame.cxx
index 230c98395a70..ea43b16abd0f 100644
--- a/vcl/qt5/Qt5Frame.cxx
+++ b/vcl/qt5/Qt5Frame.cxx
@@ -850,7 +850,7 @@ void Qt5Frame::UpdateSettings(AllSettings& rSettings)
 style.SetToolbarIconSize(ToolbarIconSize::Large);
 
 style.SetActiveColor(toColor(pal.color(QPalette::Active, 
QPalette::Window)));
-style.SetDeactiveColor(toColor(pal.color(QPalette::Inactive, 
QPalette::Window)));
+// rely on VCL for style.SetDeactiveColor
 
 style.SetActiveTextColor(toColor(pal.color(QPalette::Active, 
QPalette::WindowText)));
 style.SetDeactiveTextColor(toColor(pal.color(QPalette::Inactive, 
QPalette::WindowText)));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 98253] SIDEBAR: Style preview not visible if text is set to automatic color

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98253

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.3.0|target:6.3.0 target:6.2.0.2

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


[Libreoffice-bugs] [Bug 98253] SIDEBAR: Style preview not visible if text is set to automatic color

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98253

--- Comment #19 from Commit Notification 
 ---
Sumit Chauhan committed a patch related to this issue.
It has been pushed to "libreoffice-6-2":

https://git.libreoffice.org/core/+/66d3a5b78b7a7665a75047c87ac180eeb03b476f%5E%21

tdf#98253 Qt5 rely on VCL for SetDeactiveColor

It will be available in 6.2.0.2.

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

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

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


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

2018-12-30 Thread Libreoffice Gerrit user
 sw/qa/extras/mailmerge/data/tdf78611.odt |binary
 sw/qa/extras/mailmerge/mailmerge.cxx |   22 ++
 2 files changed, 22 insertions(+)

New commits:
commit 41b577218a7378da344a55eea275fa347671cc00
Author: Serge Krot 
AuthorDate: Sat Dec 29 15:29:25 2018 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Dec 31 00:38:24 2018 +0100

tdf#81782 new unit test: title/subject check in sub docs

Change-Id: I9ff154191fd54d3f0549ab16f24ee60015a5
Reviewed-on: https://gerrit.libreoffice.org/65718
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/sw/qa/extras/mailmerge/data/tdf78611.odt 
b/sw/qa/extras/mailmerge/data/tdf78611.odt
index 577597654740..3eb29ba40775 100644
Binary files a/sw/qa/extras/mailmerge/data/tdf78611.odt and 
b/sw/qa/extras/mailmerge/data/tdf78611.odt differ
diff --git a/sw/qa/extras/mailmerge/mailmerge.cxx 
b/sw/qa/extras/mailmerge/mailmerge.cxx
index 1e1d94efb572..c614cc77a917 100644
--- a/sw/qa/extras/mailmerge/mailmerge.cxx
+++ b/sw/qa/extras/mailmerge/mailmerge.cxx
@@ -1088,5 +1088,27 @@ DECLARE_SHELL_MAILMERGE_TEST(testTdf121168, 
"section_ps.odt", "4_v01.ods", "Tabe
 }
 }
 
+DECLARE_FILE_MAILMERGE_TEST(testTdf81782_file, "tdf78611.odt", 
"10-testing-addresses.ods", "testing-addresses")
+{
+executeMailMerge(true);
+for (int doc = 0; doc < 10; ++doc)
+{
+loadMailMergeDocument( doc );
+
+// get document properties
+uno::Reference 
xDocumentPropertiesSupplier(mxComponent, uno::UNO_QUERY);
+uno::Reference 
xDocumentProperties(xDocumentPropertiesSupplier->getDocumentProperties());
+
+// check if properties were set
+uno::Sequence aKeywords(xDocumentProperties->getKeywords());
+CPPUNIT_ASSERT_EQUAL(sal_Int32(1), aKeywords.getLength());
+CPPUNIT_ASSERT_EQUAL(OUString("one two"), aKeywords[0]);
+
+// check title and subject
+CPPUNIT_ASSERT_EQUAL(OUString("my title"), 
xDocumentProperties->getTitle());
+CPPUNIT_ASSERT_EQUAL(OUString("my subject"), 
xDocumentProperties->getSubject());
+}
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 81782] MAILMERGE: Some fields (Title, Subject, Author) only printed to the first document

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81782

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

https://git.libreoffice.org/core/+/41b577218a7378da344a55eea275fa347671cc00%5E%21

tdf#81782 new unit test: title/subject check in sub docs

It will be available in 6.3.0.

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

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

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


[Libreoffice-bugs] [Bug 81782] MAILMERGE: Some fields (Title, Subject, Author) only printed to the first document

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81782

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|BSA target:4.4.0|BSA target:4.4.0
   ||target:6.3.0

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


[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-1+backports' - filter/source oox/source sd/qa sd/source

2018-12-30 Thread Libreoffice Gerrit user
 filter/source/config/fragments/types/MS_PowerPoint_2007_XML_Template.xcu | 
   2 
 filter/source/config/fragments/types/impress_OOXML_Presentation_Template.xcu | 
   2 
 oox/source/ppt/pptimport.cxx | 
   1 
 sd/qa/unit/export-tests-ooxml2.cxx   | 
  24 +
 sd/qa/unit/sdmodeltestbase.hxx   | 
   3 +
 sd/source/filter/eppt/epptooxml.hxx  | 
   3 +
 sd/source/filter/eppt/pptx-epptooxml.cxx | 
  26 --
 7 files changed, 56 insertions(+), 5 deletions(-)

New commits:
commit e9adb0201c52777ff2db221e0a249df24a34568d
Author: Vasily Melenchuk 
AuthorDate: Thu Dec 20 10:24:54 2018 +0100
Commit: Thorsten Behrens 
CommitDate: Mon Dec 31 00:35:06 2018 +0100

sd: support for saving into .potx file

MS PowerPoint template format now supported not only for import,
but for export too.

Change-Id: Ib61798b5fe966b895ed850f4b4ad7d7d06740adc
Reviewed-on: https://gerrit.libreoffice.org/65475
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 
Reviewed-on: https://gerrit.libreoffice.org/65703
Tested-by: Thorsten Behrens 

diff --git 
a/filter/source/config/fragments/types/MS_PowerPoint_2007_XML_Template.xcu 
b/filter/source/config/fragments/types/MS_PowerPoint_2007_XML_Template.xcu
index 1589c6fdac5b..fa5d33a2b74f 100644
--- a/filter/source/config/fragments/types/MS_PowerPoint_2007_XML_Template.xcu
+++ b/filter/source/config/fragments/types/MS_PowerPoint_2007_XML_Template.xcu
@@ -18,7 +18,7 @@
 
 com.sun.star.comp.oox.FormatDetector
 
-potm potx
+potx potm
 application/vnd.openxmlformats-officedocument.presentationml.template
 true
 Impress MS PowerPoint 2007 XML 
Template
diff --git 
a/filter/source/config/fragments/types/impress_OOXML_Presentation_Template.xcu 
b/filter/source/config/fragments/types/impress_OOXML_Presentation_Template.xcu
index 02ff99e70449..c34d39541b8c 100644
--- 
a/filter/source/config/fragments/types/impress_OOXML_Presentation_Template.xcu
+++ 
b/filter/source/config/fragments/types/impress_OOXML_Presentation_Template.xcu
@@ -18,7 +18,7 @@
 
 com.sun.star.comp.oox.FormatDetector
 
-potm potx
+potx potm
 application/vnd.openxmlformats-officedocument.presentationml.template
 true
 Impress Office Open XML 
Template
diff --git a/oox/source/ppt/pptimport.cxx b/oox/source/ppt/pptimport.cxx
index 41733e1f2825..452ff324ff0f 100644
--- a/oox/source/ppt/pptimport.cxx
+++ b/oox/source/ppt/pptimport.cxx
@@ -235,6 +235,7 @@ sal_Bool SAL_CALL PowerPointImport::filter( const Sequence< 
PropertyValue >& rDe
 uno::Sequence aArguments(comphelper::InitAnyPropertySequence(
 {
 {"IsPPTM", uno::makeAny(exportVBA())},
+{"IsTemplate", uno::makeAny(isExportTemplate())},
 }));
 
 Reference 
aFactory(getComponentContext()->getServiceManager(), UNO_QUERY_THROW);
diff --git a/sd/qa/unit/export-tests-ooxml2.cxx 
b/sd/qa/unit/export-tests-ooxml2.cxx
index 77ce54891494..21edfb943f5d 100644
--- a/sd/qa/unit/export-tests-ooxml2.cxx
+++ b/sd/qa/unit/export-tests-ooxml2.cxx
@@ -68,6 +68,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -147,6 +148,7 @@ public:
 void testTdf104789();
 void testOpenDocumentAsReadOnly();
 void testTdf116350TextEffects();
+void testPotxExport();
 
 CPPUNIT_TEST_SUITE(SdOOXMLExportTest2);
 
@@ -216,6 +218,7 @@ public:
 CPPUNIT_TEST(testTdf104789);
 CPPUNIT_TEST(testOpenDocumentAsReadOnly);
 CPPUNIT_TEST(testTdf116350TextEffects);
+CPPUNIT_TEST(testPotxExport);
 
 CPPUNIT_TEST_SUITE_END();
 
@@ -1806,6 +1809,27 @@ void SdOOXMLExportTest2::testTdf116350TextEffects()
 xDocShRef->DoClose();
 }
 
+void SdOOXMLExportTest2::testPotxExport()
+{
+// Create new document
+sd::DrawDocShellRef xDocShRef
+= new sd::DrawDocShell(SfxObjectCreateMode::EMBEDDED, false, 
DocumentType::Draw);
+uno::Reference xLoadable(xDocShRef->GetModel(), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT(xLoadable.is());
+xLoadable->initNew();
+
+// Export as a POTM template
+utl::TempFile tempFile;
+xDocShRef = saveAndReload(xDocShRef.get(), POTX, );
+xDocShRef->DoClose();
+
+// Load and check content type
+xmlDocPtr pContentTypes = parseExport(tempFile, "[Content_Types].xml");
+CPPUNIT_ASSERT(pContentTypes);
+assertXPath(pContentTypes, 
"/ContentType:Types/ContentType:Override[@PartName='/ppt/presentation.xml']",
+"ContentType", 
"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml");
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(SdOOXMLExportTest2);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/sd/qa/unit/sdmodeltestbase.hxx b/sd/qa/unit/sdmodeltestbase.hxx
index a51bc3c260a1..0da43ea36ce1 100644
--- 

[Libreoffice-bugs] [Bug 122385] New: EDITING Calc freezes at copy or cut

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122385

Bug ID: 122385
   Summary: EDITING Calc freezes at copy or cut
   Product: LibreOffice
   Version: 6.2.0.1 rc
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stefan_lange...@t-online.de

Created attachment 147902
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147902=edit
zip file with documents to show the bug

In special cases Calc freezes, when cell content should be cut or copied.

Reproducing the problem:
- open "altix_Nummern_Test_Einfrieren_V4d2.ods" or
"altix_Nummern_Test_Einfrieren_V4d2.ods" from attached zip file
- copy (e.g.) row 14 and paste it into (e.g.) row 11 
- select a text in any cell and try to copy or cut it
Result: Calc freezes (doesn't respond)

The freeze occurs also when other rows are copied and pasted (therefor the
"(e.g.)". Ooccasionally Calc doesn't freeze  at copy or cut, but I couldn't
reproduce these cases until now.

As I have seen formulas reffering other cells are causing the freeze. When the
same procedure is done with "altix_Nummern_Test_Einfrieren_V4l_no_freeze.ods"
from attached zip file Calc doesn't freeze.

Tested with Version: 6.2.0.1 (x64)
Build-ID: 0412ee99e862f384c1106d0841a950c4cfaa9df1
CPU-Threads: 4; BS: Windows 10.0; UI-Render: Standard; VCL: win; 
Gebietsschema: de-DE (de_DE); UI-Sprache: de-DE
Calc: threaded
and with 
Version: 6.3.0.0.alpha0+ (x64)
Build ID: 2c5c20b19c349a4b7f6d78d69d8d57f9af5c351c
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-12-23_00:18:09
Locale: de-DE (de_DE); UI-Language: en-US
Calc: threaded
and not reproduced with
Version: 6.1.4.2 (x64)
Build-ID: 9d0f32d1f0b509096fd65e0d4bec26ddd1938fd3
CPU-Threads: 4; BS: Windows 10.0; UI-Render: GL; 
Gebietsschema: de-DE (de_DE); Calc: CL

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


[Libreoffice-commits] core.git: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_svg

2018-12-30 Thread Libreoffice Gerrit user
 icon-themes/breeze/cmd/lc_grafgamma.png  |binary
 icon-themes/breeze_dark/cmd/lc_grafgamma.png |binary
 icon-themes/breeze_svg/cmd/lc_grafgamma.svg  |   14 +-
 3 files changed, 9 insertions(+), 5 deletions(-)

New commits:
commit 092ebcc9bdc1a238f9974ee154808640698ed6e7
Author: andreas kainz 
AuthorDate: Sat Dec 29 20:09:09 2018 +0100
Commit: andreas_kainz 
CommitDate: Mon Dec 31 00:00:12 2018 +0100

breeze icon: update grafgamma icon

Change-Id: Ib86d85ec9c8bbe87bd44e2d5aa6ee421fe63952c
Reviewed-on: https://gerrit.libreoffice.org/65757
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/icon-themes/breeze/cmd/lc_grafgamma.png 
b/icon-themes/breeze/cmd/lc_grafgamma.png
index 474d4ce9dd73..84d8688c34c1 100644
Binary files a/icon-themes/breeze/cmd/lc_grafgamma.png and 
b/icon-themes/breeze/cmd/lc_grafgamma.png differ
diff --git a/icon-themes/breeze_dark/cmd/lc_grafgamma.png 
b/icon-themes/breeze_dark/cmd/lc_grafgamma.png
new file mode 100644
index ..5ae630fe0b08
Binary files /dev/null and b/icon-themes/breeze_dark/cmd/lc_grafgamma.png differ
diff --git a/icon-themes/breeze_svg/cmd/lc_grafgamma.svg 
b/icon-themes/breeze_svg/cmd/lc_grafgamma.svg
index 540787e7ba99..ae530c9eb5a8 100644
--- a/icon-themes/breeze_svg/cmd/lc_grafgamma.svg
+++ b/icon-themes/breeze_svg/cmd/lc_grafgamma.svg
@@ -1,6 +1,10 @@
-http://www.w3.org/2000/svg; viewBox="0 0 24 24">
- http://www.w3.org/2000/svg;>
+  
- 
+  
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-12-30 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8d2a53a3fdcfe12e5b5b40af1a8aad016a6e28d1
Author: Olivier Hallot 
AuthorDate: Sun Dec 30 19:40:24 2018 -0200
Commit: Gerrit Code Review 
CommitDate: Sun Dec 30 23:40:04 2018 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - Add bookmark for BASIC QBColor function

Change-Id: I1f7e7ea399fcc579463a7a4ac610e7205d64fcf8
Reviewed-on: https://gerrit.libreoffice.org/65756
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index afdcd47966eb..3ddd2196c078 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit afdcd47966ebd0a2f379c01aac2ea9b85bb6cb83
+Subproject commit 3ddd2196c0788b6748b0ac0afdc3512b07eb290b
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2018-12-30 Thread Libreoffice Gerrit user
 source/text/sbasic/shared/03010304.xhp |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 3ddd2196c0788b6748b0ac0afdc3512b07eb290b
Author: Olivier Hallot 
AuthorDate: Sun Dec 30 19:40:24 2018 -0200
Commit: Olivier Hallot 
CommitDate: Sun Dec 30 23:40:04 2018 +0100

Add bookmark for BASIC QBColor function

Change-Id: I1f7e7ea399fcc579463a7a4ac610e7205d64fcf8
Reviewed-on: https://gerrit.libreoffice.org/65756
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/text/sbasic/shared/03010304.xhp 
b/source/text/sbasic/shared/03010304.xhp
index 98ec9c634..2e78f7ccf 100644
--- a/source/text/sbasic/shared/03010304.xhp
+++ b/source/text/sbasic/shared/03010304.xhp
@@ -27,17 +27,17 @@
 
 
 
-
 
+
+QBColor function
+
 
 QBColor 
Function
 Returns the 
RGB color code 
of the color passed as a color value through an older MS-DOS based programming 
system.
 
 
 Syntax:
-
-QBColor 
(ColorNumber As Integer)
-
+QBColor 
(ColorNumber As Integer)
 
 Return 
value:
 Long
@@ -77,4 +77,4 @@
 
 
 
-
\ No newline at end of file
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-12-30 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bc62c0f28ee437a927fc795fdf0565ce6fa7a681
Author: Olivier Hallot 
AuthorDate: Sun Dec 30 19:19:07 2018 -0200
Commit: Gerrit Code Review 
CommitDate: Sun Dec 30 23:38:57 2018 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - tdf#114263 Add info for BASIC Spc() function

Change-Id: Ic57ae1777e9e41c67a914b210b002f3ba89e678c
Reviewed-on: https://gerrit.libreoffice.org/65753
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index d7124af74ae4..afdcd47966eb 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit d7124af74ae46cf33d1c23931b0041a40d845abb
+Subproject commit afdcd47966ebd0a2f379c01aac2ea9b85bb6cb83
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114263] [LOCALHELP] More BASIC functions to document in Help pages

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114263

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

https://git.libreoffice.org/help/+/afdcd47966ebd0a2f379c01aac2ea9b85bb6cb83%5E%21

tdf#114263 Add info for BASIC Spc() function

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


[Libreoffice-commits] help.git: source/auxiliary source/text

2018-12-30 Thread Libreoffice Gerrit user
 source/auxiliary/sbasic.tree   |1 
 source/text/sbasic/shared/03120201.xhp |   42 -
 2 files changed, 22 insertions(+), 21 deletions(-)

New commits:
commit afdcd47966ebd0a2f379c01aac2ea9b85bb6cb83
Author: Olivier Hallot 
AuthorDate: Sun Dec 30 19:19:07 2018 -0200
Commit: Olivier Hallot 
CommitDate: Sun Dec 30 23:38:57 2018 +0100

tdf#114263 Add info for BASIC Spc() function

Change-Id: Ic57ae1777e9e41c67a914b210b002f3ba89e678c
Reviewed-on: https://gerrit.libreoffice.org/65753
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/source/auxiliary/sbasic.tree b/source/auxiliary/sbasic.tree
index c05ecbac5..2bc0305b6 100644
--- a/source/auxiliary/sbasic.tree
+++ b/source/auxiliary/sbasic.tree
@@ -255,6 +255,7 @@
 Sin 
Function
 SLN 
Function [VBA]
 Space 
Function
+Spc 
Function
 Split 
Function
 Sqr 
Function
 Square 
Root Calculation
diff --git a/source/text/sbasic/shared/03120201.xhp 
b/source/text/sbasic/shared/03120201.xhp
index cc17ee433..815a840c7 100644
--- a/source/text/sbasic/shared/03120201.xhp
+++ b/source/text/sbasic/shared/03120201.xhp
@@ -20,7 +20,7 @@
 
 
   
-Space Function
+Space and Spc Function
 /text/sbasic/shared/03120201.xhp
   
 
@@ -30,38 +30,38 @@
 
 
   Space function
+  Spc function
 
 
-Space 
Function
+Space and Spc 
Functions
 Returns a 
string that consists of a specified amount of spaces.
 
+The Spc function works the same as the Space 
function.
+
 
-Syntax:
-
-Space (n As Long)
-
+Space (n As 
Long)
+Spc (n As 
Long)
 
-Return 
value:
+
 String
 
-Parameters:
- 
n: Numeric expression that defines the number of spaces in the 
string. The maximum allowed value of n is 65535.
+
+ 
n: Numeric expression that defines the number of spaces in the 
string. The maximum allowed value of n is 65535.
 
 
 
-Example:
+
 
-Sub ExampleSpace
-Dim sText As String,sOut As String
-Dim iLen As Integer
-iLen = 10
-sText = "Las Vegas"
-sOut = sText  Space(iLen)  sText  Chr(13) 
_
-sText  Space(iLen*2)  sText  Chr(13) 
_
-sText  Space(iLen*4)  sText  
Chr(13)
-MsgBox 
sOut,0,"Info:"
-End Sub
+Sub 
ExampleSpace
+Dim sText As 
String, sOut As String
+Dim iLen As 
Integer
+iLen = 
10
+sText = 
"Las Vegas"
+sOut = 
sText  Space(iLen)  sText  Chr(13) _
+sText 
 Space(iLen*2)  sText  Chr(13) _
+sText 
 Space(iLen*4)  sText  Chr(13)
+MsgBox 
sOut,0,"Info:"
+End 
Sub
 
 
-
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2018-12-30 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 23f657ea877b40a3584147a05f246a0d01f00317
Author: Olivier Hallot 
AuthorDate: Sun Dec 30 17:27:44 2018 -0200
Commit: Gerrit Code Review 
CommitDate: Sun Dec 30 23:20:51 2018 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - tdf#114263 Add Help page for BASIC Frac Function

Change-Id: Icc56a51597318d5c0683a2976b8d08f1b30ca49c
Reviewed-on: https://gerrit.libreoffice.org/65752
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index b1aec63bf053..d7124af74ae4 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit b1aec63bf053b4a654e3531c32eabd6b0ab035f5
+Subproject commit d7124af74ae46cf33d1c23931b0041a40d845abb
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: AllLangHelp_sbasic.mk source/auxiliary source/text

2018-12-30 Thread Libreoffice Gerrit user
 AllLangHelp_sbasic.mk  |1 
 source/auxiliary/sbasic.tree   |1 
 source/text/sbasic/shared/03080500.xhp |9 +++---
 source/text/sbasic/shared/03080501.xhp |   20 +++---
 source/text/sbasic/shared/03080502.xhp |   18 +++-
 source/text/sbasic/shared/03080503.xhp |   47 +
 6 files changed, 74 insertions(+), 22 deletions(-)

New commits:
commit d7124af74ae46cf33d1c23931b0041a40d845abb
Author: Olivier Hallot 
AuthorDate: Sun Dec 30 17:27:44 2018 -0200
Commit: Olivier Hallot 
CommitDate: Sun Dec 30 23:20:51 2018 +0100

tdf#114263 Add Help page for BASIC Frac Function

Change-Id: Icc56a51597318d5c0683a2976b8d08f1b30ca49c
Reviewed-on: https://gerrit.libreoffice.org/65752
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/AllLangHelp_sbasic.mk b/AllLangHelp_sbasic.mk
index 21f958963..f9b8f4b93 100644
--- a/AllLangHelp_sbasic.mk
+++ b/AllLangHelp_sbasic.mk
@@ -189,6 +189,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,sbasic,\
 helpcontent2/source/text/sbasic/shared/03080500 \
 helpcontent2/source/text/sbasic/shared/03080501 \
 helpcontent2/source/text/sbasic/shared/03080502 \
+helpcontent2/source/text/sbasic/shared/03080503 \
 helpcontent2/source/text/sbasic/shared/03080600 \
 helpcontent2/source/text/sbasic/shared/03080601 \
 helpcontent2/source/text/sbasic/shared/03080700 \
diff --git a/source/auxiliary/sbasic.tree b/source/auxiliary/sbasic.tree
index a803d00b1..c05ecbac5 100644
--- a/source/auxiliary/sbasic.tree
+++ b/source/auxiliary/sbasic.tree
@@ -146,6 +146,7 @@
 Format 
Function
 FormatDateTime Function 
[VBA]
 FormatNumber Function [VBA]
+Frac 
Function
 FreeFile Function
 FreeLibrary Function
 Function Statement
diff --git a/source/text/sbasic/shared/03080500.xhp 
b/source/text/sbasic/shared/03080500.xhp
index 7e3bdda9d..06efe78a2 100644
--- a/source/text/sbasic/shared/03080500.xhp
+++ b/source/text/sbasic/shared/03080500.xhp
@@ -30,13 +30,14 @@
 
 
 
-  
-  
+
+
   
-  Integers
-  The 
following functions round values to integers.
+  Integers and 
Fractional
+  Functions to 
round values to integers, and to take the fractional part of a 
value.
   
   
   
+  
  
 
diff --git a/source/text/sbasic/shared/03080501.xhp 
b/source/text/sbasic/shared/03080501.xhp
index 6c436534b..97e9ee82f 100644
--- a/source/text/sbasic/shared/03080501.xhp
+++ b/source/text/sbasic/shared/03080501.xhp
@@ -32,26 +32,22 @@
 
   Fix function
 
-
-
 Fix 
Function
 Returns the 
integer value of a numeric expression by removing the fractional part of the 
number.
 
 
-Syntax:
-
-Fix 
(Expression)
-
+
+Fix 
(Expression)
 
-Return 
value:
+
 Double
 
-Parameters:
+
  
Expression: Numeric expression that you want to return the integer 
value for.
 
 
 
-Example:
+
 
 Sub ExampleFix
 Print 
Fix(3.14159) ' returns 3.
@@ -59,6 +55,10 @@
 Print 
Fix(-3.14159) ' returns -3.
 End Sub
 
+
+Int 
Function
+Frac 
Function
+
 
 
-
\ No newline at end of file
+
diff --git a/source/text/sbasic/shared/03080502.xhp 
b/source/text/sbasic/shared/03080502.xhp
index cb259a34a..147c862a9 100644
--- a/source/text/sbasic/shared/03080502.xhp
+++ b/source/text/sbasic/shared/03080502.xhp
@@ -38,20 +38,18 @@
 Returns the 
integer portion of a number.
 
 
-Syntax:
-
-Int 
(Number)
-
+
+Int 
(Number)
 
-Return 
value:
+
 Double
 
-Parameters:
+
  
Number: Any valid numeric expression.
 
 
 
-Example:
+
 
 Sub ExampleInt
 Print 
Int(3.99) ' returns the value 3
@@ -59,6 +57,10 @@
 Print 
Int(-3.14159) ' returns the value -4
 End Sub
 
+
+Fix 
Function
+Frac 
Function
+
 
 
-
\ No newline at end of file
+
diff --git a/source/text/sbasic/shared/03080503.xhp 
b/source/text/sbasic/shared/03080503.xhp
new file mode 100644
index 0..282a81a0a
--- /dev/null
+++ b/source/text/sbasic/shared/03080503.xhp
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+Frac Function
+/text/sbasic/shared/03080503.xhp
+
+
+
+
+
+Frac function
+
+Frac Function
+Returns the fractional 
portion of a number.
+
+
+Frac (Number)
+
+Double
+
+ Number: Any 
valid numeric expression.
+
+
+
+
+Sub 
ExampleFrac
+Print Frac(3.99) ' 
returns the value 0.99
+Print Frac(0) ' 
returns the value 0
+Print Frac(-3.14159) 
' returns the value -0.14159
+End 
Sub
+
+
+Fix 
Function
+Int 
Function
+
+
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 114263] [LOCALHELP] More BASIC functions to document in Help pages

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114263

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

https://git.libreoffice.org/help/+/d7124af74ae46cf33d1c23931b0041a40d845abb%5E%21

tdf#114263 Add Help page for BASIC Frac Function

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


[Libreoffice-bugs] [Bug 122383] Crash in: SvxConfigPage::InsertEntry(SvxConfigEntry *, SvTreeListEntry *, bool)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122383

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg
   Priority|medium  |high
   Severity|normal  |major
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from m.a.riosv  ---
Repro
crashreport.libreoffice.org/stats/crash_details/7975ad06-dd91-4be6-9682-e8d46464a3b1
Version: 6.1.4.2 (x64)
Build ID: 9d0f32d1f0b509096fd65e0d4bec26ddd1938fd3
CPU threads: 4; OS: Windows 10.0; UI render: GL; 
Locale: es-ES (es_ES); Calc: CL

Versión: 6.0.7.1 (x64)
Id. de compilación: 5d2cb2a5dd04fe174b336488731eb50bbb5faed3
Subprocs. CPU: 4; SO: Windows 10.0; Repres. IU: GL; 
Configuración regional: es-ES (es_ES); Calc: CL

On ver 5 IU was different

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


[Libreoffice-bugs] [Bug 122384] New: In Libreoffice 6.2.0.1 and 6.3.0.0.alpha0 - Lines, created in Draw, are not printed as created.

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122384

Bug ID: 122384
   Summary: In Libreoffice 6.2.0.1 and 6.3.0.0.alpha0 - Lines,
created in Draw, are not printed as created.
   Product: LibreOffice
   Version: 6.2.0.1 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hel...@wolff-dattenberg.net

Description:
1. I've create lines in Draw.
2. I want print them.
3. They aren't printed as created

Actual Results:
Lines, created in Draw, aren't printed as created.

Expected Results:
Lines, created in Draw, aren't printed as created.


Reproducible: Always


User Profile Reset: Yes



Additional Info:

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


Re: What does checking the option "Formatted Display" on the Calc Find Toolbar actually do?

2018-12-30 Thread Drew Jensen
Thank you

On Sun, Dec 30, 2018 at 3:50 PM Jan-Marek Glogowski 
wrote:

> Am 30. Dezember 2018 20:57:34 MEZ schrieb Drew Jensen <
> drewjensen.in...@gmail.com>:
> >Howdy,
> >
> >Long and the short of this email is the question posed in the subject
> >line.
> >Can anyone point to where the answer to that question can be found?
> >
> >Thanks, in advance, for your time and help.
> >
> >Best wishes,
> >
> >Drew
>
> Search for the formatted / displayed value instead of the (stored) cell
> value ("65,536" vs "65536").
>
> https://bugs.documentfoundation.org/show_bug.cgi?id=48456
>
> Jan-Marek
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/libreoffice
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - officecfg/registry

2018-12-30 Thread Libreoffice Gerrit user
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu   |  
  2 ++
 officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu|  
  6 +++---
 officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu   |  
  2 ++
 officecfg/registry/data/org/openoffice/Office/UI/StartModuleWindowState.xcu |  
  2 --
 4 files changed, 7 insertions(+), 5 deletions(-)

New commits:
commit 4634ca4017a9d3c2717db60923375102070dbaca
Author: Matthias Seidel 
AuthorDate: Sun Dec 30 19:25:29 2018 +
Commit: Matthias Seidel 
CommitDate: Sun Dec 30 19:25:29 2018 +

Removed whitespace

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index eff4ab1b52ef..91bc00940160 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -19,6 +19,8 @@
  * under the License.
  *
  ***-->
+
+
 
 http://openoffice.org/2001/registry; 
xmlns:xs="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>
 
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu
index db344fc4b47d..50a0960a6af0 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcWindowState.xcu
@@ -101,9 +101,9 @@
 
 true
 
-
-  true
-
+
+true
+
 
 true
 
diff --git a/officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu
index babc1069617c..4096726c5ffe 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/MathCommands.xcu
@@ -19,6 +19,8 @@
  * under the License.
  *
  ***-->
+
+
 
 http://openoffice.org/2001/registry; 
xmlns:xs="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>
 
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/StartModuleWindowState.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/StartModuleWindowState.xcu
index 3625d0cafef4..194554105630 100644
--- 
a/officecfg/registry/data/org/openoffice/Office/UI/StartModuleWindowState.xcu
+++ 
b/officecfg/registry/data/org/openoffice/Office/UI/StartModuleWindowState.xcu
@@ -40,10 +40,8 @@
 
 
 Standard
-
 
 
 
 
 
-
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 122383] Crash in: SvxConfigPage::InsertEntry(SvxConfigEntry *, SvTreeListEntry *, bool)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122383

--- Comment #1 from Thom  ---
Rebooted PC to see if that had any effect on the bug: No change, still there.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_svg

2018-12-30 Thread Libreoffice Gerrit user
 icon-themes/breeze/cmd/lc_alphaliststyle.png   |binary
 icon-themes/breeze/cmd/lc_alphalowliststyle.png|binary
 icon-themes/breeze/cmd/lc_copyobjects.png  |binary
 icon-themes/breeze/cmd/lc_datastreams.png  |binary
 icon-themes/breeze/cmd/lc_formatcelldialog.png |binary
 icon-themes/breeze/cmd/lc_freezepanesfirstrow.png  |binary
 icon-themes/breeze/cmd/lc_romanliststyle.png   |binary
 icon-themes/breeze/cmd/lc_romanlowliststyle.png|binary
 icon-themes/breeze/cmd/sc_alphaliststyle.png   |binary
 icon-themes/breeze/cmd/sc_alphalowliststyle.png|binary
 icon-themes/breeze/cmd/sc_copyobjects.png  |binary
 icon-themes/breeze/cmd/sc_datastreams.png  |binary
 icon-themes/breeze/cmd/sc_formatcelldialog.png |binary
 icon-themes/breeze/cmd/sc_hiderow.png  |binary
 icon-themes/breeze/cmd/sc_showrow.png  |binary
 icon-themes/breeze_dark/cmd/lc_alphaliststyle.png  |binary
 icon-themes/breeze_dark/cmd/lc_alphalowliststyle.png   |binary
 icon-themes/breeze_dark/cmd/lc_copyobjects.png |binary
 icon-themes/breeze_dark/cmd/lc_datastreams.png |binary
 icon-themes/breeze_dark/cmd/lc_formatcelldialog.png|binary
 icon-themes/breeze_dark/cmd/lc_freezepanesfirstrow.png |binary
 icon-themes/breeze_dark/cmd/lc_romanliststyle.png  |binary
 icon-themes/breeze_dark/cmd/lc_romanlowliststyle.png   |binary
 icon-themes/breeze_dark/cmd/sc_alphaliststyle.png  |binary
 icon-themes/breeze_dark/cmd/sc_alphalowliststyle.png   |binary
 icon-themes/breeze_dark/cmd/sc_copyobjects.png |binary
 icon-themes/breeze_dark/cmd/sc_datastreams.png |binary
 icon-themes/breeze_dark/cmd/sc_formatcelldialog.png|binary
 icon-themes/breeze_dark/cmd/sc_hiderow.png |binary
 icon-themes/breeze_dark/cmd/sc_showrow.png |binary
 icon-themes/breeze_svg/cmd/lc_alphaliststyle.svg   |   14 ++
 icon-themes/breeze_svg/cmd/lc_alphalowliststyle.svg|   14 ++
 icon-themes/breeze_svg/cmd/lc_copyobjects.svg  |6 ++
 icon-themes/breeze_svg/cmd/lc_datastreams.svg  |6 ++
 icon-themes/breeze_svg/cmd/lc_formatcelldialog.svg |   10 ++
 icon-themes/breeze_svg/cmd/lc_freezepanesfirstrow.svg  |6 ++
 icon-themes/breeze_svg/cmd/lc_romanliststyle.svg   |   10 ++
 icon-themes/breeze_svg/cmd/lc_romanlowliststyle.svg|   10 ++
 icon-themes/breeze_svg/cmd/sc_alphaliststyle.svg   |   14 ++
 icon-themes/breeze_svg/cmd/sc_alphalowliststyle.svg|   14 ++
 icon-themes/breeze_svg/cmd/sc_copyobjects.svg  |6 ++
 icon-themes/breeze_svg/cmd/sc_datastreams.svg  |6 ++
 icon-themes/breeze_svg/cmd/sc_formatcelldialog.svg |   10 ++
 icon-themes/breeze_svg/cmd/sc_hiderow.svg  |6 ++
 icon-themes/breeze_svg/cmd/sc_showrow.svg  |   10 ++
 45 files changed, 142 insertions(+)

New commits:
commit 100718aae14cbabd08f3b2a69256eb7055666f24
Author: andreas kainz 
AuthorDate: Sat Dec 29 17:27:50 2018 +0100
Commit: andreas_kainz 
CommitDate: Sun Dec 30 21:58:46 2018 +0100

Breeze icon update

Change-Id: I7734d8edb31271e2a2e3c5e26c77906ea4ed0dc0
Reviewed-on: https://gerrit.libreoffice.org/65743
Tested-by: Jenkins
Reviewed-by: andreas_kainz 
(cherry picked from commit 578ec42e0d575f8700fe3d6c060da7b8f08142e3)
Reviewed-on: https://gerrit.libreoffice.org/65750

diff --git a/icon-themes/breeze/cmd/lc_alphaliststyle.png 
b/icon-themes/breeze/cmd/lc_alphaliststyle.png
new file mode 100644
index ..3c4022023fad
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_alphaliststyle.png differ
diff --git a/icon-themes/breeze/cmd/lc_alphalowliststyle.png 
b/icon-themes/breeze/cmd/lc_alphalowliststyle.png
new file mode 100644
index ..c1b8bf79e8d9
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_alphalowliststyle.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_copyobjects.png 
b/icon-themes/breeze/cmd/lc_copyobjects.png
new file mode 100644
index ..d0e84e3cdf20
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_copyobjects.png differ
diff --git a/icon-themes/breeze/cmd/lc_datastreams.png 
b/icon-themes/breeze/cmd/lc_datastreams.png
new file mode 100644
index ..5c9f0e4c105e
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_datastreams.png differ
diff --git a/icon-themes/breeze/cmd/lc_formatcelldialog.png 
b/icon-themes/breeze/cmd/lc_formatcelldialog.png
new file mode 100644
index ..c5ef9849e26a
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_formatcelldialog.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_freezepanesfirstrow.png 
b/icon-themes/breeze/cmd/lc_freezepanesfirstrow.png
new file mode 100644
index ..22161108587f
Binary files /dev/null and 

[Libreoffice-bugs] [Bug 122314] Borders in Calc toolbar dropdown icon too light/not dark enough since last update (Colibri)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122314

--- Comment #6 from Dave Barton  ---
Just to complete the answer for Stephanie:
You can (like many of us long term users do) restore some of the original icons
by adding the extensions:
Galaxy: https://extensions.libreoffice.org/extensions/galaxy-icon-theme
Oxygen: https://extensions.libreoffice.org/extensions/oxygen-icon-theme

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


Re: What does checking the option "Formatted Display" on the Calc Find Toolbar actually do?

2018-12-30 Thread Jan-Marek Glogowski
Am 30. Dezember 2018 20:57:34 MEZ schrieb Drew Jensen 
:
>Howdy,
>
>Long and the short of this email is the question posed in the subject
>line.
>Can anyone point to where the answer to that question can be found?
>
>Thanks, in advance, for your time and help.
>
>Best wishes,
>
>Drew

Search for the formatted / displayed value instead of the (stored) cell value 
("65,536" vs "65536").

https://bugs.documentfoundation.org/show_bug.cgi?id=48456

Jan-Marek
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 122383] New: Crash in: SvxConfigPage::InsertEntry(SvxConfigEntry *, SvTreeListEntry *, bool)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122383

Bug ID: 122383
   Summary: Crash in: SvxConfigPage::InsertEntry(SvxConfigEntry
*,SvTreeListEntry *,bool)
   Product: LibreOffice
   Version: 6.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: thomkenn...@hotmail.com

This bug was filed from the crash reporting server and is
br-ca32b19f-9d7e-4c67-a4b5-122da4b7d983.
=
Fresh install of LibreOffice on Windows 10 OS.
Sequence leading to crash (this is repeatable & happens every time):
1. Start LibreOffice
2. Click Tools/Customize
3. Click Toolbars tab
4. Highlight any item in the LH "Function" window
5. Click the Right-arrow between the 2 windows.
6. Crash.

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


[Libreoffice-bugs] [Bug 122381] LibreOffice Writer Menu and Toolbar Freezes for 5-10 Seconds

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122381

--- Comment #3 from Doug Lacy  ---
1. My version of LibreOffice is 6.1.4 (i.e., the latest Fresh version).
2. I renamed directory C:\Users\\AppData\Roaming\LibreOffice to
C:\Users\\AppData\Roaming\LibreOffice.old and then started Writer. A
new "LibreOffice" directory was created. The problem was still occurring.
3. The text of Help->About has the following text ...
Version: 6.1.4.2 (x64)
Build ID: 9d0f32d1f0b509096fd65e0d4bec26ddd1938fd3
CPU threads: 16; OS: Windows 10.0; UI render: default; 
Locale: en-US (en_US); Calc: group threaded

See log: 9d0f32d1f0b509096fd65e0d4bec26ddd1938fd3

I believe that this is all the "First steps to take ..." that are relevant. The
only other step on this page is related to Calc (which is also affected, but
this bug is for Writer).

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


[Libreoffice-bugs] [Bug 102256] ODF filter: as child of is written in case of strict ODF1.2, but invalid

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102256

Julien Nabet  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=84
   ||714
 CC||serval2...@yahoo.fr,
   ||vmik...@collabora.com

--- Comment #4 from Julien Nabet  ---
Reading this one, I wonder if we shouldn't add a dialog indicating that since
we use ODF 1.2 strict, some parts of the documents won't be exported so a
backup should be made.
Finally, block lines 1099 to 1139 from sw/source/filter/xml/xmltble.cxx should
be executed only if we use odf version > 1.2
Any thoughts?

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


[Libreoffice-bugs] [Bug 114263] [LOCALHELP] More BASIC functions to document in Help pages

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114263

--- Comment #4 from Olivier Hallot  ---
>From OpenOffice Macro Explained (Andrew Pitonyak)

Table 14. Deprecated and not-yet-implemented routines.

Routine,   Comment
AboutStarBasic Deprecated empty stub that used to be an information
dialog.
SendKeys,  Empty stub.
"DumpAllObjects(path, bool)",Internal debugging routine.
Load(Object),  Deprecated.
Unload(Object),Deprecated.
LoadPicture(path), Deprecated. Loads an image file.
"SavePicture(obj, path)",Deprecated. Fails to save an image file.
CreatePropertySet(object),   Deprecated. Early UNO support function.
CCur(expression),  Purposely generates a run-time error. Convert to
currency.
StrConv,   Purposely generates a run-time error. Convert strings to
different cases.
DateAdd,   Empty stub. Add date components.
DateDiff,  Empty stub. Difference between two date components.
DatePart,  Empty stub. Extract a specific date component.

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


What does checking the option "Formatted Display" on the Calc Find Toolbar actually do?

2018-12-30 Thread Drew Jensen
Howdy,

Long and the short of this email is the question posed in the subject line.
Can anyone point to where the answer to that question can be found?

Thanks, in advance, for your time and help.

Best wishes,

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


[Libreoffice-bugs] [Bug 122382] Focus randomly jumps to menu bar while typing

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122382

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
Since LO indicates GL rendering, could you check you have the last drivers of
your graphic card? (it'll allow to be up-to-date with OpenCL and OpenGL parts).
You may also be interested with
https://wiki.documentfoundation.org/QA/FirstSteps

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


[Libreoffice-bugs] [Bug 35510] Incorrect import of .xls document (black diagonal lines)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35510

--- Comment #23 from Daniil Bratashov  ---
The example file was taken here:
http://www.vstu.ru/upload/raspisanie/z/%D0%9E%D0%A1_%D0%A4%D0%A2%D0%9A%D0%9C_1%20%D0%BA%D1%83%D1%80%D1%81.xls

The bug is still present in the reduced form: the diagonal lines are slightly
misplaced. LO Version: 6.1.4.2, Slackware linux 14.2 x86_64, repackage of
official binaries by slackbuilds.org.

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


[Libreoffice-bugs] [Bug 122381] LibreOffice Writer Menu and Toolbar Freezes for 5-10 Seconds

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122381

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet  ---
Could you give a try to https://wiki.documentfoundation.org/QA/FirstSteps ?

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


[Libreoffice-bugs] [Bug 35510] Incorrect import of .xls document (black diagonal lines)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35510

--- Comment #22 from Daniil Bratashov  ---
Created attachment 147901
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147901=edit
Example of misplaced diagonal line

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


[Libreoffice-bugs] [Bug 120565] Wrong initialization of Bitmap tab page in Area dialog

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120565

Patrik Vas  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 86906] EDITING: Page-anchored image gets into header and then disappears (when manipulating with page crossing and related page style change)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86906

--- Comment #5 from Stanislav Horacek  ---
Still reproducible in:
6.3.0.0.alpha0+
Build ID: ac7508c31873d79e56b406c9bf931caae63d4975
Time: 2018-12-14_16:04:08

Excepting that adding of two more paragraphs is needed in the step 2.

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


[Libreoffice-bugs] [Bug 122380] Cut/Copy pastes old data one of two trying

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122380

--- Comment #2 from einsachtz...@online.de ---
Additional note: the frequency of pasting wrong values seems to vary. It is not
always the second try in my attempts with Version: 6.1.4.2. It happens now and
then without a recognizable pattern.

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


[Libreoffice-bugs] [Bug 67997] Wrapping arround a frame does not work when two frames are nearby

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67997

--- Comment #14 from Stanislav Horacek  ---
Still reproducible in:
6.3.0.0.alpha0+
Build ID: ac7508c31873d79e56b406c9bf931caae63d4975
Time: 2018-12-14_16:04:08

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


[Libreoffice-bugs] [Bug 119249] Point markers in icon themes should be semi-transparent

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119249

--- Comment #14 from Regina Henschel  ---
I see semi-transparent markers for Breeze and Colibre in Version:
6.3.0.0.alpha0+ (x64)
Build ID: 578ec42e0d575f8700fe3d6c060da7b8f08142e3
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

Thank you Andreas.

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


[Libreoffice-bugs] [Bug 122382] New: Focus randomly jumps to menu bar while typing

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122382

Bug ID: 122382
   Summary: Focus randomly jumps to menu bar while typing
   Product: LibreOffice
   Version: 6.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: photograp...@msn.com

Description:
I am running Windows 10, and use English language with a Swedish keyboard
layout, and ever since I installed LibreOffice 6.0.4 (am now up to 6.0.7) I
have had a weird behavior whenever I start up a document in Writer and start
typing. At some point the focus will jump to the menu bar and further typing
will flip to various parts of the menus (thus potentially causing things to
happen that I don't want). I haven't been able to determine what causes it.
Right before filing this bug it was pressing SHIFT and J to begin a sentence,
and I saw the menus flip open, but earlier this day it was pressing backspace
to retype a word which did it. I was nowhere near the ALT key with any of my
fingers, so that is ruled out as a cause, although the behavior is as if I
accidentally hit the ALT key.

Actual Results:
? See additional information below.

Expected Results:
? See additional information below.


Reproducible: Couldn't Reproduce


User Profile Reset: No



Additional Info:
The bug is random, and only seems to appear once in a given session. I have no
idea how to reproduce the bug, since it seems to be triggered in different ways
each time. Maybe it has something to do with me using a Swedish keyboard layout
in an English Windows environment? I haven't had this problem in any other
software, though.

Here's the information about my current version of LibreOffice:
Version: 6.0.7.3 (x64)
Build ID: dc89aa7a9eabfd848af146d5086077aeed2ae4a5
CPU threads: 8; OS: Windows 10.0; UI render: GL; 
Locale: sv-SE (en_GB); Calc: CL

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


[Libreoffice-bugs] [Bug 122380] Cut/Copy pastes old data one of two trying

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122380

einsachtz...@online.de 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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 122380] Cut/Copy pastes old data one of two trying

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122380

--- Comment #1 from einsachtz...@online.de ---

In case only the right mouse click is used consistently I can confirm that
behavior in 
Version: 6.1.4.2
Build-ID: 10(Build:2)
CPU-Threads: 4; BS: Linux 4.12; UI-Render: Standard; VCL: gtk3_kde5; 
Gebietsschema: de-DE (de_DE.UTF-8); Calc: group threaded

It does not seem to happen if source and target cells are marked via left mouse
click before copy and paste actions are done.

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


[Libreoffice-bugs] [Bug 114263] [LOCALHELP] More BASIC functions to document in Help pages

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114263

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

https://git.libreoffice.org/help/+/b1aec63bf053b4a654e3531c32eabd6b0ab035f5%5E%21

tdf#114263 Help page for BASIC WaitUntil statement

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


[Libreoffice-commits] help.git: AllLangHelp_sbasic.mk help3xsl/online_transform.xsl source/auxiliary source/text

2018-12-30 Thread Libreoffice Gerrit user
 AllLangHelp_sbasic.mk  |1 
 help3xsl/online_transform.xsl  |   56 -
 source/auxiliary/sbasic.tree   |1 
 source/text/sbasic/shared/0313.xhp |1 
 source/text/sbasic/shared/03130600.xhp |   13 ---
 source/text/sbasic/shared/03130610.xhp |   51 ++
 6 files changed, 89 insertions(+), 34 deletions(-)

New commits:
commit b1aec63bf053b4a654e3531c32eabd6b0ab035f5
Author: Olivier Hallot 
AuthorDate: Sat Dec 29 15:39:14 2018 -0200
Commit: Olivier Hallot 
CommitDate: Sun Dec 30 18:56:34 2018 +0100

tdf#114263 Help page for BASIC WaitUntil statement

Change-Id: I6ef145556a813f65ea509b146eadbf744b6f1fae
Reviewed-on: https://gerrit.libreoffice.org/65721
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/AllLangHelp_sbasic.mk b/AllLangHelp_sbasic.mk
index 11c686abe..21f958963 100644
--- a/AllLangHelp_sbasic.mk
+++ b/AllLangHelp_sbasic.mk
@@ -317,6 +317,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,sbasic,\
 helpcontent2/source/text/sbasic/shared/03130100 \
 helpcontent2/source/text/sbasic/shared/03130500 \
 helpcontent2/source/text/sbasic/shared/03130600 \
+helpcontent2/source/text/sbasic/shared/03130610 \
 helpcontent2/source/text/sbasic/shared/03130700 \
 helpcontent2/source/text/sbasic/shared/03130800 \
 helpcontent2/source/text/sbasic/shared/03131000 \
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index 5fa01a773..2bd356a8c 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -473,35 +473,35 @@
 
 
 
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
-   
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 
@@ -519,12 +519,12 @@
 
 
 
-   
+
 
 
 
 
-   
+
 
 
 
diff --git a/source/auxiliary/sbasic.tree b/source/auxiliary/sbasic.tree
index 6e3fcd842..a803d00b1 100644
--- a/source/auxiliary/sbasic.tree
+++ b/source/auxiliary/sbasic.tree
@@ -281,6 +281,7 @@
 UCase 
Function
 Val 
Function
 Wait 
Statement
+WaitUntil Statement
 WeekDay 
Function
 WeekdayName Function [VBA]
 While...Wend Statement
diff --git a/source/text/sbasic/shared/0313.xhp 
b/source/text/sbasic/shared/0313.xhp
index 9be85339e..5b458428b 100644
--- a/source/text/sbasic/shared/0313.xhp
+++ b/source/text/sbasic/shared/0313.xhp
@@ -37,6 +37,7 @@
 
 
 
+
 
 
 
diff --git a/source/text/sbasic/shared/03130600.xhp 
b/source/text/sbasic/shared/03130600.xhp
index 9a78d75b2..849f00c86 100644
--- a/source/text/sbasic/shared/03130600.xhp
+++ b/source/text/sbasic/shared/03130600.xhp
@@ -35,16 +35,14 @@
 Wait 
Statement
 Interrupts the 
program execution for the amount of time that you specify in 
milliseconds.
 
-Syntax:
-
-Wait 
millisec
-
-Parameters:
+
+Wait 
millisec
+
 
 millisec: Numeric expression that contains the amount of time (in 
milliseconds) to wait before the program is executed.
 
 
-Example:
+
 
 Sub ExampleWait
 Dim lTick As Long
@@ -54,6 +52,9 @@
 MsgBox "" 
 lTick  " Ticks" ,0,"The pause lasted"
 End Sub
 
+
+WaitUntil 
statement
+
 
 
 
diff --git a/source/text/sbasic/shared/03130610.xhp 
b/source/text/sbasic/shared/03130610.xhp
new file mode 100644
index 0..1e68ce7aa
--- /dev/null
+++ b/source/text/sbasic/shared/03130610.xhp
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+WaitUntil Statement
+/text/sbasic/shared/03130610.xhp
+
+
+
+
+
+WaitUntil statement
+
+WaitUntil Statement
+Interrupts the program 
execution until the time specified.
+
+
+WaitUntil Time
+
+
+Time: A Date and Time expression that contains the date 
and time to wait before the program is executed.
+
+
+
+
+
+REM Wait until 
6:00 PM then call MyMacro.
+REM If after 
6:00 PM, exit.
+Sub 
ExampleWaitUntil
+Dim 
vTimeschedule As Long

[Libreoffice-commits] core.git: helpcontent2

2018-12-30 Thread Libreoffice Gerrit user
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2f39b168b872bd16618fe82874cab3645d440b83
Author: Olivier Hallot 
AuthorDate: Sat Dec 29 15:39:14 2018 -0200
Commit: Gerrit Code Review 
CommitDate: Sun Dec 30 18:56:34 2018 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  - tdf#114263 Help page for BASIC WaitUntil statement

Change-Id: I6ef145556a813f65ea509b146eadbf744b6f1fae
Reviewed-on: https://gerrit.libreoffice.org/65721
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 928e87fe68bf..b1aec63bf053 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 928e87fe68bf8524caf463aff82851c712e6f5f0
+Subproject commit b1aec63bf053b4a654e3531c32eabd6b0ab035f5
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 121750] Once the comment is entered, I couldn't show it by hovering with the > mouse over the little red square

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121750

raal  changed:

   What|Removed |Added

   Keywords||bibisected, bisected
 CC||armin.le.gr...@me.com

--- Comment #6 from raal  ---
> > 
> > 3. Once the comment is entered, I couldn't show it by hovering with the
> > mouse over the little red square in the top right corner of the cell.
> 

This seems to have begun at the below commit.
Adding Cc: to Armin Le Grand ; Could you possibly take a look at this one?
Thanks

7ee4f79e6b2d49fd32c27bb97917aa236509f527 is the first bad commit
commit 7ee4f79e6b2d49fd32c27bb97917aa236509f527
Author: Jenkins Build User 
Date:   Thu Sep 13 09:34:16 2018 +0200

source sha:7034311dce663c895577267110baadbec312d491

author  Armin Le Grand   2018-09-06 18:15:02 +0200
committer   Armin Le Grand   2018-09-13 08:49:35
+0200
commit  7034311dce663c895577267110baadbec312d491 (patch)
tree8c1d712cbfb1b15dc492e6e724b6b22892914249
parent  d92b0efe58b77247e1e5292c1a989baa934df797 (diff)
Support buffering SystemDependent GraphicData (II)

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


[Libreoffice-bugs] [Bug 121845] custom shape with command U (angleellipse) is wrongly drawn

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121845

Regina Henschel  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |rb.hensc...@t-online.de
   |desktop.org |
 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1

--- Comment #1 from Regina Henschel  ---
I'll work on it.

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


[Libreoffice-bugs] [Bug 121952] A sequence of X commands in an enhanced-path needs to toggle x- and y-direction

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121952

Regina Henschel  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #3 from Regina Henschel  ---
See fix in Version: 6.3.0.0.alpha0+ (x64)
Build ID: 49fcd3bbb30f93763fc5cb80fa6ac5cec5d00834
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-12-24_22:40:25
Locale: de-DE (en_US); UI-Language: en-US
Calc: threaded

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


[Libreoffice-commits] core.git: icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_svg

2018-12-30 Thread Libreoffice Gerrit user
 icon-themes/breeze/cmd/lc_alphaliststyle.png   |binary
 icon-themes/breeze/cmd/lc_alphalowliststyle.png|binary
 icon-themes/breeze/cmd/lc_copyobjects.png  |binary
 icon-themes/breeze/cmd/lc_datastreams.png  |binary
 icon-themes/breeze/cmd/lc_formatcelldialog.png |binary
 icon-themes/breeze/cmd/lc_freezepanesfirstrow.png  |binary
 icon-themes/breeze/cmd/lc_romanliststyle.png   |binary
 icon-themes/breeze/cmd/lc_romanlowliststyle.png|binary
 icon-themes/breeze/cmd/sc_alphaliststyle.png   |binary
 icon-themes/breeze/cmd/sc_alphalowliststyle.png|binary
 icon-themes/breeze/cmd/sc_copyobjects.png  |binary
 icon-themes/breeze/cmd/sc_datastreams.png  |binary
 icon-themes/breeze/cmd/sc_formatcelldialog.png |binary
 icon-themes/breeze/cmd/sc_hiderow.png  |binary
 icon-themes/breeze/cmd/sc_showrow.png  |binary
 icon-themes/breeze_dark/cmd/lc_alphaliststyle.png  |binary
 icon-themes/breeze_dark/cmd/lc_alphalowliststyle.png   |binary
 icon-themes/breeze_dark/cmd/lc_copyobjects.png |binary
 icon-themes/breeze_dark/cmd/lc_datastreams.png |binary
 icon-themes/breeze_dark/cmd/lc_formatcelldialog.png|binary
 icon-themes/breeze_dark/cmd/lc_freezepanesfirstrow.png |binary
 icon-themes/breeze_dark/cmd/lc_romanliststyle.png  |binary
 icon-themes/breeze_dark/cmd/lc_romanlowliststyle.png   |binary
 icon-themes/breeze_dark/cmd/sc_alphaliststyle.png  |binary
 icon-themes/breeze_dark/cmd/sc_alphalowliststyle.png   |binary
 icon-themes/breeze_dark/cmd/sc_copyobjects.png |binary
 icon-themes/breeze_dark/cmd/sc_datastreams.png |binary
 icon-themes/breeze_dark/cmd/sc_formatcelldialog.png|binary
 icon-themes/breeze_dark/cmd/sc_hiderow.png |binary
 icon-themes/breeze_dark/cmd/sc_showrow.png |binary
 icon-themes/breeze_svg/cmd/lc_alphaliststyle.svg   |   14 ++
 icon-themes/breeze_svg/cmd/lc_alphalowliststyle.svg|   14 ++
 icon-themes/breeze_svg/cmd/lc_copyobjects.svg  |6 ++
 icon-themes/breeze_svg/cmd/lc_datastreams.svg  |6 ++
 icon-themes/breeze_svg/cmd/lc_formatcelldialog.svg |   10 ++
 icon-themes/breeze_svg/cmd/lc_freezepanesfirstrow.svg  |6 ++
 icon-themes/breeze_svg/cmd/lc_romanliststyle.svg   |   10 ++
 icon-themes/breeze_svg/cmd/lc_romanlowliststyle.svg|   10 ++
 icon-themes/breeze_svg/cmd/sc_alphaliststyle.svg   |   14 ++
 icon-themes/breeze_svg/cmd/sc_alphalowliststyle.svg|   14 ++
 icon-themes/breeze_svg/cmd/sc_copyobjects.svg  |6 ++
 icon-themes/breeze_svg/cmd/sc_datastreams.svg  |6 ++
 icon-themes/breeze_svg/cmd/sc_formatcelldialog.svg |   10 ++
 icon-themes/breeze_svg/cmd/sc_hiderow.svg  |6 ++
 icon-themes/breeze_svg/cmd/sc_showrow.svg  |   10 ++
 45 files changed, 142 insertions(+)

New commits:
commit 578ec42e0d575f8700fe3d6c060da7b8f08142e3
Author: andreas kainz 
AuthorDate: Sat Dec 29 17:27:50 2018 +0100
Commit: andreas_kainz 
CommitDate: Sun Dec 30 18:17:48 2018 +0100

Breeze icon update

Change-Id: I7734d8edb31271e2a2e3c5e26c77906ea4ed0dc0
Reviewed-on: https://gerrit.libreoffice.org/65743
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/icon-themes/breeze/cmd/lc_alphaliststyle.png 
b/icon-themes/breeze/cmd/lc_alphaliststyle.png
new file mode 100644
index ..3c4022023fad
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_alphaliststyle.png differ
diff --git a/icon-themes/breeze/cmd/lc_alphalowliststyle.png 
b/icon-themes/breeze/cmd/lc_alphalowliststyle.png
new file mode 100644
index ..c1b8bf79e8d9
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_alphalowliststyle.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_copyobjects.png 
b/icon-themes/breeze/cmd/lc_copyobjects.png
new file mode 100644
index ..d0e84e3cdf20
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_copyobjects.png differ
diff --git a/icon-themes/breeze/cmd/lc_datastreams.png 
b/icon-themes/breeze/cmd/lc_datastreams.png
new file mode 100644
index ..5c9f0e4c105e
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_datastreams.png differ
diff --git a/icon-themes/breeze/cmd/lc_formatcelldialog.png 
b/icon-themes/breeze/cmd/lc_formatcelldialog.png
new file mode 100644
index ..c5ef9849e26a
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_formatcelldialog.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_freezepanesfirstrow.png 
b/icon-themes/breeze/cmd/lc_freezepanesfirstrow.png
new file mode 100644
index ..22161108587f
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_freezepanesfirstrow.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_romanliststyle.png 

[Libreoffice-bugs] [Bug 122381] LibreOffice Writer Menu and Toolbar Freezes for 5-10 Seconds

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122381

--- Comment #1 from Doug Lacy  ---
To reproduce on my system:

1. In a Writer ODT document, select some text in preparation (for example) to
changing the font settings or style.
2. Move the mouse to over the toolbar, in preparation to clicking on the style
dropdown or the B (to make the text Bold).
3. There is a delay of 5-10 seconds between moving the mouse over the desired
effect and being able to click on it. Tooltips should appear while hovering,
but don't for 5-10 seconds. Similarly, all menu items are unresponsive during
this delay time.

I am running Windows 10 Pro (Version 1803, with the 2018-12 Update) on a Dell
Precision T7500 with dual Xeon processors.

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


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

2018-12-30 Thread Libreoffice Gerrit user
 sc/source/filter/xml/XMLExportDataPilot.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 40a7e9c93855ac6cceb4c4189587998e21581de5
Author: Julien Nabet 
AuthorDate: Sun Dec 30 12:51:25 2018 +0100
Commit: Julien Nabet 
CommitDate: Sun Dec 30 18:10:38 2018 +0100

tdf#112484: repeat-item-labels is invalid in odf1.2 strict

Change-Id: I23d204ef3d4e466876bb3416d616dc1f3682ad4c
Reviewed-on: https://gerrit.libreoffice.org/65740
Tested-by: Jenkins
Reviewed-by: Regina Henschel 

diff --git a/sc/source/filter/xml/XMLExportDataPilot.cxx 
b/sc/source/filter/xml/XMLExportDataPilot.cxx
index 3dad7e282501..a39784c7f8ab 100644
--- a/sc/source/filter/xml/XMLExportDataPilot.cxx
+++ b/sc/source/filter/xml/XMLExportDataPilot.cxx
@@ -493,6 +493,7 @@ void ScXMLExportDataPilot::WriteLevels(const 
ScDPSaveDimension* pDim)
 ::sax::Converter::convertBool(sBuffer, pDim->GetShowEmpty());
 rExport.AddAttribute(XML_NAMESPACE_TABLE, XML_SHOW_EMPTY, 
sBuffer.makeStringAndClear());
 }
+if (rExport.getDefaultVersion() > SvtSaveOptions::ODFVER_012)
 {
 OUStringBuffer sBuffer;
 ::sax::Converter::convertBool(sBuffer, pDim->GetRepeatItemLabels());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - odk/examples

2018-12-30 Thread Libreoffice Gerrit user
 odk/examples/DevelopersGuide/Components/Addons/JobsAddon/Addons.xcu
  |   21 -
 odk/examples/DevelopersGuide/Components/Addons/JobsAddon/Jobs.xcu  
  |   21 -
 
odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/ProtocolHandler.xcu
  |   21 -
 
odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_java/ProtocolHandler.xcu
 |   21 -
 
odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/TypeDetection.xcu
   |   22 --
 
odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/FlatXmlTypeDetection.xcu
 |   22 --
 
odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXmlFilter_cpp.xcu
 |   22 --
 
odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/FlatXmlFilter_java.xcu
   |   22 --
 odk/examples/cpp/complextoolbarcontrols/Jobs.xcu   
  |   21 -
 odk/examples/cpp/complextoolbarcontrols/ProtocolHandler.xcu
  |   21 -
 odk/examples/java/EmbedDocument/EmbeddedObject/EmbeddedObject.xcu  
  |   22 --
 odk/examples/java/Inspector/ObjectInspector.xcu
  |   22 --
 odk/examples/java/Inspector/ProtocolHandler.xcu
  |   21 -
 13 files changed, 279 deletions(-)

New commits:
commit 265617887cd63facf2b680ac8cf9e0c39b6dc6aa
Author: Matthias Seidel 
AuthorDate: Sun Dec 30 15:21:25 2018 +
Commit: Matthias Seidel 
CommitDate: Sun Dec 30 15:21:25 2018 +

Remove duplicate license headers

diff --git 
a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/Addons.xcu 
b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/Addons.xcu
index 3bddb094d346..7394db04821e 100644
--- a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/Addons.xcu
+++ b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/Addons.xcu
@@ -1,24 +1,3 @@
-
-
 
 
-
 
 
-
 
 
-
 
 
-
-
-
 http://openoffice.org/2001/registry; 
xmlns:xs="http://www.w3.org/2001/XMLSchema; oor:name="TypeDetection" 
oor:package="org.openoffice.Office">
  
   
diff --git 
a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/FlatXmlTypeDetection.xcu
 
b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/FlatXmlTypeDetection.xcu
index c9fbc989878b..4ea0fadf7e8f 100644
--- 
a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/FlatXmlTypeDetection.xcu
+++ 
b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilterDetection/FlatXmlTypeDetection.xcu
@@ -19,28 +19,6 @@
  * under the License.
  *
  ***-->
-
-
-
 
 http://openoffice.org/2001/registry; 
xmlns:xs="http://www.w3.org/2001/XMLSchema; 
oor:package="org.openoffice.TypeDetection" oor:name="Types">
 
diff --git 
a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXmlFilter_cpp.xcu
 
b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXmlFilter_cpp.xcu
index 60722a07ac11..e43b78b2b523 100644
--- 
a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXmlFilter_cpp.xcu
+++ 
b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_cpp/FlatXmlFilter_cpp.xcu
@@ -19,28 +19,6 @@
  * under the License.
  *
  ***-->
-
-
-
 
 http://openoffice.org/2001/registry; 
xmlns:xs="http://www.w3.org/2001/XMLSchema; 
oor:package="org.openoffice.TypeDetection" oor:name="Filter">
 
diff --git 
a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/FlatXmlFilter_java.xcu
 
b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/FlatXmlFilter_java.xcu
index 65b53460a412..5a3d62d1a334 100644
--- 
a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/FlatXmlFilter_java.xcu
+++ 
b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/FlatXmlFilter_java.xcu
@@ -19,28 +19,6 @@
  * under the License.
  *
  ***-->
-
-
-
 
 http://openoffice.org/2001/registry; 
xmlns:xs="http://www.w3.org/2001/XMLSchema; 
oor:package="org.openoffice.TypeDetection" oor:name="Filter">
 
diff --git a/odk/examples/cpp/complextoolbarcontrols/Jobs.xcu 
b/odk/examples/cpp/complextoolbarcontrols/Jobs.xcu
index 4a90297034e1..058940ee2657 100644
--- a/odk/examples/cpp/complextoolbarcontrols/Jobs.xcu
+++ b/odk/examples/cpp/complextoolbarcontrols/Jobs.xcu
@@ -1,24 +1,3 @@
-
-
 
 
-
 
 
-
-
-
 
 

[Libreoffice-bugs] [Bug 122381] New: LibreOffice Writer Menu and Toolbar Freezes for 5-10 Seconds

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122381

Bug ID: 122381
   Summary: LibreOffice Writer Menu and Toolbar Freezes for 5-10
Seconds
   Product: LibreOffice
   Version: 6.1.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dl...@globility.com

This problem also affects Calc in 6.1.4. I have not tried any other components.
This problem has occurred since the first released version of the 6.1 series.
It is severe enough that 6.1 is essentially unusable, and as a result I have
had to fall back to the 6.0.7 version (where the problem does not occur).

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


[Libreoffice-bugs] [Bug 122380] New: Cut/Copy pastes old data one of two trying

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122380

Bug ID: 122380
   Summary: Cut/Copy pastes old data one of two trying
   Product: LibreOffice
   Version: 6.1.2.1 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mic.gre...@online.fr

Description:
I have a sheet with those cells 
A1
A2
A3
A4
A5
A6

When a copy or cut the first cell (A1) into B1, the right content A1 is pasted
in B1
When a copy or cut the second cell (A2) into B2, the bad content A1 is pasted
in B2
When a copy A3 into B3, the right content A3 is pasted in B3
When a copy A4 into B4, the bad content A3 is pasted in B4

This behavior appears only with right button.
This behavior appears on Kubuntu 18.10 with LibreOffice 6.1.2.1. Same problem
with a freshly Ubuntu installed and a new profile of LibreOffice.
Doesn't appear in LOo in my VirtualBox (Win 10, LOo 6.0.7).

Steps to Reproduce:
1. Copy or cut a cell, Paste in an other cell
2. Copy another cell and paste in a other cell


Actual Results:
1. Copy or cut a cell
2. Paste in an other cell
3. Repeat this operation

Expected Results:
The bad content is pasted. Only the first operation of copy works and the 3rd,
the 5rd, etc...


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
[Information automatically included from LibreOffice]
Locale: fr
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

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


[Libreoffice-bugs] [Bug 97432] Breakpoints ignore when macro first run

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97432

--- Comment #7 from t...@tim-passingham.co.uk ---
The problem still exists in:

Version: 6.1.4.2
Build ID: 1:6.1.4-0ubuntu0.18.10.1~lo1
CPU threads: 8; OS: Linux 4.18; UI render: default; VCL: x11; 
Locale: en-GB (en_GB.UTF-8); Calc: group threaded

I have retested both the example I provided, and another database.

It's an irritating but small niggle.

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


[Libreoffice-bugs] [Bug 122379] New: windows defender detects Trojan:Win32/Spursint.F!cl in LibreOffice_6.1.4_Win_x64_helppack_fr.msi

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122379

Bug ID: 122379
   Summary: windows defender detects Trojan:Win32/Spursint.F!cl in
LibreOffice_6.1.4_Win_x64_helppack_fr.msi
   Product: LibreOffice
   Version: 6.1.4.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: noel@free.fr

Description:
Hi,
May I trust LibreOffice_6.1.4_Win_x64 if a trojan is detected in the help pack?
I download them from :
http://download.documentfoundation.org/libreoffice/stable/6.1.4/win/x86_64/LibreOffice_6.1.4_Win_x64_helppack_fr.msi
and from 
https://www.libreoffice.org/donate/dl/win-x86_64/6.1.4/fr/LibreOffice_6.1.4_Win_x64.msi

Thank you very much



Steps to Reproduce:
1.download in/from a windows computer under W10 V 1809 with edge
2.
3.

Actual Results:
smartscreen complain. And if a force the download, windows defender delete the
msi file

Expected Results:
good downlaod


Reproducible: Always


User Profile Reset: No



Additional Info:
from windows defender :
webfile:
C:\Users\noel\Downloads\LibreOffice_6.1.4_Win_x64_helppack_fr.msi|https://mirror.cyberbits.eu/tdf/libreoffice/stable/6.1.4/win/x86_64/LibreOffice_6.1.4_Win_x64_helppack_fr.msi|pid:4784,ProcessStart:131906539640813010

file:
C:\Users\noel\Downloads\LibreOffice_6.1.4_Win_x64_helppack_fr.msi->libreoffice1.cab->bookmarks.js

containerfile:
C:\Users\noel\Downloads\LibreOffice_6.1.4_Win_x64_helppack_fr.msi

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


[Libreoffice-bugs] [Bug 122370] Style Heading 1 is not applied to content nor option Numeric with all sublevels is applied to Headings whose levels are superior to level 1.

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122370

--- Comment #3 from ricky.t...@gmail.com ---
step 4. – While a content to which style Heading 2 with its settings in their
default states was applied, select it, right-click, select Bullets and
Numbering -> Outline, apply option Numeric with all sublevels -> Press OK.

Expected numbering model for level 2 is 1.1 while model currently produced is
1. While checking Numbering style, its respective setting appears indeed to be
set as none, which tends to indicate that previous operation had no effect on
the Numbering style. Further investigation also indicates that there is no
model available to match the numbering selection Numeric with all sublevels.
Though under Organizer tab, under name section, AutoUpdate was checked.

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


[Libreoffice-bugs] [Bug 121750] Once the comment is entered, I couldn't show it by hovering with the > mouse over the little red square

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121750

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Keywords||regression
 CC||r...@post.cz
Summary|Inserting comments in Calc  |Once the comment is
   |overlaps the cells below|entered, I couldn't show it
   ||by hovering with the >
   ||mouse over the little red
   ||square
 Ever confirmed|0   |1

--- Comment #5 from raal  ---
(In reply to Dan Dascalescu from comment #2)
> Thanks for pointing me to the dupe for #2.
> 
> #1 and #3 still stand separately though - maybe we can reduce the scope of
> this bug to that?
> 
> 1. Can't drag the comment box handles to enlarge it

Duplicate of bug 68695

> 
> 3. Once the comment is entered, I couldn't show it by hovering with the
> mouse over the little red square in the top right corner of the cell.

Confirm with Version: 6.3.0.0.alpha0+
Build ID: 993913469e74e9db9743004bbe36aa412411671c
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Regression

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


[Libreoffice-bugs] [Bug 121938] Romanian special characters not shown

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121938

raal  changed:

   What|Removed |Added

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

--- Comment #3 from raal  ---
Hello,

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

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


[Libreoffice-bugs] [Bug 121550] Page counter doesn't stop increasing (except after scrolling down to the bottom)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121550

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #9 from raal  ---
381 pages
Version: 6.3.0.0.alpha0+
Build ID: 993913469e74e9db9743004bbe36aa412411671c
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3;

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


[Libreoffice-bugs] [Bug 121623] FILEOPEN RTF The 2 column setting is lost when the first column contains only a table

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121623

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.3.0

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


[Libreoffice-bugs] [Bug 121623] FILEOPEN RTF The 2 column setting is lost when the first column contains only a table

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121623

--- Comment #6 from Commit Notification 
 ---
László Németh committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/92863700cddb70b07e4722551b1f1db78c2474d3%5E%21

tdf#121623 RTF import: keep table in multicolumn section

It will be available in 6.3.0.

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

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

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


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

2018-12-30 Thread Libreoffice Gerrit user
 sw/qa/extras/rtfexport/data/tdf121623.rtf  |  165 +
 sw/qa/extras/rtfexport/rtfexport3.cxx  |6 
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |   16 ++
 writerfilter/source/rtftok/rtfdocumentimpl.hxx |3 
 writerfilter/source/rtftok/rtflookahead.cxx|5 
 writerfilter/source/rtftok/rtflookahead.hxx|2 
 6 files changed, 194 insertions(+), 3 deletions(-)

New commits:
commit 92863700cddb70b07e4722551b1f1db78c2474d3
Author: László Németh 
AuthorDate: Sun Dec 30 02:15:30 2018 +0100
Commit: László Németh 
CommitDate: Sun Dec 30 16:10:29 2018 +0100

tdf#121623 RTF import: keep table in multicolumn section

instead of losing columns when the section starts with that table.

Change-Id: I1c9d4eb03d24e54600956cb41b835c5e37bfdd8b
Reviewed-on: https://gerrit.libreoffice.org/65730
Tested-by: Jenkins
Reviewed-by: László Németh 

diff --git a/sw/qa/extras/rtfexport/data/tdf121623.rtf 
b/sw/qa/extras/rtfexport/data/tdf121623.rtf
new file mode 100644
index ..e331b0bb1415
--- /dev/null
+++ b/sw/qa/extras/rtfexport/data/tdf121623.rtf
@@ -0,0 +1,165 @@
+{\rtf1\ansi\deff4\adeflang1025
+{\fonttbl{\f0\froman\fprq2\fcharset0 Times New 
Roman;}{\f1\froman\fprq2\fcharset2 Symbol;}{\f2\fswiss\fprq2\fcharset0 
Arial;}{\f3\froman\fprq2\fcharset238 Liberation Serif{\*\falt Times New 
Roman};}{\f4\fswiss\fprq0\fcharset238 Arial;}{\f5\froman\fprq2\fcharset238 
Times New Roman;}{\f6\fmodern\fprq1\fcharset238 Liberation Mono{\*\falt Courier 
New};}{\f7\fnil\fprq0\fcharset2 OpenSymbol{\*\falt Arial Unicode 
MS};}{\f8\fnil\fprq2\fcharset238 Microsoft 
YaHei;}{\f9\fmodern\fprq1\fcharset238 NSimSun;}{\f10\fnil\fprq2\fcharset238 
Lucida Sans;}{\f11\fswiss\fprq0\fcharset238 Lucida Sans;}}
+{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red114\green159\blue207;\pagebb\pagebb}
+{\stylesheet{\s0\snext0\ql\ltrpar\widctlpar\hyphpar0\aspalpha\cf0\kerning1\dbch\af12\langfe2052\dbch\af10\afs24\alang1081\loch\f5\hich\af5\fs24\lang1038
 Normal;}
+{\s1\sbasedon20\snext21\ilvl0\outlinelevel0\ql\sb284\sa140\keepn\ltrpar\caps\b0\dbch\af8\dbch\af10\afs36\ab0\loch\f4\fs32
 Heading 1;}
+{\s2\sbasedon20\snext21\ilvl1\outlinelevel1\ql\sb284\sa140\keepn\ltrpar\caps\b0\dbch\af8\dbch\af10\afs32\ab0\loch\f4\fs28
 Heading 2;}
+{\s3\sbasedon20\snext21\ilvl2\outlinelevel2\ql\sb284\sa140\keepn\ltrpar\scaps\b0\dbch\af8\dbch\af10\afs28\ab0\loch\f4\fs28
 Heading 3;}
+{\s4\sbasedon20\snext21\ilvl3\outlinelevel3\ql\sb284\sa140\keepn\ltrpar\i0\b0\dbch\af8\dbch\af10\afs26\ai\ab0\loch\f4\fs28
 Heading 4;}
+{\s5\sbasedon20\snext21\ilvl4\outlinelevel4\ql\sb284\sa140\keepn\ltrpar\scaps\b0\dbch\af8\dbch\af10\afs23\ab0\loch\f4\fs24
 Heading 5;}
+{\s6\sbasedon20\snext21\ilvl5\outlinelevel5\ql\sb284\sa140\keepn\ltrpar\scaps\i0\b0\dbch\af8\dbch\af10\afs23\ai\ab0\loch\f4\fs24
 Heading 6;}
+{\s7\sbasedon20\snext21\ilvl6\outlinelevel6\ql\sb284\sa140\keepn\ltrpar\scaps\b0\dbch\af8\dbch\af10\afs22\ab0\loch\f4\fs24
 Heading 7;}
+{\s8\sbasedon20\snext21\ilvl7\outlinelevel7\ql\sb284\sa140\keepn\ltrpar\scaps\i0\b0\dbch\af8\dbch\af10\afs22\ai\ab0\loch\f4\fs24
 Heading 8;}
+{\s9\sbasedon20\snext21\ilvl8\outlinelevel8\ql\sb284\sa140\keepn\ltrpar\scaps\b0\dbch\af8\dbch\af10\afs21\ab0\loch\f4\fs24
 Heading 9;}
+{\*\cs15\snext15\dbch\af7\dbch\af7\loch\f7 Bullets;}
+{\*\cs16\snext16 Numbering Symbols;}
+{\*\cs17\snext17\i\ai Quotation;}
+{\*\cs18\snext18\b\ab Strong Emphasis;}
+{\*\cs19\snext19\i0\ul\ulc0\ai Emphasis;}
+{\s20\sbasedon0\snext21\ql\sb240\sa120\keepn\ltrpar\dbch\af8\dbch\af10\afs28\loch\f4\fs28
 Heading;}
+{\s21\sbasedon0\snext21\sl276\slmult1\qj\li0\ri0\lin0\rin0\fi0\sb0\sa140\ltrpar\loch\f5\hich\af5
 Text Body;}
+{\s22\sbasedon73\snext22\sl276\slmult1\qj\li0\ri0\lin0\rin0\fi0\sb0\sa140\ltrpar\dbch\af11\loch\f5
 List;}
+{\s23\sbasedon40\snext23\ql\sb120\sa120\noline\ltrpar\i\dbch\af11\afs24\ai\loch\f4\fs24
 Caption;}
+{\s24\sbasedon40\snext24\ql\noline\ltrpar\dbch\af11\loch\f4 Index;}
+{\s25\sbasedon20\snext21\qc\sb0\sa283\keepn\ltrpar\scaps\b0\dbch\af8\dbch\af10\afs56\ab0\loch\f4\fs48
 Title;}
+{\s26\sbasedon20\snext21\qc\sb284\sa140\keepn\ltrpar\scaps\dbch\af8\dbch\af10\afs36\loch\f4\fs36
 Subtitle;}
+{\s27\sbasedon20\snext21\qc\sb284\sa140\keepn\ltrpar\scaps0\caps0\dbch\af8\dbch\af10\afs28\loch\f4\fs36
 Alc\u237\'edm (kisbet\u369\'fbs);}
+{\s28\sbasedon26\snext21\qc\sb0\sa142\keepn\ltrpar\scaps\dbch\af8\dbch\af10\afs36\loch\f4\fs36
 Alc\u237\'edm \u250\'faj oldalon;}
+{\s29\sbasedon20\snext21\ilvl8\outlinelevel8\ql\sb284\sa140\keepn\ltrpar\scaps\b0\dbch\af8\dbch\af10\afs21\ab0\loch\f4\fs24
 Heading 10;}

[Libreoffice-bugs] [Bug 118313] FILESAVE Error when saving odg containing curve

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118313

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #9 from raal  ---
I can not confirm with Version: 6.3.0.0.alpha0+
Build ID: 993913469e74e9db9743004bbe36aa412411671c
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3;

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


[Libreoffice-bugs] [Bug 122378] conditional formatting with formula is VLOOKUP(C14, Region, 1, 0) is VLOOKUP(C14, #NAME?, 1, 0)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122378

Heinrich Padrutt  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |hpadr...@ggaweb.ch
   |desktop.org |
 CC||hpadr...@ggaweb.ch

--- Comment #2 from Heinrich Padrutt  ---
Created attachment 147900
  --> https://bugs.documentfoundation.org/attachment.cgi?id=147900=edit
complete sheet for different month and different payout

This sheet is used for additional payout.
Cell C14 used to change date for any month; Conditional formatting fail when
change
Cell L6 use P57:P59 select region fails when changed; Conditional formatting
fail when change

VLOOKUP(C14,Region,1,0) D14:D44 
after change VLOOKUP(C14,#NAME?,1,0) after change never turns on
ConditionalStype_1


VLOOKUP(C14,Region,1,0) F14:F44 turns on ConditionalStype_2
after change VLOOKUP(C14,#NAME?,1,0) after change does not turn on
ConditionalStype_2

Cell I6 change value does work use P65:P66
Formulas in sheet
B14:B44
=IF(ISNA(VLOOKUP(C14,Region,2,0)),"",VLOOKUP(C14,Region,2,0))

C14:C44 date and Cell +1

D14:F44
Conditional formatting

H14:H44
=IF(OR(WEEKDAY($C14,2)>5,D14>="""a"),$G$57,$H$57)

O14:O44
=SUM($J$13*J14)+($K$13*K14)+($L$13*L14)+($M$13*M14)+($N$13*N14)

Row 49:50  summery of each row

D58
=TEXT(C14," ")

D61
=CONCATENATE(C58,D58)

G57
=IF($I$6="yes",G58,G59)

H57
=IF($I$6="Yes",H58,H59)


Sheet Input list different Regions with different input for December 18 to
December 2019



VBA
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Intersect(Target, Range("$C$14", "$L$6")) Is Nothing Then Exit Sub

Dim cell As Range
'Dim rng As Range
Dim RangeName As String
Dim CellName As String
Dim ChRange As String
ChRange = Range("L6").Value

'Range of Cells Reference (Workbook Input)
If ChRange = "DS" Then
  RangeName = "Region"
  CellName = "B4:C23"
Set cell = Worksheets("Input").Range(CellName)
ThisWorkbook.Names.Add Name:=RangeName, RefersTo:=cell

 Else
If ChRange = "SR" Then
RangeName = "Region"
CellName = "H4:I23"
  Set cell = Worksheets("Input").Range(CellName)
  ThisWorkbook.Names.Add Name:=RangeName, RefersTo:=cell
  Else
If ChRange = "TI" Then
RangeName = "Region"
CellName = "M4:N23"
  Set cell = Worksheets("Input").Range(CellName)
  ThisWorkbook.Names.Add Name:=RangeName, RefersTo:=cell
End If
  End If
End If
' Kopieren Makro
Range("B14:B44").Select
Selection.Copy
Range("D14:D44").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks
_
:=False, Transpose:=False
 Range("G14").Select
 Application.CutCopyMode = False
 ActiveSheet.Name = Range("D61").Value
End Sub

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


[Libreoffice-ux-advise] [Bug 105303] Drop html export wizard

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105303

Heiko Tietze  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|

--- Comment #13 from Heiko Tietze  ---
Not a UX topic actually neither keyword set so removing ux-advice.

-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 105303] Drop html export wizard

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105303

Heiko Tietze  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|

--- Comment #13 from Heiko Tietze  ---
Not a UX topic actually neither keyword set so removing ux-advice.

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


[Libreoffice-bugs] [Bug 60242] TABLE: Split cell default choice

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60242

--- Comment #4 from Heiko Tietze  ---
(In reply to Martin van Zijl from comment #2)
> I've created a patch which lets you select whether to split cells vertically
> by default. 

Looks good from the video. The option is a bit of an overkill but makes people
happy. Feel free to add me as a reviewer for the patch.

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


[Libreoffice-ux-advise] [Bug 60242] TABLE: Split cell default choice

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60242

--- Comment #4 from Heiko Tietze  ---
(In reply to Martin van Zijl from comment #2)
> I've created a patch which lets you select whether to split cells vertically
> by default. 

Looks good from the video. The option is a bit of an overkill but makes people
happy. Feel free to add me as a reviewer for the patch.

-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 122314] Borders in Calc toolbar dropdown icon too light/not dark enough since last update (Colibri)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122314

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |kain...@gmail.com,
   |.freedesktop.org|riz_17_...@yahoo.co.id,
   ||tietze.he...@gmail.com
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #5 from Heiko Tietze  ---
Following Stuart's comment I resolve the ticket. Stephanie, if you don't like
the Colibre icons you can change it per Tools > Options > View: Icon Style back
to Tango or any other.

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


[Libreoffice-ux-advise] [Bug 122314] Borders in Calc toolbar dropdown icon too light/not dark enough since last update (Colibri)

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122314

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |kain...@gmail.com,
   |.freedesktop.org|riz_17_...@yahoo.co.id,
   ||tietze.he...@gmail.com
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #5 from Heiko Tietze  ---
Following Stuart's comment I resolve the ticket. Stephanie, if you don't like
the Colibre icons you can change it per Tools > Options > View: Icon Style back
to Tango or any other.

-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 63327] Allow menus and toolbars in fullscreen mode

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63327

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsDevEval, needsUXEval   |
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|
 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED

--- Comment #6 from Heiko Tietze  ---
Sounds to me like a perfect use case for the Notebookbar. Users who wants full
screen without menu/toolbar take the standard layout all other one of the NB
variants.
Other than that I resolve the issue as WFM. The OS/DE provides means to hide
the taskbar plus maximizing the UI should be enough for distraction free
working. Feel free to reopen but please add a comment in that case.

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


[Libreoffice-bugs] [Bug 103157] [META] Full screen mode bugs and enhancements

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103157
Bug 103157 depends on bug 63327, which changed state.

Bug 63327 Summary: Allow menus and toolbars in fullscreen mode
https://bugs.documentfoundation.org/show_bug.cgi?id=63327

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 63327] Allow menus and toolbars in fullscreen mode

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63327

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsDevEval, needsUXEval   |
 CC|libreoffice-ux-advise@lists |tietze.he...@gmail.com
   |.freedesktop.org|
 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED

--- Comment #6 from Heiko Tietze  ---
Sounds to me like a perfect use case for the Notebookbar. Users who wants full
screen without menu/toolbar take the standard layout all other one of the NB
variants.
Other than that I resolve the issue as WFM. The OS/DE provides means to hide
the taskbar plus maximizing the UI should be enough for distraction free
working. Feel free to reopen but please add a comment in that case.

-- 
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
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 113209] [META] UI bugs and enhancements

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113209
Bug 113209 depends on bug 63327, which changed state.

Bug 63327 Summary: Allow menus and toolbars in fullscreen mode
https://bugs.documentfoundation.org/show_bug.cgi?id=63327

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 121404] Formatted autocorrect not seen in Autocorrection options "With"

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121404

--- Comment #15 from Leandro Martín Drudi  ---
I tried on another PC and the same thing happens. In both Windows 10 1809
(Compilation 17763.195) is installed.

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


[Libreoffice-bugs] [Bug 112689] Replace chained O(U)StringBuffer::append() with operator+

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112689

--- Comment #14 from Commit Notification 
 ---
Çağrı Dolaz committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/+/6f967e3403c6675bbaf2c17dcadf7e640dd719ca%5E%21

tdf#112689: Replace chained O(U)StringBuffer::append() with operator+

It will be available in 6.3.0.

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

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

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


[Libreoffice-bugs] [Bug 112689] Replace chained O(U)StringBuffer::append() with operator+

2018-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112689

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.0.0 target:6.1.0   |target:6.0.0 target:6.1.0
   ||target:6.3.0

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


  1   2   >