[Libreoffice-bugs] [Bug 42437] Enable the special MacOS X functionality for special caracter input ( éñ etc.)

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42437

--- Comment #9 from Fred  ---
(In reply to V Stuart Foote from comment #7)
> Sorry, but this is *NOT* a bug as supporting "this or that" OS X Cocoa
> NSObject widget implements by Apple requires development effort beyond the
> core cross platform code in LibreOffice.

No, I would define this as standard functionality expected by users of the
platform.  Key to OSX and macos is usability, which also happens to be one of
the guiding arguments to install LibreOffice in the first place because it has
a more stable UI.

> Yes, support for the OS X PressAndHold.app added by Apple at 10.7 (Lion) is
> a reasonable enhancement that requires a developer with interest in native
> OS X Cocoa widgets to take an interest.
> 
> It is already an "OS X Shine and glow" meta.

Does this mean there already is a possibility to enable this functionality for
macos but you omit this deliberately?

> Until then, the LibreOffice Special Character dialog supports this use
> requirement, and its capabilities are being actively improved.

With all due respect, that "support" could do with a lot of improvement for
anyone who has to use this functionality for more than once in a day so I would
welcome an update on what improvements are underway.  It's not like this bug
has only been outstanding for a few days.

Anyone who works in more languages than just English needs this.  Improvements
which macos already provides but maybe it would be better to replicate this
approach so all platforms can enjoy it.  In that case, it also needs to be as
optional as it is for macos - I would not allege Apple's approach to be perfect
either (as it swaps key repeat for selected keys with accent functionality) but
it's a factor better than the current functionality in LO.

For the moment, it means that people who write more than occasionally in
non-English languages are not served well in LibreOffice, a fact also
illustrated by the update process that is sufficiently non-trivial for those
who have the temerity not to speak American (as opposed to English) to
disqualify it for serious end user deployment (and yes, I'll file a bug for
that in a minute).

> will never be as seamless as PressAndHold may be for OS X users, but until a
> developer takes on this enhancement it is what is available cross platform.

Isn't there a conditional in the compiler so you can tell it to use this input
function when compiling for macos?  It's not just that LibreOffice
functionality isn't as useful, it means that on macos, the use LibreOffice
effectively reduces functionality that users expect and that does not help
deployment in multi-lingual environments.  

It's OK if you have, for instance, LO in a language of the country itself
because keyboards typically support all accents directly - a classic example of
that is the Swiss keyboard that has to support several languages at once and is
thus a pain to use for programming, or the French who use AZERTY (which always
takes me a few minutes to get used to), but users who operate in English and
have an English keyboard - well, they're stuck.  Not just in macos.

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


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - sc/qa sc/source

2017-08-10 Thread Bartosz Kosiorek
 sc/qa/unit/data/xlsx/pivot.xlsx   |binary
 sc/qa/unit/subsequent_export-test.cxx |   61 +-
 sc/source/filter/excel/xepivotxml.cxx |   79 +++---
 3 files changed, 123 insertions(+), 17 deletions(-)

New commits:
commit 084a1fc85f2e9099b89b7a0bc519a8d482645155
Author: Bartosz Kosiorek 
Date:   Tue Aug 1 05:40:34 2017 +0200

tdf#89139 tdf#109016 Fix PivotCache fields according to OOXML specification

Apply changes to fields:
 - XML_containsInteger
 - XML_containsBlank
 - XML_containsMixedTypes
 - XML_containsSemiMixedTypes
 - XML_count
According to OOXML specification

https://technet.microsoft.com/en-us/library/documentformat.openxml.spreadsheet.shareditems.aspx

Generally OOXML specification allows listing items for mixed items 
(example: STRING + NUMBERS).
This patch is fixing that.
Example of mixed types:









Cherry-picked from Change-Id: I02b07c79bea60890e3c995dd70cb5c72901a3d4a

Change-Id: I384629de7dc64dd1c62e1fab24df5595b8d6f03e
Reviewed-on: https://gerrit.libreoffice.org/40970
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/sc/qa/unit/data/xlsx/pivot.xlsx b/sc/qa/unit/data/xlsx/pivot.xlsx
new file mode 100644
index ..e6297a91777b
Binary files /dev/null and b/sc/qa/unit/data/xlsx/pivot.xlsx differ
diff --git a/sc/qa/unit/subsequent_export-test.cxx 
b/sc/qa/unit/subsequent_export-test.cxx
index 9deb04ba8be0..514f08c68a54 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -108,7 +108,7 @@ public:
 void testCellNoteExportXLS();
 void testFormatExportODS();
 
-
+void testPivotExportXLSX();
 void testCommentExportXLSX();
 void testCustomColumnWidthExportXLSX();
 void testXfDefaultValuesXLSX();
@@ -212,6 +212,7 @@ public:
 CPPUNIT_TEST(testCellNoteExportXLS);
 CPPUNIT_TEST(testFormatExportODS);
 
+CPPUNIT_TEST(testPivotExportXLSX);
 CPPUNIT_TEST(testCommentExportXLSX);
 CPPUNIT_TEST(testCustomColumnWidthExportXLSX);
 CPPUNIT_TEST(testXfDefaultValuesXLSX);
@@ -504,6 +505,64 @@ void ScExportTest::testFormatExportODS()
 xDocSh->DoClose();
 }
 
+void ScExportTest::testPivotExportXLSX()
+{
+//tdf#89139 FILESAVE  xlsx pivot table corrupted after save with LO and 
re-open with MS Office
+ScDocShellRef xShell = loadDoc("pivot.", FORMAT_XLSX);
+CPPUNIT_ASSERT(xShell.Is());
+
+std::shared_ptr pXPathFile = 
ScBootstrapFixture::exportTo(&(*xShell), FORMAT_XLSX);
+xmlDocPtr pSheet = XPathHelper::parseExport(pXPathFile, m_xSFactory, 
"xl/pivotCache/pivotCacheDefinition1.xml");
+CPPUNIT_ASSERT(pSheet);
+
+assertXPath(pSheet, "/x:pivotCacheDefinition/x:cacheFields/x:cacheField", 
5);
+
+// Four strings and one empty field
+assertXPath(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]", "name", 
"imieinazwisko");
+assertXPath(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]/x:sharedItems", 
"containsBlank", "1");
+assertXPathNoAttribute(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]/x:sharedItems", 
"containsMixedTypes");
+assertXPathNoAttribute(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]/x:sharedItems", 
"containsSemiMixedTypes");
+assertXPathNoAttribute(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]/x:sharedItems", 
"containsString");
+assertXPathNoAttribute(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]/x:sharedItems", 
"containsNumber");
+assertXPathNoAttribute(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]/x:sharedItems", 
"containsInteger");
+assertXPathNoAttribute(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]/x:sharedItems", 
"minValue");
+assertXPathNoAttribute(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]/x:sharedItems", 
"maxValue");
+assertXPath(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[1]/x:sharedItems", "count", 
"5");
+
+// Two integers and one empty field
+assertXPath(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[2]", "name", "wartosc");
+assertXPath(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[2]/x:sharedItems", 
"containsBlank", "1");
+assertXPathNoAttribute(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[2]/x:sharedItems", 
"containsMixedTypes");
+assertXPathNoAttribute(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[2]/x:sharedItems", 
"containsSemiMixedTypes");
+assertXPath(pSheet, 
"/x:pivotCacheDefinition/x:cacheFields/x:cacheField[2]/x:sharedItems", 
"containsString", "0");
+assertXPath(pSheet, 

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

2017-08-10 Thread Julien Nabet
 sfx2/source/control/templatelocalview.cxx |2 --
 1 file changed, 2 deletions(-)

New commits:
commit 05a338159761e012c2c8779f8927b0d709b4416f
Author: Julien Nabet 
Date:   Thu Aug 10 21:06:43 2017 +0200

tdf#111567: fix memleak in TemplateLocalView::insertItems

Clearing mItemList at the begin of insertItems is a bad idea
because it prevents ImplDeleteItems (called by updateItems,
itself called at the end of insertItems) from clearing
correctly mItemList
See comments from bugtracker for more info

(Thank you Alex for the precious info attached with memleak reports! :-))

Change-Id: I04976dbb065d1369562649fc97c33f7fd599b107
Reviewed-on: https://gerrit.libreoffice.org/40995
Reviewed-by: Noel Grandin 
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/sfx2/source/control/templatelocalview.cxx 
b/sfx2/source/control/templatelocalview.cxx
index 81a6ef3bbe75..808e0b1a9a75 100644
--- a/sfx2/source/control/templatelocalview.cxx
+++ b/sfx2/source/control/templatelocalview.cxx
@@ -772,8 +772,6 @@ bool TemplateLocalView::renameItem(ThumbnailViewItem* 
pItem, const OUString& sNe
 
 void TemplateLocalView::insertItems(const std::vector 
, bool isRegionSelected, bool bShowCategoryInTooltip)
 {
-mItemList.clear();
-
 std::vector aItems(rTemplates.size());
 for (size_t i = 0, n = rTemplates.size(); i < n; ++i )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 109248] Add support for .stc format

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109248

--- Comment #5 from krishna [:kr1shna]  ---
fileopen test result on attachment given on comment 1

content is not visible unless i tap sheet in parts on 5.1
it opens properly on 5.2, 5.3 alpha versions

5.0.0.0.alpha1+ [ build id: ab465b9 ]
5.1.0.0.alpha1+ [ build id: 1a6ec13 ]
5.1.0.0.alpha1+ [ build id: 5b791ec ]
5.2.0.0.alpha0+ [ build id: f6a74ce ]
5.3.0.0.alpha1+ [ build id: 4136757 ]

-- 
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 111659] white border around image, viewing and printing. Did not occur in 5.2.x branch.

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111659

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #3 from Jean-Baptiste Faure  ---
(In reply to tom.michiels from comment #2)
> Hi you are right, that solves the problem but then is my question, why is
> this border suddenly appearing in 5.3 and up? It never showed up before...

I guess the problem is in LO 5.2 and previous versions: see
https://wiki.documentfoundation.org/ReleaseNotes/5.3#Borderless_padding_is_displayed

If you look at Space to content in LO 5.2 you will see that you have the same
data as in LO 5.4, but they are greyed out.

Closing again.
Best regards. JBF

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


[Libreoffice-bugs] [Bug 109249] Add support for OOo XML .sxc format

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109249

--- Comment #3 from krishna [:kr1shna]  ---
it closes 5.0, 5.1, 5.2, 5.3 alpha versions

5.0.0.0.alpha1+ [ build id: ab465b9 ]
5.1.0.0.alpha1+ [ build id: 1a6ec13 ]
5.1.0.0.alpha1+ [ build id: 5b791ec ]
5.2.0.0.alpha0+ [ build id: f6a74ce ]
5.3.0.0.alpha1+ [ build id: 4136757 ]

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


Taylor Lee license statement

2017-08-10 Thread taylor leebiz
   All of my past & future contributions to LibreOffice may be
   licensed under the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 111679] DOCX Import - tables converted to text

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111679

--- Comment #2 from Paul  ---
Created attachment 135444
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135444=edit
Screen shot showing the problem (Word vs Writer)

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


[Libreoffice-bugs] [Bug 111679] DOCX Import - tables converted to text

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111679

Paul  changed:

   What|Removed |Added

 CC||paul.jow...@systemic.com.au

--- Comment #1 from Paul  ---
Created attachment 135443
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135443=edit
Source DocX File when loaded into Writer tables are lost

-- 
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 111679] New: DOCX Import - tables converted to text

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111679

Bug ID: 111679
   Summary: DOCX Import - tables converted to text
   Product: LibreOffice
   Version: 4.3.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: paul.jow...@systemic.com.au

Description:
The attached DocX file has two trivial tables.  When loaded into Writer the
tables are lost and converted into text.  The attached screen shot shows how
the document looks in Word vs Writer.

Steps to Reproduce:
1. Open DOCX file in Writer

Actual Results:  
The 2 tables were converted into paragraphs of text.

Expected Results:
The 2 tables should be imported as tables.


Reproducible: Always

User Profile Reset: Yes

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:55.0) Gecko/20100101
Firefox/55.0

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


[Libreoffice-bugs] [Bug 111678] New: fileopen .fods endless loop

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111678

Bug ID: 111678
   Summary: fileopen .fods endless loop
   Product: LibreOffice
   Version: 5.3.0.0.alpha1+
  Hardware: ARM
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kris...@grrlz.net

Description:
odf .fods file endless loop or unable to open on libreoffice viewer 5.3 alpha
version

Steps to Reproduce:
download and open fods.fods attachment 51697

Actual Results:  
in endless loop

Expected Results:
open file

file opens on 5.1 [ displays blank document, displays content if i tap sheet in
parts ], 5.2 alpha versions, however, it does not open or endless loop on 5.3.

fileopen test result:

5.0.0.0.alpha1+ [ build id: ab465b9 ] xml code
5.1.0.0.alpha1+ [ build id: 1a6ec13 ] yes
5.1.0.0.alpha1+ [ build id: 5b791ec ] yes
5.2.0.0.alpha0+ [ build id: f6a74ce ] yes
5.3.0.0.alpha1+ [ build id: 4136757 ] endless loop

os: android 5.1
device: lyf flame 3 [ ls-4001 ]

for other file formats or files https://github.com/kr1shnas/qa/projects/25


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Android 5.1; Mobile; rv:57.0) Gecko/57.0 Firefox/57.0

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


[Libreoffice-bugs] [Bug 84237] Method setErrorHandler in DOM::CDocumentBuilder not working

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84237

Xisco Faulí  changed:

   What|Removed |Added

   Assignee|fyodo...@hotmail.com|libreoffice-b...@lists.free
   ||desktop.org

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


[Libreoffice-bugs] [Bug 111677] New: fileopen .fodt endless loop

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111677

Bug ID: 111677
   Summary: fileopen .fodt endless loop
   Product: LibreOffice
   Version: 5.3.0.0.alpha1+
  Hardware: ARM
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kris...@grrlz.net

Description:
odf .fodt files endless loop or unable to open on libreoffice viewer 5.3 alpha
version

Steps to Reproduce:
download and open AcceleratorKeyChecker.fodt
https://opengrok.libreoffice.org/s?path=AcceleratorKeyChecker.fodt=core

Actual Results:  
in endless loop

Expected Results:
open file

file opens fine on 5.1, 5.2 alpha versions, however, it does not open or
endless loop on 5.3.

fileopen test result:

5.0.0.0.alpha1+ [ build id: ab465b9 ] xml code
5.1.0.0.alpha1+ [ build id: 1a6ec13 ] yes
5.1.0.0.alpha1+ [ build id: 5b791ec ] yes
5.2.0.0.alpha0+ [ build id: f6a74ce ] yes
5.3.0.0.alpha1+ [ build id: 4136757 ] endless loop

os: android 5.1
device: lyf flame 3 [ ls-4001 ]

for other file formats or files https://github.com/kr1shnas/qa/projects/25



Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Android 5.1; Mobile; rv:57.0) Gecko/57.0 Firefox/57.0

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


[Libreoffice-bugs] [Bug 108918] Canadian spell checking not working

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108918

--- Comment #2 from Paul  ---
Thanks for the reply. The issue was with the default installed dictionary. When
the dict-en-20170701.oxt is installed the problem is resolved. My apologies for
wasting your time. Do wish that the default installation would contain all the
pieces necessary. thanks again for your time.

-- 
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 111554] FILEOPEN Format error on 5.4.0.3, but opens fine on the same machine with 5.3.5-1

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111554

--- Comment #10 from Artem  ---
Opened fine on 5.4 on Windows as well. I guess i'll go about leaving a note on
an arch bugtracker then.
Once again thanks everyone for your time and efforts

-- 
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 111676] LO does not print content, but prints background, highlight

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111676

oconcepc...@momatos.com changed:

   What|Removed |Added

 CC||oconcepc...@momatos.com

--- Comment #1 from oconcepc...@momatos.com ---
Created attachment 135442
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135442=edit
Images of documents compared to pdf printing results

The 2 images mentioned on description of the bug were converted into a vertical
strip. Image on top is odt file and bottom is ods file.

-- 
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 111676] New: LO does not print content, but prints background, highlight

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111676

Bug ID: 111676
   Summary: LO does not print content, but prints background,
highlight
   Product: LibreOffice
   Version: 5.4.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: oconcepc...@momatos.com

Description:
Problem happens both on physical and PDF printing. Examples are PDF printing
Attached image 2017-08-10_201324.jpg: .odt document. Yellow color is highlight,
green color is paragraph area.
Attached image 2017-08-10_201704.jpg: .ods document. Yellow color is highlight,
text color on cells D23 and D24 does not appear.

Steps to Reproduce:
1.Open/create document (odt or ods) with content (letters, numbers).
2.Select File->Print or hit Ctrl+p
3.

Actual Results:  
Printer: paper goes through mechanism but results on nothing printed but
colored highlighted or background areas.
PDF printing (PDFCreator): same results.

Expected Results:
Should print content.


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko/20100101
Firefox/54.0

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


[Libreoffice-bugs] [Bug 111675] UI: Functions IFS does not work together with function CURRENT

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111675

--- Comment #3 from Michael  ---
Asked this question before opening this bug:
https://ask.libreoffice.org/en/question/120323/calc-bug-inbecause-of-function-style-german-vorlage/

-- 
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 111675] UI: Functions IFS does not work together with function CURRENT

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111675

--- Comment #2 from Michael  ---
LO calc version is officially shipped version with OpenSuse Leap 42.3

-- 
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 111675] UI: Functions IFS does not work together with function CURRENT

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111675

--- Comment #1 from Michael  ---
Created attachment 135441
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135441=edit
SampleSTYLE.ods, sample ODS explaining the IFS bug

-- 
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 111675] New: UI: Functions IFS does not work together with function CURRENT

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111675

Bug ID: 111675
   Summary: UI: Functions IFS does not work together with function
CURRENT
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michae...@rocketmail.com

Description:
Using Function IFS and CURRENT within Test expressions leads to not
comprehensible results.

Target/background: A cell (referencing whatever, e.g. COUNTIF etc.) should have
a STYLE() applied, depending on another cell's value, e.g. a treshold in a real
life example

Works with nested if, does NOT WORK with IFS. Example uploaded.

Steps to Reproduce:
All in uploaded "SampleSTYLE.ods":

Both ref value B2 and Treshold value B3 are the same, e.g. 4


Actual Results:  
(B5) =B2+STYLE(IFS(CURRENT()B3;"Rot")) 
leads to 4 with "Rot" = RED, wrong as CURRENT()=B3 is TRUE!

(B6)
=B2+STYLE(IF(CURRENT()B3;"Rot"
leads to 4 with "Gelb" = YELLOW, correct.

Expected Results:
IFS should be able to work in combination with CURRENT


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101
Firefox/52.0

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


[Libreoffice-bugs] [Bug 87685] include ODF opening options announcement by default when sending document by e-mail

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87685

--- Comment #11 from Edmund Laugasson  ---
(In reply to Heiko Tietze from comment #10)
> Comments are clear, and there is not much agreement to a fully implemented
> solution in this thread. But you can surely do such a automatic disclaimer
> with a macro. That would be be a really cool extension.

Do not have programming skills. Does not much matter whether it will be a macro
or just one setting - it would be beneficial feature especially for LibreOffice
community. Why companies may advertise Adobe and send spam (if you call it so)
and actually same companies (and any other people as well) using TDF's
LibreOffice may not?

This would help people understand, that ODF files are not just weird files that
do not open and to avoid using MS Office (MSO) opening ODF and then make people
guess that ODF does not work well while MSO does not show ODF properly. If
people just would know and use proper software for ODF like LibreOffice then it
would be good awareness raising opportunity also for TDF.

-- 
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 111674] Always office:value="0" for field variable "Formula", which is in file format

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111674

Regina Henschel  changed:

   What|Removed |Added

Version|5.3.5.2 release |5.3.0.0.alpha0+

--- Comment #2 from Regina Henschel  ---
And in Version: 5.3.0.0.alpha0+
Build ID: e10a4c1cc9f8b2033997c7f032255071aafab9c9
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
TinderBox: Win-x86@42, Branch:master, Time: 2016-05-26_23:59:52
Locale: de-DE (de_DE)

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


[Libreoffice-bugs] [Bug 111674] Always office:value="0" for field variable "Formula", which is in file format

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111674

Regina Henschel  changed:

   What|Removed |Added

Version|6.0.0.0.alpha0+ Master  |5.3.5.2 release

--- Comment #1 from Regina Henschel  ---
Error is already in Version: 5.3.5.2
Build ID: 50d9bf2b0a79cdb85a3814b592608037a682059d
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; Layout Engine:
new; 
Locale: de-DE (de_DE); Calc: group

-- 
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 111674] New: Always office:value="0" for field variable "Formula", which is in file format

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111674

Bug ID: 111674
   Summary: Always office:value="0" for field variable "Formula",
which is  in file format
   Product: LibreOffice
   Version: 6.0.0.0.alpha0+ Master
  Hardware: x86 (IA32)
   URL: http://docs.oasis-open.org/office/v1.2/os/OpenDocument
-v1.2-os-part1.html
OS: Windows (All)
Status: UNCONFIRMED
  Keywords: regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

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

Open attached document in editor and verify, that office:value="5".
Open the file in LibreOffice 5.2 and save is with a new name. Verify, that
still office:value="5".
Open the file in LibreOffice 6.0 and save it with a new name. Open it in
editor. Notice that office:value="0" now.

The attribute office:value must have the current value of a 
element. Read specification section "7.4.14" and
"19.384office:value".

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


Re: UnoService in PyUNO for keyboard shortcuts in extensions: JobExecutor never called.

2017-08-10 Thread jan d
Hi Miklos, Hi List,

I did some changes and passed the class instead of the instance but it does
not work either; looking at the print messages that I inserted it seems to
be never initialized.
I'll try to step through the TuesdayPrinter.py and see if that gives me any
insights; if you have any other ideas,I'd be happy to hear what else could
be wrong.

Jan


On Tue, Aug 8, 2017 at 9:30 AM, Miklos Vajna 
wrote:

> Hi,
>
> On Tue, Aug 08, 2017 at 09:21:36AM +0200, jan d 
> wrote:
> > POSSIBLE PROBLEM SOURCES:
> > * I was unable to find the docuementation for
> > g_ImplementationHelper.addImplementation e.g. if it takes a class or an
> > instance. I tried with both (the inked example is an instance), non
> worked.
>
> https://gerrit.libreoffice.org/gitweb?p=sdk-examples.git;
> a=blob;f=TuesdayPython/TuesdayPrinter.py;hb=HEAD#l61
>
> I think this does something similar to your use-case, and there you can
> see that addImplementation() takes a class, not an instance.
>
> Regards,
>
> Miklos
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 111631] EDITING: The font spacing of some characters is changing slightly when changing the font color

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111631

Regina Henschel  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||rb.hensc...@t-online.de
 Ever confirmed|0   |1

--- Comment #5 from Regina Henschel  ---
I see the little shift. For inside the changed area it might be a result of
different kerning. But I have no idea why a single character shifts, which is
outside the changed area.
Tested with Version: 5.2.7.2
Build ID: 2b7f1e640c46ceb28adf43ee075a6e8b8439ed10
CPU Threads: 4; OS Version: Windows 6.1; UI Render: default; 
Locale: de-DE (de_DE); Calc: group

-- 
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 111554] FILEOPEN Format error on 5.4.0.3, but opens fine on the same machine with 5.3.5-1

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111554

--- Comment #8 from Artem  ---
(In reply to Julien Nabet from comment #6)
> On pc Debian x86-64 with master sources updated today (with rendering kde4
> and gtk3), I don't reproduce this.
> I also tried with LO Debian 5.4.0.3, no pb too.
> 
> Just for info, I noticed this:
> warn:sc:22420:1:sc/source/filter/orcus/orcusfiltersimpl.cxx:173: Unable to
> load styles from xml file! failed to load
> but perhaps unrelated.

So maybe not an upstream, but somehow a distro-related thing? if i get it right
Buovjaga was able to reproduce it on Arch as well

-- 
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 111082] Allow change of orientation, by clicking on page image in the page style dialog

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111082

--- Comment #5 from Gavin Flower  ---
I don't consider the image of the page orientation a real preview, but as an
indication of how the page is orientated.

A tomato is technically a berry, but most people don't call them berries!  So
while in you design lexicon you call it a preview, it does not have to be
treated as one!

In programming, meaningful names a Good Thing (TM) - however, sometimes
systematic naming is far more appropriate (I first had this insight when I was
a COBOL programmer) - so insisting on using meaningful names everywhere is bad!

Please consider how to make LibreOffice more user friendly, rather stick to
design rules that are not always appropriate!

So I think it would be advantageous to reverse your decision on this!

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-ux-advise] [Bug 111082] Allow change of orientation, by clicking on page image in the page style dialog

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111082

--- Comment #5 from Gavin Flower  ---
I don't consider the image of the page orientation a real preview, but as an
indication of how the page is orientated.

A tomato is technically a berry, but most people don't call them berries!  So
while in you design lexicon you call it a preview, it does not have to be
treated as one!

In programming, meaningful names a Good Thing (TM) - however, sometimes
systematic naming is far more appropriate (I first had this insight when I was
a COBOL programmer) - so insisting on using meaningful names everywhere is bad!

Please consider how to make LibreOffice more user friendly, rather stick to
design rules that are not always appropriate!

So I think it would be advantageous to reverse your decision on this!

Thanks...

-- 
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 107611] duplicate message definitions in some .pot files

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107611

Xisco Faulí  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108336] GTK3: Menubar need click to move from one menu to another

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108336

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #4 from Xisco Faulí  ---
I can't reproduce it in

Versió: 6.0.0.0.alpha0+
ID de la construcció: 0342c5e8086c8200ecadbe9d52dd4ef6a093effb
CPU threads: 4; OS: Linux 4.10; UI render: per defecte; VCL: gtk3; 
Configuració local: ca-ES (ca_ES.UTF-8); Calc: group

on Ubuntu 17.04

-- 
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 111672] texas ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number service …

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111672

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.12|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111673] Amazon Echo: 1888229 6124 Amazon prime customer service phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111673

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|FirefoxOS app   |deletionrequest
Version|1.0.2   |unspecified
 Resolution|--- |INVALID
Product|Impress Remote  |LibreOffice

-- 
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 111341] Writer freezes when opening doc file with header

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111341

Julien Nabet  changed:

   What|Removed |Added

 CC||mst...@redhat.com

--- Comment #7 from Julien Nabet  ---
Michael: on a gdb session, I noticed I'm stuck here:
 44 while ( pTmp && pTmp != pObj )
 45 pTmp = pTmp->GetPrev();
which corresponds to frame 1 of my 2nd bt attached.
I don't know if it's layout or cache related but thought you might be
interested in this one.

-- 
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 111480] FILEOPEN: Circular text is imported horizontally

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111480

--- Comment #4 from Xisco Faulí  ---
Fix verified in

Version: 6.0.0.0.alpha0+
Build ID: ef2e6260fad38e26c8591ea88ded348db618270d
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group

Please, close it as RESOLVED FIXED if your work is done here

-- 
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 111318] Improve message about pivot table/chart when removing a cell

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111318

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #29 from Julien Nabet  ---
Let's put this one to FIXED now.

-- 
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 111073] Fullscreen: incorrect gif's background (gtk3)

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111073

Xisco Faulí  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected

--- Comment #3 from Xisco Faulí  ---
Regression introduced by:

author  Caolán McNamara 2017-07-26 13:37:40 (GMT)
committer   Caolán McNamara 2017-07-26 15:58:47
(GMT)
commit  d148340babf6c973f7d463909d7a51e16c953248 (patch)
tree50e0196392d19c51704ade91d1f99924d9df70bb
parent  38df569a66fb038b10c3d1d9890863592c0c29cc (diff)
Resolves: tdf#104141 CAIRO_FORMAT_A1 vs N1BitLsbPal
where vcl transparency is the opposite of cairo's so we've been switching the
source color to the opposite for drawing on CAIRO_FORMAT_A1 and then sucking
out the bits "as-is" to give the right results.

Now instead use the right source color and toggle CAIRO_FORMAT_A1 bitmaps to
N1BitLsbPal in getBitmap.

Then additionally toggle all N1BitLsbPal bitmaps input to drawBitmap to
CAIRO_FORMAT_A1 when making a cairo surface from them.

Bisected with bibisect-linux64-6.0.

Adding Cc: to Caolán McNamara

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

2017-08-10 Thread Julien Nabet
 sc/inc/globstr.hrc |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4e2b44860c2c304ea728c512b47ca07aaf1cd452
Author: Julien Nabet 
Date:   Thu Aug 10 19:09:54 2017 +0200

tdf#111318: Improve msg about pivot table/chart when removing a cell (take 
2)

Change-Id: I56e0fb1716d38471682084569d48907520922b26
Reviewed-on: https://gerrit.libreoffice.org/40991
Reviewed-by: Adolfo Jayme Barrientos 
Tested-by: Adolfo Jayme Barrientos 

diff --git a/sc/inc/globstr.hrc b/sc/inc/globstr.hrc
index af7c749baaee..979a0824171c 100644
--- a/sc/inc/globstr.hrc
+++ b/sc/inc/globstr.hrc
@@ -149,7 +149,7 @@
 #define STR_PIVOT_MOVENOTALLOWED
NC_("STR_PIVOT_MOVENOTALLOWED", "The data range can not be deleted.")
 #define STR_PIVOT_ERROR NC_("STR_PIVOT_ERROR", "Error 
creating the pivot table.")
 #define STR_PIVOT_NOTEMPTY  NC_("STR_PIVOT_NOTEMPTY", "The 
destination range is not empty. Overwrite existing contents?")
-#define STR_PIVOT_REMOVE_PIVOTCHART 
NC_("STR_PIVOT_REMOVE_PIVOTCHART", "There is at least one pivot chart 
associated with this pivot table. Should remove all or abort?")
+#define STR_PIVOT_REMOVE_PIVOTCHART 
NC_("STR_PIVOT_REMOVE_PIVOTCHART", "Deleting the pivot table will also remove 
any associated pivot charts.\nDo you want to proceed?")
 #define STR_DATAPILOT_SUBTOTAL  NC_("STR_DATAPILOT_SUBTOTAL", 
"The source range contains subtotals which may distort the results. Use it 
anyway?")
 #define STR_PIVOT_TOTAL NC_("STR_PIVOT_TOTAL", "Total")
 #define STR_PIVOT_DATA  NC_("STR_PIVOT_DATA", "Data")
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 111673] New: Amazon Echo: 1888229 6124 Amazon prime customer service phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111673

Bug ID: 111673
   Summary: Amazon Echo:1888229 6124 Amazon prime customer service
phone number
   Product: Impress Remote
   Version: 1.0.2
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: FirefoxOS app
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: daisha...@j3rqt89ez.com

Created attachment 135439
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135439=edit
https://merakhanisupport.freshdesk.com/support/solutions/articles/33000117327-amazon-echo-%EF%BC%91%EF%BC%98%EF%BC%98%EF%BC%98%EF%BC%92%EF%BC%929-6%EF%BC%91%EF%BC%92%EF%BC%94-amazon-prime-customer-ser

Amazon Echo:1888229 6124
Amazon prime customer service phone number
CALL FOR HELP 1:888:229:6124 Amazon Fire Stick Tech Support Number {MBBS}
OPTIONS OPTIONS
Amazon tech Support number USA/CANADA

Amazon technical Support Phone number USA/CANADA

Amazon technical Support number USA/CANADA

Amazon pro tech Support Phone number USA/CANADA

Amazon pro tech Support number USA/CANADA

Amazon pro technical Support Phone number USA/CANADA

Amazon pro technical Support number USA/CANADA

Amazon customer service number USA/CANADA

Amazon customer service phone number USA/CANADA

Amazon customer support number USA/CANADA

Amazon customer support phone number USA/CANADA

Amazon pay tech Support Phone number USA/CANADA

Amazon pay tech Support number USA/CANADA

Amazon pay technical Support Phone number USA/CANADA

Amazon pay technical Support number USA/CANADA

Amazon premier support phone number USA/CANADA

Amazon premier support number USA/CANADA

Amazon premier support number USA/CANADA

Amazon help desk phone number USA/CANADA

Amazon help desk number USA/CANADA

Amazon Error Support number USA/CANADA

Amazon Error Support phone number USA/CANADA

Amazon Contact number USA/CANADA

Amazon Error Support

Amazon Support Contact number USA/CANADA

Amazon Support Phone number USA/CANADA

Amazon Support Phone number USA/CANADA

Amazon pro Support Phone number USA/CANADA

Amazon pro Support Phone number USA/CANADA

Amazon tech Support Phone number USA/CANADA USA

Amazon tech Support number USA/CANADA  USA

Amazon technical Support Phone number USA/CANADA USA

Amazon technical Support number USA/CANADA USA

Amazon pro tech Support Phone number USA/CANADA USA

Amazon pro tech Support number USA/CANADA USA

Amazon pro technical Support Phone number USA/CANADA USA

Amazon pro technical Support number USA/CANADA USA

Amazon customer service number USA/CANADA USA

Amazon prime customer service phone number USA/CANADA USA

Amazon customer support number USA/CANADA USA

Amazon customer support phone number USA/CANADA USA

Amazon pay tech Support Phone number USA/CANADA USA

Amazon pay tech Support number USA/CANADA USA

Amazon pay technical Support Phone number USA/CANADA USA

Amazon pay technical Support number USA/CANADA USA

Amazon premier support phone number USA/CANADA USA

Amazon premier support number USA/CANADA USA

Amazon help desk phone number USA/CANADA USA

Amazon help desk number USA/CANADA USA
https://merakhanisupport.freshdesk.com/support/solutions/articles/33000117327-amazon-echo-%EF%BC%91%EF%BC%98%EF%BC%98%EF%BC%98%EF%BC%92%EF%BC%929-6%EF%BC%91%EF%BC%92%EF%BC%94-amazon-prime-customer-service-phone-number
https://jaanumerijaansupportphonenumber.wordpress.com/2017/08/10/amazon-echo%EF%BC%91%EF%BC%98%EF%BC%98%EF%BC%98%EF%BC%92%EF%BC%929-6%EF%BC%91%EF%BC%92%EF%BC%94-amazon-prime-customer-service-phone-number/

-- 
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 111318] Improve message about pivot table/chart when removing a cell

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111318

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=4e2b44860c2c304ea728c512b47ca07aaf1cd452

tdf#111318: Improve msg about pivot table/chart when removing a cell (take 2)

It will be available in 6.0.0.

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

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

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


[Libreoffice-bugs] [Bug 111672] New: texas ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number service …

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111672

Bug ID: 111672
   Summary: texas ®1-888-229-6124® Amazon prime phone Number
Amazon prime Phone Number service …
   Product: cppunit
   Version: 1.12
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: daisha...@j3rqt89ez.com

Created attachment 135438
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135438=edit
https://events.com/r/en_US/event/amazon-ebooks-kitana1888-2296124-amazon-prime-customer-service-phone-number-august-487824
https://1d4chan.org/wiki/Amazon_eBooks_kitana_%E2%8A%97_%E2%8A%97_1888-229612

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service …

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service …

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service …

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service …

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service …

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service …

The best Amazon customer phone number with quickest path to a real human being,
a map of thephone system, skip waiting on hold, call from your computer, …

https://events.com/r/en_US/event/oregon-1-888-229-6124-amazon-prime-phone-number-amazon-prime-phone-number-service–august-494209
https://events.com/r/en_US/event/amazon-ebooks-kitana1888-2296124-amazon-prime-customer-service-phone-number-august-487824
https://1d4chan.org/wiki/Amazon_eBooks_kitana_%E2%8A%97_%E2%8A%97_1888-2296124_Amazon_prime_customer_service_Phone_number..
http://wiki.rebirthro.com/wiki/Amazon_eBooks_kitana_@_%E2%8A%97_1888-2296124_Amazon_prime_customer_service_Phone_number..
https://jaanumerijaansupportphonenumber.wordpress.com/2017/08/10/amazon-ebooks-kitana%1888-2296124-amazon-prime-customer-service-phone-number/
https://bugs.documentfoundation.org/show_bug.cgi?id=111641
https://kdp.amazon.com/community/thread.jspa?threadID=881596

https://events.com/r/en_US/event/amazon-prime-number-1-888-229-6l24-amazon-prime-customer-service-phone-number--august-488558
https://1d4chan.org/wiki/Amazon_prime_Number_%E2%84%A2%C2%AE(1-888-229-6l24)%E2%84%A2%C2%AE_Amazon_prime_customer_service_phone_Number_...
http://wiki.rebirthro.com/wiki/Amazon_prime_Number_%E2%84%A2%C2%AE(1-888-229-6l24)%E2%84%A2%C2%AE_Amazon_prime_customer_service_phone_Number_...
https://jaanumerijaansupportphonenumber.wordpress.com/2017/08/10/amazon-prime-number-1-888-229-6l24-amazon-prime-customer-service-phone-number/
https://bugs.documentfoundation.org/show_bug.cgi?id=111647
https://kdp.amazon.com/community/thread.jspa?threadID=881659

https://goforjeevensupport.freshdesk.com/support/solutions/articles/33000116447--amazon-alexa-devices-%EF%BC%91%EF%BC%98%EF%BC%98%EF%BC%98%EF%BC%92%EF%BC%929-6%EF%BC%91%EF%BC%92%EF%BC%94-amazon-prime-customer-service-phone-number
https://jaanumerijaansupportphonenumber.wordpress.com/2017/08/10/amazon-alexa-devices%EF%BC%91%EF%BC%98%EF%BC%98%EF%BC%98%EF%BC%92%EF%BC%929-6%EF%BC%91%EF%BC%92%EF%BC%94-amazon-prime-customer-service-phone-number/
https://bugs.documentfoundation.org/show_bug.cgi?id=111668
https://kdp.amazon.com/community/thread.jspa?threadID=882496

https://events.com/r/en_US/event/oregon-1-888-229-6124-amazon-prime-phone-number-amazon-prime-phone-number-service--august-493927
https://jaanumerijaansupportphonenumber.wordpress.com/2017/08/10/oregon-1-888-229-6124-amazon-prime-phone-number-amazon-prime-phone-number-service/
https://bugs.documentfoundation.org/show_bug.cgi?id=111670
https://kdp.amazon.com/community/thread.jspa?threadID=881659

-- 
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 111671] KHATRAPATRA@1-844-897-O441 W.o.r.d.p.r.e.s.s  number@ W.o.r.d.p.r.e.s.s  support phone number W.o.r.d.p.r.e.s.s  phone number @ Tu Mera Dil

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111671

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.12|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111670] New: OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number service ...

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111670

Bug ID: 111670
   Summary: OREGON ®1-888-229-6124® Amazon prime phone Number
Amazon prime Phone Number service ...
   Product: Document Liberation Project
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michaeljohn...@j3rqt89ez.com

Created attachment 135436
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135436=edit
https://events.com/r/en_US/event/oregon-1-888-229-6124-amazon-prime-phone-number-amazon-prime-phone-number-service--august-493927

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service ...

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service ...

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service ...

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service ...

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service ...

OREGON ®1-888-229-6124® Amazon prime phone Number Amazon prime Phone Number
service ...

The best Amazon customer phone number with quickest path to a real human being,
a map of thephone system, skip waiting on hold, call from your computer, ...
https://events.com/r/en_US/event/oregon-1-888-229-6124-amazon-prime-phone-number-amazon-prime-phone-number-service--august-493927
https://jaanumerijaansupportphonenumber.wordpress.com/2017/08/10/oregon-1-888-229-6124-amazon-prime-phone-number-amazon-prime-phone-number-service/

-- 
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 111668] Amazon Alexa Devices: 1888229 6124 Amazon prime customer service phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111668

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.12|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111666] MERI +1-8 4479Ø_➈193 ℊarmin ℊps su =?UTF-8?Q?pport=20number=20?=, ℊarmin ℊps technical support phone number JKHKKKKKK

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111666

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.14|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111669] Chooracall 1-8 44..8 =?UTF-8?Q?97=5F=C3=98441=20?=""=?UTF-8?Q?=C2=AE?="" 1-844_897_O441™W.o.r.d.p.r.e.s.s phone number W.o.r.d.p.r.e.s.s number W.o.r.d.p.r.e.s.s PH

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111669

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.14|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111667] Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps support PHONE number @!@! HERO

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111667

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|FirefoxOS app   |deletionrequest
Version|1.0.2   |unspecified
 Resolution|--- |INVALID
Product|Impress Remote  |LibreOffice

-- 
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 111664] TERIMERI +1-8 4479Ø_➈1➈3 ℊarmin =?UTF-8?Q?=E2=84=8Aps=20support=20number=20?=, ℊarmin ℊps technical support phone number MenuKehnDe

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111664

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.14|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 108580] Cannot run LibreOffice, api-ms-win-crt-runtime-l1-1-0.dll is missing ( for local solution see comment 7)

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108580

Aron Budea  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |https://bugs.documentfounda
   |tion.org/show_bug.cgi?id=10 |tion.org/show_bug.cgi?id=10
   |9994|8005
Summary|install the software every  |Cannot run LibreOffice,
   |system after that click the |api-ms-win-crt-runtime-l1-1
   |libreoffice icon error msge |-0.dll is missing (for
   |will received did not open  |local solution see comment
   |the software|7)

--- Comment #7 from Aron Budea  ---
This is where Visual C++ 2015 Redistributable Update 3 has to be installed
from:
https://www.microsoft.com/en-us/download/details.aspx?id=53840

-- 
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 109994] Installation succeeds but subsequent execution fails with missing api-ms-win-crt-runtime-l1-1-0.dll

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109994

Aron Budea  changed:

   What|Removed |Added

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

-- 
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 108005] Writer hangs several seconds after saving

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108005

Aron Budea  changed:

   What|Removed |Added

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

-- 
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 108908] [META] Visual Basic for Applications (VBA) macro issues

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108908
Bug 108908 depends on bug 107902, which changed state.

Bug 107902 Summary: Macro in XLSM gives error in Calc, but runs fine in Excel
https://bugs.documentfoundation.org/show_bug.cgi?id=107902

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108897] [META] XLSX (OOXML) bug tracker

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108897
Bug 108897 depends on bug 107902, which changed state.

Bug 107902 Summary: Macro in XLSM gives error in Calc, but runs fine in Excel
https://bugs.documentfoundation.org/show_bug.cgi?id=107902

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 111341] Writer freezes when opening doc file with header

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111341

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

I attached bt from a random break during hanging.

It seems a layout 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-bugs] [Bug 111659] white border around image, viewing and printing. Did not occur in 5.2.x branch.

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111659

--- Comment #2 from tom.michi...@gmail.com ---
Hi you are right, that solves the problem but then is my question, why is this
border suddenly appearing in 5.3 and up? It never showed up before...

-- 
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 111318] Improve message about pivot table/chart when removing a cell

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111318

--- Comment #27 from Jean-Baptiste Faure  ---
(In reply to Julien Nabet from comment #22)
> [...]
> Heiko/Sophie/Jean-Baptiste/Pedro: what do you think about comment 19?

Sound good to me too.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 108580] install the software every system after that click the libreoffice icon error msge will received did not open the software

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108580

Aron Budea  changed:

   What|Removed |Added

 CC||r...@unidot.com

--- Comment #6 from Aron Budea  ---
*** Bug 109994 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 108580] install the software every system after that click the libreoffice icon error msge will received did not open the software

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108580

Aron Budea  changed:

   What|Removed |Added

 CC||luismiguel.laco...@gmail.co
   ||m

--- Comment #5 from Aron Budea  ---
*** Bug 111628 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 109994] Installation succeeds but subsequent execution fails with missing api-ms-win-crt-runtime-l1-1-0.dll

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109994

Aron Budea  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |DUPLICATE

--- Comment #7 from Aron Budea  ---


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

-- 
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 111628] LibreOffice 5.4.0.3 can't start on Windows 7

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111628

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #6 from Aron Budea  ---
Let's trace this issue in bug 108580.

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

-- 
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 111659] white border around image, viewing and printing. Did not occur in 5.2.x branch.

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111659

tom.michi...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 108580] install the software every system after that click the libreoffice icon error msge will received did not open the software

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108580

Aron Budea  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 CC||ba...@caesar.elte.hu
 Resolution|NOTOURBUG   |---
   Assignee|karthikma...@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #4 from Aron Budea  ---
Let's keep this open until we actually find out what's going on, or at least
until the reports stop coming in.

-- 
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 108897] [META] XLSX (OOXML) bug tracker

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108897
Bug 108897 depends on bug 107858, which changed state.

Bug 107858 Summary: Autofilter is created differently in Excel macro compared 
to manual creation
https://bugs.documentfoundation.org/show_bug.cgi?id=107858

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108908] [META] Visual Basic for Applications (VBA) macro issues

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108908
Bug 108908 depends on bug 107858, which changed state.

Bug 107858 Summary: Autofilter is created differently in Excel macro compared 
to manual creation
https://bugs.documentfoundation.org/show_bug.cgi?id=107858

   What|Removed |Added

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

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


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

2017-08-10 Thread Tamas Bunth
 sc/inc/queryparam.hxx  |3 ++-
 sc/source/core/tool/queryparam.cxx |   11 ++-
 sc/source/ui/vba/vbarange.cxx  |8 +---
 sc/source/ui/view/gridwin.cxx  |   10 --
 4 files changed, 17 insertions(+), 15 deletions(-)

New commits:
commit b946ab02b246e85c34f8fa77d99e19dacda07fe5
Author: Tamas Bunth 
Date:   Fri Aug 11 00:45:59 2017 +0200

tdf#107797 UpdateAutoFilter handle more entries

Prepare UpdateAutoFilterFromMenu to handle more entries.

Filter items can be hold by more than one entries. In that case we have
to remove all the old entries before updating.

E.g. setting AutoFilter from vba script results in more than one
entries.

Change-Id: I4f18f26281d0b8e689cd331f9a66f4c344fb6c6b
Reviewed-on: https://gerrit.libreoffice.org/40967
Tested-by: Jenkins 
Reviewed-by: Tamás Bunth 

diff --git a/sc/inc/queryparam.hxx b/sc/inc/queryparam.hxx
index a96375a8002e..3b406bb49bc5 100644
--- a/sc/inc/queryparam.hxx
+++ b/sc/inc/queryparam.hxx
@@ -59,7 +59,8 @@ struct ScQueryParamBase
 SC_DLLPUBLIC ScQueryEntry& AppendEntry();
 ScQueryEntry* FindEntryByField(SCCOLROW nField, bool bNew);
 std::vector FindAllEntriesByField(SCCOLROW nField);
-SC_DLLPUBLIC void RemoveEntryByField(SCCOLROW nField);
+SC_DLLPUBLIC bool RemoveEntryByField(SCCOLROW nField);
+SC_DLLPUBLIC void RemoveAllEntriesByField(SCCOLROW nField);
 void Resize(size_t nNew);
 void FillInExcelSyntax( svl::SharedStringPool& rPool, const OUString& 
aCellStr, SCSIZE nIndex,
 SvNumberFormatter* pFormatter );
diff --git a/sc/source/core/tool/queryparam.cxx 
b/sc/source/core/tool/queryparam.cxx
index 72fa4919537e..c902d2796bd4 100644
--- a/sc/source/core/tool/queryparam.cxx
+++ b/sc/source/core/tool/queryparam.cxx
@@ -161,10 +161,11 @@ std::vector 
ScQueryParamBase::FindAllEntriesByField(SCCOLROW nFie
 return aEntries;
 }
 
-void ScQueryParamBase::RemoveEntryByField(SCCOLROW nField)
+bool ScQueryParamBase::RemoveEntryByField(SCCOLROW nField)
 {
 EntriesType::iterator itr = std::find_if(
 m_Entries.begin(), m_Entries.end(), FindByField(nField));
+bool bRet = false;
 
 if (itr != m_Entries.end())
 {
@@ -173,7 +174,15 @@ void ScQueryParamBase::RemoveEntryByField(SCCOLROW nField)
 // Make sure that we have at least MAXQUERY number of entries at
 // all times.
 m_Entries.push_back(o3tl::make_unique());
+bRet = true;
 }
+
+return bRet;
+}
+
+void ScQueryParamBase::RemoveAllEntriesByField(SCCOLROW nField)
+{
+while( RemoveEntryByField( nField ) ) {}
 }
 
 void ScQueryParamBase::Resize(size_t nNew)
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx
index 1de9b9533815..e54bf486f7d8 100644
--- a/sc/source/ui/view/gridwin.cxx
+++ b/sc/source/ui/view/gridwin.cxx
@@ -778,12 +778,10 @@ void 
ScGridWindow::UpdateAutoFilterFromMenu(AutoFilterMode eMode)
 ScQueryParam aParam;
 pDBData->GetQueryParam(aParam);
 
-if (eMode == Normal && mpAutoFilterPopup->isAllSelected())
-{
-// Remove this entry.
-aParam.RemoveEntryByField(rPos.Col());
-}
-else
+// Remove old entries.
+aParam.RemoveAllEntriesByField(rPos.Col());
+
+if( !(eMode == Normal && mpAutoFilterPopup->isAllSelected() ) )
 {
 // Try to use the existing entry for the column (if one exists).
 ScQueryEntry* pEntry = aParam.FindEntryByField(rPos.Col(), true);
commit 7e728965b3f5a37a6f0bd75d616d2acb16c40f71
Author: Tamas Bunth 
Date:   Fri Aug 11 01:57:55 2017 +0200

tdf#107858 oovbaapi: Autofilter always has header

If AutoFilter created with vba macro, it should always use a header
(because Excel does the same), regardless of the type of cells in the
first row.

Change-Id: I586e092ac62c893b9873cc4b988566d8f00636cc
Reviewed-on: https://gerrit.libreoffice.org/40969
Tested-by: Jenkins 
Reviewed-by: Tamás Bunth 

diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index 5aae79fd6889..29944d78dccb 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -4438,13 +4438,7 @@ ScVbaRange::AutoFilter( const uno::Any& aField, const 
uno::Any& Criteria1, const
 xDBRangeProps->setPropertyValue( "AutoFilter", uno::Any(true) );
 // set header (autofilter always need column headers)
 uno::Reference< beans::XPropertySet > xFiltProps( 
xDataBaseRange->getFilterDescriptor(), uno::UNO_QUERY_THROW );
-bool bHasColHeader = false;
-ScDocument* pDoc = pShell ? >GetDocument() : nullptr;
-if (pDoc)
-{
-bHasColHeader = pDoc->HasColHeader(  static_cast< SCCOL >( 
autoFiltAddress.StartColumn ), 

[Libreoffice-bugs] [Bug 111659] white border around image, viewing and printing. Did not occur in 5.2.x branch.

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111659

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jbfa...@libreoffice.org
 Resolution|--- |NOTABUG

--- Comment #1 from Jean-Baptiste Faure  ---
Select the picture, right click then choose Properties, tab Borders and Space
to content -> you can see there is a big space defined between the picture and
the border. Remove this space.

Closing as NotABug. Please feel free to reopen if I am wrong.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 111662] "="- reference between cells does not work

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111662

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jbfa...@libreoffice.org
 Resolution|--- |NOTABUG

--- Comment #1 from Jean-Baptiste Faure  ---
The cell C2 on the second sheet is formatted as text instead of number. To fix
the problem: cut the formula in the formula bar, change the cell format to
Number, paste the formula in the formula bar.

Closing as NotABug.
Please feel free to reopen if I am wrong.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 111667] New: Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps support PHONE number @!@! HERO

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111667

Bug ID: 111667
   Summary: Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service
phone number ℊarmin ℊps support PHONE number @!@! HERO
   Product: Impress Remote
   Version: 1.0.2
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: FirefoxOS app
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: michaeljohn...@j3rqt89ez.com

Created attachment 135432
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135432=edit
https://hamariadhurikahanisupport.freshdesk.com/support/solutions/articles/33000116182-%EF%BC%A6book-call-1-844-79o-%E2%9E%88193-%E2%84%8Aarmin-%E2%84%8Aps-customer-service-phone-number-%E2%84%8Aarmin

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service phone number ℊarmin ℊps
support PHONE number @!@! HERO

Fbook call®1-844_79O_➈193™ℊarmin ℊps customer service 

[Libreoffice-bugs] [Bug 111666] New: MERI +1-8 4479Ø_➈193 ℊarmin ℊps su =?UTF-8?Q?pport=20number=20?=, ℊarmin ℊps technical support phone number JKHKKKKKK

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111666

Bug ID: 111666
   Summary: MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin
ℊps technical support phone number JKHKK
   Product: cppunit
   Version: 1.14
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: aubriell...@j3rqt89ez.com

MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
MERI +1-8 4479Ø_➈193 ℊarmin ℊps support number ,ℊarmin ℊps technical support
phone number JKHKK
G.a.r.m.i.n.  customer support



G.a.r.m.i.n.  customer service number



G.a.r.m.i.n.  customer service



G.a.r.m.i.n.  support phone number



G.a.r.m.i.n.  support number



G.a.r.m.i.n.  customer support



G.a.r.m.i.n.  customer service number



G.a.r.m.i.n.  customer service



(TOLL FREE)@ ? G.a.r.m.i.n.  customer service



(TOLL FREE)@ 

[Libreoffice-bugs] [Bug 111665] New: "Data" -> "Validity": represent boolean values with a checkbox

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111665

Bug ID: 111665
   Summary: "Data" -> "Validity": represent boolean values with a
checkbox
   Product: LibreOffice
   Version: 5.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: c.bu...@posteo.jp

When you use the menu "Data" -> "Validity" and give a "list" or some cell's
content then the cell has dropdown menu. Nice.

It would make sense having a checkbox for bool values there.

I know you can use the "Checkbox" button from the "Form Controls" toolbar. But
such a control doesn't appear as the content of a cell. I would like to have
checkboxes for each cell in on column.

-- 
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 105550] FORMATTING Pasting text changes paragraph format

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105550

--- Comment #3 from Ulrich Gemkow  ---
Further investigation shows that this is a problem with an old LO document
opened in a new LO release:

The attached document was created with a older LO release which had not yet
separated the list styles from the "Styles and Formatting" list of styles. For
this document the list format was modified in the paragraph styles with the old
LO release.

When editing the old document in the current LO release the changing of the
paragraph "auto-assigns" the list style to the paragraph and this style is
different from the old modified list style.

When opening the attached document in the current LO release you see that the
list styles are in both lists.

I cannot judge what would be the correct behaviour. IMHO it would be correct to
copy the "old" list styles to the new ones when opening an old document to be
backward compatible. Or is the current behaviour intended?

[Unfortunately I cannot determine which old LO release was the creator of the
document, the document was changed several times with different LO releases]

-- 
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 111662] New: "="- reference between cells does not work

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111662

Bug ID: 111662
   Summary: "="- reference between cells does not work
   Product: LibreOffice
   Version: 5.3.4.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ib-zoe...@t-online.de

Created attachment 135430
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135430=edit
calc-bug reference between cells does not work

Hi,
I have an ots-file with three sheets.
Now I want to duplicate the value from a cell on sheet1 to the same cell on
sheet2 and sheet3.
In some cases it works, in other cases not.
see the atteched file:

source (sheet1): pauschal auf Stundenbasis
used cells: C1 (empty), M1 (empty), Q1 (actual date =HEUTE() ), C2 (empty)

sink (sheet2): pauschal auf Flächenbasis
C1: ='pauschal auf Stundenbasis'.C1 -> 0 (as expected)
M1: ='pauschal auf Stundenbasis'.M1 -> 0 (as expected)
Q1: ='pauschal auf Stundenbasis'.Q1 -> actual date ( =HEUTE() ) (as expected)
C2: ='pauschal auf Stundenbasis'.C2 -> ='pauschal auf Stundenbasis'.C2

sink (sheet2): pauschal auf Flächenbasis
C1: ='pauschal auf Stundenbasis'.C1 -> ='pauschal auf Stundenbasis'.C1
M1: ='pauschal auf Stundenbasis'.M1 -> ='pauschal auf Stundenbasis'.C1
Q1: ='pauschal auf Stundenbasis'.Q1 -> actual date ( =HEUTE() ) (as expected)
C2: ='pauschal auf Stundenbasis'.C2 -> ='pauschal auf Stundenbasis'.C2

curious, in some cells it works, in some cells not.

-- 
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 87685] include ODF opening options announcement by default when sending document by e-mail

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87685

Heiko Tietze  changed:

   What|Removed |Added

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

--- Comment #10 from Heiko Tietze  ---
Comments are clear, and there is not much agreement to a fully implemented
solution in this thread. But you can surely do such a automatic disclaimer with
a macro. That would be be a really cool extension.

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


[Libreoffice-commits] core.git: include/svx sd/source svx/source

2017-08-10 Thread Varun Dhall
 include/svx/AffineMatrixItem.hxx |3 
 include/svx/xbtmpit.hxx  |3 
 include/svx/xcolit.hxx   |3 
 include/svx/xflclit.hxx  |2 
 include/svx/xflgrit.hxx  |3 
 include/svx/xflhtit.hxx  |3 
 include/svx/xftshcit.hxx |2 
 include/svx/xit.hxx  |3 
 include/svx/xlnclit.hxx  |2 
 include/svx/xlndsit.hxx  |3 
 include/svx/xlnedit.hxx  |3 
 include/svx/xlnstit.hxx  |3 
 include/svx/xsflclit.hxx |2 
 sd/source/ui/func/fupage.cxx |2 
 svx/source/xoutdev/xattr.cxx |  406 ---
 svx/source/xoutdev/xattr2.cxx|   27 --
 svx/source/xoutdev/xattrbmp.cxx  |   23 --
 17 files changed, 1 insertion(+), 492 deletions(-)

New commits:
commit 97b889b8b2b2554ce33fd6b3f0359fc18f39832d
Author: Varun Dhall 
Date:   Tue Aug 1 10:36:45 2017 +0530

WIP: Removing unused SfxItemPool serialisation from svx

Change-Id: I3222033fadd688959fd55e3f335540054fc418f4
Reviewed-on: https://gerrit.libreoffice.org/40612
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 

diff --git a/include/svx/AffineMatrixItem.hxx b/include/svx/AffineMatrixItem.hxx
index 872e3f7eb9d7..dad733a33b50 100644
--- a/include/svx/AffineMatrixItem.hxx
+++ b/include/svx/AffineMatrixItem.hxx
@@ -35,14 +35,11 @@ private:
 
 public:
 AffineMatrixItem(const css::geometry::AffineMatrix2D* pMatrix);
-AffineMatrixItem(SvStream& rIn);
 AffineMatrixItem(const AffineMatrixItem&);
 virtual ~AffineMatrixItem() override;
 
 virtual bool operator==(const SfxPoolItem&) const override;
 virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override;
-virtual SfxPoolItem* Create( SvStream& rIn, sal_uInt16 nVer ) const 
override;
-virtual SvStream& Store(SvStream &, sal_uInt16 nItemVersion ) const 
override;
 
 virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) 
const override;
 virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) 
override;
diff --git a/include/svx/xbtmpit.hxx b/include/svx/xbtmpit.hxx
index 0180e3dbd0e0..48e14836cd0d 100644
--- a/include/svx/xbtmpit.hxx
+++ b/include/svx/xbtmpit.hxx
@@ -49,12 +49,9 @@ public:
 XFillBitmapItem(const OUString& rName, const GraphicObject& 
rGraphicObject);
 XFillBitmapItem( const GraphicObject& rGraphicObject );
 XFillBitmapItem( const XFillBitmapItem& rItem );
-XFillBitmapItem( SvStream& rIn, sal_uInt16 nVer );
 
 virtual booloperator==( const SfxPoolItem& rItem ) const 
override;
 virtual SfxPoolItem*Clone( SfxItemPool* pPool = nullptr ) const 
override;
-virtual SfxPoolItem*Create( SvStream& rIn, sal_uInt16 nVer ) const 
override;
-virtual SvStream&   Store( SvStream& rOut, sal_uInt16 nItemVersion  ) 
const override;
 virtual sal_uInt16  GetVersion( sal_uInt16 nFileFormatVersion ) const 
override;
 
 virtual boolQueryValue( css::uno::Any& rVal, sal_uInt8 
nMemberId = 0 ) const override;
diff --git a/include/svx/xcolit.hxx b/include/svx/xcolit.hxx
index 3acdf0f00f0c..df3723542516 100644
--- a/include/svx/xcolit.hxx
+++ b/include/svx/xcolit.hxx
@@ -44,13 +44,10 @@ public:
 
 XColorItem(sal_uInt16 nWhich, const Color& rTheColor);
 XColorItem(sal_uInt16 nWhich, const OUString& rName, const Color& 
rTheColor);
-XColorItem(sal_uInt16 nWhich, SvStream& rIn);
 XColorItem(const XColorItem& rItem);
 
 virtual booloperator==(const SfxPoolItem& rItem) const 
override;
 virtual SfxPoolItem*Clone(SfxItemPool* pPool = nullptr) const override;
-virtual SfxPoolItem*Create(SvStream& rIn, sal_uInt16 nVer) const 
override;
-virtual SvStream&   Store(SvStream& rOut, sal_uInt16 nItemVersion ) 
const override;
 
 const Color&GetColorValue() const;
 voidSetColorValue(const Color& rNew) { aColor = rNew; 
Detach(); }
diff --git a/include/svx/xflclit.hxx b/include/svx/xflclit.hxx
index c3ea60c41f0f..820e574bbaf4 100644
--- a/include/svx/xflclit.hxx
+++ b/include/svx/xflclit.hxx
@@ -37,10 +37,8 @@ public:
 XFillColorItem() {}
 XFillColorItem(sal_Int32 nIndex, const Color& rTheColor);
 XFillColorItem(const OUString& rName, const Color& rTheColor);
-XFillColorItem(SvStream& rIn);
 
 virtual SfxPoolItem*Clone(SfxItemPool* pPool = nullptr) const override;
-virtual SfxPoolItem*Create(SvStream& rIn, sal_uInt16 nVer) const 
override;
 
 virtual boolQueryValue( css::uno::Any& rVal, sal_uInt8 
nMemberId = 0 ) const override;
 virtual boolPutValue( const css::uno::Any& rVal, sal_uInt8 
nMemberId ) override;
diff --git a/include/svx/xflgrit.hxx b/include/svx/xflgrit.hxx
index 

[Libreoffice-bugs] [Bug 108336] GTK3: Menubar need click to move from one menu to another

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108336

--- Comment #3 from Jean-Louis Fuchs  ---
My versions:

LibreOffice 5.3.5
Xorg 1.19.3
gtk+3.0 3.22

-- 
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 108336] GTK3: Menubar need click to move from one menu to another

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108336

Jean-Louis Fuchs  changed:

   What|Removed |Added

Summary|GTK3/Wayland :  Menubar |GTK3: Menubar need click to
   |need click to move from one |move from one menu to
   |menu to another |another

--- Comment #2 from Jean-Louis Fuchs  ---
I have this bug too, I am using Xorg. I'd say this is not wayland related.

-- 
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 111661] KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone number ℊarmin troubleshooting update

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111661

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.14|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111661] New: KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone number ℊarmin troubleshooting update

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111661

Bug ID: 111661
   Summary: KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin
number@ ℊarmin phone number ℊarmin troubleshooting
update
   Product: cppunit
   Version: 1.14
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: addyson...@j3rqt89ez.com

Created attachment 135429
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135429=edit
https://hamariadhurikahanisupport.freshdesk.com/support/solutions/articles/33000115725-kirpanlassi-1-844-79o-9193-%E2%84%8Aarmin-support-%E2%84%8Aarmin-number-%E2%84%8Aarmin-phone-number-%E2%84%8Aarmi

KHATRA@1-844-2o2-o9o9 ℊarmin suppKirpanLassi @ 1~844~*79O*~9193 ℊarmin support
ℊarmin number@ ℊarmin phone number ℊarmin troubleshooting update
KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone
number ℊarmin troubleshooting update
KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone
number ℊarmin troubleshooting update
KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone
number ℊarmin troubleshooting update
KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone
number ℊarmin troubleshooting update
KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone
number ℊarmin troubleshooting update
KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone
number ℊarmin troubleshooting update
KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone
number ℊarmin troubleshooting update
KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone
number ℊarmin troubleshooting update
KirpanLassi @ 1~844~*79O*~9193 ℊarmin support ℊarmin number@ ℊarmin phone
number ℊarmin troubleshooting update
v

G.a.r.m.i.n technical Support Phone number USA/CANADA

G.a.r.m.i.n technical Support number USA/CANADA

G.a.r.m.i.n pro tech Support Phone number USA/CANADA

G.a.r.m.i.n pro tech Support number USA/CANADA

G.a.r.m.i.n pro technical Support Phone number USA/CANADA

G.a.r.m.i.n pro technical Support number USA/CANADA

G.a.r.m.i.n customer service number USA/CANADA

G.a.r.m.i.n customer service phone number USA/CANADA

G.a.r.m.i.n customer support number USA/CANADA

G.a.r.m.i.n customer support phone number USA/CANADA

G.a.r.m.i.n pay tech Support Phone number USA/CANADA

G.a.r.m.i.n pay tech Support number USA/CANADA

G.a.r.m.i.n pay technical Support Phone number USA/CANADA

G.a.r.m.i.n pay technical Support number USA/CANADA

G.a.r.m.i.n premier support phone number USA/CANADA

G.a.r.m.i.n premier support number USA/CANADA

G.a.r.m.i.n premier support number USA/CANADA

G.a.r.m.i.n help desk phone number USA/CANADA

G.a.r.m.i.n help desk number USA/CANADA

G.a.r.m.i.n Error Support number USA/CANADA

G.a.r.m.i.n Error Support phone number USA/CANADA

G.a.r.m.i.n Contact number USA/CANADA

G.a.r.m.i.n Error Support

G.a.r.m.i.n Support Contact number USA/CANADA

G.a.r.m.i.n Support Phone number USA/CANADA

G.a.r.m.i.n Support Phone number USA/CANADA

G.a.r.m.i.n pro Support Phone number USA/CANADA

G.a.r.m.i.n pro Support Phone number USA/CANADA

G.a.r.m.i.n tech Support Phone number USA/CANADA USA

G.a.r.m.i.n tech Support number USA/CANADA  USA

G.a.r.m.i.n technical Support Phone number USA/CANADA USA

G.a.r.m.i.n technical Support number USA/CANADA USA

G.a.r.m.i.n pro tech Support Phone number USA/CANADA USA

G.a.r.m.i.n pro tech Support number USA/CANADA USA

G.a.r.m.i.n pro technical Support Phone number USA/CANADA USA

G.a.r.m.i.n pro technical Support number USA/CANADA USA

G.a.r.m.i.n customer service number USA/CANADA USA

G.a.r.m.i.n GPS customer service phone number USA/CANADA USA

G.a.r.m.i.n customer support number USA/CANADA USA

G.a.r.m.i.n customer support phone number USA/CANADA USA

G.a.r.m.i.n pay tech Support Phone number USA/CANADA USA

G.a.r.m.i.n pay tech Support number USA/CANADA USA

G.a.r.m.i.n pay technical Support Phone number USA/CANADA USA

G.a.r.m.i.n pay technical Support number USA/CANADA USA

G.a.r.m.i.n premier support phone number USA/CANADA USA

G.a.r.m.i.n premier support number USA/CANADA USA

G.a.r.m.i.n help desk phone number USA/CANADA USA

G.a.r.m.i.n help desk number USA/CANADA USA
https://hamariadhurikahanisupport.freshdesk.com/support/solutions/articles/33000115725-kirpanlassi-1-844-79o-9193-%E2%84%8Aarmin-support-%E2%84%8Aarmin-number-%E2%84%8Aarmin-phone-number-%E2%84%8Aarmin-troubleshooti
\https://garminsupportnumber786.wordpress.com/2017/08/10/kirpanlassi-184479o9193-%E2%84%8Aarmin-support-%E2%84%8Aarmin-number-%E2%84%8Aarmin-phone-number-%E2%84%8Aarmin-troubleshooting-update/

-- 
You are receiving this mail because:
You are the assignee for the 

[Libreoffice-bugs] [Bug 39468] translate German comments, removing redundant ones

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39468

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

http://cgit.freedesktop.org/libreoffice/core/commit/?id=88b0711aa5cda440805fa49f16f7c83ea0b2e292

tdf#39468: Translate some german comments

It will be available in 6.0.0.

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

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

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


[Libreoffice-commits] core.git: soltools/cpp sw/source toolkit/source tools/source

2017-08-10 Thread Christian Barth
 soltools/cpp/_macro.c|3 ++-
 sw/source/filter/html/htmlatr.cxx|2 +-
 sw/source/filter/ww8/wrtw8sty.cxx|4 ++--
 sw/source/filter/ww8/ww8scan.cxx |2 +-
 sw/source/ui/dbui/dbinsdlg.cxx   |2 +-
 toolkit/source/helper/unopropertyarrayhelper.cxx |6 +++---
 tools/source/stream/stream.cxx   |2 +-
 7 files changed, 11 insertions(+), 10 deletions(-)

New commits:
commit 88b0711aa5cda440805fa49f16f7c83ea0b2e292
Author: Christian Barth 
Date:   Thu Aug 10 20:25:35 2017 +0200

tdf#39468: Translate some german comments

Change-Id: Ie9062738de26b44394d4c91b31fab99a813f
Signed-off-by: Christian Barth 
Reviewed-on: https://gerrit.libreoffice.org/40994
Reviewed-by: Michael Stahl 
Tested-by: Michael Stahl 

diff --git a/soltools/cpp/_macro.c b/soltools/cpp/_macro.c
index a5e5b931d431..e8b87d002f4c 100644
--- a/soltools/cpp/_macro.c
+++ b/soltools/cpp/_macro.c
@@ -587,8 +587,9 @@ void
 ntp->len + ntp->wslen);
 len += ntp->len + ntp->wslen;
 }
-else// Leerzeichen um ## herum entfernen:
+else
 {
+// remove spaces around ##
 strncpy((char *) tt + len, (char *) ntp->t, ntp->len);
 len += ntp->len;
 }
diff --git a/sw/source/filter/html/htmlatr.cxx 
b/sw/source/filter/html/htmlatr.cxx
index 2d99f4dabcd3..a7390832ad27 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -2820,7 +2820,7 @@ static Writer& OutHTML_SwUnderline( Writer& rWrt, const 
SfxPoolItem& rHt )
 }
 else if( rHTMLWrt.m_bCfgOutStyles && rHTMLWrt.m_bTextAttr )
 {
-// vielleicht als CSS1-Attribut ?
+// maybe as CSS1 attribute?
 OutCSS1_HintSpanTag( rWrt, rHt );
 }
 
diff --git a/sw/source/filter/ww8/wrtw8sty.cxx 
b/sw/source/filter/ww8/wrtw8sty.cxx
index a6abde487871..cae1fb75bc5f 100644
--- a/sw/source/filter/ww8/wrtw8sty.cxx
+++ b/sw/source/filter/ww8/wrtw8sty.cxx
@@ -1001,7 +1001,7 @@ MSWordSections::MSWordSections( MSWordExportBase& rExport 
)
 pFormat = pSectNd->GetSection().GetFormat();
 }
 
-// Hole evtl. Pagedesc des 1. Nodes
+// Try to get page descriptor of the first node
 if ( pSet &&
  SfxItemState::SET == pSet->GetItemState( RES_PAGEDESC, true,  ) &&
  static_cast(pI)->GetPageDesc() )
@@ -1901,7 +1901,7 @@ void MSWordExportBase::WriteHeaderFooterText( const 
SwFormat& rFormat, bool bHea
 {
 // there is no Header/Footer, but a CR is still necessary
 OSL_ENSURE( pSttIdx, "Header/Footer text is not really present" );
-AttrOutput().EmptyParagraph(); // CR ans Ende ( sonst mault WW )
+AttrOutput().EmptyParagraph();
 }
 }
 
diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx
index cacbf5b54cd5..5d82f5d61706 100644
--- a/sw/source/filter/ww8/ww8scan.cxx
+++ b/sw/source/filter/ww8/ww8scan.cxx
@@ -6721,7 +6721,7 @@ struct WW8_FFN_Ver6
 sal_Char szFfn[maxStrSize]; // 0x6 bzw. 0x40 ab Ver8 zero terminated 
string that
 // records name of font.
 // Maximal size of szFfn is 65 characters.
-// Vorsicht: Dieses Array kann auch kleiner sein!!!
+// Attention: This array can also be smaller!!!
 // Possibly followed by a second sz which records the
 // name of an alternate font to use if the first named
 // font does not exist on this system.
diff --git a/sw/source/ui/dbui/dbinsdlg.cxx b/sw/source/ui/dbui/dbinsdlg.cxx
index 272d2d6fb3b0..d1ebf8a4360f 100644
--- a/sw/source/ui/dbui/dbinsdlg.cxx
+++ b/sw/source/ui/dbui/dbinsdlg.cxx
@@ -1001,7 +1001,7 @@ void SwInsertDBColAutoPilot::DataToDoc( const 
Sequence& rSelection,
 }
 
 do{ // middle checked loop!!
-if( bAsTable )  // Daten als Tabelle einfuegen
+if( bAsTable )  // fill in data as table
 {
 rSh.DoUndo( false );
 
diff --git a/toolkit/source/helper/unopropertyarrayhelper.cxx 
b/toolkit/source/helper/unopropertyarrayhelper.cxx
index d78544c9fb4a..fcae24bc831e 100644
--- a/toolkit/source/helper/unopropertyarrayhelper.cxx
+++ b/toolkit/source/helper/unopropertyarrayhelper.cxx
@@ -66,7 +66,7 @@ sal_Bool UnoPropertyArrayHelper::fillPropertyMembersByHandle( 
OUString * pPropNa
 
 css::uno::Sequence< css::beans::Property > 
UnoPropertyArrayHelper::getProperties()
 {
-// Sortiert nach Namen...
+// Sort by names ...
 
 std::map aSortedPropsIds;
 for( 

[Libreoffice-bugs] [Bug 111511] PIVOT TABLE: Group renaming after undoing occurs an invalid name error

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111511

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
Crash report or|92616   |
crash signature||

-- 
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 111554] FILEOPEN Format error on 5.4.0.3, but opens fine on the same machine with 5.3.5-1

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111554

--- Comment #7 from Julien Nabet  ---
I just wonder if the zip compression could be a bit corrupted.
Here's the result of zip -v on the file:
zip -v osm1.ods 
zip warning: undefined bits used in flags = 0x0808: meta.xml
zip warning: undefined bits used in flags = 0x0808: styles.xml
zip warning: undefined bits used in flags = 0x0808: manifest.rdf
zip warning: undefined bits used in flags = 0x0808: settings.xml
zip warning: undefined bits used in flags = 0x0808:
META-INF/manifest.xml
zip warning: undefined bits used in flags = 0x0808: content.xml

Perhaps the transfer with Android is the cause?

-- 
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 111554] FILEOPEN Format error on 5.4.0.3, but opens fine on the same machine with 5.3.5-1

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111554

--- Comment #6 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today (with rendering kde4 and
gtk3), I don't reproduce this.
I also tried with LO Debian 5.4.0.3, no pb too.

Just for info, I noticed this:
warn:sc:22420:1:sc/source/filter/orcus/orcusfiltersimpl.cxx:173: Unable to load
styles from xml file! failed to load
but perhaps unrelated.

-- 
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 111642] Libreoffice crash when assigning macro to sheet events

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111642

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #2 from Xisco Faulí  ---
Thank you for reporting the bug.
Unfortunately without clear steps to reproduce it, we cannot track down the
origin of the problem.
Please provide a clearer set of step-by-step instructions on how to reproduce
the problem.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the steps are provided

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


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

2017-08-10 Thread Andrea Gelmini
 include/oox/vml/vmldrawing.hxx   |2 +-
 svx/source/dialog/searchcharmap.cxx  |2 +-
 sw/source/uibase/ribbar/workctrl.cxx |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 3bf6b6d9ba2914d10b6b215c87838f9f4a24cefc
Author: Andrea Gelmini 
Date:   Thu Aug 10 14:18:33 2017 +0200

Fix typos

Change-Id: Ia138abbdb81f0c324721118d487392757f779a96
Reviewed-on: https://gerrit.libreoffice.org/40971
Tested-by: Jenkins 
Reviewed-by: Michael Stahl 

diff --git a/include/oox/vml/vmldrawing.hxx b/include/oox/vml/vmldrawing.hxx
index e75fd480b82f..40c3ba20de90 100644
--- a/include/oox/vml/vmldrawing.hxx
+++ b/include/oox/vml/vmldrawing.hxx
@@ -81,7 +81,7 @@ struct OOX_DLLPUBLIC ControlInfo
 OUString maShapeId;  ///< Shape identifier for shape lookup.
 OUString maFragmentPath; ///< Path to the fragment describing the 
form control properties.
 OUString maName; ///< Programmatical name of the form 
control.
-bool mbTextContentShape; ///< Whether this control shape will be 
imported to Writer or not (has AnchorType poperty or not).
+bool mbTextContentShape; ///< Whether this control shape will be 
imported to Writer or not (has AnchorType property or not).
 
 explicitControlInfo();
 
diff --git a/svx/source/dialog/searchcharmap.cxx 
b/svx/source/dialog/searchcharmap.cxx
index 2e4379440015..ff22615f77fa 100644
--- a/svx/source/dialog/searchcharmap.cxx
+++ b/svx/source/dialog/searchcharmap.cxx
@@ -155,7 +155,7 @@ void SvxSearchCharSet::SelectCharacter( const Subset* sub )
 else
 SelectIndex( nMapIndex );
 aHighHdl.Call(this);
-// move selected item to top row if not in focusf
+// move selected item to top row if not in focus
 aVscrollSB->SetThumbPos( nMapIndex / COLUMN_COUNT );
 Invalidate();
 }
diff --git a/sw/source/uibase/ribbar/workctrl.cxx 
b/sw/source/uibase/ribbar/workctrl.cxx
index 2e39915a9743..1e90edefb888 100644
--- a/sw/source/uibase/ribbar/workctrl.cxx
+++ b/sw/source/uibase/ribbar/workctrl.cxx
@@ -751,7 +751,7 @@ void NavElementBox_Impl::Select()
 if ( !IsTravelSelect() )
 {
 sal_uInt16 nPos = GetSelectEntryPos();
-// adjust array index for Ids after NID_PREV in aNavigationInsterIds
+// adjust array index for Ids after NID_PREV in aNavigationInsertIds
 if ( nPos >= NID_COUNT/2 - 1 )
 ++nPos;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 111658] Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111658

Xisco Faulí  changed:

   What|Removed |Added

  Component|General |deletionrequest
Version|1.14|unspecified
Product|cppunit |LibreOffice

-- 
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 111658] Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111658

Xisco Faulí  changed:

   What|Removed |Added

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

-- 
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 111659] New: white border around image, viewing and printing. Did not occur in 5.2.x branch.

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111659

Bug ID: 111659
   Summary: white border around image, viewing and printing. Did
not occur in 5.2.x branch.
   Product: LibreOffice
   Version: 5.3.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tom.michi...@gmail.com

Description:
I have this problem with a document which was exported originally from
Microsoft word. The image in the right upper corner shows normal in all
versions up to 5.2.x but when I upgraded to 5.3 or 5.4 a big white border
appears around the image. Happens in Windows and in OS X.  
Check the file for yourself at
https://tmichiels.stackstorage.com/s/prv300OrvNVTyYx

Steps to Reproduce:
1. I cannot tell how to reproduce as this is a file which always worked in
previous versions.
2. you can check the file for yourself at
https://tmichiels.stackstorage.com/s/prv300OrvNVTyYx
3.

Actual Results:  
A thick white border appears around the image/logo in the upper left corner.

Expected Results:
no white border and transparant with background.


Reproducible: Always

User Profile Reset: yes, used freshly installed libreoffice under windows to
verify.

Additional Info:
I've made a sample file to show the issue:
https://tmichiels.stackstorage.com/s/prv300OrvNVTyYx


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/603.3.8
(KHTML, like Gecko) Version/10.1.2 Safari/603.3.8

-- 
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 111658] New: Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111658

Bug ID: 111658
   Summary: Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@
ℊarmin ℊps support phone number
   Product: cppunit
   Version: 1.14
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jatniel@j3rqt89ez.com

Created attachment 135427
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135427=edit
https://hamariadhurikahanisupport.freshdesk.com/support/solutions/articles/33000115410-kacchera-jhumar1-844-79o-9l93-%E2%84%8Aarmin-%E2%84%8Aps-number-%E2%84%8Aarmin-%E2%84%8Aps-support-phone-number

Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone
number
Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone
number
Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone
number
Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone
number
Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone
number
Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone
number
Kacchera@Jhumar1-844-79O-9l93 ℊarmin ℊps number@ ℊarmin ℊps support phone
number


G.a.r.m.i.n  Customer Support Phone Number
G.a.r.m.i.n  G.P.S  Tech Support Number
G.a.r.m.i.n  G.P.S  Tech Support Phone Number
G.a.r.m.i.n  G.P.S  Support
G.a.r.m.i.n  G.P.S  Phone Number
G.a.r.m.i.n  Technical Support Number
G.a.r.m.i.n  G.P.S  Support Number
G.a.r.m.i.n  Toll Free Number
G.a.r.m.i.n  Contact
G.a.r.m.i.n  Customer Service Number
G.a.r.m.i.n  G.P.S  Customer Service Phone Number
G.a.r.m.i.n  Support Telephone Number
Contact G.a.r.m.i.n  Support
G.a.r.m.i.n  Customer Support Number
G.a.r.m.i.n  G.P.S  Customer Service Number
G.a.r.m.i.n  Helpline Number
G.a.r.m.i.n  G.P.S  Customer Support Phone Number
Phone Number For G.a.r.m.i.n
G.a.r.m.i.n  Help Number
G.a.r.m.i.n  Telephone Number
G.a.r.m.i.n  Phone Number Customer Service
G.a.r.m.i.n  Phone Support
G.a.r.m.i.n  Help Phone Number
Phone Number For G.a.r.m.i.n  Customer Service
Phone Number For G.a.r.m.i.n  Support
Support For G.a.r.m.i.n
G.a.r.m.i.n  Tech Support Phone
Contact G.a.r.m.i.n  Technical Support
G.a.r.m.i.n  G.P.S  Contact Number
G.a.r.m.i.n  G.P.S  Customer Service
G.a.r.m.i.n  G.P.S  Customer Support Number
G.a.r.m.i.n  Support Contact Number
G.a.r.m.i.n  Help Desk
G.a.r.m.i.n  Customer Support Telephone Number
G.a.r.m.i.n  Contact Support
G.a.r.m.i.n  Support Phone
Contact G.a.r.m.i.n  Customer Service
G.a.r.m.i.n  Customer Service Phone
Telephone Number For G.a.r.m.i.n  Customer Support
Contact G.a.r.m.i.n  Internet Security
G.a.r.m.i.n  Phone Number Support
G.a.r.m.i.n  G.P.S  Customer Support
G.a.r.m.i.n  Com Customer Service Phone Number
G.a.r.m.i.n  Com Support Phone Number
G.a.r.m.i.n  Telephone Support Number
G.a.r.m.i.n  844 Number
G.a.r.m.i.n  Technical Support Telephone Number
G.a.r.m.i.n  Com Customer Service Number
G.a.r.m.i.n  Internet Security Customer Service Phone Number
G.a.r.m.i.n  1844 Number

contact G.a.r.m.i.n.  support by phone,how do you contact G.a.r.m.i.n.  ,
G.a.r.m.i.n.



headquarters number, G.a.r.m.i.n.  help email address,how do i contact



G.a.r.m.i.n.  by phone, G.a.r.m.i.n.  help,how can i call G.a.r.m.i.n.  ,
G.a.r.m.i.n.  hq



phone number,how to email G.a.r.m.i.n.  ,how tocontact G.a.r.m.i.n.  support



team, G.a.r.m.i.n.  hotline,does G.a.r.m.i.n.  have a phone number,
G.a.r.m.i.n.



numbers,is there a phone number for G.a.r.m.i.n.  ,how to contact G.a.r.m.i.n.



customer service,how to call on G.a.r.m.i.n.  ,how do i email G.a.r.m.i.n. 
,how do



i contact G.a.r.m.i.n.  directly, G.a.r.m.i.n.  head office, G.a.r.m.i.n. 
corporate



office phone number,how to contact G.a.r.m.i.n.  about a problem
https://hamariadhurikahanisupport.freshdesk.com/support/solutions/articles/33000115410-kacchera-jhumar1-844-79o-9l93-%E2%84%8Aarmin-%E2%84%8Aps-number-%E2%84%8Aarmin-%E2%84%8Aps-support-phone-number
https://garminsupportnumber786.wordpress.com/2017/08/10/kaccherajhumar1-844-79o-9l93-%E2%84%8Aarmin-%E2%84%8Aps-number-%E2%84%8Aarmin-%E2%84%8Aps-support-phone-number/

-- 
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 111653] W.o.r.d.p.r.e.s.s customer support 1844-897-Ô441 W.o.r.d.p.r.e.s.s phone number 1844-897-Ô441

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111653

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.14|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111656] MERI +1-8 4479O_➈193 ℊarmin Customer =?UTF-8?Q?service=20number=20?=, ℊarmin ℊps technical support phone number JKHKKKKKK

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111656

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
 Resolution|--- |INVALID
Product|libabw  |LibreOffice

-- 
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 111652] WordPress number ◆ I844 897 O441 ◆ wordpress phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111652

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.14|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111655] KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111655

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.14|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111654] KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111654

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionrequest
Version|1.12|unspecified
 Resolution|--- |INVALID
Product|cppunit |LibreOffice

-- 
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 111567] Template Manager memory leak in TemplateLocalView:: insertItems()

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111567

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #7 from Julien Nabet  ---
I submitted a patch on gerrit: https://gerrit.libreoffice.org/#/c/40995/

-- 
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 111657] New: MERI +1-8 4479O_➈193 ℊarmin Customer =?UTF-8?Q?service=20number=20?=, ℊarmin ℊps technical support phone number JKHKKKKKK

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111657

Bug ID: 111657
   Summary: MERI +1-8 4479O_➈193 ℊarmin Customer service number
,ℊarmin ℊps technical support phone number JKHKK
   Product: cppunit
   Version: 1.14
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jatniel@j3rqt89ez.com

Created attachment 135426
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135426=edit
https://goforusalifeoesupport.freshdesk.com/support/solutions/articles/33000115227-meri-1-8-4479o-%E2%9E%88193-%E2%84%8Aarmin-customer-service-number-%E2%84%8Aarmin-%E2%84%8Aps-technical-support-phone

MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKK
MERI +1-8 4479O_➈193 ℊarmin Customer service number ,ℊarmin ℊps technical
support phone number JKHKKG.a.r.m.i.n.  customer support



G.a.r.m.i.n.  customer service number



G.a.r.m.i.n.  customer service



G.a.r.m.i.n.  support phone number



G.a.r.m.i.n.  support number



G.a.r.m.i.n.  customer support



G.a.r.m.i.n.  customer service number



G.a.r.m.i.n.  customer service



(TOLL FREE)@ ? G.a.r.m.i.n.  customer service



(TOLL FREE)@ ? G.a.r.m.i.n.  customer service



(TOLL FREE)@ ? G.a.r.m.i.n.  customer service



G.a.r.m.i.n.  support phone number



G.a.r.m.i.n.  support number



G.a.r.m.i.n.  customer support



G.a.r.m.i.n.  customer service number



G.a.r.m.i.n.  customer service



G.a.r.m.i.n.  customer service number @ ?



G.a.r.m.i.n.  customer service number @ ?



G.a.r.m.i.n.  support phone number



G.a.r.m.i.n.  support number



G.a.r.m.i.n.  customer support



G.a.r.m.i.n.  customer service number



G.a.r.m.i.n.  customer service



G.a.r.m.i.n.  customer service number @ ?



G.a.r.m.i.n.  customer service number @ ?



G.a.r.m.i.n.  support phone number



G.a.r.m.i.n.  support number



G.a.r.m.i.n.  customer support



G.a.r.m.i.n.  customer service number



G.a.r.m.i.n.  customer service



G.a.r.m.i.n.  customer service number @ ?



G.a.r.m.i.n.  customer service number @ ?



G.a.r.m.i.n.  Tech Support Number @ ?



G.a.r.m.i.n.  Tech Support 

[Libreoffice-bugs] [Bug 111655] New: KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111655

Bug ID: 111655
   Summary: KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin
ℊps support phone number
   Product: cppunit
   Version: 1.14
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jatniel@j3rqt89ez.com

KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number
KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number
KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number
KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number
KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number
KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

G.a.r.m.i.n  Support
G.a.r.m.i.n  Phone Number
G.a.r.m.i.n  Tech Support Phone Number
G.a.r.m.i.n  Customer Service
G.a.r.m.i.n  Support Phone Number
G.a.r.m.i.n  Tech Support
G.a.r.m.i.n  Contact Number
G.a.r.m.i.n  Help
Contact G.a.r.m.i.n
G.a.r.m.i.n  Customer Service Phone Number
G.a.r.m.i.n  Tech Support Number
G.a.r.m.i.n  Technical Support
G.a.r.m.i.n  Support Number
G.a.r.m.i.n  G.P.S  Support Phone Number
G.a.r.m.i.n  Customer Support
G.a.r.m.i.n  Customer Support Phone Number
G.a.r.m.i.n  G.P.S  Tech Support Number
G.a.r.m.i.n  G.P.S  Tech Support Phone Number
G.a.r.m.i.n  G.P.S  Support
G.a.r.m.i.n  G.P.S  Phone Number
G.a.r.m.i.n  Technical Support Number
G.a.r.m.i.n  G.P.S  Support Number
G.a.r.m.i.n  Toll Free Number
G.a.r.m.i.n  Contact
G.a.r.m.i.n  Customer Service Number
G.a.r.m.i.n  G.P.S  Customer Service Phone Number
G.a.r.m.i.n  Support Telephone Number
Contact G.a.r.m.i.n  Support
G.a.r.m.i.n  Customer Support Number
G.a.r.m.i.n  G.P.S  Customer Service Number
G.a.r.m.i.n  Helpline Number
G.a.r.m.i.n  G.P.S  Customer Support Phone Number
Phone Number For G.a.r.m.i.n
G.a.r.m.i.n  Help Number
G.a.r.m.i.n  Telephone Number
G.a.r.m.i.n  Phone Number Customer Service
G.a.r.m.i.n  Phone Support
G.a.r.m.i.n  Help Phone Number
Phone Number For G.a.r.m.i.n  Customer Service
Phone Number For G.a.r.m.i.n  Support
Support For G.a.r.m.i.n
G.a.r.m.i.n  Tech Support Phone
Contact G.a.r.m.i.n  Technical Support
G.a.r.m.i.n  G.P.S  Contact Number
G.a.r.m.i.n  G.P.S  Customer Service
G.a.r.m.i.n  G.P.S  Customer Support Number
G.a.r.m.i.n  Support Contact Number
G.a.r.m.i.n  Help Desk
G.a.r.m.i.n  Customer Support Telephone Number
G.a.r.m.i.n  Contact Support
G.a.r.m.i.n  Support Phone
Contact G.a.r.m.i.n  Customer Service
G.a.r.m.i.n  Customer Service Phone
Telephone Number For G.a.r.m.i.n  Customer Support
Contact G.a.r.m.i.n  Internet Security
G.a.r.m.i.n  Phone Number Support
G.a.r.m.i.n  G.P.S  Customer Support
G.a.r.m.i.n  Com Customer Service Phone Number
G.a.r.m.i.n  Com Support Phone Number
G.a.r.m.i.n  Telephone Support Number
G.a.r.m.i.n  844 Number
G.a.r.m.i.n  Technical Support Telephone Number
G.a.r.m.i.n  Com Customer Service Number
G.a.r.m.i.n  Internet Security Customer Service Phone Number
G.a.r.m.i.n  1844 Number
G.a.r.m.i.n  Contact Support Number
G.a.r.m.i.n  Support Phone Number UK
G.a.r.m.i.n  Customer Service Phone Number UK
G.a.r.m.i.n  Phone Number UK
G.a.r.m.i.n  Support Number UK
G.a.r.m.i.n  Customer Support Number UK
G.a.r.m.i.n  Customer Support Phone Number UK
G.a.r.m.i.n  Customer Service Number UK
G.a.r.m.i.n  Technical Support Number UK
G.a.r.m.i.n  Support UK
G.a.r.m.i.n  Tech Support Phone Number Free
G.a.r.m.i.n  Support Hotline
G.a.r.m.i.n  Customer Support AUKVG Support
G.a.r.m.i.n  Phone Number
G.a.r.m.i.n  Tech Support Phone Number
G.a.r.m.i.n  Customer Service
G.a.r.m.i.n  Support Phone Number
G.a.r.m.i.n  Tech Support
G.a.r.m.i.n  Contact Number
G.a.r.m.i.n  Help
Contact G.a.r.m.i.n
G.a.r.m.i.n  Customer Service Phone Number
G.a.r.m.i.n  Tech Support Number
G.a.r.m.i.n  Technical Support
G.a.r.m.i.n  Support Number
G.a.r.m.i.n  G.P.S  Support Phone Number
G.a.r.m.i.n  Customer Support
G.a.r.m.i.n  Customer Support Phone Number
G.a.r.m.i.n  G.P.S  Tech Support Number
G.a.r.m.i.n  G.P.S  Tech Support Phone Number
G.a.r.m.i.n  G.P.S  Support
G.a.r.m.i.n  G.P.S  Phone Number
G.a.r.m.i.n  Technical Support Number
G.a.r.m.i.n  G.P.S  Support Number
G.a.r.m.i.n  Toll Free Number
G.a.r.m.i.n  Contact
G.a.r.m.i.n  Customer Service Number
G.a.r.m.i.n  G.P.S  Customer Service Phone Number
G.a.r.m.i.n  Support Telephone Number
Contact G.a.r.m.i.n  Support
G.a.r.m.i.n  Customer Support Number
G.a.r.m.i.n  G.P.S  Customer Service Number
G.a.r.m.i.n  Helpline Number
G.a.r.m.i.n  G.P.S  Customer Support Phone Number
Phone Number For G.a.r.m.i.n
G.a.r.m.i.n  Help Number
G.a.r.m.i.n  Telephone Number
G.a.r.m.i.n  Phone Number Customer Service
G.a.r.m.i.n  Phone Support
G.a.r.m.i.n  Help Phone Number

[Libreoffice-bugs] [Bug 111654] New: KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111654

Bug ID: 111654
   Summary: KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin
ℊps support phone number
   Product: cppunit
   Version: 1.12
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: febagot...@go2vpn.net

Created attachment 135424
  --> https://bugs.documentfoundation.org/attachment.cgi?id=135424=edit
https://goforusalifeoesupport.freshdesk.com/support/solutions/articles/33000115121-khatra-rog-1-844-79%EF%BC%AF-9193-%E2%84%8Aarmin-%E2%84%8Aps-number-%E2%84%8Aarmin-%E2%84%8Aps-support-phone-number

KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

KHATRA ROG @1-844-79O-9193 ℊarmin ℊps number@ ℊarmin ℊps support phone number

G.a.r.m.i.n  Support
G.a.r.m.i.n  Phone Number
G.a.r.m.i.n  Tech Support Phone Number
G.a.r.m.i.n  Customer Service
G.a.r.m.i.n  Support Phone Number
G.a.r.m.i.n  Tech Support
G.a.r.m.i.n  Contact Number
G.a.r.m.i.n  Help
Contact G.a.r.m.i.n
G.a.r.m.i.n  Customer Service Phone Number
G.a.r.m.i.n  Tech Support Number
G.a.r.m.i.n  Technical Support
G.a.r.m.i.n  Support Number
G.a.r.m.i.n  G.P.S  Support Phone Number
G.a.r.m.i.n  Customer Support
G.a.r.m.i.n  Customer Support Phone Number
G.a.r.m.i.n  G.P.S  Tech Support Number
G.a.r.m.i.n  G.P.S  Tech Support Phone Number
G.a.r.m.i.n  G.P.S  Support
G.a.r.m.i.n  G.P.S  Phone Number
G.a.r.m.i.n  Technical Support Number
G.a.r.m.i.n  G.P.S  Support Number
G.a.r.m.i.n  Toll Free Number
G.a.r.m.i.n  Contact
G.a.r.m.i.n  Customer Service Number
G.a.r.m.i.n  G.P.S  Customer Service Phone Number
G.a.r.m.i.n  Support Telephone Number
Contact G.a.r.m.i.n  Support
G.a.r.m.i.n  Customer Support Number
G.a.r.m.i.n  G.P.S  Customer Service Number
G.a.r.m.i.n  Helpline Number
G.a.r.m.i.n  G.P.S  Customer Support Phone Number
Phone Number For G.a.r.m.i.n
G.a.r.m.i.n  Help Number
G.a.r.m.i.n  Telephone Number
G.a.r.m.i.n  Phone Number Customer Service
G.a.r.m.i.n  Phone Support
G.a.r.m.i.n  Help Phone Number
Phone Number For G.a.r.m.i.n  Customer Service
Phone Number For G.a.r.m.i.n  Support
Support For G.a.r.m.i.n
G.a.r.m.i.n  Tech Support Phone
Contact G.a.r.m.i.n  Technical Support
G.a.r.m.i.n  G.P.S  Contact Number
G.a.r.m.i.n  G.P.S  Customer Service
G.a.r.m.i.n  G.P.S  Customer Support Number
G.a.r.m.i.n  Support Contact Number
G.a.r.m.i.n  Help Desk
G.a.r.m.i.n  Customer Support Telephone Number
G.a.r.m.i.n  Contact Support
G.a.r.m.i.n  Support Phone
Contact G.a.r.m.i.n  Customer Service
G.a.r.m.i.n  Customer Service Phone
Telephone Number For G.a.r.m.i.n  Customer Support
Contact G.a.r.m.i.n  Internet Security
G.a.r.m.i.n  Phone Number Support
G.a.r.m.i.n  G.P.S  Customer Support
G.a.r.m.i.n  Com Customer Service Phone Number
G.a.r.m.i.n  Com Support Phone Number
G.a.r.m.i.n  Telephone Support Number
G.a.r.m.i.n  844 Number
G.a.r.m.i.n  Technical Support Telephone Number
G.a.r.m.i.n  Com Customer Service Number
G.a.r.m.i.n  Internet Security Customer Service Phone Number
G.a.r.m.i.n  1844 Number
G.a.r.m.i.n  Contact Support Number
G.a.r.m.i.n  Support Phone Number UK
G.a.r.m.i.n  Customer Service Phone Number UK
G.a.r.m.i.n  Phone Number UK
G.a.r.m.i.n  Support Number UK
G.a.r.m.i.n  Customer Support Number UK
G.a.r.m.i.n  Customer Support Phone Number UK
G.a.r.m.i.n  Customer Service Number UK
G.a.r.m.i.n  Technical Support Number UK
G.a.r.m.i.n  Support UK
G.a.r.m.i.n  Tech Support Phone Number Free
G.a.r.m.i.n  Support Hotline
G.a.r.m.i.n  Customer Support AUKVG Support
G.a.r.m.i.n  Phone Number
G.a.r.m.i.n  Tech Support Phone Number
G.a.r.m.i.n  Customer Service
G.a.r.m.i.n  Support Phone Number
G.a.r.m.i.n  Tech Support
G.a.r.m.i.n  Contact Number
G.a.r.m.i.n  Help
Contact G.a.r.m.i.n
G.a.r.m.i.n  Customer Service Phone Number
G.a.r.m.i.n  Tech Support Number
G.a.r.m.i.n  Technical Support
G.a.r.m.i.n  Support Number
G.a.r.m.i.n  G.P.S  Support Phone Number
G.a.r.m.i.n  Customer Support
G.a.r.m.i.n  Customer Support Phone Number
G.a.r.m.i.n  G.P.S  Tech Support Number
G.a.r.m.i.n  G.P.S  Tech Support Phone Number
G.a.r.m.i.n  G.P.S  Support
G.a.r.m.i.n  G.P.S  Phone Number
G.a.r.m.i.n  Technical Support Number
G.a.r.m.i.n  G.P.S  Support Number
G.a.r.m.i.n  Toll Free Number
G.a.r.m.i.n  Contact
G.a.r.m.i.n  Customer Service Number
G.a.r.m.i.n  G.P.S  Customer Service Phone Number
G.a.r.m.i.n  Support Telephone Number
Contact G.a.r.m.i.n  Support
G.a.r.m.i.n  Customer Support Number

[Libreoffice-bugs] [Bug 111303] BASIC error '91' on iCount = ActiveChart.SeriesCollection.Count

2017-08-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111303

--- Comment #4 from schlebe  ---
I have installed last version 6.0.0.0.alpha0+ and I have tested the macro with
sheet 1 filled with correct values.

The program doesn't crash ... it is OK

... BUT the program doesn't fill correctly the cells in others sheets like it
make on Excel.

For each sheet after first sheet, the program create a sheet with 2 tables and
a sheet with a Chart representing these 2 tables.

For each sheet with 2 tables, the program
1. clear the column representing the data of year 2017
2. fill the column of year 2017

When I analyze the result, I can see that the 2017 columns seems to be cleaned

BUT the 2017 column are always EMPTY.

When I try to Debug the program to give you more information ... the program
crash ... no chance.

So I think (but I'm not sure) that the 6 alpha version recognize the
ActiveChart object but for unknown reasons doesn't make correctly the following
actions because the 2017 columns are all emtpy.

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


  1   2   3   4   >