[Libreoffice-bugs] [Bug 123919] New: Sorting of user-defined document properties uses US-ASCII ordering (it seems)

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123919

Bug ID: 123919
   Summary: Sorting of user-defined document properties uses
US-ASCII ordering (it seems)
   Product: LibreOffice
   Version: 6.0.7.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ulrich.wi...@rz.uni-regensburg.de

Individual entries in the user-defined document properties appear to be sorted
incorrectly (I suspect in US-ASCII order).
For Example: 'Ä' follows 'Z'.

See also enhancement request in Bug 123918.

-- 
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 123918] New: Allow user-defined ordering of user-defined document properties

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123918

Bug ID: 123918
   Summary: Allow user-defined ordering of user-defined document
properties
   Product: LibreOffice
   Version: 6.0.7.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ulrich.wi...@rz.uni-regensburg.de

User-defined document properties are displayed in the order being entered while
the dialog is open. However when being reopened, the entries are sorted
(incorrectly) by field name: The sorting seems to use US-ASCII ordering, so
that 'Ä' (as in "Änderer") follows 'Z' (as in "Zeitpunkt"), for example.
Therefore a user-defined ordering of user-defined properties is asked for.
That could be a two-step process:
1) Keep the properties in the order they are entered.
2) Provide means to rearrange the property order (e.g. by dragging the lines to
the required position
3) Allow usual sorting button (ascending, descending) with a _correct_ sorting
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] core.git: vcl/inc vcl/source vcl/uiconfig

2019-03-06 Thread Libreoffice Gerrit user
 vcl/inc/widgetdraw/WidgetDefinition.hxx   |6 +
 vcl/source/gdi/FileDefinitionWidgetDraw.cxx   |   97 --
 vcl/source/gdi/WidgetDefinitionReader.cxx |   30 
 vcl/uiconfig/theme_definitions/definition.xml |   10 +-
 4 files changed, 104 insertions(+), 39 deletions(-)

New commits:
commit 723ad50fff71858d96ff31b0a9ceeba556ff675c
Author: Tomaž Vajngerl 
AuthorDate: Mon Mar 4 10:05:36 2019 +0100
Commit: Tomaž Vajngerl 
CommitDate: Thu Mar 7 08:35:05 2019 +0100

Add width, height and margin parameters for widget part def.

For some control parts we need to provide the size or redefine
the size. Previously this was hardcoded, but this adds new
attriburtes for widget part definition:
- width, height: defines size for buttons in spinbox, the size of
  the checkbox or radiobutton
- margin-width, margin-height: increases the size (margin) of
  tab items by the specified amount

Change-Id: Ieea69b92ad21adc4f4954e7555f4d59348f5dea8
Reviewed-on: https://gerrit.libreoffice.org/68829
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/inc/widgetdraw/WidgetDefinition.hxx 
b/vcl/inc/widgetdraw/WidgetDefinition.hxx
index 0ee545122ea9..c183edd9e315 100644
--- a/vcl/inc/widgetdraw/WidgetDefinition.hxx
+++ b/vcl/inc/widgetdraw/WidgetDefinition.hxx
@@ -196,6 +196,12 @@ public:
 class VCL_DLLPUBLIC WidgetDefinitionPart
 {
 public:
+sal_Int32 mnWidth;
+sal_Int32 mnHeight;
+sal_Int32 mnMarginWidth;
+sal_Int32 mnMarginHeight;
+OString msOrientation;
+
 std::vector>
 getStates(ControlType eType, ControlState eState, ImplControlValue const& 
rValue);
 
diff --git a/vcl/source/gdi/FileDefinitionWidgetDraw.cxx 
b/vcl/source/gdi/FileDefinitionWidgetDraw.cxx
index 17cf7b91615c..bbb32a7acec9 100644
--- a/vcl/source/gdi/FileDefinitionWidgetDraw.cxx
+++ b/vcl/source/gdi/FileDefinitionWidgetDraw.cxx
@@ -113,7 +113,6 @@ bool 
FileDefinitionWidgetDraw::isNativeControlSupported(ControlType eType, Contr
 return false;
 case ControlType::WindowBackground:
 case ControlType::Frame:
-return true;
 case ControlType::ListNode:
 case ControlType::ListNet:
 case ControlType::ListHeader:
@@ -571,40 +570,52 @@ bool FileDefinitionWidgetDraw::getNativeControlRegion(
 {
 case ControlType::Spinbox:
 {
-Size aButtonSize(44, 26);
+auto const& pButtonUpPart
+= m_aWidgetDefinition.getDefinition(eType, 
ControlPart::ButtonUp);
+if (!pButtonUpPart)
+return false;
+Size aButtonSizeUp(pButtonUpPart->mnWidth, 
pButtonUpPart->mnHeight);
+
+auto const& pButtonDownPart
+= m_aWidgetDefinition.getDefinition(eType, 
ControlPart::ButtonDown);
+if (!pButtonDownPart)
+return false;
+Size aButtonSizeDown(pButtonDownPart->mnWidth, 
pButtonDownPart->mnHeight);
+
 OString sOrientation = "decrease-edit-increase";
 
 if (sOrientation == "decrease-edit-increase")
 {
 if (ePart == ControlPart::ButtonUp)
 {
-rNativeContentRegion
-= tools::Rectangle(Point(aLocation.X() + 
rBoundingControlRegion.GetWidth()
- - aButtonSize.Width(),
- aLocation.Y()),
-   aButtonSize);
+Point aPoint(aLocation.X() + 
rBoundingControlRegion.GetWidth()
+ - aButtonSizeUp.Width(),
+ aLocation.Y());
+rNativeContentRegion = tools::Rectangle(aPoint, 
aButtonSizeUp);
 rNativeBoundingRegion = rNativeContentRegion;
 return true;
 }
 else if (ePart == ControlPart::ButtonDown)
 {
-rNativeContentRegion = tools::Rectangle(aLocation, 
aButtonSize);
+rNativeContentRegion = tools::Rectangle(aLocation, 
aButtonSizeDown);
 rNativeBoundingRegion = rNativeContentRegion;
 return true;
 }
 else if (ePart == ControlPart::SubEdit)
 {
-Point aPoint(aLocation.X() + aButtonSize.getWidth(), 
aLocation.Y());
-Size aSize(rBoundingControlRegion.GetWidth() - (2 * 
aButtonSize.Width()),
-   aButtonSize.Height());
+Point aPoint(aLocation.X() + aButtonSizeDown.Width(), 
aLocation.Y());
+Size aSize(rBoundingControlRegion.GetWidth()
+   - (aButtonSizeDown.Width() + 
aButtonSizeUp.Width()),
+   std::max(aButtonSizeUp.Height(), 

[Libreoffice-commits] core.git: 2 commits - svgio/qa vcl/source vcl/uiconfig

2019-03-06 Thread Libreoffice Gerrit user
 svgio/qa/cppunit/SvgRead.cxx  |   65 ++---
 svgio/qa/cppunit/data/path.svg|3 
 vcl/source/gdi/WidgetDefinitionReader.cxx |   25 +++--
 vcl/uiconfig/theme_definitions/definition.xml |  129 ++
 4 files changed, 141 insertions(+), 81 deletions(-)

New commits:
commit 0b25b7a8b29468c0b83a1114da4640625f60a06d
Author: Tomaž Vajngerl 
AuthorDate: Sun Mar 3 21:32:43 2019 +0100
Commit: Tomaž Vajngerl 
CommitDate: Thu Mar 7 08:34:31 2019 +0100

Make definition state attribute default to "any"

...and remove all the "any" from definition.xml

Change-Id: I8a91129c89255c83c1c2f975bf9acb710b664efc
Reviewed-on: https://gerrit.libreoffice.org/68828
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/source/gdi/WidgetDefinitionReader.cxx 
b/vcl/source/gdi/WidgetDefinitionReader.cxx
index 8a7270e718f1..52f15823cf02 100644
--- a/vcl/source/gdi/WidgetDefinitionReader.cxx
+++ b/vcl/source/gdi/WidgetDefinitionReader.cxx
@@ -55,6 +55,13 @@ bool readColor(OString const& rString, Color& rColor)
 return true;
 }
 
+OString getValueOrAny(OString const& rInputString)
+{
+if (rInputString.isEmpty())
+return "any";
+return rInputString;
+}
+
 ControlPart xmlStringToControlPart(OString const& sPart)
 {
 if (sPart.equalsIgnoreAsciiCase("NONE"))
@@ -308,16 +315,14 @@ void WidgetDefinitionReader::readPart(tools::XmlWalker& 
rWalker,
 {
 if (rWalker.name() == "state")
 {
-OString sEnabled = rWalker.attribute("enabled");
-OString sFocused = rWalker.attribute("focused");
-OString sPressed = rWalker.attribute("pressed");
-OString sRollover = rWalker.attribute("rollover");
-OString sDefault = rWalker.attribute("default");
-OString sSelected = rWalker.attribute("selected");
-OString sButtonValue = rWalker.attribute("button-value");
-OString sExtra = rWalker.attribute("extra");
-if (sExtra.isEmpty())
-sExtra = "any";
+OString sEnabled = getValueOrAny(rWalker.attribute("enabled"));
+OString sFocused = getValueOrAny(rWalker.attribute("focused"));
+OString sPressed = getValueOrAny(rWalker.attribute("pressed"));
+OString sRollover = getValueOrAny(rWalker.attribute("rollover"));
+OString sDefault = getValueOrAny(rWalker.attribute("default"));
+OString sSelected = getValueOrAny(rWalker.attribute("selected"));
+OString sButtonValue = 
getValueOrAny(rWalker.attribute("button-value"));
+OString sExtra = getValueOrAny(rWalker.attribute("extra"));
 
 std::shared_ptr pState = 
std::make_shared(
 sEnabled, sFocused, sPressed, sRollover, sDefault, sSelected, 
sButtonValue, sExtra);
diff --git a/vcl/uiconfig/theme_definitions/definition.xml 
b/vcl/uiconfig/theme_definitions/definition.xml
index d12161d6081c..6b5f85fd9bb8 100644
--- a/vcl/uiconfig/theme_definitions/definition.xml
+++ b/vcl/uiconfig/theme_definitions/definition.xml
@@ -54,12 +54,23 @@
 
 
 
+
+
 
 
-
+
 
 
-
+
 
 
 
@@ -67,22 +78,22 @@
 
 
 
-   
+   
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
 
@@ -90,22 +101,22 @@
 
 
 
-   
+   
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
-
+
 
 
 
@@ -113,22 +124,22 @@
 
 
 
-
+
 
 
 
 
-
+
 
 
 
-
+
 
 
 
 
 
-
+
 
 
 
@@ -137,7 +148,7 @@
 
 
 
-
+
 
 
 
@@ -146,28 +157,28 @@
 
 
 
-
+
 
 
 
 
-
+
 
 
 
 
-
+
 
 
 
 
-
+
 
 
 
 
 

[Libreoffice-bugs] [Bug 123917] New: Wrong chapter in header's Chapter field when a page starts with a section's endnotes

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123917

Bug ID: 123917
   Summary: Wrong chapter in header's Chapter field when a page
starts with a section's endnotes
   Product: LibreOffice
   Version: 6.2.1.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Created attachment 149780
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149780=edit
A sample with endnotes at the section's end and wrong chapter field

When a chapter is enclosed into a section, *and* the section has endnotes
collected at the end of that section, *and* the endnotes flow to a new page,
*and* that new page has a header with Chapter field in it, then the Chapter
field on that page which is started with a section's endnotes shows wrong
chapter information.

Steps to reproduce:

1. Create a new text document.
2. Add a header to the used page style (i.e., "Default Style" in pristine
configuration).
3. Add Chapter field to the header, displaying Chapter Name of level 1.
4. In the page body, type "FirstHeading" and apply Heading 1 paragraph style.
5. Add some chapter text.
6. Add a new paragraph with text "SecondHeading" and Heading 1 style.
7. Add second chapter text enough to see that it flows to a next page, and it's
clear that the next page's header shows "SecondHeading" in the Chapter field.
8. Select "SecondHeading" and the following chapter, and add a section; in the
section properties, make sure to collect endnotes at the end of section.
9. Add some endnotes to the second chapter text (now in section), so that
endnotes (also in that section) start to flow to a new page.

Expected: the new page starting with the rest of second chapter's endnotes
should have "SecondHeading" in the header.

Actual: that page has "FirstHeading" in the header.

See: https://ask.libreoffice.org/en/question/182657

-- 
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 123916] New: Cannot switch between property windows

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123916

Bug ID: 123916
   Summary: Cannot switch between property windows
   Product: LibreOffice
   Version: 6.0.7.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ulrich.wi...@rz.uni-regensburg.de

It is possible to open more than one Writer document, and it is possible to
open the document properties for each. But it's not possible to switch between
those property windows using Alt+Tab in Windows.
That is: You can switch the Document Window, but the property window does not
change. Happens in Windows (10) and Linux.

-- 
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 123915] Font on tabs not following GNOME font settings OR DPI settings

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123915

Evert  changed:

   What|Removed |Added

 OS|All |Linux (All)

-- 
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 123915] New: Font on tabs not following GNOME font settings OR DPI settings

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123915

Bug ID: 123915
   Summary: Font on tabs not following GNOME font settings OR DPI
settings
   Product: LibreOffice
   Version: 6.2.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: evors...@gmail.com

Created attachment 149779
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149779=edit
Snapshot of the offending tabs

I use Arch Linux, Libreoffice is at version 6.2.0.3
KDE is my desktop of choice. 

The system is used for photography and has a 4K monitor. Applying simple
scaling in KDE is out of the question, as graphics are scaled as well, which
loses the whole point of having a 4K monitor. 

The most workable solution I have found so far is to set a minimum font size of
10, (Liberation serif), and force DPI to 144.

In System Settings -> Application Style -> GNOME/GTK Application style I have
the same font & size selected. 

All other GTK applications respect these settings, and render the fonts
properly.

The menu font in Libreoffice also respects these settings, however the font in
the tabs of Calc does not.

I can still read this, barely, but it is a pain.

There is a screenshot attached to this bug to illustrate the issue.

-- 
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/sifr icon-themes/sifr_dark icon-themes/sifr_svg

2019-03-06 Thread Libreoffice Gerrit user
 icon-themes/sifr/cmd/sc_chainframes.png |binary
 icon-themes/sifr/cmd/sc_closemasterpage.png |binary
 icon-themes/sifr/cmd/sc_dbaddrelation.png   |binary
 icon-themes/sifr/cmd/sc_dbdelete.png|binary
 icon-themes/sifr/cmd/sc_dbeditsqlview.png   |binary
 icon-themes/sifr/cmd/sc_dbformedit.png  |binary
 icon-themes/sifr/cmd/sc_dbnewfolder.png |binary
 icon-themes/sifr/cmd/sc_dbnewform.png   |binary
 icon-themes/sifr/cmd/sc_dbnewformautopilot.png  |binary
 icon-themes/sifr/cmd/sc_dbnewquery.png  |binary
 icon-themes/sifr/cmd/sc_dbnewreport.png |binary
 icon-themes/sifr/cmd/sc_dbnewreportautopilot.png|binary
 icon-themes/sifr/cmd/sc_dbrename.png|binary
 icon-themes/sifr/cmd/sc_dbreportedit.png|binary
 icon-themes/sifr/cmd/sc_definename.png  |binary
 icon-themes/sifr/cmd/sc_deletemasterpage.png|binary
 icon-themes/sifr/cmd/sc_dia.png |binary
 icon-themes/sifr/cmd/sc_diaauto.png |binary
 icon-themes/sifr/cmd/sc_diaeffect.png   |binary
 icon-themes/sifr/cmd/sc_diagramarea.png |binary
 icon-themes/sifr/cmd/sc_diagramaxisxyz.png  |binary
 icon-themes/sifr/cmd/sc_diagramaxisz.png|binary
 icon-themes/sifr/cmd/sc_diaspeed.png|binary
 icon-themes/sifr/cmd/sc_diatime.png |binary
 icon-themes/sifr/cmd/sc_displaymasterobjects.png|binary
 icon-themes/sifr/cmd/sc_displaymode.png |binary
 icon-themes/sifr/cmd/sc_dsbformletter.png   |binary
 icon-themes/sifr/cmd/sc_duplicatepage.png   |binary
 icon-themes/sifr/cmd/sc_executereport.png   |binary
 icon-themes/sifr/cmd/sc_formatline.png  |binary
 icon-themes/sifr/cmd/sc_formdesigntools.png |binary
 icon-themes/sifr/cmd/sc_formelcursor.png|binary
 icon-themes/sifr/cmd/sc_formproperties.png  |binary
 icon-themes/sifr/cmd/sc_grafblue.png|binary
 icon-themes/sifr/cmd/sc_grafcontrast.png|binary
 icon-themes/sifr/cmd/sc_grafgreen.png   |binary
 icon-themes/sifr/cmd/sc_grafluminance.png   |binary
 icon-themes/sifr/cmd/sc_grafred.png |binary
 icon-themes/sifr/cmd/sc_graftransparence.png|binary
 icon-themes/sifr/cmd/sc_hideslide.png   |binary
 icon-themes/sifr/cmd/sc_insertcaptiondialog.png |binary
 icon-themes/sifr/cmd/sc_insertmasterpage.png|binary
 icon-themes/sifr/cmd/sc_insertsound.png |binary
 icon-themes/sifr/cmd/sc_insertvideo.png |binary
 icon-themes/sifr/cmd/sc_masterlayouts.png   |binary
 icon-themes/sifr/cmd/sc_masterpage.png  |binary
 icon-themes/sifr/cmd/sc_mirrorhorz.png  |binary
 icon-themes/sifr/cmd/sc_modifyframe.png |binary
 icon-themes/sifr/cmd/sc_name.png|binary
 icon-themes/sifr/cmd/sc_namegroup.png   |binary
 icon-themes/sifr/cmd/sc_objectbackone.png   |binary
 icon-themes/sifr/cmd/sc_objectforwardone.png|binary
 icon-themes/sifr/cmd/sc_objectposition.png  |binary
 icon-themes/sifr/cmd/sc_objecttitledescription.png  |binary
 icon-themes/sifr/cmd/sc_pushbutton.png  |binary
 icon-themes/sifr/cmd/sc_renameobject.png|binary
 icon-themes/sifr/cmd/sc_renamepage.png  |binary
 icon-themes/sifr/cmd/sc_renameslide.png |binary
 icon-themes/sifr/cmd/sc_replycomment.png|binary
 icon-themes/sifr/cmd/sc_ruler.png   |binary
 icon-themes/sifr/cmd/sc_showslide.png   |binary
 icon-themes/sifr/cmd/sc_slidemasterpage.png |binary
 icon-themes/sifr/cmd/sc_togglelegend.png|binary
 icon-themes/sifr/cmd/sc_transformdialog.png |binary
 icon-themes/sifr/cmd/sc_unhainframes.png|binary
 icon-themes/sifr/cmd/sc_viewformasgrid.png  |binary
 icon-themes/sifr/cmd/sc_wordcountdialog.png |binary
 icon-themes/sifr_dark/cmd/sc_chainframes.png|binary
 icon-themes/sifr_dark/cmd/sc_closemasterpage.png|binary
 icon-themes/sifr_dark/cmd/sc_dbaddrelation.png  |binary
 icon-themes/sifr_dark/cmd/sc_dbdelete.png   |binary
 icon-themes/sifr_dark/cmd/sc_dbeditsqlview.png  |binary
 icon-themes/sifr_dark/cmd/sc_dbformedit.png |binary
 icon-themes/sifr_dark/cmd/sc_dbnewfolder.png|binary
 icon-themes/sifr_dark/cmd/sc_dbnewform.png  |binary
 icon-themes/sifr_dark/cmd/sc_dbnewformautopilot.png |binary
 icon-themes/sifr_dark/cmd/sc_dbnewquery.png 

[Libreoffice-bugs] [Bug 123902] This spreadsheet with formulas using cells containing =NA() are treating them as 0's

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123902

--- Comment #3 from alicetaylor  ---
I was working and suddenly I visits your site frequently and recommended it to
me to read also. The writing style is superior and the content is relevant.
Thanks for the insight you provide the readers!

https://kissmanga.biz

-- 
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 123903] FILESAVE DOCX dashed and dotted line styles not saved in DOCX

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123903

--- Comment #2 from alicetaylor  ---
Great post,Thanks for providing us this great knowledge,Keep it up.

http://run3.run

-- 
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 123896] Dummy FIle menu

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123896

--- Comment #2 from alicetaylor  ---
I understand what you bring it very meaningful and useful, thanks
http://basketballlegends.games

-- 
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 123897] Last modification in toolbar?

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123897

--- Comment #1 from alicetaylor  ---
Thank you for such a sweet tutorial - all this time later, I've found it and
love the end result. I appreciate the time you spent sharing your skills.
http://strikeforceheroes3.games

-- 
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 123894] Close button should not be visible

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123894

--- Comment #1 from alicetaylor  ---
Thanks for sharing this valuable information to our vision. You have posted a
trust worthy blog keep sharing.
http://outlookentrarno.net

-- 
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 123892] Duplicated entries in Get_Export_Formats_Resp

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123892

--- Comment #1 from alicetaylor  ---
Very interesting! Thanks you 

http://supersmashflash2s.com

-- 
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 123893] TypeError: document.getElementById(...) is null in branding.js

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123893

--- Comment #1 from alicetaylor  ---
You’ve written nice post, I am gonna bookmark this page, thanks for info. I
actually appreciate your own position and I will be sure to come back here.
http://fleeingthecomplex.co

-- 
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 123891] Keyboard QWERTY - bad characters in LibreOffice aplications

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123891

--- Comment #1 from alicetaylor  ---
I am very happy to read this. Appreciate your sharing
http://catmario.games

-- 
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 123890] Error in inserting hyperlink when selected text starts with a slash

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123890

--- Comment #2 from alicetaylor  ---
great article, I was very impressed about it, wish you would have stayed next
share
http://mutilateadoll2game.com

-- 
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 34355] Option to show track changes in margin is missing

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34355

--- Comment #53 from alicetaylor  ---
Thank you for that information you article
http://geometry-dash.net

-- 
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 34355] Option to show track changes in margin is missing

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=34355

--- Comment #53 from alicetaylor  ---
Thank you for that information you article
http://geometry-dash.net

-- 
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: compilerplugins/clang

2019-03-06 Thread Libreoffice Gerrit user
 compilerplugins/clang/typedefparam.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 01381db5c177eb5a1c81b9e61a5b6e00d242f114
Author: Andrea Gelmini 
AuthorDate: Wed Mar 6 09:38:22 2019 +
Commit: Julien Nabet 
CommitDate: Thu Mar 7 07:17:23 2019 +0100

Fix typo

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

diff --git a/compilerplugins/clang/typedefparam.cxx 
b/compilerplugins/clang/typedefparam.cxx
index 8c96aa62576e..e4ed07da4e13 100644
--- a/compilerplugins/clang/typedefparam.cxx
+++ b/compilerplugins/clang/typedefparam.cxx
@@ -232,7 +232,7 @@ static bool areTypesEqual(QualType lhs, QualType rhs)
 auto rhsTypedef = dyn_cast(rhsType);
 if (!rhsTypedef)
 return false;
-// comparing the underlying Decl's here doesn't work, they are not 
uniqued
+// comparing the underlying Decl's here doesn't work, they are not 
unique
 if (lhsTypedef->getDecl()->getName() != 
rhsTypedef->getDecl()->getName())
 return false;
 return areTypesEqual(lhsTypedef->desugar(), rhsTypedef->desugar());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: avmedia/source basctl/source basic/source chart2/source connectivity/Library_dbpool2.mk connectivity/source cui/source dbaccess/source desktop/source editeng/source ext

2019-03-06 Thread Libreoffice Gerrit user
 avmedia/source/framework/mediaitem.cxx|6 
 basctl/source/basicide/scriptdocument.cxx |5 
 basic/source/classes/sbxmod.cxx   |4 
 basic/source/runtime/runtime.cxx  |4 
 chart2/source/tools/ErrorBar.cxx  |9 
 connectivity/Library_dbpool2.mk   |1 
 connectivity/source/commontools/parameters.cxx|   21 -
 connectivity/source/cpool/ZPoolCollection.cxx |4 
 connectivity/source/drivers/file/FDatabaseMetaData.cxx|4 
 cui/source/customize/CommandCategoryListBox.cxx   |6 
 cui/source/customize/cfg.cxx  |   46 --
 cui/source/dialogs/scriptdlg.cxx  |   21 -
 cui/source/options/optjava.cxx|6 
 cui/source/options/optlingu.cxx   |4 
 cui/source/options/optpath.cxx|5 
 cui/source/options/optsave.cxx|6 
 cui/source/options/optupdt.cxx|9 
 cui/source/options/treeopt.cxx|   25 -
 dbaccess/source/core/api/RowSet.cxx   |5 
 dbaccess/source/core/dataaccess/databasedocument.cxx  |5 
 dbaccess/source/core/dataaccess/datasource.cxx|3 
 dbaccess/source/ui/misc/UITools.cxx   |5 
 desktop/source/app/app.cxx|7 
 desktop/source/app/check_ext_deps.cxx |6 
 desktop/source/deployment/gui/dp_gui_dialog2.cxx  |   11 
 desktop/source/deployment/gui/dp_gui_theextmgr.cxx|6 
 desktop/source/deployment/manager/dp_manager.cxx  |   16 
 desktop/source/deployment/registry/package/dp_package.cxx |2 
 desktop/source/lib/init.cxx   |4 
 desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx|6 
 editeng/source/xml/xmltxtexp.cxx  |6 
 extensions/CppunitTest_extensions_test_update.mk  |1 
 extensions/Library_updchk.mk  |1 
 extensions/source/bibliography/datman.cxx |5 
 extensions/source/dbpilots/listcombowizard.cxx|4 
 extensions/source/propctrlr/eformspropertyhandler.cxx |4 
 extensions/source/update/check/updatecheck.cxx|   11 
 extensions/source/update/check/updatecheckjob.cxx |   11 
 extensions/source/update/feed/test/updatefeedtest.cxx |4 
 filter/Library_icg.mk |3 
 filter/source/graphicfilter/icgm/cgm.cxx  |6 
 filter/source/odfflatxml/OdfFlatXml.cxx   |6 
 filter/source/xsltfilter/XSLTFilter.cxx   |6 
 forms/source/component/ListBox.cxx|3 
 forms/source/misc/InterfaceContainer.cxx  |3 
 formula/source/ui/dlg/formula.cxx |   10 
 include/o3tl/deleter.hxx  |4 
 include/toolkit/helper/macros.hxx |   15 
 io/Library_io.mk  |1 
 io/source/stm/opump.cxx   |   27 -
 javaunohelper/Library_juhx.mk |1 
 javaunohelper/source/bootstrap.cxx|7 
 linguistic/source/convdiclist.cxx |4 
 linguistic/source/gciterator.cxx  |   11 
 oox/source/drawingml/textfield.cxx|4 
 oox/source/drawingml/textrun.cxx  |4 
 oox/source/ole/axcontrol.cxx  |   11 
 oox/source/vml/vmldrawing.cxx |5 
 sax/Library_expwrap.mk|1 
 sax/source/fastparser/fastparser.cxx  |4 
 sc/source/core/data/dpsave.cxx|7 
 sc/source/filter/oox/excelfilter.cxx  |6 
 sc/source/filter/oox/pivotcachebuffer.cxx |   11 
 sc/source/filter/xml/xmlwrap.cxx  |   22 -
 sc/source/ui/Accessibility/DrawModelBroadcaster.cxx   |6 
 sd/source/core/stlsheet.cxx   |6 
 sd/source/filter/xml/sdxmlwrp.cxx |   25 -
 sd/source/helper/simplereferencecomponent.cxx |6 
 sd/source/ui/accessibility/AccessiblePageShape.cxx|4 
 sd/source/ui/dlg/PhotoAlbumDialog.cxx |   36 +
 sd/source/ui/framework/module/ModuleController.cxx|3 
 sd/source/ui/tools/ConfigurationAccess.cxx|5 
 sd/source/ui/unoidl/DrawController.cxx|6 
 sd/source/ui/unoidl/unomodel.cxx  |6 
 

[Libreoffice-bugs] [Bug 121011] FORMATTING: Make font size field in styles dialogs toggleable between percentage and pt

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121011

--- Comment #12 from Luke  ---
(In reply to Heiko Tietze from comment #11)
> (In reply to Luke from comment #10)
The UI changes are zero

Then you run into a discoverability issue. If the UI looks identical, how will
people know to look for it? 

> actually -x because some T>O settings are obsolete.

If we used sane defaults for typeface units, this would be a rarely used
feature. Neatly tucked away in T>O is exactly where it belongs.

-- 
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 123914] New: LibreWriter - heading numbers replaced by bullet points when printing selection which ends in bullets

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123914

Bug ID: 123914
   Summary: LibreWriter - heading numbers replaced by bullet
points when printing selection which ends in bullets
   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: bringtheg...@gmail.com

Description:
On the screen, my document showed numbered chapter and section headings (eg.1,
1.1, 1.2, 1.1.1 etc). When printing a selection either to a printer (hard copy)
or pdf, the heading numbers disappear and are replaced by bullet points. In
addition every paragraph now has a bullet attached to it. Just repeating, this
does not show on the screen, only on print out. FYI, the bullet points are of
various sizes reflecting the heading level (eg. level 1 bigger than level 2
etc).

This bug occurs when printing a selection of text that ends / includes a
bulleted list.

Steps to Reproduce:
1. Highlight text that includes section headings and ends and includes a bullet
list
2. Print 'selection' 
3. Print out removes section headings and replaces with bullets

Actual Results:
On print out (not screen), the heading numbers disappear and are replaced by
bullet points. In addition every printed paragraph has a bullet attached to it.
Just repeating, this does not show on the screen, only on print out. FYI, the
bullet points are of various sizes reflecting the heading level (eg. level 1
bigger than level 2 etc).

Expected Results:
Print out should include heading numbers not bullets


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: 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

[Libreoffice-bugs] [Bug 123913] New: Junicode font does not retain "Bold" setting in styles settings

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123913

Bug ID: 123913
   Summary: Junicode font does not retain "Bold" setting in styles
settings
   Product: LibreOffice
   Version: 6.1.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: libreoff...@jessesteele.net

Description:
I created a new style and set "Junicode" as the font, then set the font style
to "Bold". Everything works great in the file and in global formatting, but
when I save, close, then re-open the file, "Junicode" is set to "Regular"
throughout the document, its "Bold" setting in the styles is set to "Regular",
and I must change the setting back to "Bold" in the styles settings (RC >
Modify...) for it to render correctly again.

Steps to Reproduce:
1. Set "Junicode" with "Bold" as the font for a new "style" in the "Font" tab
2. Type some text set as this new style, save the file.
3. Re-open the file, note the font is no longer bold.
4. Repeat 1-3 in the same file to set it back to "Bold", note the problem
repeats.

Actual Results:
Junicode font as a style is not Bold after set, closed, and reopened.

Expected Results:
Junicode font as a style should remain Bold after set, closed, and reopened.


Reproducible: Always


User Profile Reset: No



Additional Info:
I have no other bugs with this version of Writer. Here is an example file at
GitHub:

https://github.com/JesseSteele/pdf-bug/raw/master/Paperback.doc

-- 
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 120829] Lockfiles can be overridden

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120829

Mike Kaganski  changed:

   What|Removed |Added

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

-- 
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 120829] Lockfiles can be overridden

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120829

Mike Kaganski  changed:

   What|Removed |Added

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

-- 
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 91764] RTL: Arabic diacritics cant be found using search dialog

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91764

--- Comment #17 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 92605] Format for editing Time does not match the format assigned to a cell.

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92605

--- Comment #13 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 116200] Empty entry (space) is shown as suggested correction in context menu for double space

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116200

--- Comment #3 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 106227] shouldn't be possible to break the comment thread

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106227

--- Comment #4 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 115692] Input list field not imported as actual field from DOC(X)

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115692

--- Comment #4 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 106149] comments/annotations doesn't support list items

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106149

--- Comment #5 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 114765] The "Navigator" selection in Find bar does not fit in (insufficient space) the localized interface with Source Han Sans/Noto Sans CJK as the UI font

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114765

--- 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 106152] moving view cursor over a comment anchor position is faulty

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106152

--- Comment #4 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 123845] Translation of "Grand" to "Eintausend" in german translation (sc/messages.po) is wrong.

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123845

--- Comment #4 from Adolfo Jayme  ---
This is the problem with composite strings [1]; a better fix would involve
providing a string that is a full sentence, or that includes a placeholder
(e.g. $1).

This was introduced in commit e8d370e84af5dc9b8817cbf5aa66e50db150a0c6

[1]: https://rimas.kudelis.lt/2010/06/14/software-that-is-actually-localizable/

-- 
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] online.git: loleaflet/node_shrinkwrap loleaflet/npm-shrinkwrap.json.in loleaflet/package.json

2019-03-06 Thread Libreoffice Gerrit user
 dev/null |binary
 loleaflet/node_shrinkwrap/JSONStream-1.3.5.tgz   |binary
 loleaflet/node_shrinkwrap/acorn-5.7.3.tgz|binary
 loleaflet/node_shrinkwrap/acorn-5.7.3.tgz.1  |binary
 loleaflet/node_shrinkwrap/acorn-6.1.1.tgz|binary
 loleaflet/node_shrinkwrap/acorn-dynamic-import-4.0.0.tgz |binary
 loleaflet/node_shrinkwrap/acorn-node-1.6.2.tgz   |binary
 loleaflet/node_shrinkwrap/acorn-walk-6.1.1.tgz   |binary
 loleaflet/node_shrinkwrap/browser-resolve-1.11.3.tgz |binary
 loleaflet/node_shrinkwrap/browserify-des-1.0.2.tgz   |binary
 loleaflet/node_shrinkwrap/buffer-from-1.1.1.tgz  |binary
 loleaflet/node_shrinkwrap/cached-path-relative-1.0.2.tgz |binary
 loleaflet/node_shrinkwrap/cross-spawn-4.0.2.tgz  |binary
 loleaflet/node_shrinkwrap/dash-ast-1.0.0.tgz |binary
 loleaflet/node_shrinkwrap/duplexify-3.7.1.tgz|binary
 loleaflet/node_shrinkwrap/elliptic-6.4.1.tgz |binary
 loleaflet/node_shrinkwrap/end-of-stream-1.4.1.tgz|binary
 loleaflet/node_shrinkwrap/es5-ext-0.10.48.tgz|binary
 loleaflet/node_shrinkwrap/esprima-4.0.1.tgz  |binary
 loleaflet/node_shrinkwrap/execa-0.5.0.tgz|binary
 loleaflet/node_shrinkwrap/flat-cache-1.3.4.tgz   |binary
 loleaflet/node_shrinkwrap/generate-function-2.3.1.tgz|binary
 loleaflet/node_shrinkwrap/get-assigned-identifiers-1.2.0.tgz |binary
 loleaflet/node_shrinkwrap/get-stream-2.3.1.tgz   |binary
 loleaflet/node_shrinkwrap/glob-7.1.3.tgz |binary
 loleaflet/node_shrinkwrap/glob-7.1.3.tgz.1   |binary
 loleaflet/node_shrinkwrap/graceful-fs-4.1.15.tgz |binary
 loleaflet/node_shrinkwrap/gunzip-maybe-1.3.1.tgz |binary
 loleaflet/node_shrinkwrap/hammerjs-2.0.8.tgz |binary
 loleaflet/node_shrinkwrap/has-1.0.3.tgz  |binary
 loleaflet/node_shrinkwrap/hash.js-1.1.7.tgz  |binary
 loleaflet/node_shrinkwrap/homedir-polyfill-1.0.3.tgz |binary
 loleaflet/node_shrinkwrap/ieee754-1.1.12.tgz |binary
 loleaflet/node_shrinkwrap/ignore-3.3.10.tgz  |binary
 loleaflet/node_shrinkwrap/insert-module-globals-7.2.0.tgz|binary
 loleaflet/node_shrinkwrap/is-deflate-1.0.0.tgz   |binary
 loleaflet/node_shrinkwrap/is-gzip-1.0.0.tgz  |binary
 loleaflet/node_shrinkwrap/is-my-json-valid-2.19.0.tgz|binary
 loleaflet/node_shrinkwrap/is-stream-1.1.0.tgz|binary
 loleaflet/node_shrinkwrap/isarray-0.0.1.tgz.1|binary
 loleaflet/node_shrinkwrap/jquery-2.0.40.tgz  |binary
 loleaflet/node_shrinkwrap/js-yaml-3.12.2.tgz |binary
 loleaflet/node_shrinkwrap/lodash-4.17.11.tgz |binary
 loleaflet/node_shrinkwrap/lodash-4.17.11.tgz.1   |binary
 loleaflet/node_shrinkwrap/lodash-4.17.11.tgz.2   |binary
 loleaflet/node_shrinkwrap/lodash.assign-4.2.0.tgz|binary
 loleaflet/node_shrinkwrap/lru-cache-4.1.5.tgz|binary
 loleaflet/node_shrinkwrap/math-random-1.0.4.tgz  |binary
 loleaflet/node_shrinkwrap/md5.js-1.3.5.tgz   |binary
 loleaflet/node_shrinkwrap/merge-1.2.1.tgz|binary
 loleaflet/node_shrinkwrap/npm-3.10.10.tgz|binary
 loleaflet/node_shrinkwrap/npm-run-path-2.0.2.tgz |binary
 loleaflet/node_shrinkwrap/object-keys-0.4.0.tgz  |binary
 loleaflet/node_shrinkwrap/parse-asn1-5.1.4.tgz   |binary
 loleaflet/node_shrinkwrap/path-browserify-0.0.1.tgz  |binary
 loleaflet/node_shrinkwrap/path-key-2.0.1.tgz |binary
 loleaflet/node_shrinkwrap/path-parse-1.0.6.tgz   |binary
 loleaflet/node_shrinkwrap/pbkdf2-3.0.17.tgz  |binary
 loleaflet/node_shrinkwrap/peek-stream-1.1.3.tgz  |binary
 loleaflet/node_shrinkwrap/pseudomap-1.0.2.tgz|binary
 loleaflet/node_shrinkwrap/public-encrypt-4.0.3.tgz   |binary
 loleaflet/node_shrinkwrap/pump-2.0.1.tgz |binary
 loleaflet/node_shrinkwrap/pumpify-1.5.1.tgz  |binary
 loleaflet/node_shrinkwrap/randomatic-3.1.1.tgz   |binary
 loleaflet/node_shrinkwrap/randombytes-2.1.0.tgz  |binary
 loleaflet/node_shrinkwrap/readable-stream-1.0.34.tgz.1   |binary
 loleaflet/node_shrinkwrap/repeat-element-1.1.3.tgz   |binary
 loleaflet/node_shrinkwrap/resolve-1.10.0.tgz |binary
 loleaflet/node_shrinkwrap/rimraf-2.6.3.tgz   |binary
 loleaflet/node_shrinkwrap/shrinkpack-0.18.1.tgz  |binary
 loleaflet/node_shrinkwrap/signal-exit-3.0.2.tgz  |binary
 

[Libreoffice-bugs] [Bug 123782] The way of resizing drawing objects and embedded graphics "proportionately" are not the same.

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123782

--- Comment #2 from yichuang驿窗  ---
(In reply to khaymatt1 from comment #1)
> Thank you for reporting the bug. I can confirm that this feature is present
> in Version: 6.2.0.3. 
> 
> I can confirm this feature is not a bug, but is working as intended. See the
> Writer Guide Version 6.0, page 233. Thank you for your feedback.



Thanks for you attention and reply.

I tested the function of the "shift" key for "proportionately" today,
LibreOffice Version: 6.3.0.0.alpha0+(AppImage). The result is same as version
6.1.5.1.

So, you meam the function of the "shift" key are reverse between resizing
drawing s and gallery graphics?



Best Regares,

-- 
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 123912] Legacy form fields in DOCX become uneditable after roundtrip

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123912

Aron Budea  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Aron Budea  ---
Another commit I noticed is the following, which causes this document to be
opened with a single section, as mentioned before I'm not sure this is
necessary for restricted documents where only filling in forms is enabled.

I would consider the following part of the commit message debatable:
"So, if global enforcement is enabled, map the section protection to LO native
protection. On startup, the sections will all be protected because of the
global compatibility flag. If the flag is turned off, then you enter a similar
mode to Word's "Edit document" where the sections are still protected. In LO,
*each* section's protection must be turned off individually to fully disable
enforcement."

Based on my (not overly extensive) experience, Edit document does not alter
restriction at all, just turns the default read-only mode (for restricted docs)
into edit mode. I actually find the step inconvenient, wouldn't most of the
document be read-only, anyway, due to the protection? It feels unnecessary, and
I'm not sure LO needs it at all, are there compelling arguments for it?

The way Protect form switch used to work is that it turned restrict editing
setting on (to restrict to filling inn forms) and off. It's indeed limited
compared to Word, which gives you more options, including making the document
read-only, with potentially specifying editable regions (which I assume would
turn into protected sections and unprotected areas in LO). I think something
like extending Protect form to a multiple choice setting could better
accomodate what is available in Word (and then have the option to (un)protect
individual or all sections). What is your opinion on this?

https://cgit.freedesktop.org/libreoffice/core/commit/?id=3955e5efc225b184b9507db94c226c031a602168
author  Justin Luth  2018-10-18 11:44:11
+0300
committer   Justin Luth2018-10-31 05:00:21
+0100

writerfilter: implement formprot

-- 
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 123912] Legacy form fields in DOCX become uneditable after roundtrip

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123912

Aron Budea  changed:

   What|Removed |Added

 Attachment #149778|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

-- 
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 123912] New: Legacy form fields in DOCX become uneditable after roundtrip

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123912

Bug ID: 123912
   Summary: Legacy form fields in DOCX become uneditable after
roundtrip
   Product: LibreOffice
   Version: 6.2.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, filter:docx, regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
CC: jl...@mail.com
Blocks: 104523, 120763

Created attachment 149778
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149778=edit
Sample DOCX

The attached DOCX, created in Word, contains a single drop-down form field, and
has been restricted so only forms can be filled.

Save it in Writer and open in Word again, then switch to edit mode.

=> Drop-down isn't editable (the selected value can't be changed).
After removing and readding restriction, the drop-down is editable again.

Observed using LO 6.2.0.3 / Windows 7.
No issue when saved in 6.1.0.3.
=> regression

Bibisected to the following commit using repo bibisect-win32-6.2. I'm a bit
confused after reading the commit description, this document does not seem to
contain sections (or editable regions). When editing is restricted to filling
in forms, nothing, apart the different form fields can be edited. Adding Cc: to
Justin Luth, please take a look.

https://cgit.freedesktop.org/libreoffice/core/commit/?id=fa667b6dc410f3af57ef436cc117352c829f95e7
author  Justin Luth  2018-10-18
09:38:47 +0300
committer   Justin Luth2018-10-20 06:32:29
+0200

sw mso export: PROTECT_FORM shouldn't force section to protected


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104523
[Bug 104523] [META] DOCX (OOXML) ActiveX and Legacy form control related issues
https://bugs.documentfoundation.org/show_bug.cgi?id=120763
[Bug 120763] [META] DOCX (OOXML) document protection-related issues/enhancement
-- 
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 120499] Can't use password when (un)restricting DOC(X) forms

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120499

Aron Budea  changed:

   What|Removed |Added

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

-- 
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 104523] [META] DOCX (OOXML) ActiveX and Legacy form control related issues

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104523

Aron Budea  changed:

   What|Removed |Added

 Depends on||123912


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123912
[Bug 123912] Legacy form fields in DOCX become uneditable after roundtrip
-- 
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 120763] [META] DOCX (OOXML) document protection-related issues/enhancement

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120763

Aron Budea  changed:

   What|Removed |Added

 Depends on||123912


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123912
[Bug 123912] Legacy form fields in DOCX become uneditable after roundtrip
-- 
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 123911] New: Update to version 6.2 broke personalisation

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123911

Bug ID: 123911
   Summary: Update to version 6.2 broke personalisation
   Product: LibreOffice
   Version: 6.2.0.0.alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tim.chambers1...@gmail.com

Description:
My previous personalisation theme settings were overridden by the pre-installed
themes in the upgrade to this version despite multiple items present in my user
settings gallery. I can not override the settings even in advanced options to
use custom themes.

I am unable to select my own theme

Steps to Reproduce:
1. Select Tools->Options->LibreOffice->Personalisation
2. Select "Own Theme: Select Theme"
3. Can't even find anything int he search

Actual Results:
No themes available, and no access to already downloaded themes in my user
profile



Expected Results:
ABility to choose my own theme by downloading, and from already downloaded
themes in my user profile


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 123797] Libre Office Base 6.2.0.3 cannot open or create firebird embedded Databases

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123797

--- Comment #5 from jrichard...@yahoo.com ---
Thanks. I installed directly from TDF and the issue disappeared. Currently
running version 6.2.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

MacUpdate - your app listing has been updated

2019-03-06 Thread MacUpdate
Title: Untitled Document








  




  




  




  

  
  

  
  

  

  

   App Listing Updated
  Hi The Document Foundation, We have updated your application listing for LibreOffice 6.2.1.2 on MacUpdate.com. Please take a moment to review your application's information to make sure that everything is correct. 
 	
  
  

  
View your updated app listing 
  

  
  
You can login to your Developer Account to reply to comments and view stats, or submit new updates and changes to your app listing.
  

  

  
  

  

		
		
  

		
		
 
		
		
  
  
Desktop Install Compatibility
  MacUpdate Desktop 6 is helping developers  make it easier for users to fully install and use their apps. Download Desktop 6 and to ensure your app works with the “Install” link on our download pages.
		  
		  
   
		  
		  
		  
  
	  
	  
	  

  

  
  

  

Advertise With MacUpdate
The best Mac devs advertise their apps on MacUpdate.com because it’s the most targeted, highly performing Mac app advertising you can find on the web. Contact a...@macupdate.com to guarantee your annual ad campaigns get booked and expand your app’s audience.

  
  



  
Learn more

  



  

  
  

  
Questions? Contact our Content Update Team upda...@macupdate.com.
  

  
  

  
  

  
You are receiving this offer because you have an app listed on MacUpdate.com. Add us to your address book or white list to ensure reliable delivery.
	
  © 2018 MacUpdate  - All Rights Reserved
  526 W. 14th St. #100 • Traverse City, MI 49684
  

  




  




  




  








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

Re: logerrit error

2019-03-06 Thread shubham goyal
Hello,

The problem is resolved now. Thanks to samuel_m , tml_ , buovjaga in irc
#libreoffice-dev

It was due to the permission given to the config file.

The mistake I did was made the ~/.ssh/config file as root
You can check ls -l ~/.ssh/config to see permission with the file.
Current output: -rw-r--r-- 1 shubham shubham 141 Mar  6 19:56
/home/shubham/.ssh/config. Which is fine.

//

Also, logerrit will not run if using a firewall or proxy. Please don't use
them. Even a school, institution body use firewall to protect their servers
etc. So use an alternative private network. Or check if the port 29418 is
open.

The ssh - logerrit output, where my logerrit failed.

ssh - logerrit
OpenSSH_7.6p1 Ubuntu-4ubuntu0.2, OpenSSL 1.0.2n  7 Dec 2017
debug1: Reading configuration data /home/shubham/.ssh/config
debug1: /home/shubham/.ssh/config line 1: Applying options for logerrit
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "gerrit.libreoffice.org" port 29418
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to gerrit.libreoffice.org [89.238.68.148] port 29418.
debug1: connect to address 89.238.68.148 port 29418: Connection timed out
debug1: Connecting to gerrit.libreoffice.org [2a00:1828:a012:148::1] port
29418.
debug1: connect to address 2a00:1828:a012:148::1 port 29418: Network is
unreachable
ssh: connect to host gerrit.libreoffice.org port 29418: Network is
unreachable.

Thanks again to all.

On Wed, 6 Mar 2019 at 04:06, Regina Henschel 
wrote:

> Hi,
>
> shubham goyal schrieb am 05-Mar-19 um 08:34:
> > Hey, I want to submit my patches in Gerrit for review. But here are some
> > errors.
> >
> >   ./logerrit test
> >
>
> First you made your changes.
>
> Then use
> git add
> to tell git which files you want to commit
>
> Then use
> git commit -m " your comment"
> to generate the commit.
> Please notice, that in case your patch belongs to a bug, your comment
> starts with tdf#123456 (of cause not this dummy number but the actual one).
> And notice, that the second line of the comment must be empty.
> And notice, that there is no automatic word wrap, but you must manually
> take care, that the comment lines are shorter than 70 characters.
>
> Then use
>./logerrit submit master
> You should then be ask for your ssh-passphrase.
>
> Kind regards
> Regina
>
> ___
> 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-bugs] [Bug 123889] When I type in certain times they get changed to a lesser time, i.e. 0:13 gets changed to 0:12 (0:12:59.99).

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123889

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||ba...@caesar.elte.hu

--- Comment #1 from Aron Budea  ---
This looks like bug 122991, please test again with version 6.2.1.2.

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

-- 
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 123900] Substraction of two times leads two a wrong duration

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123900

Aron Budea  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||ba...@caesar.elte.hu
 Status|NEEDINFO|RESOLVED

--- Comment #2 from Aron Budea  ---
This looks like bug 122991, please test again with version 6.2.1.2.

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

-- 
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 123901] Installation requires insertion of CD ROM

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123901

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
 Resolution|--- |NOTOURBUG
 Status|UNCONFIRMED |RESOLVED

--- Comment #4 from V Stuart Foote  ---
Error 1714 are always MS Installer DB issues. You have to clean out the
installer DB entries--by hand with a Regedit session. Identifying the exact KEY
requires another install attempt and capturing a verbose log: e.g.

msixec.exe /i LibreOffice_6.1.5.2_Win_x64.msi /L*v install6152log.txt

Then open the log in a text editor (I prefer Notepad++ for this) and search for
the Error 1704 details including the installers GUID key. Then locate that GUID
in the Registry's installer cache(s):

HKEY_CLASSES_ROOT\Installer\UpgradeCodes\

or

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes\

and delete.

Alternatively, YMMV but MS does provide a general use tool -- good luck.

https://support.microsoft.com/en-us/help/17588/windows-fix-problems-that-block-programs-being-installed-or-removed

-- 
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 103954] Support compressed metafile formats WMZ/EMZ

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103954

--- Comment #9 from Bartosz  ---
The EMZ and WMZ implementation will be similar to svgz implementation
https://bugs.documentfoundation.org/show_bug.cgi?id=75487

-- 
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 123910] New: Writer hangs when deleting a line of text

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123910

Bug ID: 123910
   Summary: Writer hangs when deleting a line of text
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: halamil...@gmail.com

Description:
Writer hangs when I delete a line of text, anywhere in the document. Occurs
every time now (worked before in same file), anywhere in the file. I see
nothing unusual when using the show formatting marks.

Steps to Reproduce:
1.backspace through text to beginning of line, and once more onto previous line
2.
3.

Actual Results:
Cursor backs up to end of previous line, Writer hangs. CPU usage goes to 100%.
Eventually get the LibreOffice warning that it needs either a force-quit or
wait. Force quit allows recovery next time I launch, but problem recurs.
This was working fine as I edited this file over the course of months, but now
I am stuck. Fails wherever in the file I delete a line, even in places I
previously did so.

Expected Results:
Allow continued operation.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
CentOS 7 on a Sony VAIO. Seems limited to only a few files I am working with,
each in the 1.5 meg range size. Each, as with other files that do not crash it,
has both Hebrew and English scattered throughout, but the hang seems unrelated
to where I am working. Reproduceable every time with the same files. Same
occurred on Writer 5.4.4.2 with the same files (then I upgraded, but same
result).

Version: 6.1.5.2
Build ID: 90f8dcf33c87b3705e78202e3df5142b201bd805
CPU threads: 4; OS: Linux 3.10; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.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 39256] Deficiencies in WMF importer implementation

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39256

Bartosz  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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

[Libreoffice-bugs] [Bug 123863] Sumproduct delivers wrong result from calculated external data

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123863

--- Comment #4 from m.a.riosv  ---
I did with the file attached by the reporter.
Changing sheet name 'Stückliste' by 'Stuckliste' (ü -> u) and doing a hard
recalc and works for me.

Version: 6.2.1.2 (x64)
Build ID: 7bcb35dc3024a62dea0caee87020152d1ee96e71
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: es-ES (es_ES); 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: dbaccess/uiconfig

2019-03-06 Thread Libreoffice Gerrit user
 dbaccess/uiconfig/dbapp/menubar/menubar.xml |  270 ++--
 dbaccess/uiconfig/dbapp/popupmenu/edit.xml  |   11 
 dbaccess/uiconfig/dbapp/popupmenu/new.xml   |2 
 dbaccess/uiconfig/dbapp/toolbar/formobjectbar.xml   |8 
 dbaccess/uiconfig/dbapp/toolbar/queryobjectbar.xml  |9 
 dbaccess/uiconfig/dbapp/toolbar/reportobjectbar.xml |9 
 dbaccess/uiconfig/dbapp/toolbar/tableobjectbar.xml  |8 
 dbaccess/uiconfig/dbbrowser/toolbar/toolbar.xml |2 
 dbaccess/uiconfig/dbquery/menubar/menubar.xml   |  188 +++--
 dbaccess/uiconfig/dbquery/toolbar/toolbar.xml   |5 
 dbaccess/uiconfig/dbrelation/menubar/menubar.xml|  152 +--
 dbaccess/uiconfig/dbrelation/toolbar/toolbar.xml|5 
 dbaccess/uiconfig/dbtable/menubar/menubar.xml   |  156 +--
 dbaccess/uiconfig/dbtable/toolbar/toolbar.xml   |9 
 dbaccess/uiconfig/dbtdata/menubar/menubar.xml   |  189 +++---
 dbaccess/uiconfig/dbtdata/toolbar/toolbar.xml   |3 
 16 files changed, 547 insertions(+), 479 deletions(-)

New commits:
commit 4f810905fa74128871f2fe924a3d28a79f4e4261
Author: andreas kainz 
AuthorDate: Tue Mar 5 15:42:19 2019 +0100
Commit: andreas_kainz 
CommitDate: Wed Mar 6 23:05:24 2019 +0100

sync dbaccess ui files with swriter ui file structure

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

diff --git a/dbaccess/uiconfig/dbapp/menubar/menubar.xml 
b/dbaccess/uiconfig/dbapp/menubar/menubar.xml
index af28378f8b70..a394672faee5 100644
--- a/dbaccess/uiconfig/dbapp/menubar/menubar.xml
+++ b/dbaccess/uiconfig/dbapp/menubar/menubar.xml
@@ -15,145 +15,149 @@
  *   License, Version 2.0 (the "License"); you may not use this file
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- -->
+-->
 http://openoffice.org/2001/menu; menu:id="menubar">
-
+  
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+  
+  
+  
+  
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+  
+  
+  
+
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
   
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+  
+  
+  
+  
+  
+  
 
-
-
+  
+  
+  
 
-
-
+  
+
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+  
+  
+  
+  
+  
+  
+  
 
-
+  
+  
+  
+  
+  
+
+  
+  
+
+  
+  
+
+  
+  
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+  
+   

[Libreoffice-commits] core.git: icon-themes/sifr icon-themes/sifr_dark icon-themes/sifr_svg

2019-03-06 Thread Libreoffice Gerrit user
 icon-themes/sifr/cmd/lc_fontworkalignmentfloater.png   |binary
 icon-themes/sifr/cmd/sc_fontworkalignmentfloater.png   |binary
 icon-themes/sifr/cmd/sc_fontworksameletterheights.png  |binary
 icon-themes/sifr/cmd/sc_fontworkshapetype.png  |binary
 icon-themes/sifr_dark/cmd/lc_fontworkalignmentfloater.png  |binary
 icon-themes/sifr_dark/cmd/sc_fontworkalignmentfloater.png  |binary
 icon-themes/sifr_dark/cmd/sc_fontworksameletterheights.png |binary
 icon-themes/sifr_dark/cmd/sc_fontworkshapetype.png |binary
 icon-themes/sifr_svg/cmd/lc_fontworkalignmentfloater.svg   |6 ++
 icon-themes/sifr_svg/cmd/sc_fontworkalignmentfloater.svg   |6 ++
 icon-themes/sifr_svg/cmd/sc_fontworksameletterheights.svg  |6 ++
 icon-themes/sifr_svg/cmd/sc_fontworkshapetype.svg  |6 ++
 12 files changed, 24 insertions(+)

New commits:
commit 9bb9189acc03515ece6b5855296724f5305bdfca
Author: andreas kainz 
AuthorDate: Wed Mar 6 15:33:45 2019 +0100
Commit: andreas_kainz 
CommitDate: Wed Mar 6 23:04:53 2019 +0100

Sifr icon theme update

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

diff --git a/icon-themes/sifr/cmd/lc_fontworkalignmentfloater.png 
b/icon-themes/sifr/cmd/lc_fontworkalignmentfloater.png
new file mode 100644
index ..1a6fc398a080
Binary files /dev/null and 
b/icon-themes/sifr/cmd/lc_fontworkalignmentfloater.png differ
diff --git a/icon-themes/sifr/cmd/sc_fontworkalignmentfloater.png 
b/icon-themes/sifr/cmd/sc_fontworkalignmentfloater.png
new file mode 100644
index ..cb500de6beb0
Binary files /dev/null and 
b/icon-themes/sifr/cmd/sc_fontworkalignmentfloater.png differ
diff --git a/icon-themes/sifr/cmd/sc_fontworksameletterheights.png 
b/icon-themes/sifr/cmd/sc_fontworksameletterheights.png
new file mode 100644
index ..b3e71391ac73
Binary files /dev/null and 
b/icon-themes/sifr/cmd/sc_fontworksameletterheights.png differ
diff --git a/icon-themes/sifr/cmd/sc_fontworkshapetype.png 
b/icon-themes/sifr/cmd/sc_fontworkshapetype.png
new file mode 100644
index ..a7afe8bb2ee6
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_fontworkshapetype.png 
differ
diff --git a/icon-themes/sifr_dark/cmd/lc_fontworkalignmentfloater.png 
b/icon-themes/sifr_dark/cmd/lc_fontworkalignmentfloater.png
new file mode 100644
index ..bf3f57046950
Binary files /dev/null and 
b/icon-themes/sifr_dark/cmd/lc_fontworkalignmentfloater.png differ
diff --git a/icon-themes/sifr_dark/cmd/sc_fontworkalignmentfloater.png 
b/icon-themes/sifr_dark/cmd/sc_fontworkalignmentfloater.png
new file mode 100644
index ..d58721f8e7d7
Binary files /dev/null and 
b/icon-themes/sifr_dark/cmd/sc_fontworkalignmentfloater.png differ
diff --git a/icon-themes/sifr_dark/cmd/sc_fontworksameletterheights.png 
b/icon-themes/sifr_dark/cmd/sc_fontworksameletterheights.png
new file mode 100644
index ..34b849c0d02c
Binary files /dev/null and 
b/icon-themes/sifr_dark/cmd/sc_fontworksameletterheights.png differ
diff --git a/icon-themes/sifr_dark/cmd/sc_fontworkshapetype.png 
b/icon-themes/sifr_dark/cmd/sc_fontworkshapetype.png
new file mode 100644
index ..e7fb84d10098
Binary files /dev/null and b/icon-themes/sifr_dark/cmd/sc_fontworkshapetype.png 
differ
diff --git a/icon-themes/sifr_svg/cmd/lc_fontworkalignmentfloater.svg 
b/icon-themes/sifr_svg/cmd/lc_fontworkalignmentfloater.svg
new file mode 100644
index ..2128c2fe42d3
--- /dev/null
+++ b/icon-themes/sifr_svg/cmd/lc_fontworkalignmentfloater.svg
@@ -0,0 +1,6 @@
+http://www.w3.org/2000/svg; viewBox="0 0 24 24">
+  
+
diff --git a/icon-themes/sifr_svg/cmd/sc_fontworkalignmentfloater.svg 
b/icon-themes/sifr_svg/cmd/sc_fontworkalignmentfloater.svg
new file mode 100644
index ..de5f634026f3
--- /dev/null
+++ b/icon-themes/sifr_svg/cmd/sc_fontworkalignmentfloater.svg
@@ -0,0 +1,6 @@
+http://www.w3.org/2000/svg; viewBox="0 0 16 16">
+  
+
diff --git a/icon-themes/sifr_svg/cmd/sc_fontworksameletterheights.svg 
b/icon-themes/sifr_svg/cmd/sc_fontworksameletterheights.svg
new file mode 100644
index ..bed3c0661396
--- /dev/null
+++ b/icon-themes/sifr_svg/cmd/sc_fontworksameletterheights.svg
@@ -0,0 +1,6 @@
+http://www.w3.org/2000/svg; viewBox="0 0 16 16">
+  
+
diff --git a/icon-themes/sifr_svg/cmd/sc_fontworkshapetype.svg 
b/icon-themes/sifr_svg/cmd/sc_fontworkshapetype.svg
new file mode 100644
index ..b18aca018387
--- /dev/null
+++ b/icon-themes/sifr_svg/cmd/sc_fontworkshapetype.svg
@@ -0,0 +1,6 @@
+http://www.w3.org/2000/svg; viewBox="0 0 16 16">
+  
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123825] Find window, the keyboard shortcut ~r for Replace does not work

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123825

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #5 from V Stuart Foote  ---
Click or  while on the Replace button will perform the replacement. But
action of the accelerator seems disconnected. It will toggle between the
Replace button and the Find Next button--but not perform the replacement. 

Contrast that with the ~l for an "Replace All" action which applies correctly. 

On Windows 10 64-bit en-US (1803) with
Version: 6.3.0.0.alpha0+
Build ID: 5fe551931d49a64ca4ea793a5016c098e41e84cd
CPU threads: 8; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
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: vcl/uiconfig

2019-03-06 Thread Libreoffice Gerrit user
 vcl/uiconfig/theme_definitions/definition.xml |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 0db0c1edd91e73a655d2db093d35f03e4966a68d
Author: Tomaž Vajngerl 
AuthorDate: Sun Mar 3 13:39:01 2019 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Mar 6 22:47:10 2019 +0100

draw combobox (entire areaonly) from external svg, fix editbox

Change-Id: Iba7e5b45c4f1ac6f87cbca963bb5284ce810ebcf
Reviewed-on: https://gerrit.libreoffice.org/68825
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/uiconfig/theme_definitions/definition.xml 
b/vcl/uiconfig/theme_definitions/definition.xml
index 244f9c259ce4..d12161d6081c 100644
--- a/vcl/uiconfig/theme_definitions/definition.xml
+++ b/vcl/uiconfig/theme_definitions/definition.xml
@@ -114,7 +114,11 @@
 
 
 
-   
+
+
+
+
+
 
 
 
@@ -134,7 +138,7 @@
 
 
 
-
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

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

2019-03-06 Thread Libreoffice Gerrit user
 vcl/source/gdi/FileDefinitionWidgetDraw.cxx |   23 +++
 1 file changed, 23 insertions(+)

New commits:
commit 6510fdfb1fe45b235d0cbd2b9a14379ad7c978a5
Author: Tomaž Vajngerl 
AuthorDate: Sun Mar 3 13:41:28 2019 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Mar 6 22:47:25 2019 +0100

Increase font size when drawing from widget definition

Change-Id: I983dde507758a42c6ce421ea970b6e5d54c5dcae
Reviewed-on: https://gerrit.libreoffice.org/68826
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/source/gdi/FileDefinitionWidgetDraw.cxx 
b/vcl/source/gdi/FileDefinitionWidgetDraw.cxx
index 804bddb527fe..17cf7b91615c 100644
--- a/vcl/source/gdi/FileDefinitionWidgetDraw.cxx
+++ b/vcl/source/gdi/FileDefinitionWidgetDraw.cxx
@@ -726,6 +726,29 @@ bool FileDefinitionWidgetDraw::updateSettings(AllSettings& 
rSettings)
 aStyleSet.SetToolTextColor(m_aWidgetDefinition.maToolTextColor);
 aStyleSet.SetFontColor(m_aWidgetDefinition.maFontColor);
 
+vcl::Font aFont(FAMILY_SWISS, Size(0, 12));
+aFont.SetCharSet(osl_getThreadTextEncoding());
+aFont.SetWeight(WEIGHT_NORMAL);
+aFont.SetFamilyName("Liberation Sans");
+aStyleSet.SetAppFont(aFont);
+aStyleSet.SetHelpFont(aFont);
+aStyleSet.SetMenuFont(aFont);
+aStyleSet.SetToolFont(aFont);
+aStyleSet.SetGroupFont(aFont);
+aStyleSet.SetLabelFont(aFont);
+aStyleSet.SetRadioCheckFont(aFont);
+aStyleSet.SetPushButtonFont(aFont);
+aStyleSet.SetFieldFont(aFont);
+aStyleSet.SetIconFont(aFont);
+aStyleSet.SetTabFont(aFont);
+
+aFont.SetWeight(WEIGHT_BOLD);
+aStyleSet.SetFloatTitleFont(aFont);
+aStyleSet.SetTitleFont(aFont);
+
+aStyleSet.SetTitleHeight(16);
+aStyleSet.SetFloatTitleHeight(12);
+
 rSettings.SetStyleSettings(aStyleSet);
 
 return true;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 108801] Text blurred on Retina screen with low-res monitor as second screen

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108801

--- Comment #7 from okinasevych  ---
Created attachment 149777
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149777=edit
Composite showing laptop (larger) and external (smaller) monitors.

This shows my two monitors (redacted) with low-res external monitor above and
high-res laptop monitor below. Lower laptop monitor displays high-res in all
areas except in the text/edit area of LO Writer. Finder window from which I
launched LO Writer is in the upper low-res monitor.

-- 
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 108801] Text blurred on Retina screen with low-res monitor as second screen

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108801

--- Comment #6 from okinasevych  ---
I had noticed intermittent recurrence of the Retina display bug on my 2-monitor
setup. I only discovered by chance that it was the second monitor that may
contribute to this issue, as described here. I can reproduce the buggy display
*and* I can get the display to render in higher resolution without
disconnecting the second monitor. Here are my particulars which I hope will be
helpful. 

About LibreOffice:

Version: 6.1.5.2
Build ID: 90f8dcf33c87b3705e78202e3df5142b201bd805
CPU threads: 4; OS: Mac OS X 10.12.6; UI render: GL; 
Locale: en-CA (en_CA.UTF-8); Calc: group threaded

Monitors:

Laptop: MacBook Pro (2015 model) 13.3-inch (2560 x 1600)
External: Samsung SMB2230H 21.5-inch (1920 x 1080), connected via
Thunderbolt/DVI

Launch with low resolution:
- LibreOffice not running.
- Finder window open on _external monitor_ with an LO Writer doc available.
- Double-click the Writer doc.
- LibreOffice launches in laptop monitor. Writer document opens in _low-res_. 

Launch with high resolution:
- LibreOffice not running.
- Finder window open on _laptop monitor_ with an LO Writer doc available.
- Double-click the Writer doc.
- LibreOffice launches in laptop monitor. Writer document opens in _high-res_.

-- 
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 116640] CRASH/Assertion when undoing columns

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116640

Julien Nabet  changed:

   What|Removed |Added

 Attachment #140888|0   |1
is obsolete||

-- 
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 116640] CRASH/Assertion when undoing columns

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116640

Julien Nabet  changed:

   What|Removed |Added

 Attachment #140891|0   |1
is obsolete||

-- 
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 116640] CRASH/Assertion when undoing columns

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116640

--- Comment #9 from Julien Nabet  ---
Created attachment 149776
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149776=edit
bt with debug symbols

Just an update of the bt with master sources updated today.

-- 
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 117539] Assert after cut and paste operation of a chart stick

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117539

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #14 from Julien Nabet  ---
Created attachment 149775
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149775=edit
gdb bt

On pc Debian x86-64 with master sources updated today + enable-dbgutil, I could
reproduce this.

-- 
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 117539] Assert after cut and paste operation of a chart stick

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117539

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

-- 
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 123736] calc autocalculate reproducibly fails on cell with formula after editing a copy! of that cell

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123736

--- Comment #9 from b.  ---
imho not 'OpenGL related' same effect with anything 'OpenGL-related' switched
off in tools - options - view 

reg. 

b.

-- 
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 123825] Find window, the keyboard shortcut ~r for Replace does not work

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123825

Dieter Praas  changed:

   What|Removed |Added

 Blocks||113136, 98259

--- Comment #4 from Dieter Praas  ---
I confirm it with

Version: 6.3.0.0.alpha0+ (x64)
Build ID: f42554a1886ebe49170c25096dc3281b2c7bb1f4
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-08_22:37:30
Locale: en-US (de_DE); UI-Language: en-US
Calc: threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98259
[Bug 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements
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 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259

Dieter Praas  changed:

   What|Removed |Added

 Depends on||123825


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123825
[Bug 123825] Find window, the keyboard shortcut ~r for Replace does not
work
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123825] Find window, the keyboard shortcut ~r for Replace does not work

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123825

Dieter Praas  changed:

   What|Removed |Added

 Status|REOPENED|NEW

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

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113136

Dieter Praas  changed:

   What|Removed |Added

 Depends on||123825


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123825
[Bug 123825] Find window, the keyboard shortcut ~r for Replace does not
work
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 123906] Fatal error in Writer merge

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123906

--- Comment #2 from albos  ---
Created attachment 149774
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149774=edit
screenshot when 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 121686] Assert on text + space + dash + enter

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121686

Julien Nabet  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #4 from Julien Nabet  ---
I submitted this patch to review:
https://gerrit.libreoffice.org/#/c/68832/

-- 
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 121686] Assert on text + space + dash + enter

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121686

Julien Nabet  changed:

   What|Removed |Added

 Attachment #146997|0   |1
is obsolete||

-- 
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 121686] Assert on text + space + dash + enter

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121686

--- Comment #3 from Julien Nabet  ---
Created attachment 149773
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149773=edit
gdb bt

-- 
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 108479] [META] Paste special bugs and enhancements

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108479

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||123907


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123907
[Bug 123907] Paste Special requires unnecessary Enter and bad broken
line(unnecessary)
-- 
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 123907] Paste Special requires unnecessary Enter and bad broken line(unnecessary)

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123907

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108479


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108479
[Bug 108479] [META] Paste special bugs and enhancements
-- 
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 116158] STATUSBAR: Clicking language and more does not link to language settings

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116158

--- Comment #3 from Dieter Praas  ---
Still reproducible with

Version: 6.3.0.0.alpha0+ (x64)
Build ID: f42554a1886ebe49170c25096dc3281b2c7bb1f4
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-08_22:37:30
Locale: en-US (de_DE); 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-bugs] [Bug 123909] FILESAVE, FILEOPEN PPTX: No sound in custom animations

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123909

--- Comment #1 from Luke  ---
Note: attachment 145685 shows that the PPT format is correctly imported. Both
sounds play.

-- 
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 123903] FILESAVE DOCX dashed and dotted line styles not saved in DOCX

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123903

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter Praas  ---
I couldn't reproduce it with

Version: 6.3.0.0.alpha0+ (x64)
Build ID: f42554a1886ebe49170c25096dc3281b2c7bb1f4
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-08_22:37:30
Locale: en-US (de_DE); UI-Language: en-US
Calc: threaded

But what happens is the following

1. I changed the style of two lines to "fine dashed"
2. After reopening the docx-file, the style looks very similar but the style in
the sidebar properties changed to "none"

-- 
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: Changes to 'private/tml/lov-6.2.1'

2019-03-06 Thread Libreoffice Gerrit user
New branch 'private/tml/lov-6.2.1' available with the following commits:
commit e485074f4984fbc86184b6aa3aba3228d0150755
Author: Tor Lillqvist 
Date:   Thu Feb 21 10:15:11 2019 +0200

Don't use the non-public fdatasync() API when sandboxed on macOS

Change-Id: I9e36cb78e3e945f6531a31e0ddf73d9c8d655f7d

commit 68ba8bd0358ef5898dc3f73fda4ae6a9feb53a3e
Author: Tor Lillqvist 
Date:   Tue Mar 5 17:28:55 2019 +0200

Make mysqlc conditional on MARIADBC, too

Change-Id: I7e8541b8918ea5011fe9669d11b51c941544f794

commit 64628dd30cd4055ca1e8c0cd3e06737cd2bc7dc6
Author: Tor Lillqvist 
Date:   Mon Feb 25 15:40:02 2019 +0200

Check enable_mpl_subset, too

Change-Id: I083583b86fa404eb16eea354ef9e6d22cf4c62fe

commit 3608c5b8a3388f249ed9dfc35996a3c0af4470d1
Author: Tor Lillqvist 
Date:   Mon Feb 25 14:43:13 2019 +0200

There is no --disable-ext-mariadb-connector option any longer

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123134] Failed assert( xImpBmp && "Forbidden Access to empty bitmap!" ) in "3D Effects" dialog

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123134

--- Comment #2 from Julien Nabet  ---
With master sources updated today, I don't reproduce this.

Regina: could you give a try with a more recent master build?

-- 
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 44223] FILESAVE, FILEOPEN: No sound in presentations saved in .pptx format

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44223

Luke  changed:

   What|Removed |Added

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

-- 
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 123909] FILESAVE, FILEOPEN PPTX: No sound in custom animations

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123909

Luke  changed:

   What|Removed |Added

 CC||mark...@gmail.com
   Keywords||filter:pptx
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=44
   ||223

-- 
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 123909] New: FILESAVE, FILEOPEN PPTX: No sound in custom animations

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123909

Bug ID: 123909
   Summary: FILESAVE, FILEOPEN PPTX: No sound in custom animations
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lukebe...@hotmail.com

This is a follow up to Bug 44223 which added sound to slide transitions. This
is about the missing sound in slide animations. 

Steps to reproduce:
1. Open attachment 145684
2. Start slideshow

Expected results:
1. Both the animation sound,"wind.wav" and the transition sound, Applause are
played.

Actual results:
1. Only the applause transition is played

-- 
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 123906] Fatal error in Writer merge

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123906

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de

--- Comment #1 from Dieter Praas  ---
Do you get a crash report? Can you add the link to that report? Thanks

-- 
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 119626] Assert when clicking Expand Formula Bar

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119626

--- Comment #5 from Julien Nabet  ---
Created attachment 149772
  --> https://bugs.documentfoundation.org/attachment.cgi?id=149772=edit
bt with debug symbols

Update of bt with master sources updated today.

-- 
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 119626] Assert when clicking Expand Formula Bar

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119626

Julien Nabet  changed:

   What|Removed |Added

 Attachment #144588|0   |1
is obsolete||

-- 
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 123552] Missing option in impress format, that doesn't match documentation

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123552

--- Comment #5 from Buovjaga  ---
(In reply to Martín from comment #4)
> What? So this is a duplicate of an almost 3 year old bug? Come on guys, you
> can't be serious!

Well, I wish it was all a big joke, but today I decided to tackle this and
ended up spending 5 hours and only covering this single menu entry! As the help
consists of many files that refer to each other, moving menu entries can be
extremely disrupting. In the case of all the Format menu changes in Impress and
Draw, many new files will have to be created and lots of careful research has
to be done to change all the old relations.

-- 
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 115465] Writer Table: Table Contents ignores default style settings

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115465

--- Comment #15 from Dieter Praas  ---
(In reply to Matthias from comment #0)
> Description:
> If you change the default style (font, size...) in a document and then
> insert a table, the table contents always are formatted in Liberation Serif. 
> 
> Steps to Reproduce:
> 1.Change default style eg. font, size, color
> 2.Insert a table
> 3.Table font ignores setting of default style

For me those steps are not clear enough: Is "default style" the default
paragraph style in a table, that means the style "table contents"? If that is
the case, I can still reproduce the bug in

Version: 6.3.0.0.alpha0+ (x64)
Build ID: f42554a1886ebe49170c25096dc3281b2c7bb1f4
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2019-02-08_22:37:30
Locale: en-US (de_DE); UI-Language: en-US
Calc: threade

-- 
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 123908] New: LibreOffice Calc selecting/Editing multiple cells

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123908

Bug ID: 123908
   Summary: LibreOffice Calc selecting/Editing multiple cells
   Product: LibreOffice
   Version: 6.2.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: brightside.bo...@gmail.com

Description:
When selecting multiple cells, typically for me it would be just 10 rows and 3
or 4 columns the entire program starts to lag than completely freezes.  CPU
usage did not appear to spike or memory usage.  I reinstalled 6.1.5 to see if
same issue and it is not there.

Steps to Reproduce:
1.Randomly type text
2.Copy and paste into 20 rows
3.Copy rows into 10 columns
4.Try selecting all cells with text

Actual Results:
For me this will freeze before I get to 10 rows and 3 columns.

Expected Results:
Fluid selection of cells.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Fluid selection of cells.

-- 
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 112440] Change of language module in Writing aids isn't remembered

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112440

--- Comment #9 from Julien Nabet  ---
Just for the record, on pc Debian x86-64 with master sources updated today, I
could still reproduce this.

-- 
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 112440] Change of language module in Writing aids isn't remembered

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112440

--- Comment #9 from Julien Nabet  ---
Just for the record, on pc Debian x86-64 with master sources updated today, I
could still reproduce this.

-- 
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 115471] PNG corrupted after saving

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115471

--- Comment #16 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, this time 2 images are
lost.
Indeed, in the original file, there are 64 pngs, in the saved files 62 pngs.
(Pictures/10280031FB2A5F08.png is one of them).

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

2019-03-06 Thread Libreoffice Gerrit user
 sc/qa/extras/scdatapilotfieldobj.cxx |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

New commits:
commit 36f9dafc79ccaa7406640cdadc9685bdee04e4ff
Author: Jens Carl 
AuthorDate: Wed Mar 6 19:05:31 2019 +
Commit: Jens Carl 
CommitDate: Wed Mar 6 21:13:53 2019 +0100

Add XServiceInfo tests to ScDataPilotFieldObj

Change-Id: I7de8902b6857782acb5d2b3566d5768481baab51
Reviewed-on: https://gerrit.libreoffice.org/68824
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/sc/qa/extras/scdatapilotfieldobj.cxx 
b/sc/qa/extras/scdatapilotfieldobj.cxx
index cf461616c2ed..b6177bce9d10 100644
--- a/sc/qa/extras/scdatapilotfieldobj.cxx
+++ b/sc/qa/extras/scdatapilotfieldobj.cxx
@@ -10,6 +10,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -33,7 +34,8 @@ class ScDataPilotFieldObj : public CalcUnoApiTest,
 public apitest::XDataPilotField,
 public apitest::XDataPilotFieldGrouping,
 public apitest::XNamed,
-public apitest::XPropertySet
+public apitest::XPropertySet,
+public apitest::XServiceInfo
 {
 public:
 virtual void setUp() override;
@@ -70,6 +72,11 @@ public:
 CPPUNIT_TEST(testPropertyChangeListener);
 CPPUNIT_TEST(testVetoableChangeListener);
 
+// XServiceInfo
+CPPUNIT_TEST(testGetImplementationName);
+CPPUNIT_TEST(testGetSupportedServiceNames);
+CPPUNIT_TEST(testSupportsService);
+
 CPPUNIT_TEST_SUITE_END();
 
 private:
@@ -81,6 +88,7 @@ ScDataPilotFieldObj::ScDataPilotFieldObj()
 , XNamed("Col1")
 , XPropertySet({ "Function", "HasAutoShowInfo", "HasLayoutInfo", 
"HasSortInfo", "Subtotals",
  "Subtotals2" })
+, XServiceInfo("ScDataPilotFieldObj", "com.sun.star.sheet.DataPilotField")
 {
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 123907] Paste Special requires unnecessary Enter and bad broken line(unnecessary)

2019-03-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123907

Mike Kaganski  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Mike Kaganski  ---
I suppose that the "broken lines" are the animated rectangular selection around
A1:B2 after the macro execution.

I do reproduce a problem with the macro in the attachment. First, it indeed
keeps the selection frame around A1:B2 (unlike AOO) - but I'm not sure it's a
bug: the macro literally repeats user's actions, and there's no action to
cancel the selection in the macro. The real problem is that after the macro
finishes, the data is already pasted to the target range, *but the paste
function is still working*, so if you don't press Enter or Esc immediately, but
instead put cursor to, say, C5, and then press Enter, the clipboard contents is
pasted there second time. At the same time, the toolbar controls return to
normal state.

Tested with Version: 6.2.2.1 (x64)
Build ID: fcd633fb1bf21b0a99c9acb3ad6e526437947b01
CPU threads: 12; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded

Setting to NEW. Please note that this issue should be *only* about the macro
problem. Please file the other problems separately. Thanks.

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

2019-03-06 Thread Libreoffice Gerrit user
 sc/qa/extras/scdatapilotfieldgroupitemobj.cxx |3 +--
 sc/qa/extras/scdatapilotfieldgroupsobj.cxx|3 +--
 sc/qa/extras/scdatapilotitemobj.cxx   |4 +---
 sc/qa/extras/scdatapilotitemsobj.cxx  |3 +--
 sc/qa/extras/scindexenumeration_datapilotitemsenumeration.cxx |3 +--
 5 files changed, 5 insertions(+), 11 deletions(-)

New commits:
commit 221ae913dbeac56ce5674ad4ac3ce3a8d3ba8ae8
Author: Jens Carl 
AuthorDate: Tue Mar 5 22:02:49 2019 +
Commit: Jens Carl 
CommitDate: Wed Mar 6 21:01:25 2019 +0100

Move variable nMaxFieldIndex out of namespace

Change-Id: I9396abb722b24d8ee6b2d5f8fccac140a1014436
Reviewed-on: https://gerrit.libreoffice.org/68784
Tested-by: Jenkins
Reviewed-by: Jens Carl 

diff --git a/sc/qa/extras/scdatapilotfieldgroupitemobj.cxx 
b/sc/qa/extras/scdatapilotfieldgroupitemobj.cxx
index b715a521359d..a2b43d7ee731 100644
--- a/sc/qa/extras/scdatapilotfieldgroupitemobj.cxx
+++ b/sc/qa/extras/scdatapilotfieldgroupitemobj.cxx
@@ -40,8 +40,6 @@ using namespace css;
 
 namespace sc_apitest
 {
-const auto nMaxFieldIndex = 6;
-
 class ScDataPilotFieldGroupItemObj : public CalcUnoApiTest,
  public apitest::XNamed,
  public apitest::XServiceInfo
@@ -67,6 +65,7 @@ public:
 CPPUNIT_TEST_SUITE_END();
 
 private:
+static const int nMaxFieldIndex = 6;
 uno::Reference m_xComponent;
 };
 
diff --git a/sc/qa/extras/scdatapilotfieldgroupsobj.cxx 
b/sc/qa/extras/scdatapilotfieldgroupsobj.cxx
index 8bdaf055af48..148c04af4093 100644
--- a/sc/qa/extras/scdatapilotfieldgroupsobj.cxx
+++ b/sc/qa/extras/scdatapilotfieldgroupsobj.cxx
@@ -44,8 +44,6 @@ using namespace css;
 
 namespace sc_apitest
 {
-const auto nMaxFieldIndex = 6;
-
 class ScDataPilotFieldGroupsObj : public CalcUnoApiTest,
   public apitest::XElementAccess,
   public apitest::XEnumerationAccess,
@@ -94,6 +92,7 @@ public:
 CPPUNIT_TEST_SUITE_END();
 
 private:
+static const int nMaxFieldIndex = 6;
 uno::Reference m_xComponent;
 };
 
diff --git a/sc/qa/extras/scdatapilotitemobj.cxx 
b/sc/qa/extras/scdatapilotitemobj.cxx
index 5d182624c00f..a11f2e571623 100644
--- a/sc/qa/extras/scdatapilotitemobj.cxx
+++ b/sc/qa/extras/scdatapilotitemobj.cxx
@@ -48,12 +48,10 @@ public:
 CPPUNIT_TEST_SUITE_END();
 
 private:
-static sal_Int32 nMaxFieldIndex;
+static const int nMaxFieldIndex = 6;
 uno::Reference< lang::XComponent > mxComponent;
 };
 
-sal_Int32 ScDataPilotItemObj::nMaxFieldIndex = 6;
-
 ScDataPilotItemObj::ScDataPilotItemObj()
  : CalcUnoApiTest("/sc/qa/extras/testdocuments")
 {
diff --git a/sc/qa/extras/scdatapilotitemsobj.cxx 
b/sc/qa/extras/scdatapilotitemsobj.cxx
index 720a2ad9e8ec..69c6c987abe6 100644
--- a/sc/qa/extras/scdatapilotitemsobj.cxx
+++ b/sc/qa/extras/scdatapilotitemsobj.cxx
@@ -40,8 +40,6 @@ using namespace css;
 
 namespace sc_apitest
 {
-const auto nMaxFieldIndex = 6;
-
 class ScDataPilotItemsObj : public CalcUnoApiTest,
 public apitest::XElementAccess,
 public apitest::XEnumerationAccess,
@@ -82,6 +80,7 @@ public:
 CPPUNIT_TEST_SUITE_END();
 
 private:
+static const int nMaxFieldIndex = 6;
 uno::Reference m_xComponent;
 };
 
diff --git a/sc/qa/extras/scindexenumeration_datapilotitemsenumeration.cxx 
b/sc/qa/extras/scindexenumeration_datapilotitemsenumeration.cxx
index 0e123b098853..423714b637aa 100644
--- a/sc/qa/extras/scindexenumeration_datapilotitemsenumeration.cxx
+++ b/sc/qa/extras/scindexenumeration_datapilotitemsenumeration.cxx
@@ -34,8 +34,6 @@ using namespace com::sun::star;
 
 namespace sc_apitest
 {
-const auto nMaxFieldIndex = 6;
-
 class ScIndexEnumeration_DataPilotItemsEnumeration : public CalcUnoApiTest,
  public 
apitest::XEnumeration
 {
@@ -55,6 +53,7 @@ public:
 CPPUNIT_TEST_SUITE_END();
 
 private:
+static const int nMaxFieldIndex = 6;
 uno::Reference m_xComponent;
 };
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: vcl/Package_theme_definitions.mk vcl/uiconfig

2019-03-06 Thread Libreoffice Gerrit user
 vcl/Package_theme_definitions.mk|6 ++
 vcl/uiconfig/theme_definitions/definition.xml   |   28 
 vcl/uiconfig/theme_definitions/tabitem-first-selected.svgx  |3 +
 vcl/uiconfig/theme_definitions/tabitem-first.svgx   |3 +
 vcl/uiconfig/theme_definitions/tabitem-last-selected.svgx   |3 +
 vcl/uiconfig/theme_definitions/tabitem-last.svgx|3 +
 vcl/uiconfig/theme_definitions/tabitem-middle-selected.svgx |3 +
 vcl/uiconfig/theme_definitions/tabitem-middle.svgx  |3 +
 8 files changed, 44 insertions(+), 8 deletions(-)

New commits:
commit 46ada3f8e748533398daf687ad5f37c4c0528b83
Author: Tomaž Vajngerl 
AuthorDate: Sun Mar 3 13:28:55 2019 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Mar 6 21:00:43 2019 +0100

Draw tabs from external svg image, fixes for tabs (colors)

Change-Id: I35db7b8e36c474d2196bfae1ec4dd352e17d2a14
Reviewed-on: https://gerrit.libreoffice.org/68822
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/Package_theme_definitions.mk b/vcl/Package_theme_definitions.mk
index 41dcf1396e8b..122120c1a3c4 100644
--- a/vcl/Package_theme_definitions.mk
+++ b/vcl/Package_theme_definitions.mk
@@ -28,6 +28,12 @@ $(eval $(call 
gb_Package_add_files,vcl_theme_definitions,$(LIBO_SHARE_FOLDER)/th
spinbox-entire.svgx \
pushbutton-default.svgx \
pushbutton-rollover.svgx \
+   tabitem-first.svgx \
+   tabitem-middle.svgx \
+   tabitem-last.svgx \
+   tabitem-first-selected.svgx \
+   tabitem-middle-selected.svgx \
+   tabitem-last-selected.svgx \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/vcl/uiconfig/theme_definitions/definition.xml 
b/vcl/uiconfig/theme_definitions/definition.xml
index 2e6c50e681e7..244f9c259ce4 100644
--- a/vcl/uiconfig/theme_definitions/definition.xml
+++ b/vcl/uiconfig/theme_definitions/definition.xml
@@ -42,8 +42,8 @@
 
 
 
-
-
+
+
 
 
 
@@ -272,11 +272,23 @@
 
 
 
-
-
+
+
 
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
 
 
 
@@ -284,7 +296,7 @@
 
 
 
-
+
 
 
 
@@ -292,7 +304,7 @@
 
 
 
-
+
 
 
 
diff --git a/vcl/uiconfig/theme_definitions/tabitem-first-selected.svgx 
b/vcl/uiconfig/theme_definitions/tabitem-first-selected.svgx
new file mode 100644
index ..771a2df046e0
--- /dev/null
+++ b/vcl/uiconfig/theme_definitions/tabitem-first-selected.svgx
@@ -0,0 +1,3 @@
+http://www.w3.org/2000/svg;>
+ 
+
diff --git a/vcl/uiconfig/theme_definitions/tabitem-first.svgx 
b/vcl/uiconfig/theme_definitions/tabitem-first.svgx
new file mode 100644
index ..f21ed6818380
--- /dev/null
+++ b/vcl/uiconfig/theme_definitions/tabitem-first.svgx
@@ -0,0 +1,3 @@
+http://www.w3.org/2000/svg;>
+ 
+
diff --git a/vcl/uiconfig/theme_definitions/tabitem-last-selected.svgx 
b/vcl/uiconfig/theme_definitions/tabitem-last-selected.svgx
new file mode 100644
index ..8b3c7b57cf26
--- /dev/null
+++ b/vcl/uiconfig/theme_definitions/tabitem-last-selected.svgx
@@ -0,0 +1,3 @@
+http://www.w3.org/2000/svg;>
+ 
+
diff --git a/vcl/uiconfig/theme_definitions/tabitem-last.svgx 
b/vcl/uiconfig/theme_definitions/tabitem-last.svgx
new file mode 100644
index ..494fd20907ad
--- /dev/null
+++ b/vcl/uiconfig/theme_definitions/tabitem-last.svgx
@@ -0,0 +1,3 @@
+http://www.w3.org/2000/svg;>
+ 
+
diff --git a/vcl/uiconfig/theme_definitions/tabitem-middle-selected.svgx 
b/vcl/uiconfig/theme_definitions/tabitem-middle-selected.svgx
new file mode 100644
index ..b1877520eb39
--- /dev/null
+++ b/vcl/uiconfig/theme_definitions/tabitem-middle-selected.svgx
@@ -0,0 +1,3 @@
+http://www.w3.org/2000/svg;>
+ 
+
diff --git a/vcl/uiconfig/theme_definitions/tabitem-middle.svgx 
b/vcl/uiconfig/theme_definitions/tabitem-middle.svgx
new file mode 100644
index ..309d850eb830
--- /dev/null
+++ b/vcl/uiconfig/theme_definitions/tabitem-middle.svgx
@@ -0,0 +1,3 @@
+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: vcl/Package_theme_definitions.mk vcl/uiconfig

2019-03-06 Thread Libreoffice Gerrit user
 vcl/Package_theme_definitions.mk|2 ++
 vcl/uiconfig/theme_definitions/definition.xml   |4 ++--
 vcl/uiconfig/theme_definitions/pushbutton-default.svgx  |3 +++
 vcl/uiconfig/theme_definitions/pushbutton-rollover.svgx |3 +++
 4 files changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 81a504e3919dbcf801859fb28fea0a1d2269c1e2
Author: Tomaž Vajngerl 
AuthorDate: Sun Mar 3 13:25:40 2019 +0100
Commit: Tomaž Vajngerl 
CommitDate: Wed Mar 6 21:00:21 2019 +0100

Draw pushbutton from external svg image

Change-Id: I45d668636d607e09852ee0ff3144500ac03fb8cf
Reviewed-on: https://gerrit.libreoffice.org/68819
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/vcl/Package_theme_definitions.mk b/vcl/Package_theme_definitions.mk
index 282a07a47df4..41dcf1396e8b 100644
--- a/vcl/Package_theme_definitions.mk
+++ b/vcl/Package_theme_definitions.mk
@@ -26,6 +26,8 @@ $(eval $(call 
gb_Package_add_files,vcl_theme_definitions,$(LIBO_SHARE_FOLDER)/th
spinbox-left.svgx \
spinbox-right.svgx \
spinbox-entire.svgx \
+   pushbutton-default.svgx \
+   pushbutton-rollover.svgx \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/vcl/uiconfig/theme_definitions/definition.xml 
b/vcl/uiconfig/theme_definitions/definition.xml
index a44ab10134e7..2e6c50e681e7 100644
--- a/vcl/uiconfig/theme_definitions/definition.xml
+++ b/vcl/uiconfig/theme_definitions/definition.xml
@@ -57,10 +57,10 @@
 
 
 
-
+
 
 
-
+
 
 
 
diff --git a/vcl/uiconfig/theme_definitions/pushbutton-default.svgx 
b/vcl/uiconfig/theme_definitions/pushbutton-default.svgx
new file mode 100644
index ..24a3b12c2d58
--- /dev/null
+++ b/vcl/uiconfig/theme_definitions/pushbutton-default.svgx
@@ -0,0 +1,3 @@
+http://www.w3.org/2000/svg;>
+ 
+
diff --git a/vcl/uiconfig/theme_definitions/pushbutton-rollover.svgx 
b/vcl/uiconfig/theme_definitions/pushbutton-rollover.svgx
new file mode 100644
index ..6dbaf3278146
--- /dev/null
+++ b/vcl/uiconfig/theme_definitions/pushbutton-rollover.svgx
@@ -0,0 +1,3 @@
+http://www.w3.org/2000/svg;>
+ 
+
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

  1   2   3   4   >