[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 4a/070cd56ce6f4e0e7ec5a8eaad932c037ab57b4

2015-09-26 Thread Caolán McNamara
 4a/070cd56ce6f4e0e7ec5a8eaad932c037ab57b4 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 52871923dd2e5739b22f8be06c8c6182bfc378a1
Author: Caolán McNamara 
Date:   Sat Sep 26 11:02:55 2015 +0100

Notes added by 'git notes add'

diff --git a/4a/070cd56ce6f4e0e7ec5a8eaad932c037ab57b4 
b/4a/070cd56ce6f4e0e7ec5a8eaad932c037ab57b4
new file mode 100644
index 000..8e5c182
--- /dev/null
+++ b/4a/070cd56ce6f4e0e7ec5a8eaad932c037ab57b4
@@ -0,0 +1 @@
+ignore: aoo
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 87500] Freeze with English/Japanese mixture undo

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87500

Commit Notification  changed:

   What|Removed |Added

 Whiteboard| target:5.1.0   | target:5.1.0 target:5.0.3

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


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - vcl/generic vcl/inc

2015-09-26 Thread Mark Hung
 vcl/generic/glyphs/gcach_layout.cxx |3 +++
 vcl/inc/generic/glyphcache.hxx  |1 +
 2 files changed, 4 insertions(+)

New commits:
commit a4532151e3ca83488bc8fd255cc64971421b4517
Author: Mark Hung 
Date:   Sat Aug 15 22:43:02 2015 +0800

Fix tdf#40091 and tdf#40335 text layout issues.

tdf#40091 Vertical writing inferior to MS Word
tdf#40335 Using Right-to-left (vertical) for text, the characters
overlap each other. Cursor is placed at the half of the character.

It seems that current implementation use HarfBuzz OpenType layout
API hb_buffer_get_glyph_positions() to layout the text, however
instead of setting text direction to HB_DIRECTION_TTB, it
uses HB_DIRECTION_LTR as its direction and rotates each CJK glyph
to simulate the HB_DIRECTION_TTB. However the API use font width
to position each glyph no matter whether the glyph will be rotated
or not.

Change-Id: Ie35238dd92218f8c4463c0ae1d356ad8609c5f48
Reviewed-on: https://gerrit.libreoffice.org/17774
Tested-by: Jenkins 
Reviewed-by: Norbert Thiebaud 
Reviewed-on: https://gerrit.libreoffice.org/18878
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/vcl/generic/glyphs/gcach_layout.cxx 
b/vcl/generic/glyphs/gcach_layout.cxx
index 7bab5fe..6b3f0ae 100644
--- a/vcl/generic/glyphs/gcach_layout.cxx
+++ b/vcl/generic/glyphs/gcach_layout.cxx
@@ -402,6 +402,7 @@ bool HbLayoutEngine::Layout(ServerFontLayout& rLayout, 
ImplLayoutArgs& rArgs)
 
 // allocate temporary arrays, note: round to even
 int nGlyphCapacity = (3 * (rArgs.mnEndCharPos - rArgs.mnMinCharPos) | 15) 
+ 1;
+int32_t nVirtAdv = 
int32_t(aFtFace->size->metrics.height*rFont.GetStretch())>>6;
 
 rLayout.Reserve(nGlyphCapacity);
 
@@ -563,6 +564,8 @@ bool HbLayoutEngine::Layout(ServerFontLayout& rLayout, 
ImplLayoutArgs& rArgs)
 int32_t nYOffset =  pHbPositions[i].y_offset >> 6;
 int32_t nXAdvance = pHbPositions[i].x_advance >> 6;
 int32_t nYAdvance = pHbPositions[i].y_advance >> 6;
+if ( nGlyphIndex & GF_ROTMASK )
+nXAdvance = nVirtAdv;
 
 Point aNewPos = Point(aCurrPos.X() + nXOffset, -(aCurrPos.Y() 
+ nYOffset));
 const GlyphItem aGI(nCharPos, nGlyphIndex, aNewPos, 
nGlyphFlags, nXAdvance, nXOffset, nYOffset);
diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx
index c7c2123..7fe9e36 100644
--- a/vcl/inc/generic/glyphcache.hxx
+++ b/vcl/inc/generic/glyphcache.hxx
@@ -185,6 +185,7 @@ public:
 const unsigned char*GetTable( const char* pName, sal_uLong* pLength );
 int GetEmUnits() const { return 
maFaceFT->units_per_EM;}
 const FT_Size_Metrics&  GetMetricsFT() const { return maSizeFT->metrics; }
+double  GetStretch() { return mfStretch; }
 const FontCharMapPtrGetFontCharMap() const;
 boolGetFontCapabilities(vcl::FontCapabilities &) const;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 40091] Vertical writing inferior to MS Word

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40091

--- Comment #3 from Commit Notification 
 ---
Mark Hung committed a patch related to this issue.
It has been pushed to "libreoffice-5-0":

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

Fix tdf#40091 and tdf#40335 text layout issues.

It will be available in 5.0.3.

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

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


[Libreoffice-bugs] [Bug 94520] UI: Formula ToolBar fields go blank when focus leaves window

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94520

Jacques Guilleron  changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 CC||guillero...@aol.com
Version|5.0.0.5 release |5.0.0.0.beta1
 Ever confirmed|0   |1

--- Comment #1 from Jacques Guilleron  ---
Hi Alex,

I reproduce with
LO 5.0.2.2 Build ID: 37b43f919e4de5eeaca9b9755ed688758a8251fe
Locale : fr-FR (fr_FR)
LO 5.0.0.0.alpha1+ Build ID: 6664859e1e8b3f8b7db8c931b8d0335510c20ce0
TinderBox: Win-x86@42, Branch:master, Time: 2015-05-16_03:16:31
Locale: es-ES (fr_FR)
but not with
LO 4.4.5.2 Build ID: a22f674fd25a3b6f45bdebf25400ed2adff0ff99 Locale : fr_FR
& Windows 7 Home

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


[Libreoffice-bugs] [Bug 94521] New: FEATURE REQUEST: Highlighting of current line

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94521

Bug ID: 94521
   Summary: FEATURE REQUEST: Highlighting of current line
   Product: LibreOffice
   Version: 5.0.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tom...@freenet.de

When editing long paragraphs (many lines) of text and switching often between
the screen and some paperwork on the table, it is sometimes difficult to find
the actual text cursor position within the text document on the screen. As a
workaround I often play with the curser keys in order to finally recognize the
jumping bar of the text cursor withing the text document on the screen.

The editor "kate" has a very helpful feature called "Editor background colors
-> Current line", which allows the user to specify a background color for the
entire line that holds the text cursor. As a result, the search for the text
cursor is now reduced only to one single line, the line that is highlighted.

It would be helpful, if a corresponding option could be added to LO Writer and
if a dedicated button could be added to one of the toolbars (eg Format) to
allow a quick turn-on/off of this feature.

Regards
Tom

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


[Libreoffice-bugs] [Bug 94525] New: The attached polish document badly formatted. In Microsoft Office Word 2010 is OK.

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94525

Bug ID: 94525
   Summary: The attached polish document badly formatted. In
Microsoft Office Word 2010 is OK.
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: snieg...@gmail.com

Created attachment 119033
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119033=edit
.doc Document badly formatted

Please load the attached document with the Writer. You will see at first glance
it is badly formatted. In Office Word 2010 it is correctly formatted.

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


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - b6/07d0c3f495e15a18e277304943f9f7fe764895

2015-09-26 Thread Caolán McNamara
 b6/07d0c3f495e15a18e277304943f9f7fe764895 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit c2cc23b3118f2ba849155ef1f1bf202a7e83e8bd
Author: Caolán McNamara 
Date:   Sat Sep 26 11:08:58 2015 +0100

Notes added by 'git notes add'

diff --git a/b6/07d0c3f495e15a18e277304943f9f7fe764895 
b/b6/07d0c3f495e15a18e277304943f9f7fe764895
new file mode 100644
index 000..c13da95
--- /dev/null
+++ b/b6/07d0c3f495e15a18e277304943f9f7fe764895
@@ -0,0 +1 @@
+prefer: 755b9320c81948358a1d4104c8875594b5700d39
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91789] UI: Crash on exit after format header

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91789

Cor Nouws  changed:

   What|Removed |Added

   Keywords||bisected
 CC||c...@nouenoff.nl
   Hardware|x86-64 (AMD64)  |All
Version|5.1.0.0.alpha0+ Master  |5.0.1.2 release
 Whiteboard||bibisectrequest
 OS|Windows (All)   |All

--- Comment #3 from Cor Nouws  ---

1. Format > Page … Header
2. Turn Header of or set Same on first and next pages (see duplicate issue)
3. OK
4. File > Close  .. choose Disgard 
  .. Crash

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


[Libreoffice-bugs] [Bug 94531] Disable the anti-aliasing breaks the text displaying

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94531

--- Comment #2 from Rpnpif  ---
Created attachment 119036
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119036=edit
With no anti-aliasing in Xfce

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


[Libreoffice-bugs] [Bug 91063] SIDEBAR: Properties tab for Charts

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91063
Bug 91063 depends on bug 94388, which changed state.

Bug 94388 Summary: Line content panel elements arent disable when line style 
set to none
https://bugs.documentfoundation.org/show_bug.cgi?id=94388

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94388] Line content panel elements arent disable when line style set to none

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94388

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

--- Comment #2 from Yousuf (Jay) Philips  ---
Seems that it has been fixed, as i cant reproduce it any more. Will try to be
as detailed as possible.

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


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 76/3aa6721e4eb52756d97d79c1d9fad325765054

2015-09-26 Thread Caolán McNamara
 76/3aa6721e4eb52756d97d79c1d9fad325765054 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit f68fc234ad87ffa77a34b00dded14b2e423f616b
Author: Caolán McNamara 
Date:   Sat Sep 26 11:04:40 2015 +0100

Notes added by 'git notes add'

diff --git a/76/3aa6721e4eb52756d97d79c1d9fad325765054 
b/76/3aa6721e4eb52756d97d79c1d9fad325765054
new file mode 100644
index 000..f372762
--- /dev/null
+++ b/76/3aa6721e4eb52756d97d79c1d9fad325765054
@@ -0,0 +1 @@
+prefer: ea70088895ed45dc60abf18319acc1b4fa3018dd
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90220] dxcanvas BitmapCanvasHelper GDI+ Crash on Windows

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90220

Sebastiaan Veld  changed:

   What|Removed |Added

 CC||sebastiaan.v...@gmail.com

--- Comment #3 from Sebastiaan Veld  ---
Created attachment 119034
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119034=edit
Screenshot crash error

I have the same crash error opening an .xlsx document using LibreOffice 5.0.1
and 5.0.2 on Windows 7. On my OSX machine with LO 5.0.2 the same document just
will not open and does not show a visible error.

I can provide the document to someone that want to work on this problem, plz
send me an email at sebastiaan.v...@gmail.com.

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


[Libreoffice-bugs] [Bug 94529] IDE (Integrated Development Environment) line formatting

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94529

Cor Nouws  changed:

   What|Removed |Added

   Priority|medium  |low
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws  ---
Hi Óvári,

To my feeling, it would be too much to add this (as option, indeed..!)
But OK,  maybe someone feels inspired..

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


[Libreoffice-bugs] [Bug 94530] IDE (Integrated Development Environment) Indenting automation

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94530

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws  ---
.

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


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

2015-09-26 Thread Dennis Roczek
 sc/source/ui/drawfunc/objdraw.src |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b9d20625d29b5cf99e32e4a282546a7dd2889d5d
Author: Dennis Roczek 
Date:   Sat Sep 26 12:49:19 2015 +0200

fix ellipsis

Change-Id: If427f3609193244b6ccda4e00f1ca793174e83e2
Reviewed-on: https://gerrit.libreoffice.org/18880
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

diff --git a/sc/source/ui/drawfunc/objdraw.src 
b/sc/source/ui/drawfunc/objdraw.src
index 7989e27..511bdda 100644
--- a/sc/source/ui/drawfunc/objdraw.src
+++ b/sc/source/ui/drawfunc/objdraw.src
@@ -476,7 +476,7 @@ Menu RID_POPUP_CHART
 {
 Identifier = SID_EXPORT_AS_GRAPHIC ;
 Command = ".uno:ExportAsGraphic" ;
-Text [ en-US ] = "Export as Image.." ;
+Text [ en-US ] = "Export as Image..." ;
 };
 };
 };
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-09-26 Thread Mark Hung
 sw/source/core/doc/extinput.cxx |   43 +++-
 1 file changed, 25 insertions(+), 18 deletions(-)

New commits:
commit 2b136504538a0b32e6ca9ae8fae8c41c084f4394
Author: Mark Hung 
Date:   Tue Sep 8 07:29:38 2015 +0800

Fix tdf#87500 - Freeze with English/Japanese mixture undo.

Language poolitem will be inserted after user completes editing
with IME, making it refer to valid range when undo.

Change-Id: Id2876aa74dba6f7d134b8e2df4d9b36a8f429bb1
Reviewed-on: https://gerrit.libreoffice.org/18392
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 
Reviewed-on: https://gerrit.libreoffice.org/18877
Tested-by: Jenkins 

diff --git a/sw/source/core/doc/extinput.cxx b/sw/source/core/doc/extinput.cxx
index 362842a..9e82eca 100644
--- a/sw/source/core/doc/extinput.cxx
+++ b/sw/source/core/doc/extinput.cxx
@@ -59,6 +59,9 @@ SwExtTextInput::~SwExtTextInput()
 sal_Int32 nEndCnt = GetMark()->nContent.GetIndex();
 if( nEndCnt != nSttCnt )
 {
+// Prevent IME edited text being grouped with non-IME edited text.
+bool bKeepGroupUndo = pDoc->GetIDocumentUndoRedo().DoesGroupUndo();
+pDoc->GetIDocumentUndoRedo().DoGroupUndo(false);
 if( nEndCnt < nSttCnt )
 {
 std::swap(nSttCnt, nEndCnt);
@@ -66,24 +69,6 @@ SwExtTextInput::~SwExtTextInput()
 
 // In order to get Undo/Redlining etc. working correctly,
 // we need to go through the Doc interface
-if(eInputLanguage != LANGUAGE_DONTKNOW)
-{
-// #i41974# Only set language attribute
-// for CJK/CTL scripts.
-bool bLang = true;
-sal_uInt16 nWhich = RES_CHRATR_LANGUAGE;
-
switch(SvtLanguageOptions::GetI18NScriptTypeOfLanguage(eInputLanguage))
-{
-case  i18n::ScriptType::ASIAN: nWhich = 
RES_CHRATR_CJK_LANGUAGE; break;
-case  i18n::ScriptType::COMPLEX:   nWhich = 
RES_CHRATR_CTL_LANGUAGE; break;
-default: bLang = false;
-}
-if ( bLang )
-{
-SvxLanguageItem aLangItem( eInputLanguage, nWhich );
-
pDoc->getIDocumentContentOperations().InsertPoolItem(*this, aLangItem );
-}
-}
 rIdx = nSttCnt;
 const OUString sText( pTNd->GetText().copy(nSttCnt, nEndCnt - 
nSttCnt));
 if( bIsOverwriteCursor && !sOverwriteText.isEmpty() )
@@ -124,6 +109,28 @@ SwExtTextInput::~SwExtTextInput()
 pDoc->getIDocumentContentOperations().InsertString( *this, 
sText );
 }
 }
+pDoc->GetIDocumentUndoRedo().DoGroupUndo(bKeepGroupUndo);
+if (eInputLanguage != LANGUAGE_DONTKNOW)
+{
+sal_uInt16 nWhich = RES_CHRATR_LANGUAGE;
+sal_Int16 nScriptType = 
SvtLanguageOptions::GetI18NScriptTypeOfLanguage(eInputLanguage);
+switch(nScriptType)
+{
+case  i18n::ScriptType::ASIAN:
+nWhich = RES_CHRATR_CJK_LANGUAGE; break;
+case  i18n::ScriptType::COMPLEX:
+nWhich = RES_CHRATR_CTL_LANGUAGE; break;
+}
+// #i41974# Only set language attribute for CJK/CTL scripts.
+if (RES_CHRATR_LANGUAGE != nWhich && pTNd->GetLang( nSttCnt, 
nEndCnt-nSttCnt, nScriptType) != eInputLanguage)
+{
+SvxLanguageItem aLangItem( eInputLanguage, nWhich );
+rIdx = nSttCnt;
+GetMark()->nContent = nEndCnt;
+
pDoc->getIDocumentContentOperations().InsertPoolItem(*this, aLangItem );
+}
+
+}
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94531] Disable the anti-aliasing breaks the text displaying

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94531

Rpnpif  changed:

   What|Removed |Added

 CC||rpn...@free.fr

--- Comment #1 from Rpnpif  ---
Created attachment 119035
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119035=edit
Original file

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


[Libreoffice-bugs] [Bug 94531] New: Disable the anti-aliasing breaks the text displaying

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94531

Bug ID: 94531
   Summary: Disable the anti-aliasing breaks the text displaying
   Product: LibreOffice
   Version: 5.0.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rpn...@free.fr

Open the file A0 activity.odt.

The title ("Activities") have missing letters, but a copy paste in a text
editor recover all the text so the problem is about the displaying in LO.

This is always reproducible.

Enable OpenGL for all rendering (Tools-Options menu) makes the title have right
displaying.

The OS is Debian Jessie (8) with Xfce. Its anti-aliasing is disabled because it
has no advantage with HDMI display. Backwards of anti-aliasing is a degraded
quality of displaying of Xfce programs like Xfce Desktop.

The anti-aliasing in options of LO is enabled. But it does nothing.

When anti-aliasing is enabled again in Xfce, all works fine.

Iceweasel and others software work fine with better displaying when the
anti-aliasing is disabled in Xfce. Why not with LO.

Expected :
LO should have a fine displaying for all characters of text when the
anti-aliasing is disabled in the window manager like Xfce when a great quality
of screen is used. OpenGL should not be needed in this case.

lspci
00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI]
Trinity [Radeon HD 7480D]

lscpu
model name: AMD A4-5300 APU with Radeon(tm) HD Graphics

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


[Libreoffice-bugs] [Bug 56799] Missing content by dragging / fill handle hidden rows and columns

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56799

gil...@interia.pl changed:

   What|Removed |Added

 CC||gil...@interia.pl

--- Comment #17 from gil...@interia.pl ---
*** Bug 94492 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 94492] EDITING - copying row with hidden columns

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94492

gil...@interia.pl changed:

   What|Removed |Added

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

--- Comment #8 from gil...@interia.pl ---
yes, BUG 56799 looks exactly the same.

I'll have to go back to OO 4.1

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

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


[Libreoffice-bugs] [Bug 94530] IDE (Integrated Development Environment) Indenting automation

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94530

Óvári  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=92
   ||251

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


[Libreoffice-bugs] [Bug 94530] New: IDE (Integrated Development Environment) Indenting automation

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94530

Bug ID: 94530
   Summary: IDE (Integrated Development Environment) Indenting
automation
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ovar...@gmail.com

This suggestion is for a Automated Indenter in the LibreOffice IDE.

A website with screenshots and examples can be seen here:
http://www.oaltd.co.uk/Indenter/Default.htm

Thank you

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


[Libreoffice-bugs] [Bug 92251] BASIC IDE (Integrated Development Environment) Re-factoring facilities

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92251

Óvári  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94523] New: Search or Find string in CALC text field returns illogical result if string not found

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94523

Bug ID: 94523
   Summary: Search or Find string in CALC text field returns
illogical result if string not found
   Product: LibreOffice
   Version: 4.4.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: that.man.co...@gmail.com

Created attachment 119032
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119032=edit
Tiny Calc Shhet

When a source cell with a text string is utilised in a Find or Search function
on the contents of a text data cell then a valid hit returns a true value
(normally the start position of the source text) which can be subjected to
further processing
When the source text is not contained in the target string then an #VALUE!
result is returned. Clearly this is a terminal failure as no further processing
can be performed to provide any state that can subsequently be processed.
A small spreadsheet has been appended with a full description of the effect and
the one step needed to create the anomaly.
Simply type a value into either of the two cells in the first row.
A valid "hit" produces a processable return whereas a "miss" provides an
illogical or invalid result.

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


[Libreoffice-bugs] [Bug 94364] File crashes every time is it saved after checking "same header left/right"

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94364

Cor Nouws  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||c...@nouenoff.nl
 Resolution|--- |DUPLICATE

--- Comment #3 from Cor Nouws  ---
I see the same in 5.0.2 on Ubuntu and also a bit more general touching header.
Will mark as duplicate

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

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


[Libreoffice-bugs] [Bug 91789] UI: Crash on exit after format header

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91789

Cor Nouws  changed:

   What|Removed |Added

 CC||mador...@shaw.ca

--- Comment #2 from Cor Nouws  ---
*** Bug 94364 has been marked as a duplicate of this bug. ***

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


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 30/10d353f9a44e853908a475432cae7d918276e6

2015-09-26 Thread Caolán McNamara
 30/10d353f9a44e853908a475432cae7d918276e6 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 3cd967ae1507f6c55c85e590a8356cb30285d4a9
Author: Caolán McNamara 
Date:   Sat Sep 26 11:06:31 2015 +0100

Notes added by 'git notes add'

diff --git a/30/10d353f9a44e853908a475432cae7d918276e6 
b/30/10d353f9a44e853908a475432cae7d918276e6
new file mode 100644
index 000..7905c70
--- /dev/null
+++ b/30/10d353f9a44e853908a475432cae7d918276e6
@@ -0,0 +1 @@
+prefer: 7e383cb50c6020b86ac7857ece8a6273b7eb1a5e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 92251] BASIC IDE (Integrated Development Environment) Re-factoring facilities

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92251

Óvári  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94526] New: IDE (Integrated Development Environment) Handling of case in variable names

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94526

Bug ID: 94526
   Summary: IDE (Integrated Development Environment) Handling of
case in variable names
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ovar...@gmail.com

[https://help.libreoffice.org/Basic/Using_Variables#Naming_Conventions_for_Variable_Identifiers
Naming Conventions for Variable Identifiers] states that “In LibreOffice Basic
variable identifiers are not case-sensitive”. LibreOffice Basic should remain
as not case-sensitive.

Once a variable is defined (eg with Dim statement), typing the variable later
in the code will automatically change to the variable case defined in the Dim
statement.

   Having the statement:
 Dim myIntegerVariable As Integer
   And typing the following line
 myintegervariable = myintegervariable + 5
   Would change to
 myIntegerVariable = myIntegerVariable + 5

If the variable case is changed in the Dim statement, all references to the
variable in the code should automatically update.

   In example shown above, if the Dim statement is changed to:
 Dim MYiNTEGERvARIABLE As Integer
   the statements with that variable will automatically refactor:
 MYiNTEGERvARIABLE = MYiNTEGERvARIABLE + 5

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


[Libreoffice-bugs] [Bug 94526] IDE (Integrated Development Environment) Handling of case in variable names

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94526

Óvári  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=92
   ||251

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


[Libreoffice-bugs] [Bug 94529] New: IDE (Integrated Development Environment) line formatting

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94529

Bug ID: 94529
   Summary: IDE (Integrated Development Environment) line
formatting
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ovar...@gmail.com

Enhancement suggestion for LibreOffice IDE to format line (perhaps this feature
could be turned off if the scriptor does not want this). It will help with the
consistency of code (homogenous) produced where enterprises/government have
multiple people working on code. It may also make it easier to read the code.

eg if any the following lines are written
 i=(i+2)*3
 i   =   (  i  +   2)   *   3
   the IDE will update the line when the focus is no longer on that line to
 i = (i + 2) * 3

Thank you

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


[Libreoffice-bugs] [Bug 92251] BASIC IDE (Integrated Development Environment) Re-factoring facilities

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92251

Óvári  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94529] IDE (Integrated Development Environment) line formatting

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94529

Óvári  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=92
   ||251

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


[Libreoffice-bugs] [Bug 94527] IDE (Integrated Development Environment) Handling of case in constant names

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94527

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws  ---
.

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


[Libreoffice-bugs] [Bug 94524] IDE (Integrated Development Environment) Removing tailing spaces/tabs

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94524

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws  ---
Thanks for splitting all up, Óvári!

Setting to new..

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


[Libreoffice-bugs] [Bug 94528] IDE (Integrated Development Environment) Handling of case in reserved words

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94528

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws  ---
.

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


[Libreoffice-bugs] [Bug 94526] IDE (Integrated Development Environment) Handling of case in variable names

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94526

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws  ---
.

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


[Libreoffice-bugs] [Bug 94531] Disabling the anti-aliasing breaks the text displaying

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94531

--- Comment #4 from Rpnpif  ---
> Enable OpenGL for all rendering (Tools-Options menu) makes the title have 
> right displaying.

The title is right but the remaining text has a big aliasing effect.

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


[Libreoffice-bugs] [Bug 94428] Printing adds garbage to top edge of page

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94428

--- Comment #7 from Thomas Graul  ---
Yes I have the same problem too.

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


[Libreoffice-bugs] [Bug 86349] Meta: Context menu bugs and enhancements

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349
Bug 86349 depends on bug 92341, which changed state.

Bug 92341 Summary: add "AutoCorrect Options..." to right click spell checking 
menu
https://bugs.documentfoundation.org/show_bug.cgi?id=92341

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

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


[Libreoffice-bugs] [Bug 94531] Disable the anti-aliasing breaks the text displaying

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94531

--- Comment #3 from Rpnpif  ---
Created attachment 119037
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119037=edit
With no anti-aliasing in Xfce (deleting the A of the title)

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


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

2015-09-26 Thread Caolán McNamara
 sd/source/ui/inc/framework/ResourceId.hxx |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

New commits:
commit 82630bda21200ad32e13b2e5a0d24de00fd1c8c2
Author: Caolán McNamara 
Date:   Sat Sep 26 12:14:13 2015 +0100

boost->std

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

diff --git a/sd/source/ui/inc/framework/ResourceId.hxx 
b/sd/source/ui/inc/framework/ResourceId.hxx
index e9ab84c..4dd11c4 100644
--- a/sd/source/ui/inc/framework/ResourceId.hxx
+++ b/sd/source/ui/inc/framework/ResourceId.hxx
@@ -30,7 +30,6 @@
 #include 
 #include 
 #include 
-#include 
 
 namespace {
 
@@ -171,9 +170,9 @@ private:
 /** The set of URLs that consist of the resource URL at index 0 and the
 anchor URLs and indices 1 and above.
 */
-::std::vector maResourceURLs;
+std::vector maResourceURLs;
 
-::boost::scoped_ptr mpURL;
+std::unique_ptr mpURL;
 
 static css::uno::WeakReference 
mxURLTransformerWeak;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 94522] New: Keyboard shortcut assigned to a macro is not saved in the document:

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94522

Bug ID: 94522
   Summary: Keyboard shortcut assigned to a macro is not saved in
the document:
   Product: LibreOffice
   Version: 4.4.3.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gmoll...@us.es

Atajo de teclado asignado a una macro no se guarda en el documento:

Falta que LibreOffice guarde la tecla asignada a una macro en el fichero del
documento cuando la macro está guardada en tal fichero. Así si creas una macro
y le asignas una tecla, al abrir el fichero en otro ordenador, siga funcionando
la macro con la misma tecla y no haya que volver a configurar la tecla en cada
ordenador donde se vaya a abrir el documento.

Por supuesto que esa asignación debería ser olvidada en cuanto se cerrara el
documento o se pasara a otro, pues no afectaría al programa en general, sólo a
ese documento que contiene la macro.
__
Klavkombino atribuita al makroo ne konservas en dokumenton:

LibreOffice devas konservi la klavkombinon en la dosiero kiam la makroo estas
savita en tiu sama dosiero. Do se vi kreas makroon kaj atribuas klavkombinon,
kiam ĝi malfermas la dosieron en alia komputilo, la makroo daŭre funkciigas kun
la sama klavkombino kaj ne devas reagordi la klavkombinon en ĉiu komputilo kie
malfermos la dokumenton.

Kompreneble, tiu atribuo devus esti forgesita tuj kiam la dokumento estas
fermita aŭ interŝanĝis al alia, kiel ĝi ne tuŝus la ĝeneralan programon, nur ke
la dokumento enhavanta la makroon.
__
Using English internationally is discriminatory for nationality (racism) and
salary (classicism). Esperanto is better as a world's second language.

Keyboard shortcut assigned to a macro is not saved in the document:

LibreOffice need to keep assigned to a macro file in the document when the
macro is saved in this key file. So if you create a macro and assign a key to
open the file on another computer, the macro continues to operate with the same
key and not have to reconfigure the key on each computer where it is to open
the document.

Of course, that allocation should be forgotten as soon as the document is
closed or switched to a different, as would not affect the overall program,
only that the document containing the macro.

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


[Libreoffice-bugs] [Bug 92251] BASIC IDE (Integrated Development Environment) Re-factoring facilities

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92251

Óvári  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID

--- Comment #5 from Óvári  ---
Thank you Cor for your comment.

As you requested, separate issues have been created.  You have been attached to
the CC list.

I have updated the status on this bug to resolved invalid. If this is
incorrect, feel free to change it to the appropriate status.

Please advise if there is anything else that you require.

Thank you

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


[Libreoffice-bugs] [Bug 94531] Disabling the anti-aliasing breaks the text displaying

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94531

Rpnpif  changed:

   What|Removed |Added

Summary|Disable the anti-aliasing   |Disabling the anti-aliasing
   |breaks the text displaying  |breaks the text displaying

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


[Libreoffice-bugs] [Bug 89344] Error 1316. The specified account already exists.

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89344

--- Comment #3 from kabouter...@gmail.com ---
I am using Windows 7 Pro
I cannot upgrade from LibreOffice 5.0.0.5 to 5.0.1 nor to 5.0.2. I get an
'Error 1316 Account already exists'. Attempted installation rolls back. 
I have tried uninstalling LO, using Ccleaner and Glary Utilities, after using
each to do a registry clean-up. Neither program will uninstall LO.
Advice, please

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


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

2015-09-26 Thread Caolán McNamara
 sd/source/ui/inc/framework/Configuration.hxx   |3 +--
 sd/source/ui/inc/framework/ConfigurationController.hxx |3 +--
 sd/source/ui/inc/framework/ModuleController.hxx|5 ++---
 sd/source/ui/inc/tools/PropertySet.hxx |3 +--
 sd/source/ui/view/MediaObjectBar.cxx   |5 ++---
 sd/source/ui/view/drtxtob1.cxx |7 +++
 sd/source/ui/view/drviews3.cxx |5 ++---
 sd/source/ui/view/outlnvs2.cxx |   11 +--
 sd/source/ui/view/outlnvsh.cxx |5 ++---
 sd/source/ui/view/sdview.cxx   |7 +++
 10 files changed, 22 insertions(+), 32 deletions(-)

New commits:
commit e31da9fc2f24bb448efaab7a74a8bd1308bf2428
Author: Caolán McNamara 
Date:   Fri Sep 25 14:48:27 2015 +0100

boost->std

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

diff --git a/sd/source/ui/inc/framework/Configuration.hxx 
b/sd/source/ui/inc/framework/Configuration.hxx
index 8109df0..7bf486f 100644
--- a/sd/source/ui/inc/framework/Configuration.hxx
+++ b/sd/source/ui/inc/framework/Configuration.hxx
@@ -29,7 +29,6 @@
 #include 
 
 #include 
-#include 
 
 namespace {
 
@@ -145,7 +144,7 @@ private:
 /** The resource container holds the URLs of unique resource and of
 resource linked to unique resources.
 */
-::boost::scoped_ptr mpResourceContainer;
+std::unique_ptr mpResourceContainer;
 
 /** The broadcaster used for notifying listeners of requests for
 configuration changes.
diff --git a/sd/source/ui/inc/framework/ConfigurationController.hxx 
b/sd/source/ui/inc/framework/ConfigurationController.hxx
index 7a8fbd0..5cdbf0f 100644
--- a/sd/source/ui/inc/framework/ConfigurationController.hxx
+++ b/sd/source/ui/inc/framework/ConfigurationController.hxx
@@ -36,7 +36,6 @@
 #include 
 
 #include 
-#include 
 #include 
 
 namespace {
@@ -195,7 +194,7 @@ public:
 
 private:
 class Implementation;
-::boost::scoped_ptr mpImplementation;
+std::unique_ptr mpImplementation;
 bool mbIsDisposed;
 
 /** When the called object has already been disposed this method throws
diff --git a/sd/source/ui/inc/framework/ModuleController.hxx 
b/sd/source/ui/inc/framework/ModuleController.hxx
index 5f73ebd..2660011 100644
--- a/sd/source/ui/inc/framework/ModuleController.hxx
+++ b/sd/source/ui/inc/framework/ModuleController.hxx
@@ -30,7 +30,6 @@
 #include 
 
 #include 
-#include 
 #include 
 
 namespace {
@@ -91,9 +90,9 @@ private:
 css::frame::XController> mxController;
 
 class ResourceToFactoryMap;
-::boost::scoped_ptr mpResourceToFactoryMap;
+std::unique_ptr mpResourceToFactoryMap;
 class LoadedFactoryContainer;
-::boost::scoped_ptr mpLoadedFactories;
+std::unique_ptr mpLoadedFactories;
 
 ModuleController (
 const css::uno::Reference& rxContext)
diff --git a/sd/source/ui/inc/tools/PropertySet.hxx 
b/sd/source/ui/inc/tools/PropertySet.hxx
index 1c419fee..e48a7ca 100644
--- a/sd/source/ui/inc/tools/PropertySet.hxx
+++ b/sd/source/ui/inc/tools/PropertySet.hxx
@@ -25,7 +25,6 @@
 #include 
 #include 
 #include 
-#include 
 
 namespace sd { namespace tools {
 
@@ -118,7 +117,7 @@ protected:
 private:
 typedef ::std::multimap 
ChangeListenerContainer;
-::boost::scoped_ptr mpChangeListeners;
+std::unique_ptr mpChangeListeners;
 
 /** Call all listeners that are registered for the given property name.
 Call this method with an empty property name to call listeners that
diff --git a/sd/source/ui/view/MediaObjectBar.cxx 
b/sd/source/ui/view/MediaObjectBar.cxx
index 2ea5f24..7c191ae 100644
--- a/sd/source/ui/view/MediaObjectBar.cxx
+++ b/sd/source/ui/view/MediaObjectBar.cxx
@@ -40,7 +40,6 @@
 #include "sdresid.hxx"
 #include "drawdoc.hxx"
 #include 
-#include 
 
 using namespace sd;
 
@@ -87,7 +86,7 @@ void MediaObjectBar::GetState( SfxItemSet& rSet )
 {
 if( SID_AVMEDIA_TOOLBOX == nWhich )
 {
-boost::scoped_ptr pMarkList(new SdrMarkList( 
mpView->GetMarkedObjectList() ));
+std::unique_ptr pMarkList(new SdrMarkList( 
mpView->GetMarkedObjectList() ));
 bool bDisable = true;
 
 if( 1 == pMarkList->GetMarkCount() )
@@ -124,7 +123,7 @@ void MediaObjectBar::Execute( SfxRequest& rReq )
 
 if( pItem )
 {
-boost::scoped_ptr pMarkList(new SdrMarkList( 
mpView->GetMarkedObjectList() ));
+std::unique_ptr pMarkList(new SdrMarkList( 
mpView->GetMarkedObjectList() ));
 
 if( 1 == pMarkList->GetMarkCount() )
 {
diff --git a/sd/source/ui/view/drtxtob1.cxx 

[Libreoffice-bugs] [Bug 92251] BASIC IDE (Integrated Development Environment) Re-factoring facilities

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92251

Óvári  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 94527] New: IDE (Integrated Development Environment) Handling of case in constant names

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94527

Bug ID: 94527
   Summary: IDE (Integrated Development Environment) Handling of
case in constant names
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ovar...@gmail.com

Once a constant is defined (eg with Const statement), typing the constant later
in the code will automatically change to the constant case defined in the Const
statement.

   Having the statement:
 Const my_Integer_Constant = 2015
   And typing the following line
 my_integer_constant = my_integer_constant + 5
   Would change to
 my_Integer_Constant = my_Integer_Constant + 5

If the constant case is changed in the Const statement, all references to the
constant in the code should automatically update.

   In example shown above, if the Const statement is changed to:
 Const MY_INTEGER_CONSTANT = 2015
   the statements with that variable should automatically update to:
 MY_INTEGER_CONSTANT = MY_INTEGER_CONSTANT + 5

Thank you

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


[Libreoffice-bugs] [Bug 94527] IDE (Integrated Development Environment) Handling of case in constant names

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94527

Óvári  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=92
   ||251

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


[Libreoffice-bugs] [Bug 94500] Load styles from a master document in the current document

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94500

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||c...@nouenoff.nl
 Ever confirmed|0   |1

--- Comment #1 from Cor Nouws  ---
Hi Bastián,

For me it works if I simply type the file name in the box...
Could you please try that?

But i think we can agree that it would be better if Master documents were
listed in the File types list?

Cheers - Cor

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


[Libreoffice-bugs] [Bug 94521] FEATURE REQUEST: Option to set automatic highlighting on current line

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94521

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Version|5.0.1.2 release |Inherited From OOo
   Hardware|x86-64 (AMD64)  |All
 CC||c...@nouenoff.nl
 Ever confirmed|0   |1
Summary|FEATURE REQUEST:|FEATURE REQUEST: Option to
   |Highlighting of current |set automatic highlighting
   |line|on current line
   Severity|normal  |enhancement
 OS|Linux (All) |All

--- Comment #1 from Cor Nouws  ---
Hi Tom,

Thanks for the idea and reporting it here.
Looks as a very nice idea to me (hope to others too ;) )

Cheers- Cor

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


[Libreoffice-bugs] [Bug 64432] EDITING: Input fields in protected section cannot be properly edited (summary: comment 14)

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64432

--- Comment #22 from birqu...@web.de ---
Same with 5.0.2.2 64bit.

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


[Libreoffice-bugs] [Bug 87532] "Arial Bold Italic font" & "Times New Roman Italic font" does not display Arabic characters

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87532

--- Comment #9 from yousifjka...@yahoo.com ---
I test version 5.0.2 Fresh. Bug still existing!! 
You fixed bug no. 89381 & put it as high priority, while 87532 is more
important!!
In fact 87532 make LibreOffice useless for many Arabic users.

By the way, before few days I test Linux mint version 17.2 cinnamon x64 from
DVD & test LibreOffice that come with it, it show no such bug. Also, Apach open
office which LibreOffice is a modification from it show no such bug!!

If you really like to make Libreoffice move away MS Office among middle east &
Arabic useser then just fix this bug. Please give attention to it.

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


[Libreoffice-bugs] [Bug 91344] help Writer/View menu is not consistently translated (Italian)

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91344

--- Comment #14 from gmarco  ---
My comment 13 is in reply to Adolfo Jayme from comment #8

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


[Libreoffice-bugs] [Bug 93766] Calc Crash Access Violation

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93766

--- Comment #11 from Robert Gonzalez MX  ---
Created attachment 119048
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119048=edit
Backtrace  WXP SP3

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


[Libreoffice-bugs] [Bug 93766] Calc Crash Access Violation

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93766

--- Comment #12 from Robert Gonzalez MX  ---
Created attachment 119049
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119049=edit
screenshoot

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


[Libreoffice-bugs] [Bug 86973] Some bullets types (e.g. diamond/flower, filled-in circle) in unnumbered lists can't be exported to HTML

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86973

Beluga  changed:

   What|Removed |Added

 Whiteboard||needsDevEval
   Severity|normal  |minor

--- Comment #5 from Beluga  ---
(In reply to d from comment #3)
> If it is, can the Document Foundation *please* fix this bug so we no longer
> have to visually compare documents to make sure our new document versions
> are faithful to the originals!?  

TDF will not fix the bug, see this:
https://joelmadero.wordpress.com/2014/10/11/user-expectations-and-the-reality-of-our-community/

"The Document Foundation (the non profit organization behind LibreOffice) has
zero (yes, not one) paid developer. The implication of this is that there is
literally not one single person on the project who can dictate how bugs are
fixed."

We might think this is an easy improvement, but as non-developers we are not in
a good position to make such an assessment.

I'll add needsDevEval whiteboard so devs will hopefully review this for
inclusion to easyHacks.

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


[Libreoffice-bugs] [Bug 94519] REQUEST: Autofill formula to new row

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94519

Jouni Järvinen  changed:

   What|Removed |Added

 CC||jounijar...@gmail.com

--- Comment #2 from Jouni Järvinen  ---
(In reply to raal from comment #1)
> Please describe what you mean. If you  know, paste the link to AskLO. Thanks

1) Right click on any row's number below or above a row that has at least 1
formula, such as §=ROW()§
2) Choose §Insert Rows Above§
3) The formulas another row had is replicated to the new row without
copypasting

AskLO links I were able to find right away:
- https://ask.libreoffice.org/en/question/17859/automatic-formula-when-add-row/
-
https://ask.libreoffice.org/en/question/47622/can-i-autofill-formulas-in-a-column-down-to-each-new-row-added/

SuperUser link:
http://superuser.com/questions/525105/libreoffice-calc-how-do-i-copy-formulas-but-not-values-from-a-row

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


[Libreoffice-bugs] [Bug 89236] FILESAVE Error opening password protected calc files

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89236

Robert Gonzalez MX  changed:

   What|Removed |Added

 Attachment #119050|Calc test file  |New Calc test file
description||

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


[Libreoffice-bugs] [Bug 94517] Traditional Chinese Criteria Error.

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94517

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
On Windows 10 Pro 64-bit en-US, with
Version: 5.0.2.2 (x64)
Build ID: 37b43f919e4de5eeaca9b9755ed688758a8251fe
Locale: en-US (en_US)

it all seems correct--no cells displaying #NA values.

The spreadsheet document shows font of 王漢宗細圓體繁 (Wánghànzōng xì yuán tǐ fán -
Wang Hanzong fine round body Traditional)

Sheet 3
cells
A15 has a lable -->  地圖  (Dìtú - map)
G15 has formula -->  =OFFSET($A$3, MATCH($B15,$A$3:$A$11)-1,  7, 1) and a value
of "0"

The #NA value for cells or labels does not appear on any of the sheets. 

Perhaps update to current 5.0.2 release?

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


[Bug 94306] Replace boost::noncopyable with plain C++11 deleted copy ctors

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94306

--- Comment #7 from Umang Jain  ---
ok regarding the sd/ module, I am not able to make changes in: 

sd/source/ui/remotecontrol/IBluetoothSocket.hxx : (line) struct
IBluetoothSocket : private boost::noncopyable

If I change with :

class NonCopyable {
public:
  NonCopyable(const NonCopyable&) = delete;
  const NonCopyable& operator=(const NonCopyable&) = delete;
};

It does not builds successfully and throws errors. If I allow boost
templates(only for this file), It build successfully. What should I do ?

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


[Libreoffice-bugs] [Bug 94475] Create new slide button is nowhere near the slides overview sidebar

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94475

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |philip...@hotmail.com
   |.freedesktop.org|
  Component|ux-advise   |UI
 Resolution|WONTFIX |DUPLICATE

--- Comment #2 from Yousuf (Jay) Philips  ---
Hi Richard,

I have suggested the same thing in bug 89668 and you can see the mockup i've
made for it ( attachment 113696 ).

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

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


[Libreoffice-ux-advise] [Bug 94475] Create new slide button is nowhere near the slides overview sidebar

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94475

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |philip...@hotmail.com
   |.freedesktop.org|
  Component|ux-advise   |UI
 Resolution|WONTFIX |DUPLICATE

--- Comment #2 from Yousuf (Jay) Philips  ---
Hi Richard,

I have suggested the same thing in bug 89668 and you can see the mockup i've
made for it ( attachment 113696 ).

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

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


[Libreoffice-bugs] [Bug 94517] Traditional Chinese Criteria Error.

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94517

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #3 from V Stuart Foote  ---
Please specify release of LibreOffice in use. And perhaps check for correct
behavior with the current 5.0.2 release.

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


[Libreoffice-ux-advise] [Bug 89668] SLIDE PANE: Move slide manipulation buttons to the bottom of the pane

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89668

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #5 from V Stuart Foote  ---
@Jay, a bit of a stretch to resurrect bug 94475 as a duplicate of this.

Unclear from the mockup. Are you suggesting eliminating the current toolbar and
merging its button widgets into the "Slide Pane"? 

Or are you suggesting to retain the "Presentation" toolbar, and somehow
"attach" it to the bottom of the Slide pane?

The latter is easily done now by dragging the "Presentation" toolbar to a new
location. I guess setting it anchor there by default would be pretty simple.
With advantage that it retains the toolbar structure for customization as
preferred.

But, merging the toolbar button widgets into the Slide Pane would be more
complex--would loose toolbar functionality, and would have impact on Draw which
uses the same code for its Page Pane. In Draw, there is no Toolbar mix
comparable to "Presentation".

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


[Libreoffice-bugs] [Bug 89668] SLIDE PANE: Move slide manipulation buttons to the bottom of the pane

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89668

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #5 from V Stuart Foote  ---
@Jay, a bit of a stretch to resurrect bug 94475 as a duplicate of this.

Unclear from the mockup. Are you suggesting eliminating the current toolbar and
merging its button widgets into the "Slide Pane"? 

Or are you suggesting to retain the "Presentation" toolbar, and somehow
"attach" it to the bottom of the Slide pane?

The latter is easily done now by dragging the "Presentation" toolbar to a new
location. I guess setting it anchor there by default would be pretty simple.
With advantage that it retains the toolbar structure for customization as
preferred.

But, merging the toolbar button widgets into the Slide Pane would be more
complex--would loose toolbar functionality, and would have impact on Draw which
uses the same code for its Page Pane. In Draw, there is no Toolbar mix
comparable to "Presentation".

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


[Libreoffice-bugs] [Bug 89668] SLIDE PANE: Move slide manipulation buttons to the bottom of the pane

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89668

--- Comment #6 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #5)

And of course same issues with changing Slide Pane widgets vs. toolbar
attachment when in Master Slide mode and manipulating the "Master View"
toolbar.

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


[Libreoffice-ux-advise] [Bug 89668] SLIDE PANE: Move slide manipulation buttons to the bottom of the pane

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89668

--- Comment #6 from V Stuart Foote  ---
(In reply to V Stuart Foote from comment #5)

And of course same issues with changing Slide Pane widgets vs. toolbar
attachment when in Master Slide mode and manipulating the "Master View"
toolbar.

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


CppCheck configuration

2015-09-26 Thread Michaël Lefèvre
Hye Maarten,

during the last days, I have take some time to look at some improvements to
bring to LibreOffice code base on CppCheck report that you've setted up.

I don't know the configuration you did, and have just questions/remarks.

Here are some point I've noted :

1. there is a 'missingConfig' error, recommanding us to run the check with
--checkconfig

2. we could minimized the results by removing check on qa sub-directories,
which are supposed to be the place for unit tests.

3. if you use a suppression-list to silence some reports, may be this one
could be in the git repository so we can use it localy.

By the way, thank you for bringing this idea to reality.
Actually, my point is if we could bring this warning close to 0, the
actually crash-test and coverity status !

Michaël

2015-01-12 7:16 GMT+01:00 Sand :

> Hi Maarten Hoes,
>  thanks for you replying. Unfortunately, I have read the articles
> of the link. And more, I have followed this link:
> https://wiki.openoffice.org/wiki/Writer , these articles have guided me
> some how. But I still don't understand some designs in the code,  could you
> give me some tips, i.e. why the message loop in module VCL is designed with
> several level of "while loop" and some invocations are send to the message
> queue with Link class?
>
> Any help will be great!
>
> Sand Wen
>
> ___
> LibreOffice mailing list
> LibreOffice@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/libreoffice
>
>
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-ux-advise] [Bug 93970] Writer: default Heading styles 1 - 10 defined with negative indent for first line, results in odd multi-line Heading formats

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93970

Cor Nouws  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

--- Comment #22 from Cor Nouws  ---
Hmm, looks as if I commented to the wrong issue. Apologies!

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


[Libreoffice-ux-advise] [Bug 93970] Writer: default Heading styles 1 - 10 defined with negative indent for first line, results in odd multi-line Heading formats

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93970

Cor Nouws  changed:

   What|Removed |Added

 Attachment #119044|0   |1
is obsolete||

--- Comment #23 from Cor Nouws  ---
Comment on attachment 119044
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119044
test file showing the new behavior

comment on wrong issue

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


[Libreoffice-bugs] [Bug 89381] ValueSet has rendering issues in RTL interface

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89381

--- Comment #26 from yousifjka...@yahoo.com ---
I test version 5.0.2 This bug is fixed. Thank you.

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


[Libreoffice-bugs] [Bug 94510] Validity list of dates converted to numbers inside list

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94510

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
Version|5.0.2.2 release |4.3.0.0.alpha1
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
I can confirm with Version: 4.3.0.0.alpha1+
Build ID: c15927f20d4727c3b8de68497b6949e72f9e6e9e
and Version: 5.1.0.0.alpha1+
Build ID: 83ef294dddf3b1ab5cd5f91a792a7d9413a08f1f
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2015-09-20_07:00:46

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


[Libreoffice-bugs] [Bug 91344] help Writer/View menu is not consistently translated (Italian)

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91344

--- Comment #13 from gmarco  ---
(In reply to gmarco from comment #12)
> Created attachment 119043 [details]
> screenshot 'TestoSorgenteHTML'

Not a question of translation, but of non-alignment between what appears in the
dropdown menu and what is in the guide: compare attachments
"menu'Visualizza'.jpg" and "help for 'Visualizza'.pdf".
In the dropdown appear different item-topics that are not even in the guide
(Barre degli strumenti, Contorni tabella, Commenti, Immagini, Galleria Clip
Art, Barra laterale): even should they be self explaining, they would have a
recall in the help-guide with a minimum of explanation.
In the guide appears instead an argument (Testo sorgente HTML) that is not in
the dropdown: go to the introduction (see "help home.pdf"), clicking on Menu
you get to the contextual screen, click on View and then on "Testo sorgente
HTML" and here (see "screenshot 'TestoSorgenteHTML'") we read "Per accedere a
questo comando...Scegliete Visualizza - Testo sorgente HTML" (English: To
access this command ... Choose View - HTML Source)  but in the dropdown the
argument is not mentioned!

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


[Libreoffice-bugs] [Bug 94532] Row sizing not working

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94532

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from V Stuart Foote  ---
On Windows 10 Pro 64-bit with
Version: 5.0.2.2 (x64)
Build ID: 37b43f919e4de5eeaca9b9755ed688758a8251fe
Locale: en-US (en_US)

All seems to work correctly.

Please verify that while inside the table, the table object has focus.

It may be easier to see this if you go ahead and enable the Vertical Ruler
check box from Tools -> Options -> LibreOffice Writer -> View -- when the table
actually has focus the vertical ruler will resize to the active table.

Also, note that the top edge of the table is its positional anchor and that the
top row can not be dragged from its top edge downward to shrink that row.
Rather from its bottom edge and drag upward toward its anchor.

To adjust separation from paragraph above, or from the page margin--while
focused in the table object--use the Table Properties dialog to adjust Spacing
Above or Below the table. The Left and Right spacing in the dialog effectively
reposition the table between the page margins.

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


[Libreoffice-bugs] [Bug 89344] Error 1316. The specified account already exists.

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89344

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #4 from V Stuart Foote  ---
(In reply to kabouter145 from comment #3)
> I am using Windows 7 Pro
> I cannot upgrade from LibreOffice 5.0.0.5 to 5.0.1 nor to 5.0.2. I get an
> 'Error 1316 Account already exists'. Attempted installation rolls back. 
> I have tried uninstalling LO, using Ccleaner and Glary Utilities, after
> using each to do a registry clean-up. Neither program will uninstall LO.
> Advice, please

Clear your MSIEXEC cache as suggested in the linked comment.

MSIEXEC /UNREGISTER
MSIEXEC /REGSERVER

Then maybe a little clean up with CCleaner or similar (nothing too aggressive).

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


[Libreoffice-bugs] [Bug 93766] Calc Crash Access Violation

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93766

--- Comment #10 from Robert Gonzalez MX  ---
Tested with Versión: 5.0.2.2
Id. de compilación: 37b43f919e4de5eeaca9b9755ed688758a8251fe
Configuración regional: es-MX (es_MX)
on Windows XP SP3

Still present

I'm sending BT and screenshot.

Since 5.0.2.1 on Windows 10, can't reproduce it. Still testing.

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


[Libreoffice-bugs] [Bug 94461] Predefined Templates and Template Folders are not Deletable in Template Manager

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94461

Cor Nouws  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl
Version|5.0.1.2 release |4.4.0.0.alpha0+ Master
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from Cor Nouws  ---
Hi Harold,

Thanks for the issue.
I think the following suggestion makes sense.

(In reply to Harald Koester from comment #0)

> Proposal in order to fix this bug: 
> If a user profile does not exist and LibreOffice is started the first time,
> the predefined templates should be copied into the new user profile. Hence
> the user has the right to delete files and folders in his profile, it should
> be possible to delete predefined templates and folders.

Cheers - Cor

(no idea since when, let me set the version on 4.4.0 rough)

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


[Libreoffice-bugs] [Bug 93534] Change of the color palette does not persist

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93534

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl
Summary|Bug when trying to change   |Change of the color palette
   |the color palette   |does not persist

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


[Libreoffice-bugs] [Bug 89236] FILESAVE Error opening password protected calc files

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89236

--- Comment #7 from Robert Gonzalez MX  ---
Created attachment 119051
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119051=edit
screenshot LO 3.3

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


[Libreoffice-bugs] [Bug 89236] FILESAVE Error opening password protected calc files

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89236

--- Comment #8 from Robert Gonzalez MX  ---
Created attachment 119052
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119052=edit
screenshot of error

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


[Libreoffice-bugs] [Bug 89236] FILESAVE Error opening password protected calc files

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89236

--- Comment #9 from Robert Gonzalez MX  ---
Created attachment 119053
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119053=edit
screenshoot LO 4.1

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


[Libreoffice-ux-advise] [Bug 93970] Writer: default Heading styles 1 - 10 defined with negative indent for first line, results in odd multi-line Heading formats

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93970

--- Comment #24 from Heiko Tietze  ---
(In reply to Cor Nouws from comment #20)
> in the ODF specs...

The ODF specs contain of typographic guidelines? Even when your comment was
made regarding lists that would be relevant for headings too.

PS: It feels a little bit weird to discuss issues with resolved feature
requests / fixed bug reports.

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


[Libreoffice-bugs] [Bug 94482] Check for updates not working in 5.0.2.2

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94482

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
Created attachment 119039
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119039=edit
LO 5.0.2.2 check for update dialog -- working OK in Windows

Can't confirm.  Dialog is working correctly on  WIndows 10 Pro 64-bit with
5.0.2.1 loaded

Version: 5.0.2.1 (x64)
Build ID: 9a18d52abbdfbdc2ac9acebec2b92e7859eb73b7
Locale: en-US (en_US)

Where Check for Updates gives "LibreOffice 5.0 is up to date"

Of course that is not correct since it should offer the 5.0.2.2.

But, then a download and install of 5.0.2.2 build.

Version: 5.0.2.2 (x64)
Build ID: 37b43f919e4de5eeaca9b9755ed688758a8251fe
Locale: en-US (en_US)

Help -> Check for Updates opens the dialog and as expected gives the same
message. Clip attached.

@Cloph, does the website update "check.php" need a tweak for the 5.0.2
releases?

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


[Libreoffice-bugs] [Bug 94500] Type Master documents not listed in dialog when loading styles in the current document

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94500

Cor Nouws  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
Version|5.0.1.2 release |Inherited From OOo
Summary|Load styles from a master   |Type Master documents not
   |document in the current |listed in dialog when
   |document|loading styles in the
   ||current document
 Whiteboard||needsDevEval
   Severity|normal  |enhancement

--- Comment #3 from Cor Nouws  ---
thanks for your help too!

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


[Libreoffice-bugs] [Bug 93692] Add Quick Remove Option for Toolbar Items

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93692

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||philip...@hotmail.com
 Ever confirmed|0   |1

--- Comment #2 from Yousuf (Jay) Philips  ---
Have thought about suggesting the same thing, though i thought a different
context menu would appear when over a toolbar item, but i'd assume a user would
likely want to remove multiple entries, and likely add multiple ones as well,
so opening the customize dialog is the best means of completing this task.

But i hope with the amount of improvements i've made to the toolbars, most
users would never want to remove entries. ;D

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


[Libreoffice-ux-advise] [Bug 93692] Add Quick Remove Option for Toolbar Items

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93692

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||philip...@hotmail.com
 Ever confirmed|0   |1

--- Comment #2 from Yousuf (Jay) Philips  ---
Have thought about suggesting the same thing, though i thought a different
context menu would appear when over a toolbar item, but i'd assume a user would
likely want to remove multiple entries, and likely add multiple ones as well,
so opening the customize dialog is the best means of completing this task.

But i hope with the amount of improvements i've made to the toolbars, most
users would never want to remove entries. ;D

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


[Libreoffice-bugs] [Bug 91344] help Writer/View menu is not consistently translated (Italian)

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91344

--- Comment #11 from gmarco  ---
Created attachment 119042
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119042=edit
help home.pdf

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


[Libreoffice-bugs] [Bug 94534] New: REPORTBUILDER

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94534

Bug ID: 94534
   Summary: REPORTBUILDER
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: p...@northwoodsinfosvcs.com

REPORTBUILDER won't open in Design View mode in LibreOffice Base 4
REPORTBUILDER does not save reports designed in Design View in LibreOffice Base
5.  Most of report design is lost upon closing the Design View editor
regardless of multiple saves. The save button on the toolbar, along with some
other buttons, never get enabled.

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


[Libreoffice-bugs] [Bug 94534] REPORTBUILDER

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94534

Pete C.  changed:

   What|Removed |Added

 CC||p...@northwoodsinfosvcs.com
Version|unspecified |5.0.1.2 release

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


[Libreoffice-bugs] [Bug 93174] Insert as background from gallery does not work in writer

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93174

--- Comment #5 from yousifjka...@yahoo.com ---
I test version 5.0.2 This bug is still existing for BOTH paragraph & page.

I can not understand why it is not confirmed for page!!

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


[Libreoffice-ux-advise] [Bug 93970] Writer: default Heading styles 1 - 10 defined with negative indent for first line, results in odd multi-line Heading formats

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93970

Cor Nouws  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

--- Comment #21 from Cor Nouws  ---
.

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


[Libreoffice-ux-advise] [Bug 93970] Writer: default Heading styles 1 - 10 defined with negative indent for first line, results in odd multi-line Heading formats

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93970

--- Comment #20 from Cor Nouws  ---
Created attachment 119044
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119044=edit
test file showing the new behavior

Hi,

Up until now, in Writer usually (and AFAIK – which is limited) also in the ODF
specs, the indent (margins) of the list styles prevail over those from the
paragraphs.

So I think this change is problematic, I think..

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


[Libreoffice-bugs] [Bug 94487] Pivot Table: Fields list doesn't update

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94487

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 94487] Pivot Table: Fields list doesn't update

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94487

raal  changed:

   What|Removed |Added

Version|5.0.2.2 release |4.4.2.2 release

--- Comment #3 from raal  ---
doesn't work in 4.4.2.2

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


[Libreoffice-bugs] [Bug 94535] New: UI REGRESSION: Cannot open Fontwork dialog to adapt text to connect shape

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94535

Bug ID: 94535
   Summary: UI REGRESSION: Cannot open Fontwork dialog to adapt
text to connect shape
   Product: LibreOffice
   Version: 4.4.5.2 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nalimi...@club.fr

It used to be easy in LO 4.3.4.1 to add text to a connector in Draw, and make
it adapt to the shape of the connector using Fontwork. But in LO 4.4.5.2, the
button to open the Fontwork dialog is no longer present in the "Drawing"
toolbar.

Moreover, there is no longer any reasonable  way of opening that dialog.
Indeed, the only workaround I could find to open it is by creating a text
frame, right-clicking on it and choosing "Fontwork". Then, if you select the
connector text, you can adapt it as previously (and remove the useless text
frame when you're done). But this is terribly hard to find, and appears as a
feature loss even for experienced users.

Adding a "Fontwork" item to the context menu when a connector text is selected
would mitigate the disruption caused by the removal of the Fontwork button from
the toolbar. I understand this operation might not be common enough to deserve
a permanent button there, but at least it should be accessible without
"cheating" by creating different objects.

It would probably also be a good idea to add a "Fontwork dialog" item to the
View menu, where it appears logical to look for such a dialog.

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


[Libreoffice-bugs] [Bug 89236] FILESAVE Error opening password protected calc files

2015-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89236

--- Comment #6 from Robert Gonzalez MX  ---
Created attachment 119050
  --> https://bugs.documentfoundation.org/attachment.cgi?id=119050=edit
Calc test file

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


  1   2   3   >