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

2015-03-03 Thread Miklos Vajna
 sw/inc/fmtornt.hxx   |   32 
 sw/source/core/layout/atrfrm.cxx |   34 +-
 2 files changed, 33 insertions(+), 33 deletions(-)

New commits:
commit c5d8c466afe97190e550c3d43b52713a0840b273
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Tue Mar 3 09:01:36 2015 +0100

SwFmtHoriOrient: rename member variables missing their prefixes

Change-Id: Ic245fe20e364be8c4110a52f5f91b611adb187db

diff --git a/sw/inc/fmtornt.hxx b/sw/inc/fmtornt.hxx
index 150f61a..df33db0 100644
--- a/sw/inc/fmtornt.hxx
+++ b/sw/inc/fmtornt.hxx
@@ -68,10 +68,10 @@ public:
 
 class SW_DLLPUBLIC SwFmtHoriOrient: public SfxPoolItem
 {
-SwTwips nXPos;  /// Contains *always* the current 
RelPos.
-sal_Int16   eOrient;
-sal_Int16   eRelation;
-boolbPosToggle : 1; /// Flip position on even pages.
+SwTwips m_nXPos;  /// Contains *always* the current 
RelPos.
+sal_Int16   m_eOrient;
+sal_Int16   m_eRelation;
+boolm_bPosToggle : 1; /// Flip position on even pages.
 public:
 TYPEINFO_OVERRIDE();
 SwFmtHoriOrient( SwTwips nX = 0, sal_Int16 eHori = 
com::sun::star::text::HoriOrientation::NONE,
@@ -89,16 +89,16 @@ public:
 virtual bool QueryValue( com::sun::star::uno::Any rVal, sal_uInt8 
nMemberId = 0 ) const SAL_OVERRIDE;
 virtual bool PutValue( const com::sun::star::uno::Any rVal, sal_uInt8 
nMemberId = 0 ) SAL_OVERRIDE;
 
-sal_Int16 GetHoriOrient() const { return eOrient; }
-sal_Int16 GetRelationOrient() const { return eRelation; }
-void SetHoriOrient( sal_Int16 eNew ) { eOrient = eNew; }
-void SetRelationOrient( sal_Int16 eNew ) { eRelation = eNew; }
+sal_Int16 GetHoriOrient() const { return m_eOrient; }
+sal_Int16 GetRelationOrient() const { return m_eRelation; }
+void SetHoriOrient( sal_Int16 eNew ) { m_eOrient = eNew; }
+void SetRelationOrient( sal_Int16 eNew ) { m_eRelation = eNew; }
 
-SwTwips GetPos() const { return nXPos; }
-voidSetPos( SwTwips nNew ) { nXPos = nNew; }
+SwTwips GetPos() const { return m_nXPos; }
+voidSetPos( SwTwips nNew ) { m_nXPos = nNew; }
 
-bool IsPosToggle() const { return bPosToggle; }
-void SetPosToggle( bool bNew ) { bPosToggle = bNew; }
+bool IsPosToggle() const { return m_bPosToggle; }
+void SetPosToggle( bool bNew ) { m_bPosToggle = bNew; }
 
 void dumpAsXml(struct _xmlTextWriter* pWriter) const SAL_OVERRIDE;
 };
@@ -112,10 +112,10 @@ inline SwFmtVertOrient SwFmtVertOrient::operator=( const 
SwFmtVertOrient rCpy
 }
 inline SwFmtHoriOrient SwFmtHoriOrient::operator=( const SwFmtHoriOrient 
rCpy )
 {
-nXPos = rCpy.GetPos();
-eOrient = rCpy.GetHoriOrient();
-eRelation = rCpy.GetRelationOrient();
-bPosToggle = rCpy.IsPosToggle();
+m_nXPos = rCpy.GetPos();
+m_eOrient = rCpy.GetHoriOrient();
+m_eRelation = rCpy.GetRelationOrient();
+m_bPosToggle = rCpy.IsPosToggle();
 return *this;
 }
 
diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index 961b70f..7d4ee2a 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -1430,24 +1430,24 @@ void SwFmtVertOrient::dumpAsXml(xmlTextWriterPtr 
pWriter) const
 SwFmtHoriOrient::SwFmtHoriOrient( SwTwips nX, sal_Int16 eHori,
   sal_Int16 eRel, bool bPos )
 : SfxPoolItem( RES_HORI_ORIENT ),
-nXPos( nX ),
-eOrient( eHori ),
-eRelation( eRel ),
-bPosToggle( bPos )
+m_nXPos( nX ),
+m_eOrient( eHori ),
+m_eRelation( eRel ),
+m_bPosToggle( bPos )
 {}
 
 bool SwFmtHoriOrient::operator==( const SfxPoolItem rAttr ) const
 {
 assert(SfxPoolItem::operator==(rAttr));
-return ( nXPos == static_castconst SwFmtHoriOrient(rAttr).nXPos 
- eOrient == static_castconst SwFmtHoriOrient(rAttr).eOrient 
- eRelation == static_castconst SwFmtHoriOrient(rAttr).eRelation 

- bPosToggle == static_castconst 
SwFmtHoriOrient(rAttr).bPosToggle );
+return ( m_nXPos == static_castconst SwFmtHoriOrient(rAttr).m_nXPos 
+ m_eOrient == static_castconst SwFmtHoriOrient(rAttr).m_eOrient 

+ m_eRelation == static_castconst 
SwFmtHoriOrient(rAttr).m_eRelation 
+ m_bPosToggle == static_castconst 
SwFmtHoriOrient(rAttr).m_bPosToggle );
 }
 
 SfxPoolItem*  SwFmtHoriOrient::Clone( SfxItemPool* ) const
 {
-return new SwFmtHoriOrient( nXPos, eOrient, eRelation, bPosToggle );
+return new SwFmtHoriOrient( m_nXPos, m_eOrient, m_eRelation, m_bPosToggle 
);
 }
 
 bool SwFmtHoriOrient::QueryValue( uno::Any rVal, sal_uInt8 nMemberId ) const
@@ -1459,11 +1459,11 @@ bool SwFmtHoriOrient::QueryValue( uno::Any rVal, 
sal_uInt8 nMemberId ) const
 {
 case MID_HORIORIENT_ORIENT:
 {
-rVal = (sal_Int16)eOrient;
+rVal = (sal_Int16)m_eOrient;
 }

[Libreoffice-bugs] [Bug 89779] FORMATTING Operations on Index causes crash

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89779

--- Comment #2 from Emanuele Forner lelefor...@gmail.com ---
The steps, as required.
I'm writing a book, which is divided in chapters.
At the beginning of the book, I put a summary index, which shows the chapter
titles and the relevant pages; the chapter titles, in the text, are formatted
with the Title1, Title2, etc. style, to be recognized when the index is created
and/or updated.
All worked fine until LO 4.4...

-- 
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 89783] sal_uint16 counters for containers exceed during mailmerge

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89783

--- Comment #7 from Christoph Lutz chrl...@googlemail.com ---
one first patch ist here: https://gerrit.libreoffice.org/#/c/14725/

-- 
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-4-3' - dbaccess/source

2015-03-03 Thread Lionel Elie Mamane
 dbaccess/source/ui/querydesign/QueryDesignView.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 1ce2461ab77f2ad28671ac1542509bbb16a155ef
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Wed Jan 28 21:09:42 2015 +0100

not all OrCriteria have three children

and some contain a column in the second child

Change-Id: Ifd69758336233ed0233120b3315d4f33655fa994
Reviewed-on: https://gerrit.libreoffice.org/14719
Tested-by: David Tardon dtar...@redhat.com
Reviewed-by: David Tardon dtar...@redhat.com

diff --git a/dbaccess/source/ui/querydesign/QueryDesignView.cxx 
b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
index 880cafc..7f6a1b1 100644
--- a/dbaccess/source/ui/querydesign/QueryDesignView.cxx
+++ b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
@@ -1304,9 +1304,11 @@ namespace
 {
 bool bRet = true;
 ::connectivity::OSQLParseNode* pFirstColumnRef = _pFirstColumnRef;
-for (int i = 0; i  3  bRet; i+=2)
+for (size_t i = 0; i  _pCondition-count()  bRet; ++i)
 {
 const  ::connectivity::OSQLParseNode* pChild = 
_pCondition-getChild(i);
+if ( pChild-isToken() )
+continue;
 if ( SQL_ISRULE(pChild,search_condition) )
 bRet = CheckOrCriteria(pChild,pFirstColumnRef);
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: icon-themes/galaxy icon-themes/tango officecfg/registry sw/source

2015-03-03 Thread Yousuf Philips
 icon-themes/galaxy/links.txt|3 +++
 icon-themes/tango/cmd/sc_removetableof.png  |binary
 icon-themes/tango/cmd/sc_updatecurindex.png |binary
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu |6 
++
 sw/source/ui/app/mn.src |8 

 5 files changed, 13 insertions(+), 4 deletions(-)

New commits:
commit e719183ce3974ebd8034421e654d0ef0e9b16593
Author: Yousuf Philips philip...@hotmail.com
Date:   Tue Feb 24 13:15:50 2015 +0400

Added icons and modified entries in the context menu for TOC

Change-Id: I89eb4a5a984e94588103e5b36f786152c679ff82
Reviewed-on: https://gerrit.libreoffice.org/14602
Tested-by: Caolán McNamara caol...@redhat.com
Reviewed-by: Caolán McNamara caol...@redhat.com

diff --git a/icon-themes/galaxy/links.txt b/icon-themes/galaxy/links.txt
index 8ffb495..c6336ad 100644
--- a/icon-themes/galaxy/links.txt
+++ b/icon-themes/galaxy/links.txt
@@ -43,3 +43,6 @@ cmd/sc_savegraphic.png cmd/sc_save.png
 # menu submenu entries
 cmd/sc_arrangemenu.png cmd/sc_bringtofront.png
 
+# writer table of context context menu
+cmd/sc_updatecurindex.png cmd/sc_sc_reload.png
+cmd/sc_removetableof.png cmd/sc_sc_cancel.png
diff --git a/icon-themes/tango/cmd/sc_removetableof.png 
b/icon-themes/tango/cmd/sc_removetableof.png
new file mode 100644
index 000..ec35ed2
Binary files /dev/null and b/icon-themes/tango/cmd/sc_removetableof.png differ
diff --git a/icon-themes/tango/cmd/sc_updatecurindex.png 
b/icon-themes/tango/cmd/sc_updatecurindex.png
new file mode 100644
index 000..2618466
Binary files /dev/null and b/icon-themes/tango/cmd/sc_updatecurindex.png differ
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index b500057..7ff659c 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -150,11 +150,17 @@
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-USCurrent ~Index/value
 /prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
   /node
   node oor:name=.uno:RemoveTableOf oor:op=replace
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-USDelete index/value
 /prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
   /node
   node oor:name=.uno:ProtectTraceChangeMode oor:op=replace
 prop oor:name=Label oor:type=xs:string
diff --git a/sw/source/ui/app/mn.src b/sw/source/ui/app/mn.src
index cd6c0b3..5f55306 100644
--- a/sw/source/ui/app/mn.src
+++ b/sw/source/ui/app/mn.src
@@ -162,7 +162,7 @@
 {   \
 Identifier = FN_EDIT_IDX_ENTRY_DLG ;\
 HelpId = CMD_FN_EDIT_IDX_ENTRY_DLG ;   
 \
-Text [ en-US ] = Inde~x Entry... ;   \
+Text [ en-US ] = Edit Inde~x Entry... ;   \
 };
 
 #define _MN_EDIT_BIB_ENTRY_DLG  \
@@ -300,19 +300,19 @@
 {   \
 Identifier = FN_UPDATE_CUR_TOX ;\
 HelpId = CMD_FN_UPDATE_CUR_TOX ;   
 \
-Text [ en-US ] = ~Update Index/Table; \
+Text [ en-US ] = ~Update Index or Table; 
\
 };  \
 MenuItem\
 {   \
 Identifier = FN_EDIT_CURRENT_TOX;   \
 HelpId = CMD_FN_EDIT_CURRENT_TOX;  
 \
-Text [ en-US ] = ~Edit Index/Table;   \
+Text [ en-US ] = ~Edit Index or Table;   
\
 };  \
 MenuItem\
 {   \
 Identifier = FN_REMOVE_CUR_TOX; \
 HelpId = CMD_FN_REMOVE_CUR_TOX;
 \
-Text [ en-US ] = Delete Index/Table;  \
+Text [ en-US ] = Delete Index or Table;  
\
 }; 

[Libreoffice-bugs] [Bug 89800] [SI-GUI] Truncated Italian translations

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89800

Marina Latini mar...@studiostorti.com changed:

   What|Removed |Added

   Severity|normal  |trivial

--- Comment #2 from Marina Latini mar...@studiostorti.com ---
Changed importance to trivial and added a screenshot.

* SI GUI version: 4.4.0.8
* language: Italian
* OS: Windows 7 Home Premium SP1 x86

-- 
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 89796] Bibliography entry inserted in a caption for an image, which frame happens to be the last element before page break, get numbered zero.

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89796

agere presentmeaninv...@gmail.com changed:

   What|Removed |Added

Summary|All bibliography entries|Bibliography entry inserted
   |after 46th have number [0]  |in a caption for an image,
   ||which frame happens to be
   ||the last element before
   ||page break, get numbered
   ||zero.

--- Comment #5 from agere presentmeaninv...@gmail.com ---
 but the next entry outside the frame will have the same number and it can’t 
 be fixed. 
Ah, there seems to be another nuance. The unlucky frame is the last page
element before the manual page break (also new L1 enumeration item starts from
the next page). And — attention — while there’s text between the frame and the
page break — Tools  Update  Update All works fine and even without it the
number automatically gets 43th number. When there’s no text, the entry in the
caption become having number 0.

-- 
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 89796] Bibliography entry inserted in a caption for an image, which frame happens to be the last element before page break, get numbered zero.

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89796

--- Comment #6 from agere presentmeaninv...@gmail.com ---
This is reproducible.

1. Create a new text document.
2. Insert a manual page break.
3. On the second page, create bibliography index.
4. On the first page, Insert an image from a file, add caption.
5. Put cursor in the text of the caption, insert a new bibliography entry.
6. ?
7. 0

-- 
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 89796] Bibliography entry inserted in a caption for an image, which frame happens to be the last element before page break, gets numbered as zero.

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89796

agere presentmeaninv...@gmail.com changed:

   What|Removed |Added

Summary|Bibliography entry inserted |Bibliography entry inserted
   |in a caption for an image,  |in a caption for an image,
   |which frame happens to be   |which frame happens to be
   |the last element before |the last element before
   |page break, gets numbered   |page break, gets numbered
   |zero.   |as zero.

-- 
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 89796] Bibliography entry inserted in a caption for an image, which frame happens to be the last element before page break, gets numbered zero.

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89796

agere presentmeaninv...@gmail.com changed:

   What|Removed |Added

Summary|Bibliography entry inserted |Bibliography entry inserted
   |in a caption for an image,  |in a caption for an image,
   |which frame happens to be   |which frame happens to be
   |the last element before |the last element before
   |page break, get numbered|page break, gets numbered
   |zero.   |zero.

-- 
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 89797] Copy Paste from Inkscape: 1st time: Bitmap, 2nd time: vector with errors

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89797

--- Comment #1 from felixru...@gmx.de ---
Just want to add, that there is the same problem for gradient fills of
rectangles. There will be the correct gradient at the first paste and a solid
fill for the second paste operation.

-- 
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 68441] FORMATTING: conditional custom cell formatting expressions fail with @ token

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68441

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||todven...@suomi24.fi
 Resolution|--- |INVALID

--- Comment #12 from Beluga todven...@suomi24.fi ---
I asked Eike Rathke about this and he said this can indeed be closed as
invalid, so I'm doing 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


GSOC 2015

2015-03-03 Thread Rishabh Kumar
Hi. My name is Rishabh Kumar, a second year undergrad at IIT Roorkee, India.
I am pursuing a degree in Applied Mathematics. My contact details :
IRC nick - Rishabh , Rishabh_
Email - kris.kr...@gmail.com
kris.kr...@yahoo.com
I would like to take up the task of Reviewing the modeless dialogs  their
moving to sidebar under the GSOC 2015 as a student developer. Previously I
have worked on the following UI related bugs/features bugs-
1. #89085 (merged)
2. #64573 (merged)
3. #80758 - https://gerrit.libreoffice.org/#/c/14498/ (not reviewed)
4. #81073 - https://gerrit.libreoffice.org/#/c/14488/ (not reviewed)
Currently I am working on -
1. #80657
2. #82641
3. #87995
I intend to commit my changes soon . I am always available on irc for any
suggestions on my commits.

I have been working on the project idea for a some time.I intend to improve
the usability of sidebar for the applications Writer, Impress , Calc and
Draw by moving the dialogs to sidebar and reduce the use of titlebar in
libreoffice applications. LibreOffice sidebar is still not used to its
optimal capacity as it contains relatively few number of widgets in
comparison to it size and certainly ,  it is possible to add more number of
widgets to improve User Experience . To start with , I looked into the
commit which added the Manage Changes dialog to the toolbar . It gave me
an idea about creating controls in sidebar. I am familiar with glade
interface designing. I have compiled the list of modeless dialogs for
Writer-
Insert(Main Dialog)
 (Sub Dialogs)
Break
Table(with delete and select functionality)
footnote/endnote
Bookmark
shapes
fields(document,cross reference,functions)
special character
customize
bullets and numbering
title page
auto-correct options

I will send the list of dialogs for other  LO applications soon . Pardon me
for any of the intended dialogs which I may have missed.

I am pretty confident in creating the dialogs in sidebar and if the
proposal demands , I can submit a patch which creates the sidebar dialog
for any of the above mentioned dialogs. Since this project requires more of
UI validation, I hope to get support and ideas from the community.  And
some queries-
1. Is there any particular template for the GSOC application of
libreoffice(Any examples of good proposal from previous year) ?
2. As the size of the proposal will grow with the discussion , how should I
organize it so that it is visible to everyone in the community?(I suppose
emails are not the best way).

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


[Libreoffice-bugs] [Bug 80298] VIEWING PRINTING: wrong work with svg images inserted into document

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80298

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #101442|text/plain  |application/zip
  mime type||

-- 
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 80310] HTML Export - Interaction button to play sound does not export it's link to source code

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80310

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #101458|text/plain  |application/vnd.oasis.opend
  mime type||ocument.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 80303] UI: Property mapping - the legend should reflect this possibility

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80303

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #113286|application/octet-stream|application/vnd.oasis.opend
  mime type||ocument.spreadsheet

-- 
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 80336] LibreOffice hangs on latex exportation

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80336

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #101827|application/octet-stream|application/msword
  mime type||

-- 
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 80342] Crash when sorting a spreadsheet

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80342

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #101509|application/octet-stream|text/plain
  mime type||

-- 
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 89793] CONFIGURATION: to filter inline references in word count

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89793

Octavio Alvarez alvar...@alvarezp.ods.org changed:

   What|Removed |Added

 CC||alvar...@alvarezp.ods.org
   Severity|normal  |enhancement

--- Comment #1 from Octavio Alvarez alvar...@alvarezp.ods.org ---
In an attempt to understand correctly: by inline references you are referring
to manually entered text (like this), and not to some LibO functionality,
right? Can you provide an example of a paragraph with inline reference, to see
the use case?

Also, why should inline references be excluded from the word count? I would
think that those words are part of the document.

Finally, what should happen in the case of words inside parenthesis that are
part of regular text and not an inline reference? My guess is that LibO
wouldn't be able to tell the difference.

-- 
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 89789] Ctrl+f only works in one direction instead of as a toggle.

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89789

ematchm...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #2 from ematchm...@gmail.com ---
Now I am wondering if my recollection was wrong.  Last night someone pointed
out that the Escape key provided the functionality I mentioned; that makes my
report irrelevant.  Sorry.  I will change the status to not a 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 89680] help: outdated application name on help

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89680

--- Comment #3 from Florian Reisinger reisi...@gmail.com ---
You should be able to request access here:
https://drive.google.com/open?id=0B8QxXEHH2EgMR0pLYTRBd1l3XzAauthuser=0
There do exist a document fop the UI strings (other bug) and for one for each
help 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 72337] Other: Unable to open document on a network share

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72337

--- Comment #22 from Joel Madero jmadero@gmail.com ---
I've built a msi that does not contain the commit, you can find it here:

https://drive.google.com/file/d/0B2kdRhc960qda096M1ZteDgyYzg/view?usp=sharing


Please test and report back. If this resolves the problem, I will talk to
Michael about reverting the commit (or getting it fixed). Thanks for your hard
work helping to track this down.

-- 
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 89644] FORMATTING: Bibliography structure character style problem

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89644

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
 OS|Windows (All)   |All

--- Comment #3 from Beluga todven...@suomi24.fi ---
(In reply to jzmigrodzki from comment #2)
 Created attachment 113839 [details]
 ODT file with problematic bibliography
 
 I added ODT file with bibliografy in which this problem ocure.

Reproduced with the document.

1. Right-click bibliog. on pg 4. - Edit Index/Table
2. Entries - Press the Au in Structure
3. Select a character style from the dropdown, OK, style is applied
4. Reload document
5. Right-click bibliog. - Update Index/Table, the style disappears

Style only disappears on update, if the file has been saved and reloaded.

Bug 77919 is similar, but in it, one does not have to save  reload to lose the
style.

3.3.0 and 3.5.0 in Ubuntu could not open the document.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Version: 4.5.0.0.alpha0+
Build ID: 7c0eb12009496a35c927cd5b2520f9c34d50860b
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2015-03-03_10:52:12
Locale: fi_FI

Ubuntu 14.10 64-bit Version: 4.4.1.2
Build ID: 40m0(Build:2)
Locale: en_US

-- 
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 82719] EDITING: String with hyperlink not pasted

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82719

Katarina Behrens bu...@bubli.org changed:

   What|Removed |Added

 CC||r.lehme...@freenet.de

--- Comment #7 from Katarina Behrens bu...@bubli.org ---
*** Bug 88987 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 77919] FORMATTING: Bibliography, character styles are lost after update

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77919

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
Version|4.2.3.3 release |Inherited From OOo

--- Comment #2 from Beluga todven...@suomi24.fi ---
Reproduced with attachment 97948, already with 3.3.0.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Ubuntu 14.10 64-bit
LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

-- 
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 89659] Input fields get corrupted while making any changes

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89659

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
 Whiteboard||bibisectRequest
 OS|Windows (All)   |All

--- Comment #1 from Beluga todven...@suomi24.fi ---
Reproduced with attachment 113682, but not with v. 4.2.0. Marking as
regression.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Version: 4.5.0.0.alpha0+
Build ID: 7c0eb12009496a35c927cd5b2520f9c34d50860b
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2015-03-03_10:52:12
Locale: fi_FI

Ubuntu 14.10 64-bit
Version: 4.4.1.2
Build ID: 40m0(Build:2)
Locale: en_US

Version: 4.2.0.4
Build ID: 05dceb5d363845f2cf968344d7adab8dcfb2ba71

-- 
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 89571] UI: switching dialogs shouldn't need switching tabs

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89571

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #2 from Beluga todven...@suomi24.fi ---
Yeah, it's remembering them independently for me as well.

I'll set this to NEEDINFO, while we wait for your test results on 4.4.

Ubuntu 14.10 64-bit
Version: 4.4.1.2
Build ID: 40m0(Build:2)
Locale: en_US

-- 
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 89800] [SI-GUI] Truncated Italian translations

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89800

Florian Reisinger reisi...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||reisi...@gmail.com
 Ever confirmed|0   |1

--- Comment #3 from Florian Reisinger reisi...@gmail.com ---
I will have a look at the progress bar!
For the too long strings - Is that possible to change to a shorter version
or does Italian need so much space?

-- 
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 89800] [SI-GUI] Truncated Italian translations

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89800

--- Comment #4 from Marina Latini mar...@studiostorti.com ---
(In reply to Florian Reisinger from comment #3)

 For the too long strings - Is that possible to change to a shorter
 version or does Italian need so much space?

We can try to use a shorter version

-- 
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 86395] Bookmarks are displayed in alphabetic order in the Navigator

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86395

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #6 from Beluga todven...@suomi24.fi ---
(In reply to sophie from comment #0)
 Hi, Steps to reproduce:
 - add some text to a writer document (using AutoText td+F3 for example)
 - put the cursor on the second line
 - select Insert  Bookmark, give a name in the dialog that opens, press OK
 - insert another bookmark two lines below using the same proces
 - display the Navigator
 == the second bookmark is listed first while they are correctly listed in

Did this from scratch in 3.5.0 and gave the name bb to the first inserted one
and aa to the second. In the navigator aa is the first listed one.

Ubuntu 14.10 64-bit
LibreOffice 3.5.0rc3 
Build ID: 7e68ba2-a744ebf-1f241b7-c506db1-7d53735

-- 
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 88987] Copying text from within a Calc cell omits URLs

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88987

Katarina Behrens bu...@bubli.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #7 from Katarina Behrens bu...@bubli.org ---


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

-- 
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 89680] help: outdated application name on help

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89680

--- Comment #4 from Marina Latini mar...@studiostorti.com ---
(In reply to Florian Reisinger from comment #3)
 You should be able to request access here:
 https://drive.google.com/open?id=0B8QxXEHH2EgMR0pLYTRBd1l3XzAauthuser=0

Request sent with my gmail account

Best,
Marina

-- 
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 89795] New: Filter Data IGNORED in PDF Export Macro

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89795

Bug ID: 89795
   Summary: Filter Data IGNORED in PDF Export Macro
   Product: LibreOffice
   Version: 4.2.7.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: du...@zoznam.sk

LibreOffice ignores ANY Filter Data options feeded inside a macro for a PDF
Export. 
Very similar bugs bugs have been makred INVALID because it was supposeldy a
macro recording problem. Well it is not, this is not a recorded macro.

Thank you



sub pdf
doc = thisComponent
adr = left (doc.url, len (doc.url)-4)+.pdf
dim podminka_filtru (0) as new com.sun.star.beans.PropertyValue
podminka_filtru (0).Name = UseLosslessCompression
podminka_filtru (0).Value = False
podminka_filtru (0).Name = ReduceImageResolution
podminka_filtru (0).Value = True
podminka_filtru (0).Name = MaxImageResolution
podminka_filtru (0).Value = 50
podminka_filtru (0).Name = Quality
podminka_filtru (0).Value = 10
dim podminka_exportu (1) as new com.sun.star.beans.PropertyValue
podminka_exportu (0).Name = FilterName
podminka_exportu (0).Value = calc_pdf_Export
podminka_exportu (1).Name = FilterData
podminka_exportu (1).Value = podminka_filtru
doc.storeToURL (adr, podminka_exportu ())
end sub

-- 
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' - 69/1fc7cabbd42d144d1e42db5f6ef7090a46f3f4

2015-03-03 Thread Caolán McNamara
 69/1fc7cabbd42d144d1e42db5f6ef7090a46f3f4 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 14b2ad0feaacb974f7c926a0fc9b20ce76104b47
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Mar 3 09:45:19 2015 +

Notes added by 'git notes add'

diff --git a/69/1fc7cabbd42d144d1e42db5f6ef7090a46f3f4 
b/69/1fc7cabbd42d144d1e42db5f6ef7090a46f3f4
new file mode 100644
index 000..12807d0
--- /dev/null
+++ b/69/1fc7cabbd42d144d1e42db5f6ef7090a46f3f4
@@ -0,0 +1 @@
+prefer: 9e98f12db714b8a1a8cc64234bb4eea26e936166
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-03-03 Thread Caolán McNamara
 vcl/unx/gtk3/gdi/gtk3cairotextrender.cxx |   42 +++
 vcl/unx/gtk3/gdi/gtk3cairotextrender.hxx |   33 
 2 files changed, 75 insertions(+)

New commits:
commit f9d3cf3f807b27465b48e2007b4234f4a23913dd
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Mar 3 09:54:47 2015 +

missing magic

Change-Id: I93479fe18e1ea3e58dcec46a43fe1a89647c8000

diff --git a/vcl/unx/gtk3/gdi/gtk3cairotextrender.cxx 
b/vcl/unx/gtk3/gdi/gtk3cairotextrender.cxx
new file mode 100644
index 000..f2f044e
--- /dev/null
+++ b/vcl/unx/gtk3/gdi/gtk3cairotextrender.cxx
@@ -0,0 +1,42 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include gtk3cairotextrender.hxx
+
+GtkCairoTextRender::GtkCairoTextRender(GtkSalGraphics rParent)
+: mrParent(rParent)
+{
+}
+
+GlyphCache GtkCairoTextRender::getPlatformGlyphCache()
+{
+return mrParent.getPlatformGlyphCache();
+}
+
+cairo_t* GtkCairoTextRender::getCairoContext()
+{
+return mrParent.getCairoContext();
+}
+
+void GtkCairoTextRender::getSurfaceOffset(double nDX, double nDY)
+{
+nDX = 0;
+nDY = 0;
+}
+
+void GtkCairoTextRender::clipRegion(cairo_t* cr)
+{
+mrParent.clipRegion(cr);
+}
+
+void GtkCairoTextRender::drawSurface(cairo_t* /*cr*/)
+{
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/unx/gtk3/gdi/gtk3cairotextrender.hxx 
b/vcl/unx/gtk3/gdi/gtk3cairotextrender.hxx
new file mode 100644
index 000..e134182
--- /dev/null
+++ b/vcl/unx/gtk3/gdi/gtk3cairotextrender.hxx
@@ -0,0 +1,33 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_VCL_UNX_GTK3_GDI_GTK3CAIROTEXTRENDER_HXX
+#define INCLUDED_VCL_UNX_GTK3_GDI_GTK3CAIROTEXTRENDER_HXX
+
+#include cairotextrender.hxx
+#include unx/gtk/gtkgdi.hxx
+
+class GtkCairoTextRender : public CairoTextRender
+{
+protected:
+GtkSalGraphics mrParent;
+
+public:
+GtkCairoTextRender(GtkSalGraphics rParent);
+
+virtual GlyphCache getPlatformGlyphCache() SAL_OVERRIDE;
+virtual cairo_t* getCairoContext() SAL_OVERRIDE;
+virtual void getSurfaceOffset(double nDX, double nDY) SAL_OVERRIDE;
+virtual void clipRegion(cairo_t* cr) SAL_OVERRIDE;
+virtual void drawSurface(cairo_t* cr) SAL_OVERRIDE;
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - svl/source

2015-03-03 Thread Eike Rathke
 svl/source/numbers/zforfind.cxx |   33 ++---
 1 file changed, 26 insertions(+), 7 deletions(-)

New commits:
commit a46a1895f6280b8da2dd6ea61b6c39aea9952f3d
Author: Eike Rathke er...@redhat.com
Date:   Fri Feb 20 15:11:36 2015 +0100

Resolves: tdf#89500 catch ISO 8601 datetime in all locales

Change-Id: I906ebdc6aa5c365df98a29e9e0f319f89f6833c6
(cherry picked from commit 5d572e673dec3396487b14bb1f9e86aa8ab86786)
Reviewed-on: https://gerrit.libreoffice.org/14565
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx
index cd8bc6f..fab73b4 100644
--- a/svl/source/numbers/zforfind.cxx
+++ b/svl/source/numbers/zforfind.cxx
@@ -2451,16 +2451,35 @@ bool ImpSvNumberInputScan::ScanMidString( const 
OUString rString,
 SkipBlanks( rString, nPos );
 }
 }
-else if (nStringPos == 5  nPos == 0  rString.getLength() == 1 

- rString[ 0 ] == 'T'  MayBeIso8601())
+else if (nPos == 0  rString.getLength() == 1  MayBeIso8601())
 {
-// ISO 8601 combined date and time, -mm-ddThh:mm
-++nPos;
+if (nStringPos == 5  rString[0] == 'T')
+{
+// ISO 8601 combined date and time, -mm-ddThh:mm
+++nPos;
+}
+else if (nStringPos == 7  rString[0] == ':')
+{
+// ISO 8601 combined date and time, the time part; we reach
+// here if the locale's separator is not ':' so it couldn't
+// be detected above in the time block.
+if (nAnzNums = 5)
+eScannedType = NUMBERFORMAT_DATETIME;
+++nPos;
+}
 }
 break;
-#if NF_RECOGNIZE_ISO8601_TIMEZONES
 case NUMBERFORMAT_DATETIME:
-if (nPos == 0  rString.getLength() == 1  nStringPos = 9  
MayBeIso8601())
+if (nPos == 0  rString.getLength() == 1  MayBeIso8601())
+{
+if (nStringPos == 9  rString[0] == ':')
+{
+// ISO 8601 combined date and time, the time part 
continued.
+++nPos;
+}
+}
+#if NF_RECOGNIZE_ISO8601_TIMEZONES
+else if (nPos == 0  rString.getLength() == 1  nStringPos = 9 
 MayBeIso8601())
 {
 // ISO 8601 timezone offset
 switch (rString[ 0 ])
@@ -2487,8 +2506,8 @@ bool ImpSvNumberInputScan::ScanMidString( const OUString 
rString,
 break;
 }
 }
-break;
 #endif
+break;
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - 2 commits - desktop/source libreofficekit/CppunitTest_libreofficekit_tiledrendering.mk libreofficekit/Module_libreofficekit.mk libreoff

2015-03-03 Thread Miklos Vajna
 desktop/source/app/check_ext_deps.cxx   |6 -
 libreofficekit/CppunitTest_libreofficekit_tiledrendering.mk |5 
 libreofficekit/Module_libreofficekit.mk |6 -
 libreofficekit/qa/unit/tiledrendering.cxx   |   61 
 4 files changed, 52 insertions(+), 26 deletions(-)

New commits:
commit 5f94189a4099a2bf043d1fab6b888dccad333c7a
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Tue Mar 3 11:13:32 2015 +0100

CppunitTest_libreofficekit_tiledrendering: fix up and enable this again

The main problem was that UserInstallation did not point to the usual
workdir/unittest/, so initialization failed early, not finding the
soffice.cfg directory under
workdir/CppunitTest/libreofficekit_tiledrendering.test.user/.

Disable one testcase that still fails, though.

Change-Id: I3fdae5ead47dd2a805a0ed8d3cb407938f868e3b

diff --git a/libreofficekit/CppunitTest_libreofficekit_tiledrendering.mk 
b/libreofficekit/CppunitTest_libreofficekit_tiledrendering.mk
index acc708f..783074f 100644
--- a/libreofficekit/CppunitTest_libreofficekit_tiledrendering.mk
+++ b/libreofficekit/CppunitTest_libreofficekit_tiledrendering.mk
@@ -29,8 +29,6 @@ $(eval $(call 
gb_CppunitTest_use_libraries,libreofficekit_tiledrendering, \
$(gb_UWINAPI) \
 ))
 
-#  unotest \
-
 ifeq ($(OS),LINUX)
 $(eval $(call gb_CppunitTest_add_libs,libreofficekit_tiledrendering,\
 -lm \
@@ -42,13 +40,10 @@ endif
 $(eval $(call gb_CppunitTest_use_sdk_api,libreofficekit_tiledrendering))
 
 $(eval $(call gb_CppunitTest_use_ure,libreofficekit_tiledrendering))
-#$(eval $(call gb_CppunitTest_use_vcl,libreofficekit_tiledrendering))
 
 # Depend on ~everything, as tiled rendering can use most parts of LO.
 $(eval $(call gb_CppunitTest_use_rdb,libreofficekit_tiledrendering,services))
 
 $(eval $(call gb_CppunitTest_use_configuration,libreofficekit_tiledrendering))
 
-$(eval $(call gb_CppunitTest_use_confpreinit,libreofficekit_tiledrendering))
-
 # vim: set noet sw=4 ts=4:
diff --git a/libreofficekit/Module_libreofficekit.mk 
b/libreofficekit/Module_libreofficekit.mk
index fe5ee15..ad2064f 100644
--- a/libreofficekit/Module_libreofficekit.mk
+++ b/libreofficekit/Module_libreofficekit.mk
@@ -11,9 +11,9 @@ $(eval $(call gb_Module_Module,libreofficekit))
 
 ifeq ($(OS),LINUX)
 
-# $(eval $(call gb_Module_add_check_targets,libreofficekit,\
-# CppunitTest_libreofficekit_tiledrendering \
-# ))
+$(eval $(call gb_Module_add_slowcheck_targets,libreofficekit,\
+CppunitTest_libreofficekit_tiledrendering \
+))
 
 ifneq ($(ENABLE_GTK),)
 $(eval $(call gb_Module_add_targets,libreofficekit,\
diff --git a/libreofficekit/qa/unit/tiledrendering.cxx 
b/libreofficekit/qa/unit/tiledrendering.cxx
index 0b9b288..44f1bed 100644
--- a/libreofficekit/qa/unit/tiledrendering.cxx
+++ b/libreofficekit/qa/unit/tiledrendering.cxx
@@ -21,15 +21,28 @@
 #include vcl/salbtype.hxx
 #include vcl/bmpacc.hxx
 #include vcl/pngwrite.hxx
+#include osl/file.hxx
+#include rtl/bootstrap.hxx
 
 #define LOK_USE_UNSTABLE_API
 #include LibreOfficeKit/LibreOfficeKitInit.h
 #include LibreOfficeKit/LibreOfficeKit.hxx
+#include LibreOfficeKit/LibreOfficeKitEnums.h
 
 using namespace ::boost;
 using namespace ::lok;
 using namespace ::std;
 
+OUString getFileURLFromSystemPath(OUString const  path)
+{
+OUString url;
+osl::FileBase::RC e = osl::FileBase::getFileURLFromSystemPath(path, url);
+CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, e);
+if (!url.endsWith(/))
+url += /;
+return url;
+}
+
 // We specifically don't use the usual BootStrapFixture, as LOK does
 // all it's own setup and bootstrapping, and should be useable in a
 // raw C++ program.
@@ -51,7 +64,9 @@ public:
 void testDocumentLoadFail( Office* pOffice );
 void testDocumentTypes( Office* pOffice );
 void testImpressSlideNames( Office* pOffice );
+#if 0
 void testOverlay( Office* pOffice );
+#endif
 
 CPPUNIT_TEST_SUITE(TiledRenderingTest);
 CPPUNIT_TEST(runAllTests);
@@ -60,6 +75,16 @@ public:
 
 void TiledRenderingTest::runAllTests()
 {
+// set UserInstallation to user profile dir in test/user-template
+const char* pWorkdirRoot = getenv(WORKDIR_FOR_BUILD);
+OUString aWorkdirRootPath = OUString::createFromAscii(pWorkdirRoot);
+OUString aWorkdirRootURL = getFileURLFromSystemPath(aWorkdirRootPath);
+OUString sUserInstallURL = aWorkdirRootURL + /unittest;
+rtl::Bootstrap::set(OUString(UserInstallation), sUserInstallURL);
+
+// No restart in desktop.
+setenv(LOK_TEST, 1, true);
+
 scoped_ptr Office  pOffice( lok_cpp_init(
   m_sLOPath.c_str() ) );
 CPPUNIT_ASSERT( pOffice.get() );
@@ -67,7 +92,9 @@ void TiledRenderingTest::runAllTests()
 testDocumentLoadFail( pOffice.get() );
 testDocumentTypes( pOffice.get() );
 testImpressSlideNames( pOffice.get() );
+#if 0
 testOverlay( pOffice.get() );
+#endif
 

[Libreoffice-bugs] [Bug 89342] Lower layer object ran over to the top

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89342

--- Comment #2 from Franklin Weng frank...@goodhorse.idv.tw ---
Created attachment 113847
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113847action=edit
The file which has this problem

The attach file is which this problem appeared.

Using OpenOffice 4.1.1 does not have this problem.

-- 
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 88055] Slide Title area text is obscured by new white highlight background if area background changed

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88055

--- Comment #4 from ge...@crans.org ---
I suffer from this pretty horrible bug in 4.4.1.2. Is there a workaround?
Thanks!

-- 
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 80499] FILESAVE: duplicated style:font-name attribute in ods files

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80499

Alexis-Emmanuel Haeringer 4.l.e.x.1.1.s+documentfoundat...@gmail.com changed:

   What|Removed |Added

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

-- 
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 83836] FILESAVE: Corrupted content.xml after saving a ODS spreadsheet

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83836

Alexis-Emmanuel Haeringer 4.l.e.x.1.1.s+documentfoundat...@gmail.com changed:

   What|Removed |Added

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

-- 
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 89568] Ability to view bookmark/anchor locations in a document

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89568

--- Comment #3 from Jay Philips philip...@hotmail.com ---
I think it would be good to have the bookmark icon located in the margin,
similar to line numbers.

-- 
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 80499] FILESAVE: duplicated style:font-name attribute in ods files

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80499

--- Comment #12 from Julien Nabet serval2...@yahoo.fr ---
I wonder if the root cause of comment 10 could be fixed thanks to
http://cgit.freedesktop.org/libreoffice/core/commit/?id=cda9ae79e58d861a85128d6a37587b633b956aae

-- 
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 89779] FORMATTING Operations on Index causes crash

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89779

--- Comment #4 from Emanuele Forner lelefor...@gmail.com ---
Created attachment 113845
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113845action=edit
Writer document with summary index (crashing on index update)

Updating the index/table causes LO 4.4.1.2 to 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-commits] core.git: Branch 'feature/tiled-editing' - android/experimental

2015-03-03 Thread Miklos Vajna
 android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java |
3 +++
 1 file changed, 3 insertions(+)

New commits:
commit df7aab59c7d6383f420e01293adc54d53bb4e548
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Tue Mar 3 10:22:45 2015 +0100

android: fix long press not selecting an empty cell

A double click is a set of 4 events, only one of them was sent, that's
how it worked in gtktiledviewer, but not on Android.

Change-Id: Id0eaef3765d385aab588b834f66b9f4b4f3ccb70

diff --git 
a/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java 
b/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java
index 099d0f2..78e18d3 100644
--- a/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java
+++ b/android/experimental/LOAndroid3/src/java/org/libreoffice/LOKitThread.java
@@ -263,7 +263,10 @@ public class LOKitThread extends Thread {
 }
 if (touchType.equals(LongPress)) {
 
mInvalidationHandler.setOverlayState(InvalidationHandler.OverlayState.SELECTION);
+mTileProvider.mouseButtonDown(documentCoordinate, 1);
+mTileProvider.mouseButtonUp(documentCoordinate, 1);
 mTileProvider.mouseButtonDown(documentCoordinate, 2);
+mTileProvider.mouseButtonUp(documentCoordinate, 2);
 } else { // SingleTap
 LibreOfficeMainActivity.mAppContext.showSoftKeyboard();
 
mInvalidationHandler.setOverlayState(InvalidationHandler.OverlayState.CURSOR);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/inc vcl/unx

2015-03-03 Thread Caolán McNamara
 vcl/inc/headless/svpgdi.hxx   |2 +-
 vcl/inc/unx/gtk/gtkgdi.hxx|   10 ++
 vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx |   14 ++
 3 files changed, 21 insertions(+), 5 deletions(-)

New commits:
commit 756b2c945143ee171ae80c9ba51ef0dd50fab789
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Mar 2 15:23:02 2015 +

just in case, fallback if not cairo-surface

Change-Id: I5c185f9306f73f787f38566ba5335b5a8f51ee1d

diff --git a/vcl/inc/headless/svpgdi.hxx b/vcl/inc/headless/svpgdi.hxx
index e9f5110..c45cf0f 100644
--- a/vcl/inc/headless/svpgdi.hxx
+++ b/vcl/inc/headless/svpgdi.hxx
@@ -55,7 +55,7 @@ protected:
 
 public:
 GlyphCache getPlatformGlyphCache();
-void setDevice(basebmp::BitmapDeviceSharedPtr rDevice);
+virtual void setDevice(basebmp::BitmapDeviceSharedPtr rDevice);
 void BlendTextColor(const basebmp::Color rTextColor, const 
basebmp::BitmapDeviceSharedPtr rAlphaMask,
 const basegfx::B2IPoint rDstPoint);
 
diff --git a/vcl/inc/unx/gtk/gtkgdi.hxx b/vcl/inc/unx/gtk/gtkgdi.hxx
index 2cbe6e0..3bc7ef0 100644
--- a/vcl/inc/unx/gtk/gtkgdi.hxx
+++ b/vcl/inc/unx/gtk/gtkgdi.hxx
@@ -35,12 +35,14 @@ class GtkSalFrame;
 class GtkSalGraphics : public SvpSalGraphics
 {
 GtkSalFrame *mpFrame;
+bool m_bCairoCompatibleSurface;
 public:
 GtkSalGraphics( GtkSalFrame *pFrame, GtkWidget *pWindow );
-virtual void copyArea( long nDestX, long nDestY,
-   long nSrcX, long nSrcY,
-   long nSrcWidth, long nSrcHeight,
-   sal_uInt16 /*nFlags*/ ) SAL_OVERRIDE;
+virtual voidsetDevice(basebmp::BitmapDeviceSharedPtr rDevice) 
SAL_OVERRIDE;
+virtual voidcopyArea( long nDestX, long nDestY,
+  long nSrcX, long nSrcY,
+  long nSrcWidth, long nSrcHeight,
+  sal_uInt16 /*nFlags*/ ) SAL_OVERRIDE;
 virtual booldrawNativeControl( ControlType nType, ControlPart 
nPart,
const Rectangle rControlRegion,
ControlState nState, const 
ImplControlValue aValue,
diff --git a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx 
b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx
index 774be5a..8ccf2e3 100644
--- a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx
+++ b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx
@@ -1576,6 +1576,20 @@ static void print_update_area (GdkWindow *window, const 
char *msg)
 print_cairo_region (gdk_window_get_update_area (window), msg);
 }
 
+void GtkSalGraphics::setDevice(basebmp::BitmapDeviceSharedPtr rDevice)
+{
+SvpSalGraphics::setDevice(rDevice);
+bool bCairoCompatibleSurface = rDevice-getScanlineFormat() == 
basebmp::FORMAT_THIRTYTWO_BIT_TC_MASK_BGRX;
+if (bCairoCompatibleSurface != m_bCairoCompatibleSurface)
+{
+if (bCairoCompatibleSurface)
+m_xTextRenderImpl.reset(new GtkCairoTextRender(*this));
+else
+m_xTextRenderImpl.reset(new SvpTextRender(*this));
+m_bCairoCompatibleSurface = bCairoCompatibleSurface;
+}
+}
+
 void GtkSalGraphics::copyArea( long nDestX, long nDestY,
long nSrcX, long nSrcY,
long nSrcWidth, long nSrcHeight,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89796] All bibliography entries after 46th have number [0]

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89796

--- Comment #1 from agere presentmeaninv...@gmail.com ---
Hmm… I think there is a workaround.

But first a little more details: the problem place is the end of the first line
of a caption to an image, the caption consists of two lines aligned by center.
The caption, of course, is within the same frame, as the image. What’s strange
is that’s tenth image in the document (all of the same style, with captions),
and such bug didn’t happen with previous ones, though I inserted bibliography
entries in their captions, too. Another thing is there are three more entries
after that image, so it’s in kind of middle.

After I inserted an entry that already existed in the index after the frame
with image and caption, and created a new entry, its number didn’t became zero.
When I cut and pasted it into the frame to the zeroes, they became having
proper numbers as well.

-- 
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 80499] FILESAVE: duplicated style:font-name attribute in ods files

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80499

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

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

-- 
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 83836] FILESAVE: Corrupted content.xml after saving a ODS spreadsheet

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83836

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

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

-- 
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 42692] SVG export ignores Selection option

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42692

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

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

--- Comment #18 from Beluga todven...@suomi24.fi ---
Yep, works ok for me, too. Well, it does somehow produce a result, where the
bottom is cut off at the level of the three-way valves, but that's another
story.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

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


[Libreoffice-bugs] [Bug 80416] EDITING: Cannot change type/format of date/time fields from context menu

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80416

--- Comment #4 from cytan...@yahoo.com ---
Problem persists in 4.4.12 running on Yosemite 10.10.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


[Bug 89592] Initialize PropertyValue Sequences from initializer_lists

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89592

--- Comment #1 from Lovekesh Garg iamvoi...@gmail.com ---
Can you explain it further.I want to work on it.
I am a beginner.
Thanks.

-- 
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 89592] Initialize PropertyValue Sequences from initializer_lists

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89592

--- Comment #1 from Lovekesh Garg iamvoi...@gmail.com ---
Can you explain it further.I want to work on it.
I am a beginner.
Thanks.

-- 
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 89674] Allow use of fields in numbered headings

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89674

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Beluga todven...@suomi24.fi ---
Sounds useful - 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 89802] Header background missing in writer-4.4.1.2

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89802

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

   Keywords||regression
 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl
Summary|Headers missing in  |Header background missing
   |writer-4.4.1.2  |in writer-4.4.1.2
 Ever confirmed|0   |1
 Whiteboard||bibisectrequest

--- Comment #2 from Cor Nouws c...@nouenoff.nl ---
Hi Massimo,

Confirm: background visible in 4.3.3
Not visible in 4.4.x

To be bibisected

-- 
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 89806] New: Table cell background fill properties are not saved when saved as .pptx.

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89806

Bug ID: 89806
   Summary: Table cell background fill properties are not saved
when saved as .pptx.
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sushilshi...@libreoffice.org

Created attachment 113853
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113853action=edit
PPTX file with table fills.

Steps to reproduce this issue:
1. Create a presentation file on latest master.
2. Insert a table.
3. Apply some background proeprties to Table cells
   ex. Picture fill, solid coluors or gradient colours etc.
4. Save file as .pptx file.
5. Open saved file on LO again.

OR 
1. Open .odp attached file on latest master and save it as .pptx file.

OR 
1. Open attached .pptx file on latest master and save it as .pptx again.

Current behaviour:
1. If opened saved file on LO again, background fill for table cell is missing.

Expected behaviour:
1. Table cell fill data should be exported properly.

-- 
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 89807] New: Footnote dialog pops up unfocused - Enter key does not instert footnote or close the dialog

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89807

Bug ID: 89807
   Summary: Footnote dialog pops up unfocused - Enter key does
not instert footnote or close the dialog
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pter...@gmail.com

Created attachment 113855
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113855action=edit
Footnote dialog unfocused

To reproduce.

1. Place cursor somewhere in the text. 
2. Click key combination to insert footnote (in my case Ctrl+Alt+F).
- Footnote dialog is opened (in focus)
3. Clicking enter closes the dialog and inserts footnote.
4. Repeat steps 1 and 2 again.
- This time the footnote dialog is NOT in focus, so clicking enter does not
work. As a result, one needs to use the mouse to click on the OK button or
select the dialog (put it in focus) and then click Enter key. This is
cumbersome.

P.S. I had the same problem with the Find text dialog that was popping up
without having focus and one could not type right in.

-- 
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 72438] LibreLogo: icons in Logo toolbar replaced by text only

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72438

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #5 from Jay Philips philip...@hotmail.com ---
Hi Gilvan,

Sorry but i couldnt reproduce it on Linux or Windows with a new document no
matter how many times i tried. :(

Maybe try resetting your profile to see if that makes a difference. 
http://ask.libreoffice.org/en/question/903/where-are-the-libreoffice-data-profile-files/
.

-- 
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: external/hunspell sw/source vcl/generic

2015-03-03 Thread Michael Stahl
 external/hunspell/ExternalProject_hunspell.mk |1 -
 sw/source/core/text/frmform.cxx   |1 -
 vcl/generic/print/bitmap_gfx.cxx  |   10 ++
 3 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 08ce45c94fcf3d5d0e937fb01e90f16ef4d9c88f
Author: Michael Stahl mst...@redhat.com
Date:   Mon Mar 2 21:17:10 2015 +0100

remove more SunStudio cruft

Change-Id: I1e1ca09e870461990c919938ed0902c8b90c4413

diff --git a/external/hunspell/ExternalProject_hunspell.mk 
b/external/hunspell/ExternalProject_hunspell.mk
index 2b1ab8b..160f2b1 100644
--- a/external/hunspell/ExternalProject_hunspell.mk
+++ b/external/hunspell/ExternalProject_hunspell.mk
@@ -19,7 +19,6 @@ $(call gb_ExternalProject_get_state_target,hunspell,build):
./configure --disable-shared --disable-nls --with-pic \
$(if $(CROSS_COMPILING),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM))\
$(if $(filter 
AIX,$(OS)),CFLAGS=-D_LINUX_SOURCE_COMPAT) \
-   $(if $(filter C53,$(COM)),CFLAGS=-xc99=none) \
$(if $(filter-out 
WNTGCC,$(OS)$(COM)),,LDFLAGS=-Wl,--enable-runtime-pseudo-reloc-v2) \
 $(MAKE) \
)
diff --git a/sw/source/core/text/frmform.cxx b/sw/source/core/text/frmform.cxx
index 7e426fc..fc18196 100644
--- a/sw/source/core/text/frmform.cxx
+++ b/sw/source/core/text/frmform.cxx
@@ -1267,7 +1267,6 @@ void SwTxtFrm::_Format( SwTxtFormatter rLine, 
SwTxtFormatInfo rInf,
 SwParaPortion *pPara = rLine.GetInfo().GetParaPortion();
 rLine.SetUnclipped( false );
 
-// That was too complicated for the C30: aString( GetTxt() );
 const OUString rString = GetTxtNode()-GetTxt();
 const sal_Int32 nStrLen = rString.getLength();
 
diff --git a/vcl/generic/print/bitmap_gfx.cxx b/vcl/generic/print/bitmap_gfx.cxx
index 2811da8..ca6495f 100644
--- a/vcl/generic/print/bitmap_gfx.cxx
+++ b/vcl/generic/print/bitmap_gfx.cxx
@@ -33,8 +33,9 @@ const sal_uInt32 nBufferSize = 16384;
  *
  */
 
-PrinterBmp::~PrinterBmp ()
-{ /* dont need this, but C50 does */ }
+PrinterBmp::~PrinterBmp()
+{
+}
 
 /* virtual base class */
 
@@ -48,8 +49,9 @@ public:
 virtual ~ByteEncoder () = 0;
 };
 
-ByteEncoder::~ByteEncoder ()
-{ /* dont need this, but the C50 does */ }
+ByteEncoder::~ByteEncoder()
+{
+}
 
 /* HexEncoder */
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 89806] Table cell background fill properties are not saved when saved as .pptx.

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89806

--- Comment #1 from Sushil Shinde sushilshi...@libreoffice.org ---
Created attachment 113854
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113854action=edit
.odp file with table fills.

-- 
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 89687] when I select text to insert an hyperlink the field text is empty on the hyperlink window

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89687

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #2 from Beluga todven...@suomi24.fi ---
Can not reproduce either.

In a freaky case like this, you should try this:
https://wiki.documentfoundation.org/User_Profile#Resolving_corruption_in_the_user_profile

Set to NEEDINFO.
Change back to UNCONFIRMED, if the problem persists after deleting user
profile. Change to RESOLVED INVALID, if the problem went away.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

Ubuntu 14.10 64-bit
Version: 4.4.1.2
Build ID: 40m0(Build:2)
Locale: en_US

-- 
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 80362] FILESAVE: PNG export with transparency enabled makes non-transparent parts transparent

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80362

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #101533|application/octet-stream|application/vnd.oasis.opend
  mime type||ocument.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 80504] EDITING: Connector reroutes off the page

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80504

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #101705|text/plain  |image/png
  mime type||

-- 
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 89801] New: Can't install on Android CyanogenMod 12 (5.02)

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89801

Bug ID: 89801
   Summary: Can't install on Android CyanogenMod 12 (5.02)
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jang...@webonomic.nl

Can't install on Android Resurrection Remix based on CyanogenMod 12 (5.0.2)
N7100 (Fdroid version
http://forum.xda-developers.com/galaxy-note-2/development/rom-resurrection-remix-5-2-2-t2974539

03-03 13:39:53.906   24972-1112/org.fdroid.fdroid
I/org.fdroid.fdroid.net.HttpDownloader﹕ Downloading from
https://f-droid.org/repo/com.collabora.libreoffice_9.apk
03-03 13:41:37.901  24972-24972/org.fdroid.fdroid D/FDroid﹕ Using cached apk at
/storage/emulated/0/Android/data/org.fdroid.fdroid/cache/apks/com.collabora.libreoffice_9.apk
03-03 13:41:37.901  24972-24972/org.fdroid.fdroid D/FDroid﹕ Download finished:
/storage/emulated/0/Android/data/org.fdroid.fdroid/cache/apks/com.collabora.libreoffice_9.apk
03-03 13:41:37.9012415-3130/system_process I/ActivityManager﹕ START u0
{act=android.intent.action.INSTALL_PACKAGE
dat=file:///storage/emulated/0/Android/data/org.fdroid.fdroid/cache/apks/com.collabora.libreoffice_9.apk
cmp=com.android.packageinstaller/.PackageInstallerActivity (has extras)} from
uid 10055 on display 0
03-03 13:42:04.4362415-2916/system_process I/ActivityManager﹕ START u0
{dat=file:///storage/emulated/0/Android/data/org.fdroid.fdroid/cache/apks/com.collabora.libreoffice_9.apk
flg=0x200 cmp=com.android.packageinstaller/.InstallAppProgress (has
extras)} from uid 10042 on display 0
03-03 13:42:05.0211192-1209/? W/DefContainer﹕ Failed to copy package at
/storage/emulated/0/Android/data/org.fdroid.fdroid/cache/apks/com.collabora.libreoffice_9.apk
java.io.IOException: Failed to create container smdl1404498837.tmp
at
com.android.defcontainer.DefaultContainerService.copyPackageToContainerInner(DefaultContainerService.java:324)
at
com.android.defcontainer.DefaultContainerService.access$000(DefaultContainerService.java:67)
at
com.android.defcontainer.DefaultContainerService$1.copyPackageToContainer(DefaultContainerService.java:108)
at
com.android.internal.app.IMediaContainerService$Stub.onTransact(IMediaContainerService.java:60)
at android.os.Binder.execTransact(Binder.java:446)

Does install on N7000 Omnirom 4.4.4

-- 
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 'feature/priorities' - 5 commits - avmedia/source basctl/source chart2/source cui/source dbaccess/source desktop/source editeng/source extensions/source forms/so

2015-03-03 Thread Tobias Madl
 avmedia/source/framework/mediacontrol.cxx |2 
 avmedia/source/framework/soundhandler.cxx |2 
 basctl/source/basicide/baside2b.cxx   |2 
 basctl/source/dlged/dlged.cxx |2 
 chart2/source/view/charttypes/GL3DBarChart.cxx|2 
 cui/source/dialogs/cuigaldlg.cxx  |2 
 cui/source/dialogs/linkdlg.cxx|2 
 cui/source/dialogs/thesdlg.cxx|2 
 cui/source/options/optjava.cxx|2 
 cui/source/tabpages/backgrnd.cxx  |2 
 cui/source/tabpages/chardlg.cxx   |2 
 cui/source/tabpages/macroass.cxx  |2 
 dbaccess/source/ui/querydesign/JoinTableView.cxx  |2 
 desktop/source/deployment/gui/dp_gui_dialog2.cxx  |4 
 editeng/source/editeng/impedit2.cxx   |2 
 extensions/source/bibliography/bibcont.cxx|2 
 extensions/source/bibliography/toolbar.cxx|2 
 extensions/source/update/ui/updatecheckui.cxx |2 
 forms/source/component/ListBox.cxx|2 
 formula/source/ui/dlg/formula.cxx |2 
 formula/source/ui/dlg/funcutl.cxx |6 
 include/vcl/idle.hxx  |   49 --
 include/vcl/scheduler.hxx |   92 +
 include/vcl/timer.hxx |   42 --
 linguistic/source/lngsvcmgr.cxx   |2 
 reportdesign/source/ui/report/DesignView.cxx  |2 
 sc/source/core/data/documen2.cxx  |2 
 sc/source/core/tool/chartlis.cxx  |2 
 sc/source/ui/app/scmod.cxx|2 
 sc/source/ui/dbgui/sfiltdlg.cxx   |2 
 sc/source/ui/docshell/autostyl.cxx|2 
 sc/source/ui/formdlg/dwfunctr.cxx |2 
 sc/source/ui/miscdlgs/acredlin.cxx|4 
 sc/source/ui/miscdlgs/anyrefdg.cxx|2 
 sc/source/ui/miscdlgs/conflictsdlg.cxx|2 
 sc/source/ui/navipi/navipi.cxx|2 
 sc/source/ui/pagedlg/tphfedit.cxx |2 
 sd/source/core/drawdoc4.cxx   |2 
 sd/source/ui/dlg/brkdlg.cxx   |2 
 sd/source/ui/dlg/dlgass.cxx   |6 
 sd/source/ui/dlg/filedlg.cxx  |2 
 sd/source/ui/framework/module/ShellStackGuard.cxx |2 
 sd/source/ui/slidesorter/controller/SlsAnimator.cxx   |2 
 sd/source/ui/view/sdview.cxx  |4 
 sfx2/source/appl/appcfg.cxx   |2 
 sfx2/source/appl/appinit.cxx  |6 
 sfx2/source/appl/newhelp.cxx  |8 
 sfx2/source/control/dispatch.cxx  |6 
 sfx2/source/dialog/basedlgs.cxx   |6 
 sfx2/source/dialog/dinfdlg.cxx|4 
 sfx2/source/dialog/dockwin.cxx|6 
 sfx2/source/dialog/filedlghelper.cxx  |4 
 sfx2/source/dialog/templdlg.cxx   |2 
 sfx2/source/doc/new.cxx   |2 
 starmath/source/edit.cxx  |4 
 svtools/source/contnr/imivctl1.cxx|   12 
 svtools/source/contnr/svimpbox.cxx|4 
 svtools/source/contnr/treelistbox.cxx |2 
 svtools/source/control/asynclink.cxx  |2 
 svtools/source/control/tabbar.cxx |2 
 svtools/source/dialogs/wizdlg.cxx |2 
 svtools/source/misc/filechangedchecker.cxx|2 
 svx/source/dialog/_contdlg.cxx|4 
 svx/source/dialog/fontwork.cxx|2 
 svx/source/dialog/graphctl.cxx|2 
 svx/source/dialog/imapdlg.cxx |2 
 svx/source/dialog/srchdlg.cxx |2 
 svx/source/dialog/svxbmpnumvalueset.cxx   |2 
 svx/source/form/datanavi.cxx  |2 
 svx/source/form/formcontroller.cxx|2 
 svx/source/inc/eventhandler.hxx   |2 
 svx/source/sdr/contact/objectcontactofpageview.cxx|2 
 svx/source/sdr/contact/viewobjectcontactofpageobj.cxx |2 
 svx/source/sdr/event/eventhandler.cxx |2 
 svx/source/sdr/overlay/overlaymanagerbuffered.cxx |2 
 svx/source/sidebar/PanelLayout.cxx|2 
 svx/source/stbctrls/modctrl.cxx   |2 
 svx/source/svdraw/svdibrow.cxx|2 
 svx/source/svdraw/svdpntv.cxx |2 
 

report a bug while filtering

2015-03-03 Thread 虹口小徐
hello, I'm using Libreoffice, it's nice.
my version is 4.3.3.2 i'm using in Simplified Chinese


While I'm ordering Data-Filter and was tring all kinds of filter , the system 
collapsed. as the first two rows of each columns are combined , and then I was 
deleting the second line.

I don't know how to make it happen again to show you.




Thank you for your work.___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 80366] FILESAVE: XLSX format cannot be opened under MSOffice for WindowsPhone 8.1

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80366

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #101541|application/octet-stream|application/zip
  mime type||

-- 
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 80395] MAILMERGE: Lines move when using mail merge

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80395

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #101666|application/octet-stream|application/zip
  mime type||

-- 
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 78622] LibreLogo: change in tooltips

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78622

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |UI
 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-ux-advise] [Bug 78622] LibreLogo: change in tooltips

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78622

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
  Component|ux-advise   |UI
 Resolution|--- |FIXED

-- 
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 42705] Graphics Anchored to Cell Do Not Move With Data When Sorted, 'Protect Position' Set or Not, 'Link' or Not

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42705

--- Comment #11 from Jarl Arntzen jarl.arnt...@gmail.com ---
I can confirm that this bug is also found in 4.4.0.3 on both Windows 8 and
Ubuntu 14.04 64-bit. Although it only cost me a couple of minutes in extra
work, I'm still 
For the home user or children in school, this bug is quite easily discoverable
since those users are more likely to paste in pictures, clipart or similar. 

As much as the bug is quickly encountered, it also equally requires very
frequent corrections to the document to work around it. Every single time any
data is modified (wrap/nowrap, additional lines added or removed, additional
rows added or removed) , all images below the affected row have to move up or
down, accordingly. There's no single one-time workaround but instead a
frequently re-occurring re-adjustment of pictures.

This quickly turns into a major annoyance for anyone, even the expert user and
only the latter will even consider filing a bug report. The rest will quickly
depart for any other spreadsheet application which supports sane treatment of
in-cell images.

Version: 4.4.0.3
Build ID: de093506bcdc5fafd9023ee680b8c60e3e0645d7
Locale: nb_NO

Kind regards,
Jarl Arntzen

-- 
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 80384] Chart Legend name lost on saving

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80384

Michael Stahl mst...@redhat.com changed:

   What|Removed |Added

 Attachment #101565|application/octet-stream|application/vnd.oasis.opend
  mime type||ocument.text

-- 
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 78520] FILEOPEN: debugging-assert loading .pptx in 4.3 alpha

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78520

Jacques Guilleron guillero...@aol.com changed:

   What|Removed |Added

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

--- Comment #7 from Jacques Guilleron guillero...@aol.com ---
Hi,

The test file can be opened with 
LO 4.3.0.1 Build ID: 67f5430184326974072b65403ef1d9d934fc4481
and some other following versions.
According to comment #6, I set Status WORKSFORME.

Regards,

Jacques

-- 
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 72438] LibreLogo: icons in Logo toolbar replaced by text only

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72438

--- Comment #4 from Gilvan Vilarim gilvan.vila...@gmail.com ---
Hello. The bug persists in version 4.4. 

It is really an annoying bug, because the toolbar becomes so wide that it
cannot be moved on screen.

This bug takes place only when the toolbar is floating.

It seems that some kind of array of buttons is loading the tooltips to the
wrong attribute. Is may not be so hard to fix :)

Best regards,
Gilvan.

-- 
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 78622] LibreLogo: change in tooltips

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=78622

--- Comment #14 from Gilvan Vilarim gilvan.vila...@gmail.com ---
Thanks! By the way, see if this annoying bug has something to do with some xml
mistake:

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

Best regards.

-- 
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 88496] LibO handles Header Tables in unpredictable way in specific conditions; same as AOO 4; different from MS Word

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88496

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #6 from Beluga todven...@suomi24.fi ---
Could you make some more clear reproducing steps, like numbered steps with
LO_Table_Problem1.odt as the start?

In LO_Table_Problem1.odt, I went to a header row and started hitting return. I
did not see any part of the table disappear or get hidden.

You could also try with LibreOffice 4.4.1.

Set to NEEDINFO.
Change back to UNCONFIRMED, if the problem persists with 4.4.1. Change to
RESOLVED WORKSFORME, if the problem went away.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

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


[Libreoffice-bugs] [Bug 89691] UI: Insert Index Entry and Edit Index Entry dialog boxes not horizontally resizable

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89691

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Beluga todven...@suomi24.fi ---
I could not reproduce.
Maybe we need an example document to test more reliably.

How long is an unusually long entry?
What type of entry does it have to be?

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the information/document.

Win 7 Pro 64-bit, LibO Version: 4.4.1.2
Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432
Locale: fi_FI

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


[Libreoffice-bugs] [Bug 89692] Master Password Minimizes on Prompt

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89692

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
 Whiteboard||needsWebDAV

-- 
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 89808] New: LO crashes always when trying to open some documents

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89808

Bug ID: 89808
   Summary: LO crashes always when trying to open some documents
   Product: LibreOffice
   Version: 4.4.1.2 rc
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hl...@gmx.at

Created attachment 113856
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113856action=edit
odt document that crashes

This happens when trying to open one of the attached documents (odt or doc)

-- 
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 89808] LO crashes always when trying to open some documents

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89808

--- Comment #1 from Helmut Leininger hl...@gmx.at ---
Created attachment 113857
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113857action=edit
another document that crashes

-- 
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 89468] automatically create defaults for hyperlinks based on cell contents

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89468

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #9 from Beluga todven...@suomi24.fi ---
(In reply to pb from comment #6)
 1.  Type /tmp into cell and hit return, exiting the cell.
 2.  Observe that calc does not consider this to be a link.
 3.  Enter the cell, move cursor to beginning of text in cell, before all of
 /tmp, making sure there is no selection that will be clobbered by typing.
 4.  Type C:, and exit the cell.
 5.  Cell text now says C:/tmp.
 6.  Only C: is highlighted as a link.
 7.  Tooltip indicates this link wants to open file:///c:/.
 8.  The desired behavior would be to open file:///c:/tmp.

Reproduced in 4.5 alpha.
I guess this is somehow not the default behaviour, as I could not get C:\temp
to become a hyperlink at all in my 4.4 install.

Win 7 Pro 64-bit Version: 4.5.0.0.alpha0+
Build ID: 7c0eb12009496a35c927cd5b2520f9c34d50860b
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2015-03-03_10:52:12
Locale: fi_FI

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


[Bug 89592] Initialize PropertyValue Sequences from initializer_lists

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89592

--- Comment #2 from Björn Michaelsen bjoern.michael...@canonical.com ---
(In reply to Lovekesh Garg from comment #1)
 Can you explain it further.

Not without any hint on what information would be missing to start with this.
;)

-- 
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 89555] automatic simple quote instead of double quote in conditional format

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89555

Eike Rathke er...@redhat.com changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
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 42692] SVG export ignores Selection option

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42692

Regina Henschel rb.hensc...@t-online.de changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|WORKSFORME  |---
 Ever confirmed|1   |0

--- Comment #19 from Regina Henschel rb.hensc...@t-online.de ---
No it is not solved. It does not export the whole page, but it uses clip-paths
where it should not. The result is, that the shape is cut. In AOO the bug is
fixed in the meantime.

-- 
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 89545] Writer’s internal inserted pages mess the page numeration

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89545

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #2 from Beluga todven...@suomi24.fi ---
Could you attach an example document?

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the document.

-- 
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 89809] LibreOffice 4.4 GTK3 menus don't show checkboxes correctly

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89809

--- Comment #1 from S. sb56...@gmail.com ---
Created attachment 113858
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113858action=edit
checkboxes for selected items are not displayed

-- 
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 89809] LibreOffice 4.4 GTK3 menus don't show checkboxes correctly

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89809

--- Comment #3 from S. sb56...@gmail.com ---
Created attachment 113860
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113860action=edit
EOG image viewer is also GTK3, checkboxes display correctly

-- 
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 89809] New: LibreOffice 4.4 GTK3 menus don't show checkboxes correctly

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89809

Bug ID: 89809
   Summary: LibreOffice 4.4 GTK3 menus don't show checkboxes
correctly
   Product: LibreOffice
   Version: 4.4.1.1 rc
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sb56...@gmail.com

Hi,

I'm running LibreOffice 4.4.1.2 from the LibreOffice:Factory repo on openSUSE
13.2, in the Cinnamon desktop environment.

It appears that LibreOffice 4.4 started using GTK3 widgets. It is not fully
compatible with my GTK3 theme.
(http://gnome-look.org/content/show.php?content=168011) The checkboxes of
selected items in the menus are not displayed until mouseover. I will attach
screenshots.

This bug is NOT present with some other GTK3 themes like Greybird and Adwaita.
However, LibreOffice is the only GTK3 program I have that doesn't work right
with my GTK3 theme. I am attaching screenshots of a GTK3 apps that works
correctly with my existing theme.

Thanks for looking into this!

-- 
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 65206] FORMATTING: Highlighted (colored) cells only limited to 32 cells in formula

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65206

--- Comment #3 from soto...@gmail.com ---
well, where is the solution to this ??

-- 
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 89810] Calc crashes when copy content to a new created file

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89810

--- Comment #1 from kompilainenn 79045_79...@mail.ru ---
how you copy a page. Provide details each step, please

attach existing file A, please

I filled out the 52000 cells with random data, select the entire page by
clicking on the area between the names of columns and rows, copied and then
pasted into a new file. everything works fine on LO 4.3.6.2 Windows 7 x86-64

-- 
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 89811] New: UNCONFIRMED BUG 89787 FILEOPEN

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89811

Bug ID: 89811
   Summary: UNCONFIRMED BUG 89787 FILEOPEN
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ss...@hotmail.co.uk

[Bug 89787] FILEOPEN
bugzilla-dae...@bugs.documentfoundation.org
(bugzilla-dae...@bugs.documentfoundation.org)  Add to contacts  02/03/2015  
Keep this message at the top of your inbox  
To: ss...@hotmail.co.uk
bugzilla-dae...@bugs.documentfoundation.org
GerardF changed bug 89787 
WhatRemovedAdded
StatusUNCONFIRMEDNEEDINFO
CC gerard.farg...@orange.fr
Ever confirmed 1
Comment # 1 on bug 89787 from GerardF
Your bank file is surely a fake spreadsheet. what is the extension?

Set back the report to UNCONFIRMED when answered.

---
The answer to your question is .xls which I believe is a genuine Excel
extension.

However you seemed to have missed my opening point that my previous version of
Libre opened the download in Calc perfectly normally whereas this version opens
the file in Writer as a text doc.
Regards.

-- 
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 89468] automatically create defaults for hyperlinks based on cell contents

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89468

--- Comment #10 from pb blic...@comcast.net ---
Thank you for confirming.

Please also note the following:

1.  To my knowledge, I have not done anything to alter the default behavior, so
I'm not sure why you do not see at least correct behavior when typing in an
entire path string de novo.  To be clear:  if I enter a blank cell, and type
into it c:\temp  or c:/temp, calc recognizes this as a link.  I believe
this is what raal did and found it to work.

2.  In addition to the bug that you confirmed, there is a related bug, which is
that if you paste from the clipboard, when the clipboard contains plain text
that was copied to there from another app, such as notebook, the pasted text
will not be recognized as a link.

3.  Another facet of that bug is that if a CSV file that is being imported
contains text fields that should be parsed as links, that does not occur.

4.  And, finally, for the benefit of anyone who happens to discover this bug
report when trying to figure out how to work around this issue when they might
have a large number of links that should be but are not links, there is a
simple, if not ideal, workaround:  Create a new column (or row, depending on
layout), and insert the formula hyperlink(url-or-filepath-cell,
display-text-cell-or-string).  This can easily be propagated to multiple
cells by copying.

-- 
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 65206] FORMATTING: Highlighted (colored) cells only limited to 32 cells in formula

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65206

soto...@gmail.com changed:

   What|Removed |Added

   Priority|medium  |high
   Severity|normal  |major

-- 
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 89540] TOOLBAR: Show draw functions button doesnt work in Impress/Draw

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89540

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #3 from Beluga todven...@suomi24.fi ---
(In reply to Jay Philips from comment #2)
 In writer, its the last button on the right in the standard toolbar. I wasnt
 able to find the button in the customization dialog in impress, so i added
 the entry myself into the toolbar xml file and it was dimmed.

How can we do this addition?

-- 
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 89530] CALC UI: add a status list of Pivot Tables to select for update/go to.

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89530

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||todven...@suomi24.fi
  Component|Calc|ux-advise
 Ever confirmed|0   |1

--- Comment #3 from Beluga todven...@suomi24.fi ---
I give this to the design team.

-- 
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 89513] read only files won't let you edit after save as

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89513

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 CC||todven...@suomi24.fi

--- Comment #2 from Beluga todven...@suomi24.fi ---
Same as raal: can immediately start editing after save as in Calc ( Writer).

When in doubt, reset user profile:
https://wiki.documentfoundation.org/User_Profile#Resolving_corruption_in_the_user_profile

Ubuntu 14.10 64-bit
Version: 4.4.1.2
Build ID: 40m0(Build:2)
Locale: en_US

-- 
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 89592] Initialize PropertyValue Sequences from initializer_lists

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89592

--- Comment #2 from Björn Michaelsen bjoern.michael...@canonical.com ---
(In reply to Lovekesh Garg from comment #1)
 Can you explain it further.

Not without any hint on what information would be missing to start with this.
;)

-- 
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 88496] LibO handles Header Tables in unpredictable way in specific conditions; same as AOO 4; different from MS Word

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88496

--- Comment #7 from Octavio Alvarez alvar...@alvarezp.ods.org ---
Yes, please, I would like to reproduce it in my computer, too. There are many
settings that affect Writer behavior with regard to headers in tables so it's
not clear how exactly is your document set up. Please share with us the exact
steps to force the bug, starting from a clean document.

-- 
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 89530] CALC UI: add a status list of Pivot Tables to select for update/go to.

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89530

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||todven...@suomi24.fi
  Component|Calc|ux-advise
 Ever confirmed|0   |1

--- Comment #3 from Beluga todven...@suomi24.fi ---
I give this to the design team.

-- 
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 89809] LibreOffice 4.4 GTK3 menus don't show checkboxes correctly

2015-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89809

--- Comment #2 from S. sb56...@gmail.com ---
Created attachment 113859
  -- https://bugs.documentfoundation.org/attachment.cgi?id=113859action=edit
at mouseover, the checkbox appears on selected items

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